cx-copter.kicad_pcb 203 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095
  1. (kicad_pcb
  2. (version 20260206)
  3. (generator "pcbnew")
  4. (generator_version "10.0")
  5. (general
  6. (thickness 1.6)
  7. (legacy_teardrops no)
  8. )
  9. (paper "A4")
  10. (layers
  11. (0 "F.Cu" signal)
  12. (2 "B.Cu" signal)
  13. (9 "F.Adhes" user "F.Adhesive")
  14. (11 "B.Adhes" user "B.Adhesive")
  15. (13 "F.Paste" user)
  16. (15 "B.Paste" user)
  17. (5 "F.SilkS" user "F.Silkscreen")
  18. (7 "B.SilkS" user "B.Silkscreen")
  19. (1 "F.Mask" user)
  20. (3 "B.Mask" user)
  21. (17 "Dwgs.User" user "User.Drawings")
  22. (19 "Cmts.User" user "User.Comments")
  23. (21 "Eco1.User" user "User.Eco1")
  24. (23 "Eco2.User" user "User.Eco2")
  25. (25 "Edge.Cuts" user)
  26. (27 "Margin" user)
  27. (31 "F.CrtYd" user "F.Courtyard")
  28. (29 "B.CrtYd" user "B.Courtyard")
  29. (35 "F.Fab" user)
  30. (33 "B.Fab" user)
  31. (39 "User.1" user)
  32. (41 "User.2" user)
  33. (43 "User.3" user)
  34. (45 "User.4" user)
  35. )
  36. (setup
  37. (pad_to_mask_clearance 0)
  38. (allow_soldermask_bridges_in_footprints no)
  39. (tenting
  40. (front yes)
  41. (back yes)
  42. )
  43. (covering
  44. (front no)
  45. (back no)
  46. )
  47. (plugging
  48. (front no)
  49. (back no)
  50. )
  51. (capping no)
  52. (filling no)
  53. (pcbplotparams
  54. (layerselection 0x00000000_00000000_55555555_5755f5ff)
  55. (plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000)
  56. (disableapertmacros no)
  57. (usegerberextensions no)
  58. (usegerberattributes yes)
  59. (usegerberadvancedattributes yes)
  60. (creategerberjobfile yes)
  61. (dashed_line_dash_ratio 12)
  62. (dashed_line_gap_ratio 3)
  63. (svgprecision 4)
  64. (plotframeref no)
  65. (mode 1)
  66. (useauxorigin no)
  67. (pdf_front_fp_property_popups yes)
  68. (pdf_back_fp_property_popups yes)
  69. (pdf_metadata yes)
  70. (pdf_single_document no)
  71. (dxfpolygonmode yes)
  72. (dxfimperialunits yes)
  73. (dxfusepcbnewfont yes)
  74. (psnegative no)
  75. (psa4output no)
  76. (plot_black_and_white yes)
  77. (sketchpadsonfab no)
  78. (plotpadnumbers no)
  79. (hidednponfab no)
  80. (sketchdnponfab yes)
  81. (crossoutdnponfab yes)
  82. (subtractmaskfromsilk no)
  83. (outputformat 1)
  84. (mirror no)
  85. (drillshape 1)
  86. (scaleselection 1)
  87. (outputdirectory "")
  88. )
  89. )
  90. (footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
  91. (layer "F.Cu")
  92. (uuid "0408124f-78b8-43fa-a8dd-8f4b39d89efe")
  93. (at 116.4 115.5875 -90)
  94. (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)")
  95. (tags "LED handsolder")
  96. (property "Reference" "D1"
  97. (at 0 -1.83 90)
  98. (layer "F.SilkS")
  99. (uuid "107b4ea3-b35d-4e3c-b4b7-04972236a681")
  100. (effects
  101. (font
  102. (size 1 1)
  103. (thickness 0.15)
  104. )
  105. )
  106. )
  107. (property "Value" "RED"
  108. (at 0 1.83 90)
  109. (layer "F.Fab")
  110. (uuid "7159a746-08ed-4f59-901a-2c0f7560d116")
  111. (effects
  112. (font
  113. (size 1 1)
  114. (thickness 0.15)
  115. )
  116. )
  117. )
  118. (property "Datasheet" ""
  119. (at 0 0 90)
  120. (layer "F.Fab")
  121. (hide yes)
  122. (uuid "7d667077-2788-4d3e-aede-da69846a07ab")
  123. (effects
  124. (font
  125. (size 1.27 1.27)
  126. )
  127. )
  128. )
  129. (property "Description" "Light emitting diode"
  130. (at 0 0 90)
  131. (layer "F.Fab")
  132. (hide yes)
  133. (uuid "7799c2aa-3664-47a3-8203-24b9ab7d14f5")
  134. (effects
  135. (font
  136. (size 1.27 1.27)
  137. )
  138. )
  139. )
  140. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  141. (at 0 0 90)
  142. (layer "F.SilkS")
  143. (hide yes)
  144. (uuid "4a47d54a-cb2c-4706-a13d-5684374f4fd0")
  145. (effects
  146. (font
  147. (size 1 1)
  148. (thickness 0.15)
  149. )
  150. )
  151. )
  152. (property "Sim.Pins" "1=K 2=A"
  153. (at 0 0 270)
  154. (unlocked yes)
  155. (layer "F.Fab")
  156. (hide yes)
  157. (uuid "92442549-02bb-4fab-8a82-6465777a3009")
  158. (effects
  159. (font
  160. (size 1 1)
  161. (thickness 0.15)
  162. )
  163. )
  164. )
  165. (property ki_fp_filters "LED* LED_SMD:* LED_THT:*")
  166. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/e6d3ca9c-0801-4246-814c-e3f7068a13f4")
  167. (sheetname "/IO/")
  168. (sheetfile "io.kicad_sch")
  169. (units
  170. (unit
  171. (name "A")
  172. (pins "1" "2")
  173. )
  174. )
  175. (attr smd)
  176. (duplicate_pad_numbers_are_jumpers no)
  177. (fp_line
  178. (start -2.46 1.135)
  179. (end 1.6 1.135)
  180. (stroke
  181. (width 0.12)
  182. (type solid)
  183. )
  184. (layer "F.SilkS")
  185. (uuid "ff6b8470-b342-4930-bda4-4806eea53b34")
  186. )
  187. (fp_line
  188. (start -2.46 -1.135)
  189. (end -2.46 1.135)
  190. (stroke
  191. (width 0.12)
  192. (type solid)
  193. )
  194. (layer "F.SilkS")
  195. (uuid "1ab8eac0-6737-4ebf-9f31-d4a5c617df06")
  196. )
  197. (fp_line
  198. (start 1.6 -1.135)
  199. (end -2.46 -1.135)
  200. (stroke
  201. (width 0.12)
  202. (type solid)
  203. )
  204. (layer "F.SilkS")
  205. (uuid "92eb2e1c-0fd3-4d81-afc1-d9ab7e98c92c")
  206. )
  207. (fp_rect
  208. (start -2.45 -1.13)
  209. (end 2.45 1.13)
  210. (stroke
  211. (width 0.05)
  212. (type solid)
  213. )
  214. (fill no)
  215. (layer "F.CrtYd")
  216. (uuid "e68f596c-de62-4616-9cc9-f2b366e633f6")
  217. )
  218. (fp_line
  219. (start -1.6 0.8)
  220. (end 1.6 0.8)
  221. (stroke
  222. (width 0.1)
  223. (type solid)
  224. )
  225. (layer "F.Fab")
  226. (uuid "88f8361e-6cae-4945-8e67-8666616727e6")
  227. )
  228. (fp_line
  229. (start 1.6 0.8)
  230. (end 1.6 -0.8)
  231. (stroke
  232. (width 0.1)
  233. (type solid)
  234. )
  235. (layer "F.Fab")
  236. (uuid "898f5cbd-4982-4832-8d09-c3497982237d")
  237. )
  238. (fp_line
  239. (start -1.6 -0.4)
  240. (end -1.6 0.8)
  241. (stroke
  242. (width 0.1)
  243. (type solid)
  244. )
  245. (layer "F.Fab")
  246. (uuid "ad036f5c-053a-491b-a76b-0b81ff377701")
  247. )
  248. (fp_line
  249. (start -1.2 -0.8)
  250. (end -1.6 -0.4)
  251. (stroke
  252. (width 0.1)
  253. (type solid)
  254. )
  255. (layer "F.Fab")
  256. (uuid "fb6a42f1-65ed-4496-8c65-99503ff175ff")
  257. )
  258. (fp_line
  259. (start 1.6 -0.8)
  260. (end -1.2 -0.8)
  261. (stroke
  262. (width 0.1)
  263. (type solid)
  264. )
  265. (layer "F.Fab")
  266. (uuid "de3abf01-6a3b-44d5-85bf-b6f4bc3f5d17")
  267. )
  268. (fp_text user "${REFERENCE}"
  269. (at 0 0 90)
  270. (layer "F.Fab")
  271. (uuid "2a7ab55a-9747-410a-916a-eb4bd4b95546")
  272. (effects
  273. (font
  274. (size 0.8 0.8)
  275. (thickness 0.12)
  276. )
  277. )
  278. )
  279. (pad "1" smd roundrect
  280. (at -1.4875 0 270)
  281. (size 1.425 1.75)
  282. (layers "F.Cu" "F.Mask" "F.Paste")
  283. (roundrect_rratio 0.175439)
  284. (net "GND")
  285. (pinfunction "K_1")
  286. (pintype "passive")
  287. (uuid "42df2b65-1d3b-4133-94af-fe2477c45188")
  288. )
  289. (pad "2" smd roundrect
  290. (at 1.4875 0 270)
  291. (size 1.425 1.75)
  292. (layers "F.Cu" "F.Mask" "F.Paste")
  293. (roundrect_rratio 0.175439)
  294. (net "Net-(D1-A)")
  295. (pinfunction "A_2")
  296. (pintype "passive")
  297. (uuid "fba7ad47-aaf9-4657-98e1-e6f9c68ae6bc")
  298. )
  299. (embedded_fonts no)
  300. (model "${KICAD10_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.step"
  301. (offset
  302. (xyz 0 0 0)
  303. )
  304. (scale
  305. (xyz 1 1 1)
  306. )
  307. (rotate
  308. (xyz 0 0 0)
  309. )
  310. )
  311. )
  312. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  313. (layer "F.Cu")
  314. (uuid "160fd7fc-f884-4519-a06d-ef8d6e9756f1")
  315. (at 188.395 81.565)
  316. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  317. (tags "resistor handsolder")
  318. (property "Reference" "R17"
  319. (at 0 -1.83 0)
  320. (layer "F.SilkS")
  321. (uuid "7902f413-9d83-4440-a045-cf1aea23891c")
  322. (effects
  323. (font
  324. (size 1 1)
  325. (thickness 0.15)
  326. )
  327. )
  328. )
  329. (property "Value" "10k"
  330. (at 0 1.83 0)
  331. (layer "F.Fab")
  332. (uuid "4f4bd142-802f-43b6-b6c4-ad624a3a0a73")
  333. (effects
  334. (font
  335. (size 1 1)
  336. (thickness 0.15)
  337. )
  338. )
  339. )
  340. (property "Datasheet" ""
  341. (at 0 0 0)
  342. (layer "F.Fab")
  343. (hide yes)
  344. (uuid "0d6fbe85-0b83-4a70-8362-b0e7cc864db5")
  345. (effects
  346. (font
  347. (size 1.27 1.27)
  348. )
  349. )
  350. )
  351. (property "Description" "Resistor"
  352. (at 0 0 0)
  353. (layer "F.Fab")
  354. (hide yes)
  355. (uuid "1eaccf09-b97a-4717-a45c-5a0e6034764d")
  356. (effects
  357. (font
  358. (size 1.27 1.27)
  359. )
  360. )
  361. )
  362. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  363. (at 0 0 0)
  364. (layer "F.SilkS")
  365. (hide yes)
  366. (uuid "7f738ceb-f1cb-45b3-9845-fa270e20b5e1")
  367. (effects
  368. (font
  369. (size 1 1)
  370. (thickness 0.15)
  371. )
  372. )
  373. )
  374. (property ki_fp_filters "R_*")
  375. (path "/1b0a1d68-e8b7-4c38-9961-408ecb09dccc/4e74fe30-ec53-44a7-974d-3820fbcc63de")
  376. (sheetname "/Communication/")
  377. (sheetfile "communication.kicad_sch")
  378. (units
  379. (unit
  380. (name "A")
  381. (pins "1" "2")
  382. )
  383. )
  384. (attr smd)
  385. (duplicate_pad_numbers_are_jumpers no)
  386. (fp_line
  387. (start -0.727064 -0.91)
  388. (end 0.727064 -0.91)
  389. (stroke
  390. (width 0.12)
  391. (type solid)
  392. )
  393. (layer "F.SilkS")
  394. (uuid "57a48440-2af8-480f-bf76-938bb7e467c8")
  395. )
  396. (fp_line
  397. (start -0.727064 0.91)
  398. (end 0.727064 0.91)
  399. (stroke
  400. (width 0.12)
  401. (type solid)
  402. )
  403. (layer "F.SilkS")
  404. (uuid "a62a5ae2-4932-45ee-b030-29f51a20287c")
  405. )
  406. (fp_rect
  407. (start -2.45 -1.13)
  408. (end 2.45 1.13)
  409. (stroke
  410. (width 0.05)
  411. (type solid)
  412. )
  413. (fill no)
  414. (layer "F.CrtYd")
  415. (uuid "ff4bd3ed-fb4c-4a2b-9e68-dce3b4b88609")
  416. )
  417. (fp_rect
  418. (start -1.6 -0.8)
  419. (end 1.6 0.8)
  420. (stroke
  421. (width 0.1)
  422. (type solid)
  423. )
  424. (fill no)
  425. (layer "F.Fab")
  426. (uuid "9d1714d2-fa1e-4af8-8ec6-54a831213101")
  427. )
  428. (fp_text user "${REFERENCE}"
  429. (at 0 0 0)
  430. (layer "F.Fab")
  431. (uuid "47d34a68-fa61-412e-be03-835222684715")
  432. (effects
  433. (font
  434. (size 0.8 0.8)
  435. (thickness 0.12)
  436. )
  437. )
  438. )
  439. (pad "1" smd roundrect
  440. (at -1.55 0)
  441. (size 1.3 1.75)
  442. (layers "F.Cu" "F.Mask" "F.Paste")
  443. (roundrect_rratio 0.192308)
  444. (net "+3V3")
  445. (pintype "passive")
  446. (uuid "311c1c44-6b60-4393-95f6-a5d23f03f76b")
  447. )
  448. (pad "2" smd roundrect
  449. (at 1.55 0)
  450. (size 1.3 1.75)
  451. (layers "F.Cu" "F.Mask" "F.Paste")
  452. (roundrect_rratio 0.192308)
  453. (net "Net-(J4-Pin_2)")
  454. (pintype "passive")
  455. (uuid "b8ed89c6-2c9d-4ccd-af63-02b962daca35")
  456. )
  457. (embedded_fonts no)
  458. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  459. (offset
  460. (xyz 0 0 0)
  461. )
  462. (scale
  463. (xyz 1 1 1)
  464. )
  465. (rotate
  466. (xyz 0 0 0)
  467. )
  468. )
  469. )
  470. (footprint "Diode_SMD:D_SMA_Handsoldering"
  471. (layer "F.Cu")
  472. (uuid "1ba82fba-1acc-4281-8d2f-14b0314edee6")
  473. (at 132.7 73.4)
  474. (descr "Diode SMA (DO-214AC) Handsoldering")
  475. (tags "Diode SMA (DO-214AC) Handsoldering")
  476. (property "Reference" "D14"
  477. (at 0 -2.5 0)
  478. (layer "F.SilkS")
  479. (uuid "950db849-dcaf-4489-a78b-ceb96ad2b3ff")
  480. (effects
  481. (font
  482. (size 1 1)
  483. (thickness 0.15)
  484. )
  485. )
  486. )
  487. (property "Value" "SSA34-E3/61T"
  488. (at 0 2.6 0)
  489. (layer "F.Fab")
  490. (uuid "83446bde-3ffa-40e8-99ef-d82c6af632ee")
  491. (effects
  492. (font
  493. (size 1 1)
  494. (thickness 0.15)
  495. )
  496. )
  497. )
  498. (property "Datasheet" ""
  499. (at 0 0 0)
  500. (unlocked yes)
  501. (layer "F.Fab")
  502. (hide yes)
  503. (uuid "7a5cb390-51d6-4efd-b71e-11d3bfbf7a2c")
  504. (effects
  505. (font
  506. (size 1.27 1.27)
  507. (thickness 0.15)
  508. )
  509. )
  510. )
  511. (property "Description" "Schottky diode"
  512. (at 0 0 0)
  513. (unlocked yes)
  514. (layer "F.Fab")
  515. (hide yes)
  516. (uuid "d8f36d66-4505-4cd2-936c-50c37066f520")
  517. (effects
  518. (font
  519. (size 1.27 1.27)
  520. (thickness 0.15)
  521. )
  522. )
  523. )
  524. (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*")
  525. (path "/490a7643-0f07-4350-a6a3-47ed0b11455f/99d0c353-886e-49af-9833-8877e43f0e0b")
  526. (sheetname "/Power section/")
  527. (sheetfile "power_section.kicad_sch")
  528. (units
  529. (unit
  530. (name "A")
  531. (pins "1" "2")
  532. )
  533. )
  534. (attr smd)
  535. (duplicate_pad_numbers_are_jumpers no)
  536. (fp_line
  537. (start -4.51 -1.65)
  538. (end -4.51 1.65)
  539. (stroke
  540. (width 0.12)
  541. (type solid)
  542. )
  543. (layer "F.SilkS")
  544. (uuid "9829d4c0-26cc-4044-9b1c-738e4505b81e")
  545. )
  546. (fp_line
  547. (start -4.51 -1.65)
  548. (end 2.5 -1.65)
  549. (stroke
  550. (width 0.12)
  551. (type solid)
  552. )
  553. (layer "F.SilkS")
  554. (uuid "ece059bf-709d-49dd-9b54-78a920f8da33")
  555. )
  556. (fp_line
  557. (start -4.51 1.65)
  558. (end 2.5 1.65)
  559. (stroke
  560. (width 0.12)
  561. (type solid)
  562. )
  563. (layer "F.SilkS")
  564. (uuid "3b7e37c1-6e5a-4c8b-b655-65d1db94edea")
  565. )
  566. (fp_line
  567. (start -4.5 -1.75)
  568. (end 4.5 -1.75)
  569. (stroke
  570. (width 0.05)
  571. (type solid)
  572. )
  573. (layer "F.CrtYd")
  574. (uuid "25ebad9a-7cb8-4e51-9d9c-2009cc2d4a6f")
  575. )
  576. (fp_line
  577. (start -4.5 1.75)
  578. (end -4.5 -1.75)
  579. (stroke
  580. (width 0.05)
  581. (type solid)
  582. )
  583. (layer "F.CrtYd")
  584. (uuid "df204ad9-6624-49f1-bb88-c435996aaebc")
  585. )
  586. (fp_line
  587. (start 4.5 -1.75)
  588. (end 4.5 1.75)
  589. (stroke
  590. (width 0.05)
  591. (type solid)
  592. )
  593. (layer "F.CrtYd")
  594. (uuid "a2ec229c-8e92-4e59-a05d-e14150d73e36")
  595. )
  596. (fp_line
  597. (start 4.5 1.75)
  598. (end -4.5 1.75)
  599. (stroke
  600. (width 0.05)
  601. (type solid)
  602. )
  603. (layer "F.CrtYd")
  604. (uuid "8bd856de-c35c-4e19-9690-06b7b67f483c")
  605. )
  606. (fp_line
  607. (start -2.3 1.5)
  608. (end -2.3 -1.5)
  609. (stroke
  610. (width 0.1)
  611. (type solid)
  612. )
  613. (layer "F.Fab")
  614. (uuid "6b6731c6-d8ce-4e1d-b77b-8d6ee945aee7")
  615. )
  616. (fp_line
  617. (start -0.64944 -0.79908)
  618. (end -0.64944 0.80112)
  619. (stroke
  620. (width 0.1)
  621. (type solid)
  622. )
  623. (layer "F.Fab")
  624. (uuid "23b2fb0b-507a-4e15-b60a-58f2fefaca89")
  625. )
  626. (fp_line
  627. (start -0.64944 0.00102)
  628. (end -1.55114 0.00102)
  629. (stroke
  630. (width 0.1)
  631. (type solid)
  632. )
  633. (layer "F.Fab")
  634. (uuid "0e10b71f-226c-4eb9-bcb9-aca4378c5f5b")
  635. )
  636. (fp_line
  637. (start -0.64944 0.00102)
  638. (end 0.50118 -0.79908)
  639. (stroke
  640. (width 0.1)
  641. (type solid)
  642. )
  643. (layer "F.Fab")
  644. (uuid "8a8f54f6-7ee7-4d73-81a0-2f0c473fb0e4")
  645. )
  646. (fp_line
  647. (start -0.64944 0.00102)
  648. (end 0.50118 0.75032)
  649. (stroke
  650. (width 0.1)
  651. (type solid)
  652. )
  653. (layer "F.Fab")
  654. (uuid "974bd962-d9b9-4c22-9802-577bd6ea5acd")
  655. )
  656. (fp_line
  657. (start 0.50118 0.00102)
  658. (end 1.4994 0.00102)
  659. (stroke
  660. (width 0.1)
  661. (type solid)
  662. )
  663. (layer "F.Fab")
  664. (uuid "9a4499d3-afdf-4b01-84ca-467448ae8fbd")
  665. )
  666. (fp_line
  667. (start 0.50118 0.75032)
  668. (end 0.50118 -0.79908)
  669. (stroke
  670. (width 0.1)
  671. (type solid)
  672. )
  673. (layer "F.Fab")
  674. (uuid "aff57c8d-9f04-43c0-bd4c-5d4a89e40651")
  675. )
  676. (fp_line
  677. (start 2.3 -1.5)
  678. (end -2.3 -1.5)
  679. (stroke
  680. (width 0.1)
  681. (type solid)
  682. )
  683. (layer "F.Fab")
  684. (uuid "73c2ae5c-9f04-405b-84af-4efc615c6202")
  685. )
  686. (fp_line
  687. (start 2.3 -1.5)
  688. (end 2.3 1.5)
  689. (stroke
  690. (width 0.1)
  691. (type solid)
  692. )
  693. (layer "F.Fab")
  694. (uuid "4eff8873-a4bf-47e6-8ef2-77cceedd6f4d")
  695. )
  696. (fp_line
  697. (start 2.3 1.5)
  698. (end -2.3 1.5)
  699. (stroke
  700. (width 0.1)
  701. (type solid)
  702. )
  703. (layer "F.Fab")
  704. (uuid "cc4b188a-d62b-4b27-9db8-ea08034d18b7")
  705. )
  706. (fp_text user "${REFERENCE}"
  707. (at 0 -2.5 0)
  708. (layer "F.Fab")
  709. (uuid "73ef7fd5-35f9-4239-925e-cb0e5cd29a2a")
  710. (effects
  711. (font
  712. (size 1 1)
  713. (thickness 0.15)
  714. )
  715. )
  716. )
  717. (pad "1" smd roundrect
  718. (at -2.5 0)
  719. (size 3.5 1.8)
  720. (layers "F.Cu" "F.Mask" "F.Paste")
  721. (roundrect_rratio 0.1388888889)
  722. (net "+5V")
  723. (pinfunction "K_1")
  724. (pintype "passive")
  725. (uuid "dae671cc-4b34-4fcc-bd8b-c8781c6761bc")
  726. )
  727. (pad "2" smd roundrect
  728. (at 2.5 0)
  729. (size 3.5 1.8)
  730. (layers "F.Cu" "F.Mask" "F.Paste")
  731. (roundrect_rratio 0.1388888889)
  732. (net "+3V3")
  733. (pinfunction "A_2")
  734. (pintype "passive")
  735. (uuid "cd784ce1-96a3-48a9-99fc-f94dc182293e")
  736. )
  737. (embedded_fonts no)
  738. (model "${KICAD10_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.step"
  739. (offset
  740. (xyz 0 0 0)
  741. )
  742. (scale
  743. (xyz 1 1 1)
  744. )
  745. (rotate
  746. (xyz 0 0 0)
  747. )
  748. )
  749. )
  750. (footprint "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical"
  751. (layer "F.Cu")
  752. (uuid "2138570d-6b3c-4c6d-958a-59660d65c065")
  753. (at 220.225 61.645)
  754. (descr "Through hole straight pin header, 2x01, 2.54mm pitch, double rows")
  755. (tags "Through hole pin header THT 2x01 2.54mm double row")
  756. (property "Reference" "J3"
  757. (at 1.27 -2.38 0)
  758. (layer "F.SilkS")
  759. (uuid "77db0f03-6228-4f13-a631-84e688517b0b")
  760. (effects
  761. (font
  762. (size 1 1)
  763. (thickness 0.15)
  764. )
  765. )
  766. )
  767. (property "Value" "DISABLE"
  768. (at 1.27 2.38 0)
  769. (layer "F.Fab")
  770. (uuid "83451b14-3e30-4a28-8628-3e14e36421c1")
  771. (effects
  772. (font
  773. (size 1 1)
  774. (thickness 0.15)
  775. )
  776. )
  777. )
  778. (property "Datasheet" ""
  779. (at 0 0 0)
  780. (layer "F.Fab")
  781. (hide yes)
  782. (uuid "b0936bd7-f89f-462e-8daa-ed69fc51aa3a")
  783. (effects
  784. (font
  785. (size 1.27 1.27)
  786. )
  787. )
  788. )
  789. (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
  790. (at 0 0 0)
  791. (layer "F.Fab")
  792. (hide yes)
  793. (uuid "3edecc5e-938f-4d89-884f-46d7767ef0b6")
  794. (effects
  795. (font
  796. (size 1.27 1.27)
  797. )
  798. )
  799. )
  800. (property "KiLib_Generator" "connector/pin_header_socket"
  801. (at 0 0 0)
  802. (layer "F.SilkS")
  803. (hide yes)
  804. (uuid "3208f9f7-ffd9-48e4-8c71-f9077edbb17e")
  805. (effects
  806. (font
  807. (size 1 1)
  808. (thickness 0.15)
  809. )
  810. )
  811. )
  812. (property ki_fp_filters "Connector*:*_2x??_*")
  813. (path "/0a5bfc67-f86c-4d5b-8ddb-d673aa97ba2e/6c2df987-cc99-4d75-bd40-e477f43a4e78")
  814. (sheetname "/Motion controller/")
  815. (sheetfile "motion_controller.kicad_sch")
  816. (units
  817. (unit
  818. (name "A")
  819. (pins "1" "2")
  820. )
  821. )
  822. (attr through_hole)
  823. (duplicate_pad_numbers_are_jumpers no)
  824. (fp_line
  825. (start -1.38 -1.38)
  826. (end 0 -1.38)
  827. (stroke
  828. (width 0.12)
  829. (type solid)
  830. )
  831. (layer "F.SilkS")
  832. (uuid "865c3962-f08a-428f-8356-3609aa8ce878")
  833. )
  834. (fp_line
  835. (start -1.38 0)
  836. (end -1.38 -1.38)
  837. (stroke
  838. (width 0.12)
  839. (type solid)
  840. )
  841. (layer "F.SilkS")
  842. (uuid "6e4c3e11-53e0-4f75-b589-fa4273e3707b")
  843. )
  844. (fp_line
  845. (start -1.38 1.27)
  846. (end -1.38 1.38)
  847. (stroke
  848. (width 0.12)
  849. (type solid)
  850. )
  851. (layer "F.SilkS")
  852. (uuid "320d195d-09b9-4806-b356-6f43e888771e")
  853. )
  854. (fp_line
  855. (start -1.38 1.27)
  856. (end 1.27 1.27)
  857. (stroke
  858. (width 0.12)
  859. (type solid)
  860. )
  861. (layer "F.SilkS")
  862. (uuid "58c2aa64-264c-480a-a8dc-af432b431826")
  863. )
  864. (fp_line
  865. (start -1.38 1.38)
  866. (end 3.92 1.38)
  867. (stroke
  868. (width 0.12)
  869. (type solid)
  870. )
  871. (layer "F.SilkS")
  872. (uuid "06533129-bc59-4805-b085-5d292f183371")
  873. )
  874. (fp_line
  875. (start 1.27 -1.38)
  876. (end 3.92 -1.38)
  877. (stroke
  878. (width 0.12)
  879. (type solid)
  880. )
  881. (layer "F.SilkS")
  882. (uuid "432649bb-ce3e-44fc-b6f3-92df92b34763")
  883. )
  884. (fp_line
  885. (start 1.27 1.27)
  886. (end 1.27 -1.38)
  887. (stroke
  888. (width 0.12)
  889. (type solid)
  890. )
  891. (layer "F.SilkS")
  892. (uuid "a4ebc967-0aae-4cf5-9373-399b5019e5a8")
  893. )
  894. (fp_line
  895. (start 3.92 -1.38)
  896. (end 3.92 1.38)
  897. (stroke
  898. (width 0.12)
  899. (type solid)
  900. )
  901. (layer "F.SilkS")
  902. (uuid "7178d630-70ae-42ea-8558-837953ae587d")
  903. )
  904. (fp_rect
  905. (start -1.77 -1.77)
  906. (end 4.32 1.77)
  907. (stroke
  908. (width 0.05)
  909. (type solid)
  910. )
  911. (fill no)
  912. (layer "F.CrtYd")
  913. (uuid "34d304ad-19dd-426f-a696-ec2db9fd301f")
  914. )
  915. (fp_line
  916. (start -1.27 0)
  917. (end 0 -1.27)
  918. (stroke
  919. (width 0.1)
  920. (type solid)
  921. )
  922. (layer "F.Fab")
  923. (uuid "487db36f-0924-4bf8-9ca3-583b51dab025")
  924. )
  925. (fp_line
  926. (start -1.27 1.27)
  927. (end -1.27 0)
  928. (stroke
  929. (width 0.1)
  930. (type solid)
  931. )
  932. (layer "F.Fab")
  933. (uuid "7df100e2-3941-460d-ba0d-02623aabde79")
  934. )
  935. (fp_line
  936. (start 0 -1.27)
  937. (end 3.81 -1.27)
  938. (stroke
  939. (width 0.1)
  940. (type solid)
  941. )
  942. (layer "F.Fab")
  943. (uuid "a4dd1333-3368-4909-b583-1d773ce4aa40")
  944. )
  945. (fp_line
  946. (start 3.81 -1.27)
  947. (end 3.81 1.27)
  948. (stroke
  949. (width 0.1)
  950. (type solid)
  951. )
  952. (layer "F.Fab")
  953. (uuid "d2ec254a-6894-4f31-8f26-3b6d71533608")
  954. )
  955. (fp_line
  956. (start 3.81 1.27)
  957. (end -1.27 1.27)
  958. (stroke
  959. (width 0.1)
  960. (type solid)
  961. )
  962. (layer "F.Fab")
  963. (uuid "a0779e0d-91da-4924-b8da-893d468a7d73")
  964. )
  965. (fp_text user "${REFERENCE}"
  966. (at 1.27 0 90)
  967. (layer "F.Fab")
  968. (uuid "bdd71e02-7572-4578-8a11-c52ab0a7b580")
  969. (effects
  970. (font
  971. (size 1 1)
  972. (thickness 0.15)
  973. )
  974. )
  975. )
  976. (pad "1" thru_hole rect
  977. (at 0 0)
  978. (size 1.7 1.7)
  979. (drill 1)
  980. (layers "*.Cu" "*.Mask")
  981. (remove_unused_layers no)
  982. (net "GND")
  983. (pinfunction "Pin_1_1")
  984. (pintype "passive")
  985. (uuid "62680da7-c179-46de-bda9-7b6dd28223ad")
  986. )
  987. (pad "2" thru_hole circle
  988. (at 2.54 0)
  989. (size 1.7 1.7)
  990. (drill 1)
  991. (layers "*.Cu" "*.Mask")
  992. (remove_unused_layers no)
  993. (net "Net-(J3-Pin_2)")
  994. (pinfunction "Pin_2_2")
  995. (pintype "passive")
  996. (uuid "803b3fe4-620a-4579-9000-071f8aab07a6")
  997. )
  998. (embedded_fonts no)
  999. (model "${KICAD10_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x01_P2.54mm_Vertical.step"
  1000. (offset
  1001. (xyz 0 0 0)
  1002. )
  1003. (scale
  1004. (xyz 1 1 1)
  1005. )
  1006. (rotate
  1007. (xyz 0 0 0)
  1008. )
  1009. )
  1010. )
  1011. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  1012. (layer "F.Cu")
  1013. (uuid "492db1f4-7b2c-44e1-905f-71f08bcca409")
  1014. (at 199.785 88.785)
  1015. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  1016. (tags "resistor handsolder")
  1017. (property "Reference" "R22"
  1018. (at 0 -1.83 0)
  1019. (layer "F.SilkS")
  1020. (uuid "b7ed4bc8-a687-4d5d-af3e-af3711a8f26d")
  1021. (effects
  1022. (font
  1023. (size 1 1)
  1024. (thickness 0.15)
  1025. )
  1026. )
  1027. )
  1028. (property "Value" "5k1"
  1029. (at 0 1.83 0)
  1030. (layer "F.Fab")
  1031. (uuid "e0c0f0c8-1b3a-4f21-aacf-b005a5947883")
  1032. (effects
  1033. (font
  1034. (size 1 1)
  1035. (thickness 0.15)
  1036. )
  1037. )
  1038. )
  1039. (property "Datasheet" ""
  1040. (at 0 0 0)
  1041. (layer "F.Fab")
  1042. (hide yes)
  1043. (uuid "d1506686-131a-40ef-8215-51c2941d6274")
  1044. (effects
  1045. (font
  1046. (size 1.27 1.27)
  1047. )
  1048. )
  1049. )
  1050. (property "Description" "Resistor"
  1051. (at 0 0 0)
  1052. (layer "F.Fab")
  1053. (hide yes)
  1054. (uuid "bb74be3c-eb18-475e-b4a0-fd1e34016b19")
  1055. (effects
  1056. (font
  1057. (size 1.27 1.27)
  1058. )
  1059. )
  1060. )
  1061. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  1062. (at 0 0 0)
  1063. (layer "F.SilkS")
  1064. (hide yes)
  1065. (uuid "779af891-2168-4d04-9f9a-32f572e72dfc")
  1066. (effects
  1067. (font
  1068. (size 1 1)
  1069. (thickness 0.15)
  1070. )
  1071. )
  1072. )
  1073. (property ki_fp_filters "R_*")
  1074. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/f3bedac5-b99b-46e7-befc-165282a6c0c3")
  1075. (sheetname "/IO/")
  1076. (sheetfile "io.kicad_sch")
  1077. (units
  1078. (unit
  1079. (name "A")
  1080. (pins "1" "2")
  1081. )
  1082. )
  1083. (attr smd)
  1084. (duplicate_pad_numbers_are_jumpers no)
  1085. (fp_line
  1086. (start -0.727064 -0.91)
  1087. (end 0.727064 -0.91)
  1088. (stroke
  1089. (width 0.12)
  1090. (type solid)
  1091. )
  1092. (layer "F.SilkS")
  1093. (uuid "db082adf-8f31-41db-860f-3d1f92afccec")
  1094. )
  1095. (fp_line
  1096. (start -0.727064 0.91)
  1097. (end 0.727064 0.91)
  1098. (stroke
  1099. (width 0.12)
  1100. (type solid)
  1101. )
  1102. (layer "F.SilkS")
  1103. (uuid "07166236-54c3-4d23-95e8-de0339bd170b")
  1104. )
  1105. (fp_rect
  1106. (start -2.45 -1.13)
  1107. (end 2.45 1.13)
  1108. (stroke
  1109. (width 0.05)
  1110. (type solid)
  1111. )
  1112. (fill no)
  1113. (layer "F.CrtYd")
  1114. (uuid "61157663-4e8d-4ade-9735-9f888bb51e0d")
  1115. )
  1116. (fp_rect
  1117. (start -1.6 -0.8)
  1118. (end 1.6 0.8)
  1119. (stroke
  1120. (width 0.1)
  1121. (type solid)
  1122. )
  1123. (fill no)
  1124. (layer "F.Fab")
  1125. (uuid "7d9ffcf6-7763-4869-ad8f-ce35510e132a")
  1126. )
  1127. (fp_text user "${REFERENCE}"
  1128. (at 0 0 0)
  1129. (layer "F.Fab")
  1130. (uuid "07c74ac3-b850-457d-a3ed-21074436073c")
  1131. (effects
  1132. (font
  1133. (size 0.8 0.8)
  1134. (thickness 0.12)
  1135. )
  1136. )
  1137. )
  1138. (pad "1" smd roundrect
  1139. (at -1.55 0)
  1140. (size 1.3 1.75)
  1141. (layers "F.Cu" "F.Mask" "F.Paste")
  1142. (roundrect_rratio 0.192308)
  1143. (net "Net-(R21-Pad2)")
  1144. (pintype "passive")
  1145. (uuid "67eab657-6d01-4a28-8b39-cf603cb6c0e1")
  1146. )
  1147. (pad "2" smd roundrect
  1148. (at 1.55 0)
  1149. (size 1.3 1.75)
  1150. (layers "F.Cu" "F.Mask" "F.Paste")
  1151. (roundrect_rratio 0.192308)
  1152. (net "/IO/SWITCH")
  1153. (pintype "passive")
  1154. (uuid "f9741ead-7558-47e6-869c-e4adc38eb4bf")
  1155. )
  1156. (embedded_fonts no)
  1157. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  1158. (offset
  1159. (xyz 0 0 0)
  1160. )
  1161. (scale
  1162. (xyz 1 1 1)
  1163. )
  1164. (rotate
  1165. (xyz 0 0 0)
  1166. )
  1167. )
  1168. )
  1169. (footprint "Button_Switch_SMD:SW_SPST_FSMSM"
  1170. (layer "F.Cu")
  1171. (uuid "4b35e2c2-1f27-4e76-a9a6-7c42e689b836")
  1172. (at 209.235 93.285)
  1173. (descr "http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1437566-3&DocType=Customer+Drawing&DocLang=English")
  1174. (tags "SPST button tactile switch")
  1175. (property "Reference" "SW1"
  1176. (at 0 -2.6 0)
  1177. (layer "F.SilkS")
  1178. (uuid "ca3262ad-6c7b-477d-ad6d-d4f7b601979f")
  1179. (effects
  1180. (font
  1181. (size 1 1)
  1182. (thickness 0.15)
  1183. )
  1184. )
  1185. )
  1186. (property "Value" "SWITCH"
  1187. (at 0 3 0)
  1188. (layer "F.Fab")
  1189. (uuid "b4b67fbe-bd48-44a2-b108-33c02c575bd1")
  1190. (effects
  1191. (font
  1192. (size 1 1)
  1193. (thickness 0.15)
  1194. )
  1195. )
  1196. )
  1197. (property "Datasheet" ""
  1198. (at 0 0 0)
  1199. (unlocked yes)
  1200. (layer "F.Fab")
  1201. (hide yes)
  1202. (uuid "478a3dc8-e31e-4e74-9be1-429bca27f1c8")
  1203. (effects
  1204. (font
  1205. (size 1.27 1.27)
  1206. (thickness 0.15)
  1207. )
  1208. )
  1209. )
  1210. (property "Description" "Push button switch, generic, two pins"
  1211. (at 0 0 0)
  1212. (unlocked yes)
  1213. (layer "F.Fab")
  1214. (hide yes)
  1215. (uuid "109e2035-dec7-4fe5-be2c-56a21c2ea8a7")
  1216. (effects
  1217. (font
  1218. (size 1.27 1.27)
  1219. (thickness 0.15)
  1220. )
  1221. )
  1222. )
  1223. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/4a0ae14c-9858-4615-aed7-42f50662836d")
  1224. (sheetname "/IO/")
  1225. (sheetfile "io.kicad_sch")
  1226. (units
  1227. (unit
  1228. (name "A")
  1229. (pins "1" "2")
  1230. )
  1231. )
  1232. (attr smd)
  1233. (duplicate_pad_numbers_are_jumpers no)
  1234. (fp_line
  1235. (start -3.06 -1.81)
  1236. (end 3.06 -1.81)
  1237. (stroke
  1238. (width 0.12)
  1239. (type solid)
  1240. )
  1241. (layer "F.SilkS")
  1242. (uuid "ffc73dbf-141a-45b7-894b-594d593d7888")
  1243. )
  1244. (fp_line
  1245. (start -3.06 1.81)
  1246. (end -3.06 -1.81)
  1247. (stroke
  1248. (width 0.12)
  1249. (type solid)
  1250. )
  1251. (layer "F.SilkS")
  1252. (uuid "9b279954-e6da-46fc-8fd6-8189fdf9db91")
  1253. )
  1254. (fp_line
  1255. (start 3.06 -1.81)
  1256. (end 3.06 1.81)
  1257. (stroke
  1258. (width 0.12)
  1259. (type solid)
  1260. )
  1261. (layer "F.SilkS")
  1262. (uuid "98656a2f-ba63-4cba-a849-949e6b3b2b3a")
  1263. )
  1264. (fp_line
  1265. (start 3.06 1.81)
  1266. (end -3.06 1.81)
  1267. (stroke
  1268. (width 0.12)
  1269. (type solid)
  1270. )
  1271. (layer "F.SilkS")
  1272. (uuid "2806f8b6-af50-435b-aa16-1778843d874e")
  1273. )
  1274. (fp_line
  1275. (start -5.95 -2)
  1276. (end -5.95 2)
  1277. (stroke
  1278. (width 0.05)
  1279. (type solid)
  1280. )
  1281. (layer "F.CrtYd")
  1282. (uuid "b2483d61-d3a6-4b17-9a93-6daa5c31e5c8")
  1283. )
  1284. (fp_line
  1285. (start -5.95 -2)
  1286. (end 5.95 -2)
  1287. (stroke
  1288. (width 0.05)
  1289. (type solid)
  1290. )
  1291. (layer "F.CrtYd")
  1292. (uuid "f6e19866-2a06-467e-bb2a-fff2b3384e36")
  1293. )
  1294. (fp_line
  1295. (start -5.95 2)
  1296. (end 5.95 2)
  1297. (stroke
  1298. (width 0.05)
  1299. (type solid)
  1300. )
  1301. (layer "F.CrtYd")
  1302. (uuid "95b21eb8-dd38-4c84-9778-1e515656181d")
  1303. )
  1304. (fp_line
  1305. (start 5.95 -2)
  1306. (end 5.95 2)
  1307. (stroke
  1308. (width 0.05)
  1309. (type solid)
  1310. )
  1311. (layer "F.CrtYd")
  1312. (uuid "9055355a-c0de-4211-8d86-848c97dd4210")
  1313. )
  1314. (fp_line
  1315. (start -3 -1.75)
  1316. (end -3 1.75)
  1317. (stroke
  1318. (width 0.1)
  1319. (type solid)
  1320. )
  1321. (layer "F.Fab")
  1322. (uuid "5b63a1c8-229e-476d-8edb-d17bb15c84f5")
  1323. )
  1324. (fp_line
  1325. (start -3 -1.75)
  1326. (end 3 -1.75)
  1327. (stroke
  1328. (width 0.1)
  1329. (type solid)
  1330. )
  1331. (layer "F.Fab")
  1332. (uuid "2dedb7e9-c6da-4ef0-be5b-db6d6d61ad0a")
  1333. )
  1334. (fp_line
  1335. (start -3 1.75)
  1336. (end 3 1.75)
  1337. (stroke
  1338. (width 0.1)
  1339. (type solid)
  1340. )
  1341. (layer "F.Fab")
  1342. (uuid "bbed0fae-ee3e-4095-8b72-9a5d60518ac1")
  1343. )
  1344. (fp_line
  1345. (start -1.75 -1)
  1346. (end 1.75 -1)
  1347. (stroke
  1348. (width 0.1)
  1349. (type solid)
  1350. )
  1351. (layer "F.Fab")
  1352. (uuid "f3dea752-7b24-4564-8fd2-f7f28b47b0b2")
  1353. )
  1354. (fp_line
  1355. (start -1.75 1)
  1356. (end -1.75 -1)
  1357. (stroke
  1358. (width 0.1)
  1359. (type solid)
  1360. )
  1361. (layer "F.Fab")
  1362. (uuid "95ad063c-e1d3-4d22-bb5a-9160a62258a6")
  1363. )
  1364. (fp_line
  1365. (start -1.5 -0.8)
  1366. (end -1.5 0.8)
  1367. (stroke
  1368. (width 0.1)
  1369. (type solid)
  1370. )
  1371. (layer "F.Fab")
  1372. (uuid "a613d532-b781-4015-b92c-7adec9b6fe5c")
  1373. )
  1374. (fp_line
  1375. (start -1.5 -0.8)
  1376. (end 1.5 -0.8)
  1377. (stroke
  1378. (width 0.1)
  1379. (type solid)
  1380. )
  1381. (layer "F.Fab")
  1382. (uuid "25e1626d-6ad8-432f-8ce7-ad98bd8e8ac6")
  1383. )
  1384. (fp_line
  1385. (start -1.5 0.8)
  1386. (end 1.5 0.8)
  1387. (stroke
  1388. (width 0.1)
  1389. (type solid)
  1390. )
  1391. (layer "F.Fab")
  1392. (uuid "d1117d3f-0d9d-492d-ae20-f2226fe319f0")
  1393. )
  1394. (fp_line
  1395. (start 1.5 -0.8)
  1396. (end 1.5 0.8)
  1397. (stroke
  1398. (width 0.1)
  1399. (type solid)
  1400. )
  1401. (layer "F.Fab")
  1402. (uuid "2d79ec32-d8d3-4c95-b027-816e62d4909c")
  1403. )
  1404. (fp_line
  1405. (start 1.75 -1)
  1406. (end 1.75 1)
  1407. (stroke
  1408. (width 0.1)
  1409. (type solid)
  1410. )
  1411. (layer "F.Fab")
  1412. (uuid "532e31f7-d28c-41ac-a638-3a5385aa9657")
  1413. )
  1414. (fp_line
  1415. (start 1.75 1)
  1416. (end -1.75 1)
  1417. (stroke
  1418. (width 0.1)
  1419. (type solid)
  1420. )
  1421. (layer "F.Fab")
  1422. (uuid "36867a44-3bbf-4399-8556-db83b752fcd9")
  1423. )
  1424. (fp_line
  1425. (start 3 -1.75)
  1426. (end 3 1.75)
  1427. (stroke
  1428. (width 0.1)
  1429. (type solid)
  1430. )
  1431. (layer "F.Fab")
  1432. (uuid "47b6d768-3251-4414-b209-97815f571272")
  1433. )
  1434. (fp_text user "${REFERENCE}"
  1435. (at 0 -2.6 0)
  1436. (layer "F.Fab")
  1437. (uuid "b5bb9798-7a2f-4f3e-b9b3-dacbd6a26c66")
  1438. (effects
  1439. (font
  1440. (size 1 1)
  1441. (thickness 0.15)
  1442. )
  1443. )
  1444. )
  1445. (pad "1" smd rect
  1446. (at -4.59 0)
  1447. (size 2.18 1.6)
  1448. (layers "F.Cu" "F.Mask" "F.Paste")
  1449. (net "Net-(R21-Pad2)")
  1450. (pinfunction "1_1")
  1451. (pintype "passive")
  1452. (uuid "15d1abc5-9207-4d02-88fc-a277b231766a")
  1453. )
  1454. (pad "2" smd rect
  1455. (at 4.59 0)
  1456. (size 2.18 1.6)
  1457. (layers "F.Cu" "F.Mask" "F.Paste")
  1458. (net "GND")
  1459. (pinfunction "2_2")
  1460. (pintype "passive")
  1461. (uuid "56e0fdec-4bd8-4705-8357-2dd0b91f2b3b")
  1462. )
  1463. (embedded_fonts no)
  1464. (model "${KICAD10_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_FSMSM.step"
  1465. (offset
  1466. (xyz 0 0 0)
  1467. )
  1468. (scale
  1469. (xyz 1 1 1)
  1470. )
  1471. (rotate
  1472. (xyz 0 0 0)
  1473. )
  1474. )
  1475. )
  1476. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  1477. (layer "F.Cu")
  1478. (uuid "4f6df916-f4f4-416d-99e3-4f5b1294c36e")
  1479. (at 111.3 116.7)
  1480. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  1481. (tags "resistor handsolder")
  1482. (property "Reference" "R20"
  1483. (at 0 -1.83 0)
  1484. (layer "F.SilkS")
  1485. (uuid "4393a2bf-28aa-47bd-b218-b2005e5a96a6")
  1486. (effects
  1487. (font
  1488. (size 1 1)
  1489. (thickness 0.15)
  1490. )
  1491. )
  1492. )
  1493. (property "Value" "330R"
  1494. (at 0 1.83 0)
  1495. (layer "F.Fab")
  1496. (uuid "b9770624-a49a-44ab-8a65-d0b1986bdbf1")
  1497. (effects
  1498. (font
  1499. (size 1 1)
  1500. (thickness 0.15)
  1501. )
  1502. )
  1503. )
  1504. (property "Datasheet" ""
  1505. (at 0 0 0)
  1506. (layer "F.Fab")
  1507. (hide yes)
  1508. (uuid "305aeb60-ae44-4faa-8483-e949fe34d7da")
  1509. (effects
  1510. (font
  1511. (size 1.27 1.27)
  1512. )
  1513. )
  1514. )
  1515. (property "Description" "Resistor"
  1516. (at 0 0 0)
  1517. (layer "F.Fab")
  1518. (hide yes)
  1519. (uuid "656a3d58-d4f6-4519-8df9-4f7d48b30d02")
  1520. (effects
  1521. (font
  1522. (size 1.27 1.27)
  1523. )
  1524. )
  1525. )
  1526. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  1527. (at 0 0 0)
  1528. (layer "F.SilkS")
  1529. (hide yes)
  1530. (uuid "4fdd06e2-03d9-4365-bee2-045ceb47ecaf")
  1531. (effects
  1532. (font
  1533. (size 1 1)
  1534. (thickness 0.15)
  1535. )
  1536. )
  1537. )
  1538. (property ki_fp_filters "R_*")
  1539. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/a637e21f-7207-4df0-af9f-3f5013c7c48c")
  1540. (sheetname "/IO/")
  1541. (sheetfile "io.kicad_sch")
  1542. (units
  1543. (unit
  1544. (name "A")
  1545. (pins "1" "2")
  1546. )
  1547. )
  1548. (attr smd)
  1549. (duplicate_pad_numbers_are_jumpers no)
  1550. (fp_line
  1551. (start -0.727064 -0.91)
  1552. (end 0.727064 -0.91)
  1553. (stroke
  1554. (width 0.12)
  1555. (type solid)
  1556. )
  1557. (layer "F.SilkS")
  1558. (uuid "1923af96-2297-4373-be32-4e27c786bf43")
  1559. )
  1560. (fp_line
  1561. (start -0.727064 0.91)
  1562. (end 0.727064 0.91)
  1563. (stroke
  1564. (width 0.12)
  1565. (type solid)
  1566. )
  1567. (layer "F.SilkS")
  1568. (uuid "c421b2cb-17a1-46c6-8e5b-e226dcdce075")
  1569. )
  1570. (fp_rect
  1571. (start -2.45 -1.13)
  1572. (end 2.45 1.13)
  1573. (stroke
  1574. (width 0.05)
  1575. (type solid)
  1576. )
  1577. (fill no)
  1578. (layer "F.CrtYd")
  1579. (uuid "778625bc-e2c6-4105-bf54-5ff92e1b15f0")
  1580. )
  1581. (fp_rect
  1582. (start -1.6 -0.8)
  1583. (end 1.6 0.8)
  1584. (stroke
  1585. (width 0.1)
  1586. (type solid)
  1587. )
  1588. (fill no)
  1589. (layer "F.Fab")
  1590. (uuid "89291100-a7f2-46e6-a7bc-c31f3225a77b")
  1591. )
  1592. (fp_text user "${REFERENCE}"
  1593. (at 0 0 0)
  1594. (layer "F.Fab")
  1595. (uuid "d14f8bac-5df9-4afb-a887-99e089bab2a5")
  1596. (effects
  1597. (font
  1598. (size 0.8 0.8)
  1599. (thickness 0.12)
  1600. )
  1601. )
  1602. )
  1603. (pad "1" smd roundrect
  1604. (at -1.55 0)
  1605. (size 1.3 1.75)
  1606. (layers "F.Cu" "F.Mask" "F.Paste")
  1607. (roundrect_rratio 0.192308)
  1608. (net "/Communication/RF_LED")
  1609. (pintype "passive")
  1610. (uuid "9218e994-2027-4aec-8f11-4dc2765a21ab")
  1611. )
  1612. (pad "2" smd roundrect
  1613. (at 1.55 0)
  1614. (size 1.3 1.75)
  1615. (layers "F.Cu" "F.Mask" "F.Paste")
  1616. (roundrect_rratio 0.192308)
  1617. (net "Net-(D1-A)")
  1618. (pintype "passive")
  1619. (uuid "b1445404-b270-4887-ae9c-632177ef3759")
  1620. )
  1621. (embedded_fonts no)
  1622. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  1623. (offset
  1624. (xyz 0 0 0)
  1625. )
  1626. (scale
  1627. (xyz 1 1 1)
  1628. )
  1629. (rotate
  1630. (xyz 0 0 0)
  1631. )
  1632. )
  1633. )
  1634. (footprint "Package_SO:STC_SOP-16_3.9x9.9mm_P1.27mm"
  1635. (layer "F.Cu")
  1636. (uuid "50afdd92-4842-4457-83dc-55c00a33c852")
  1637. (at 110.1 102.145)
  1638. (descr "STC SOP, 16 Pin (https://www.stcmicro.com/datasheet/STC15F2K60S2-en.pdf#page=156)")
  1639. (tags "STC SOP SO")
  1640. (property "Reference" "U1"
  1641. (at 0.15 -5.805 0)
  1642. (layer "F.SilkS")
  1643. (uuid "1b7e2f22-07c0-4a71-b30e-4eed020b3d57")
  1644. (effects
  1645. (font
  1646. (size 1 1)
  1647. (thickness 0.15)
  1648. )
  1649. )
  1650. )
  1651. (property "Value" "CH32V003AxMx"
  1652. (at 0 5.9 0)
  1653. (layer "F.Fab")
  1654. (uuid "1a7b369c-5faf-44d2-aeaf-1399bb85c054")
  1655. (effects
  1656. (font
  1657. (size 1 1)
  1658. (thickness 0.15)
  1659. )
  1660. )
  1661. )
  1662. (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
  1663. (at 0 0 0)
  1664. (layer "F.Fab")
  1665. (hide yes)
  1666. (uuid "eecae663-0a68-4087-a928-7c30f63c3281")
  1667. (effects
  1668. (font
  1669. (size 1.27 1.27)
  1670. )
  1671. )
  1672. )
  1673. (property "Description" "CH32V003 series are industrial-grade general-purpose microcontrollers designed based on 32-bit RISC-V instruction set and architecture. It adopts QingKe V2A core, RV32EC instruction set, and supports 2 levels of interrupt nesting. The series are mounted with rich peripheral interfaces and function modules. Its internal organizational structure meets the low-cost and low-power embedded application scenarios."
  1674. (at 0 0 0)
  1675. (layer "F.Fab")
  1676. (hide yes)
  1677. (uuid "ed6f08e9-55af-40fe-9fd0-3f0c77ae25af")
  1678. (effects
  1679. (font
  1680. (size 1.27 1.27)
  1681. )
  1682. )
  1683. )
  1684. (property "KiLib_Generator" "package/gullwing"
  1685. (at 0 0 0)
  1686. (layer "F.SilkS")
  1687. (hide yes)
  1688. (uuid "5fc1bde3-2b30-4c42-935c-2ea7c9098bfb")
  1689. (effects
  1690. (font
  1691. (size 1 1)
  1692. (thickness 0.15)
  1693. )
  1694. )
  1695. )
  1696. (property ki_fp_filters "*SO*3.9x9.9mm*P1.27mm*")
  1697. (path "/0a5bfc67-f86c-4d5b-8ddb-d673aa97ba2e/10620a9a-b309-4319-8e70-6f2757b3cfd0")
  1698. (sheetname "/Motion controller/")
  1699. (sheetfile "motion_controller.kicad_sch")
  1700. (units
  1701. (unit
  1702. (name "A")
  1703. (pins "11" "1" "2" "4" "3" "13" "7" "15" "14" "8" "16" "5" "6" "9" "10"
  1704. "12"
  1705. )
  1706. )
  1707. )
  1708. (attr smd)
  1709. (duplicate_pad_numbers_are_jumpers no)
  1710. (fp_line
  1711. (start -2.06 -5.06)
  1712. (end 2.06 -5.06)
  1713. (stroke
  1714. (width 0.12)
  1715. (type solid)
  1716. )
  1717. (layer "F.SilkS")
  1718. (uuid "ebdc4acd-f600-49ed-892f-65f8d01ba02f")
  1719. )
  1720. (fp_line
  1721. (start -2.06 -4.98)
  1722. (end -2.06 -5.06)
  1723. (stroke
  1724. (width 0.12)
  1725. (type solid)
  1726. )
  1727. (layer "F.SilkS")
  1728. (uuid "3c4ff0b4-9a85-4e94-8604-b114b1540a8c")
  1729. )
  1730. (fp_line
  1731. (start -2.06 5.06)
  1732. (end -2.06 4.98)
  1733. (stroke
  1734. (width 0.12)
  1735. (type solid)
  1736. )
  1737. (layer "F.SilkS")
  1738. (uuid "444fb361-d2b0-4bff-953e-3516599cd067")
  1739. )
  1740. (fp_line
  1741. (start 2.06 -5.06)
  1742. (end 2.06 -4.98)
  1743. (stroke
  1744. (width 0.12)
  1745. (type solid)
  1746. )
  1747. (layer "F.SilkS")
  1748. (uuid "5145120e-8c1c-4f90-8466-f654705d92f2")
  1749. )
  1750. (fp_line
  1751. (start 2.06 4.98)
  1752. (end 2.06 5.06)
  1753. (stroke
  1754. (width 0.12)
  1755. (type solid)
  1756. )
  1757. (layer "F.SilkS")
  1758. (uuid "8b38b4ac-3b7b-477e-ba6d-fc4199dbd874")
  1759. )
  1760. (fp_line
  1761. (start 2.06 5.06)
  1762. (end -2.06 5.06)
  1763. (stroke
  1764. (width 0.12)
  1765. (type solid)
  1766. )
  1767. (layer "F.SilkS")
  1768. (uuid "cdc95254-1b65-4f0b-b35f-c82cdb806be5")
  1769. )
  1770. (fp_poly
  1771. (pts
  1772. (xy -2.66 -4.99) (xy -2.9 -5.32) (xy -2.42 -5.32)
  1773. )
  1774. (stroke
  1775. (width 0.12)
  1776. (type solid)
  1777. )
  1778. (fill yes)
  1779. (layer "F.SilkS")
  1780. (uuid "e65ca620-ae15-4bce-ad87-b61b14811fdc")
  1781. )
  1782. (fp_line
  1783. (start -3.7 -4.97)
  1784. (end -2.2 -4.97)
  1785. (stroke
  1786. (width 0.05)
  1787. (type solid)
  1788. )
  1789. (layer "F.CrtYd")
  1790. (uuid "067980be-ab7c-4979-b2fc-4296f39b41e0")
  1791. )
  1792. (fp_line
  1793. (start -3.7 4.97)
  1794. (end -3.7 -4.97)
  1795. (stroke
  1796. (width 0.05)
  1797. (type solid)
  1798. )
  1799. (layer "F.CrtYd")
  1800. (uuid "f03ba7c7-3029-404f-8bdd-918fd92d1402")
  1801. )
  1802. (fp_line
  1803. (start -2.2 -5.2)
  1804. (end 2.2 -5.2)
  1805. (stroke
  1806. (width 0.05)
  1807. (type solid)
  1808. )
  1809. (layer "F.CrtYd")
  1810. (uuid "dc25b901-f644-48b9-a6d9-7b97ca8f60d9")
  1811. )
  1812. (fp_line
  1813. (start -2.2 -4.97)
  1814. (end -2.2 -5.2)
  1815. (stroke
  1816. (width 0.05)
  1817. (type solid)
  1818. )
  1819. (layer "F.CrtYd")
  1820. (uuid "b895ea6c-582c-471f-b562-a63475b863c0")
  1821. )
  1822. (fp_line
  1823. (start -2.2 4.97)
  1824. (end -3.7 4.97)
  1825. (stroke
  1826. (width 0.05)
  1827. (type solid)
  1828. )
  1829. (layer "F.CrtYd")
  1830. (uuid "39dd75e0-0d9e-4811-a10e-3ff1c0d9b7df")
  1831. )
  1832. (fp_line
  1833. (start -2.2 5.2)
  1834. (end -2.2 4.97)
  1835. (stroke
  1836. (width 0.05)
  1837. (type solid)
  1838. )
  1839. (layer "F.CrtYd")
  1840. (uuid "8f7224fc-6cea-4703-a643-a9477df09458")
  1841. )
  1842. (fp_line
  1843. (start 2.2 -5.2)
  1844. (end 2.2 -4.97)
  1845. (stroke
  1846. (width 0.05)
  1847. (type solid)
  1848. )
  1849. (layer "F.CrtYd")
  1850. (uuid "c5277084-9ef8-41e1-b127-952df3343199")
  1851. )
  1852. (fp_line
  1853. (start 2.2 -4.97)
  1854. (end 3.7 -4.97)
  1855. (stroke
  1856. (width 0.05)
  1857. (type solid)
  1858. )
  1859. (layer "F.CrtYd")
  1860. (uuid "4f7ba371-41dc-49af-b839-d4b9b1d359a3")
  1861. )
  1862. (fp_line
  1863. (start 2.2 4.97)
  1864. (end 2.2 5.2)
  1865. (stroke
  1866. (width 0.05)
  1867. (type solid)
  1868. )
  1869. (layer "F.CrtYd")
  1870. (uuid "34020e4f-3c3c-48fa-b1f1-d8c968baf725")
  1871. )
  1872. (fp_line
  1873. (start 2.2 5.2)
  1874. (end -2.2 5.2)
  1875. (stroke
  1876. (width 0.05)
  1877. (type solid)
  1878. )
  1879. (layer "F.CrtYd")
  1880. (uuid "bdcf85d5-2134-4eed-8d7f-22226c7782f7")
  1881. )
  1882. (fp_line
  1883. (start 3.7 -4.97)
  1884. (end 3.7 4.97)
  1885. (stroke
  1886. (width 0.05)
  1887. (type solid)
  1888. )
  1889. (layer "F.CrtYd")
  1890. (uuid "daaa26a9-171c-491a-8d6b-b32bebd79550")
  1891. )
  1892. (fp_line
  1893. (start 3.7 4.97)
  1894. (end 2.2 4.97)
  1895. (stroke
  1896. (width 0.05)
  1897. (type solid)
  1898. )
  1899. (layer "F.CrtYd")
  1900. (uuid "c5797d5d-a1e1-453c-9313-7e7c9256247c")
  1901. )
  1902. (fp_poly
  1903. (pts
  1904. (xy -0.975 -4.95) (xy 1.95 -4.95) (xy 1.95 4.95) (xy -1.95 4.95) (xy -1.95 -3.975)
  1905. )
  1906. (stroke
  1907. (width 0.1)
  1908. (type solid)
  1909. )
  1910. (fill no)
  1911. (layer "F.Fab")
  1912. (uuid "2c0e4d43-8393-4c86-b74f-0e180ab6f584")
  1913. )
  1914. (fp_text user "${REFERENCE}"
  1915. (at 0 0 90)
  1916. (layer "F.Fab")
  1917. (uuid "800fa3ea-4df4-42a7-b022-0ec7e768f310")
  1918. (effects
  1919. (font
  1920. (size 1 1)
  1921. (thickness 0.15)
  1922. )
  1923. )
  1924. )
  1925. (pad "1" smd roundrect
  1926. (at -2.65 -4.445)
  1927. (size 1.6 0.55)
  1928. (layers "F.Cu" "F.Mask" "F.Paste")
  1929. (roundrect_rratio 0.25)
  1930. (net "/IMU/SDA")
  1931. (pinfunction "PC1_1")
  1932. (pintype "bidirectional")
  1933. (uuid "2bc4993a-27b6-41b7-8013-86d0c47bbf89")
  1934. )
  1935. (pad "2" smd roundrect
  1936. (at -2.65 -3.175)
  1937. (size 1.6 0.55)
  1938. (layers "F.Cu" "F.Mask" "F.Paste")
  1939. (roundrect_rratio 0.25)
  1940. (net "/IMU/SCL")
  1941. (pinfunction "PC2_2")
  1942. (pintype "bidirectional")
  1943. (uuid "71636128-6e7b-4695-ba66-0c89d6c6fd1f")
  1944. )
  1945. (pad "3" smd roundrect
  1946. (at -2.65 -1.905)
  1947. (size 1.6 0.55)
  1948. (layers "F.Cu" "F.Mask" "F.Paste")
  1949. (roundrect_rratio 0.25)
  1950. (net "/Motion controller/BATTERY_LEVEL")
  1951. (pinfunction "PC3_3")
  1952. (pintype "bidirectional")
  1953. (uuid "935e7b28-6761-45e9-b55e-faaf68fd97e7")
  1954. )
  1955. (pad "4" smd roundrect
  1956. (at -2.65 -0.635)
  1957. (size 1.6 0.55)
  1958. (layers "F.Cu" "F.Mask" "F.Paste")
  1959. (roundrect_rratio 0.25)
  1960. (net "/IMU/INT")
  1961. (pinfunction "PC4_4")
  1962. (pintype "bidirectional")
  1963. (uuid "20d80a18-343f-4ce7-81c6-db0000ac24a2")
  1964. )
  1965. (pad "5" smd roundrect
  1966. (at -2.65 0.635)
  1967. (size 1.6 0.55)
  1968. (layers "F.Cu" "F.Mask" "F.Paste")
  1969. (roundrect_rratio 0.25)
  1970. (net "/Motion controller/PWM_M1B")
  1971. (pinfunction "PC6_5")
  1972. (pintype "bidirectional")
  1973. (uuid "988d78d8-7b66-4e99-a3c4-978a29192919")
  1974. )
  1975. (pad "6" smd roundrect
  1976. (at -2.65 1.905)
  1977. (size 1.6 0.55)
  1978. (layers "F.Cu" "F.Mask" "F.Paste")
  1979. (roundrect_rratio 0.25)
  1980. (net "/Motion controller/PWM_M2B")
  1981. (pinfunction "PC7_6")
  1982. (pintype "bidirectional")
  1983. (uuid "47c399ec-8656-4f62-97a3-52c46e4cb13b")
  1984. )
  1985. (pad "7" smd roundrect
  1986. (at -2.65 3.175)
  1987. (size 1.6 0.55)
  1988. (layers "F.Cu" "F.Mask" "F.Paste")
  1989. (roundrect_rratio 0.25)
  1990. (net "/IO/SWIO")
  1991. (pinfunction "PD1_7")
  1992. (pintype "bidirectional")
  1993. (uuid "6a20b216-9aad-4326-807c-19afb9927a9f")
  1994. )
  1995. (pad "8" smd roundrect
  1996. (at -2.65 4.445)
  1997. (size 1.6 0.55)
  1998. (layers "F.Cu" "F.Mask" "F.Paste")
  1999. (roundrect_rratio 0.25)
  2000. (net "/Motion controller/PWM_M2A")
  2001. (pinfunction "PD4_8")
  2002. (pintype "bidirectional")
  2003. (uuid "111ab513-4293-44c4-81fd-ef30e93e2794")
  2004. )
  2005. (pad "9" smd roundrect
  2006. (at 2.65 4.445)
  2007. (size 1.6 0.55)
  2008. (layers "F.Cu" "F.Mask" "F.Paste")
  2009. (roundrect_rratio 0.25)
  2010. (net "/Communication/TX")
  2011. (pinfunction "PD5_9")
  2012. (pintype "bidirectional")
  2013. (uuid "f6e51f5a-d10e-42e4-859e-06d521c2f63f")
  2014. )
  2015. (pad "10" smd roundrect
  2016. (at 2.65 3.175)
  2017. (size 1.6 0.55)
  2018. (layers "F.Cu" "F.Mask" "F.Paste")
  2019. (roundrect_rratio 0.25)
  2020. (net "/Communication/RX")
  2021. (pinfunction "PD6_10")
  2022. (pintype "bidirectional")
  2023. (uuid "6288b26e-4871-403c-a4ef-dbe318e16a2a")
  2024. )
  2025. (pad "11" smd roundrect
  2026. (at 2.65 1.905)
  2027. (size 1.6 0.55)
  2028. (layers "F.Cu" "F.Mask" "F.Paste")
  2029. (roundrect_rratio 0.25)
  2030. (net "Net-(J3-Pin_2)")
  2031. (pinfunction "PD7_11")
  2032. (pintype "bidirectional")
  2033. (uuid "0facfdff-23d1-49cd-ad67-9eee6fbec196")
  2034. )
  2035. (pad "12" smd roundrect
  2036. (at 2.65 0.635)
  2037. (size 1.6 0.55)
  2038. (layers "F.Cu" "F.Mask" "F.Paste")
  2039. (roundrect_rratio 0.25)
  2040. (net "/IO/STATUS")
  2041. (pinfunction "PA1_12")
  2042. (pintype "bidirectional")
  2043. (uuid "f59956cb-2e93-430b-aaab-95039b35afce")
  2044. )
  2045. (pad "13" smd roundrect
  2046. (at 2.65 -0.635)
  2047. (size 1.6 0.55)
  2048. (layers "F.Cu" "F.Mask" "F.Paste")
  2049. (roundrect_rratio 0.25)
  2050. (net "/IO/SWITCH")
  2051. (pinfunction "PA2_13")
  2052. (pintype "bidirectional")
  2053. (uuid "f3464512-3277-43bd-a2c9-5ff1a0a8a125")
  2054. )
  2055. (pad "14" smd roundrect
  2056. (at 2.65 -1.905)
  2057. (size 1.6 0.55)
  2058. (layers "F.Cu" "F.Mask" "F.Paste")
  2059. (roundrect_rratio 0.25)
  2060. (net "GND")
  2061. (pinfunction "VSS_14")
  2062. (pintype "power_in")
  2063. (uuid "6dfa482a-45eb-4569-801d-43230133349f")
  2064. )
  2065. (pad "15" smd roundrect
  2066. (at 2.65 -3.175)
  2067. (size 1.6 0.55)
  2068. (layers "F.Cu" "F.Mask" "F.Paste")
  2069. (roundrect_rratio 0.25)
  2070. (net "+3V3")
  2071. (pinfunction "VDD_15")
  2072. (pintype "power_in")
  2073. (uuid "d8967e70-a02e-437e-ab23-02675c613264")
  2074. )
  2075. (pad "16" smd roundrect
  2076. (at 2.65 -4.445)
  2077. (size 1.6 0.55)
  2078. (layers "F.Cu" "F.Mask" "F.Paste")
  2079. (roundrect_rratio 0.25)
  2080. (net "/Motion controller/PWM_M1A")
  2081. (pinfunction "PC0_16")
  2082. (pintype "bidirectional")
  2083. (uuid "6f39efd0-4ed4-45b2-a11b-0edaf48f6864")
  2084. )
  2085. (embedded_fonts no)
  2086. (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/STC_SOP-16_3.9x9.9mm_P1.27mm.step"
  2087. (offset
  2088. (xyz 0 0 0)
  2089. )
  2090. (scale
  2091. (xyz 1 1 1)
  2092. )
  2093. (rotate
  2094. (xyz 0 0 0)
  2095. )
  2096. )
  2097. )
  2098. (footprint "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical"
  2099. (layer "F.Cu")
  2100. (uuid "516cd78b-799b-4019-9630-1dbc2f75ab26")
  2101. (at 187.715 77.615)
  2102. (descr "Through hole straight pin header, 2x01, 2.54mm pitch, double rows")
  2103. (tags "Through hole pin header THT 2x01 2.54mm double row")
  2104. (property "Reference" "J4"
  2105. (at 1.27 -2.38 0)
  2106. (layer "F.SilkS")
  2107. (uuid "c7a8ed44-68cc-4ac5-b3de-d9679053e220")
  2108. (effects
  2109. (font
  2110. (size 1 1)
  2111. (thickness 0.15)
  2112. )
  2113. )
  2114. )
  2115. (property "Value" "ESP_RST"
  2116. (at 1.27 2.38 0)
  2117. (layer "F.Fab")
  2118. (uuid "2ab05ace-ed8d-417f-8576-bfb4bace521d")
  2119. (effects
  2120. (font
  2121. (size 1 1)
  2122. (thickness 0.15)
  2123. )
  2124. )
  2125. )
  2126. (property "Datasheet" ""
  2127. (at 0 0 0)
  2128. (layer "F.Fab")
  2129. (hide yes)
  2130. (uuid "ae63e9ed-8d4c-45eb-87f4-04a47595c5f5")
  2131. (effects
  2132. (font
  2133. (size 1.27 1.27)
  2134. )
  2135. )
  2136. )
  2137. (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
  2138. (at 0 0 0)
  2139. (layer "F.Fab")
  2140. (hide yes)
  2141. (uuid "64699983-3793-4348-ad90-3081f0cc69a1")
  2142. (effects
  2143. (font
  2144. (size 1.27 1.27)
  2145. )
  2146. )
  2147. )
  2148. (property "KiLib_Generator" "connector/pin_header_socket"
  2149. (at 0 0 0)
  2150. (layer "F.SilkS")
  2151. (hide yes)
  2152. (uuid "467d5298-3abe-40c2-985a-88aa6474ec71")
  2153. (effects
  2154. (font
  2155. (size 1 1)
  2156. (thickness 0.15)
  2157. )
  2158. )
  2159. )
  2160. (property ki_fp_filters "Connector*:*_2x??_*")
  2161. (path "/1b0a1d68-e8b7-4c38-9961-408ecb09dccc/bb6f10d5-cf59-4a94-836e-1f0724b83943")
  2162. (sheetname "/Communication/")
  2163. (sheetfile "communication.kicad_sch")
  2164. (units
  2165. (unit
  2166. (name "A")
  2167. (pins "1" "2")
  2168. )
  2169. )
  2170. (attr through_hole)
  2171. (duplicate_pad_numbers_are_jumpers no)
  2172. (fp_line
  2173. (start -1.38 -1.38)
  2174. (end 0 -1.38)
  2175. (stroke
  2176. (width 0.12)
  2177. (type solid)
  2178. )
  2179. (layer "F.SilkS")
  2180. (uuid "739b8881-ebcc-4adf-b562-c375e8226b04")
  2181. )
  2182. (fp_line
  2183. (start -1.38 0)
  2184. (end -1.38 -1.38)
  2185. (stroke
  2186. (width 0.12)
  2187. (type solid)
  2188. )
  2189. (layer "F.SilkS")
  2190. (uuid "7576e240-b3e2-4103-9c60-fb3ae59c5624")
  2191. )
  2192. (fp_line
  2193. (start -1.38 1.27)
  2194. (end -1.38 1.38)
  2195. (stroke
  2196. (width 0.12)
  2197. (type solid)
  2198. )
  2199. (layer "F.SilkS")
  2200. (uuid "4f6bcfef-e1fd-4827-b83b-7396181703d3")
  2201. )
  2202. (fp_line
  2203. (start -1.38 1.27)
  2204. (end 1.27 1.27)
  2205. (stroke
  2206. (width 0.12)
  2207. (type solid)
  2208. )
  2209. (layer "F.SilkS")
  2210. (uuid "c6b9cdc9-8744-43c0-8f59-b76ebed89f03")
  2211. )
  2212. (fp_line
  2213. (start -1.38 1.38)
  2214. (end 3.92 1.38)
  2215. (stroke
  2216. (width 0.12)
  2217. (type solid)
  2218. )
  2219. (layer "F.SilkS")
  2220. (uuid "a9ad56dc-1c30-411d-a274-97b7c029ff26")
  2221. )
  2222. (fp_line
  2223. (start 1.27 -1.38)
  2224. (end 3.92 -1.38)
  2225. (stroke
  2226. (width 0.12)
  2227. (type solid)
  2228. )
  2229. (layer "F.SilkS")
  2230. (uuid "030832f9-0004-4ccf-9fed-735d29b0d905")
  2231. )
  2232. (fp_line
  2233. (start 1.27 1.27)
  2234. (end 1.27 -1.38)
  2235. (stroke
  2236. (width 0.12)
  2237. (type solid)
  2238. )
  2239. (layer "F.SilkS")
  2240. (uuid "ead91309-3207-47bf-a8c9-999290206b82")
  2241. )
  2242. (fp_line
  2243. (start 3.92 -1.38)
  2244. (end 3.92 1.38)
  2245. (stroke
  2246. (width 0.12)
  2247. (type solid)
  2248. )
  2249. (layer "F.SilkS")
  2250. (uuid "4822793a-c7dc-4a42-85e0-efee4b696b43")
  2251. )
  2252. (fp_rect
  2253. (start -1.77 -1.77)
  2254. (end 4.32 1.77)
  2255. (stroke
  2256. (width 0.05)
  2257. (type solid)
  2258. )
  2259. (fill no)
  2260. (layer "F.CrtYd")
  2261. (uuid "b03810a1-77a2-470d-847b-89e7ca08aad8")
  2262. )
  2263. (fp_line
  2264. (start -1.27 0)
  2265. (end 0 -1.27)
  2266. (stroke
  2267. (width 0.1)
  2268. (type solid)
  2269. )
  2270. (layer "F.Fab")
  2271. (uuid "c5447f1a-af83-434d-adc9-876003fe141e")
  2272. )
  2273. (fp_line
  2274. (start -1.27 1.27)
  2275. (end -1.27 0)
  2276. (stroke
  2277. (width 0.1)
  2278. (type solid)
  2279. )
  2280. (layer "F.Fab")
  2281. (uuid "674e848d-3e2c-4078-be2f-07336fd073d7")
  2282. )
  2283. (fp_line
  2284. (start 0 -1.27)
  2285. (end 3.81 -1.27)
  2286. (stroke
  2287. (width 0.1)
  2288. (type solid)
  2289. )
  2290. (layer "F.Fab")
  2291. (uuid "45c9cbca-9458-4099-ac70-3272c564d26e")
  2292. )
  2293. (fp_line
  2294. (start 3.81 -1.27)
  2295. (end 3.81 1.27)
  2296. (stroke
  2297. (width 0.1)
  2298. (type solid)
  2299. )
  2300. (layer "F.Fab")
  2301. (uuid "a13ad542-6494-4af9-8308-0db782933247")
  2302. )
  2303. (fp_line
  2304. (start 3.81 1.27)
  2305. (end -1.27 1.27)
  2306. (stroke
  2307. (width 0.1)
  2308. (type solid)
  2309. )
  2310. (layer "F.Fab")
  2311. (uuid "31bdeb87-f10c-4d60-8dbe-70e18736b1de")
  2312. )
  2313. (fp_text user "${REFERENCE}"
  2314. (at 1.27 0 90)
  2315. (layer "F.Fab")
  2316. (uuid "9cd589f9-a58b-4c3a-af80-21575680cfbb")
  2317. (effects
  2318. (font
  2319. (size 1 1)
  2320. (thickness 0.15)
  2321. )
  2322. )
  2323. )
  2324. (pad "1" thru_hole rect
  2325. (at 0 0)
  2326. (size 1.7 1.7)
  2327. (drill 1)
  2328. (layers "*.Cu" "*.Mask")
  2329. (remove_unused_layers no)
  2330. (net "GND")
  2331. (pinfunction "Pin_1_1")
  2332. (pintype "passive")
  2333. (uuid "9a74242f-5c20-44ea-991b-79589066a0f0")
  2334. )
  2335. (pad "2" thru_hole circle
  2336. (at 2.54 0)
  2337. (size 1.7 1.7)
  2338. (drill 1)
  2339. (layers "*.Cu" "*.Mask")
  2340. (remove_unused_layers no)
  2341. (net "Net-(J4-Pin_2)")
  2342. (pinfunction "Pin_2_2")
  2343. (pintype "passive")
  2344. (uuid "1f2bf0c1-83dc-4f98-b49d-10b133e02723")
  2345. )
  2346. (embedded_fonts no)
  2347. (model "${KICAD10_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x01_P2.54mm_Vertical.step"
  2348. (offset
  2349. (xyz 0 0 0)
  2350. )
  2351. (scale
  2352. (xyz 1 1 1)
  2353. )
  2354. (rotate
  2355. (xyz 0 0 0)
  2356. )
  2357. )
  2358. )
  2359. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  2360. (layer "F.Cu")
  2361. (uuid "54e35aec-aaf0-417a-93d2-8f69370d71dc")
  2362. (at 116.4 105.45 -90)
  2363. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  2364. (tags "resistor handsolder")
  2365. (property "Reference" "R19"
  2366. (at 0 -1.83 90)
  2367. (layer "F.SilkS")
  2368. (uuid "d7e97175-47e4-4f13-be2b-3e8209c1045f")
  2369. (effects
  2370. (font
  2371. (size 1 1)
  2372. (thickness 0.15)
  2373. )
  2374. )
  2375. )
  2376. (property "Value" "330R"
  2377. (at 0 1.83 90)
  2378. (layer "F.Fab")
  2379. (uuid "f51fce45-80c8-477e-bad9-a614aef9bc22")
  2380. (effects
  2381. (font
  2382. (size 1 1)
  2383. (thickness 0.15)
  2384. )
  2385. )
  2386. )
  2387. (property "Datasheet" ""
  2388. (at 0 0 90)
  2389. (layer "F.Fab")
  2390. (hide yes)
  2391. (uuid "28849c49-f909-4f0f-8e3e-922abb3beaa4")
  2392. (effects
  2393. (font
  2394. (size 1.27 1.27)
  2395. )
  2396. )
  2397. )
  2398. (property "Description" "Resistor"
  2399. (at 0 0 90)
  2400. (layer "F.Fab")
  2401. (hide yes)
  2402. (uuid "1e35f2a8-6d3f-44ee-9fff-cb9fdf8a3286")
  2403. (effects
  2404. (font
  2405. (size 1.27 1.27)
  2406. )
  2407. )
  2408. )
  2409. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  2410. (at 0 0 90)
  2411. (layer "F.SilkS")
  2412. (hide yes)
  2413. (uuid "28a082f0-112a-4f17-aca5-fe06f6de439e")
  2414. (effects
  2415. (font
  2416. (size 1 1)
  2417. (thickness 0.15)
  2418. )
  2419. )
  2420. )
  2421. (property ki_fp_filters "R_*")
  2422. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/c164f6f6-38d0-4bb9-986e-34b227fe3e0f")
  2423. (sheetname "/IO/")
  2424. (sheetfile "io.kicad_sch")
  2425. (units
  2426. (unit
  2427. (name "A")
  2428. (pins "1" "2")
  2429. )
  2430. )
  2431. (attr smd)
  2432. (duplicate_pad_numbers_are_jumpers no)
  2433. (fp_line
  2434. (start -0.727064 0.91)
  2435. (end 0.727064 0.91)
  2436. (stroke
  2437. (width 0.12)
  2438. (type solid)
  2439. )
  2440. (layer "F.SilkS")
  2441. (uuid "0ec441c9-70c7-46e7-a2f9-79d74c411404")
  2442. )
  2443. (fp_line
  2444. (start -0.727064 -0.91)
  2445. (end 0.727064 -0.91)
  2446. (stroke
  2447. (width 0.12)
  2448. (type solid)
  2449. )
  2450. (layer "F.SilkS")
  2451. (uuid "322e545b-9bce-470c-aa69-1911da1204d0")
  2452. )
  2453. (fp_rect
  2454. (start -2.45 -1.13)
  2455. (end 2.45 1.13)
  2456. (stroke
  2457. (width 0.05)
  2458. (type solid)
  2459. )
  2460. (fill no)
  2461. (layer "F.CrtYd")
  2462. (uuid "0024d61f-7775-4eee-8f9b-411c6f72ef25")
  2463. )
  2464. (fp_rect
  2465. (start -1.6 -0.8)
  2466. (end 1.6 0.8)
  2467. (stroke
  2468. (width 0.1)
  2469. (type solid)
  2470. )
  2471. (fill no)
  2472. (layer "F.Fab")
  2473. (uuid "9dc66ecc-cf73-4b14-a48a-7ee8dd537bf5")
  2474. )
  2475. (fp_text user "${REFERENCE}"
  2476. (at 0 0 90)
  2477. (layer "F.Fab")
  2478. (uuid "670b6edb-e21c-4951-b1b9-d7e158008eca")
  2479. (effects
  2480. (font
  2481. (size 0.8 0.8)
  2482. (thickness 0.12)
  2483. )
  2484. )
  2485. )
  2486. (pad "1" smd roundrect
  2487. (at -1.55 0 270)
  2488. (size 1.3 1.75)
  2489. (layers "F.Cu" "F.Mask" "F.Paste")
  2490. (roundrect_rratio 0.192308)
  2491. (net "/IO/STATUS")
  2492. (pintype "passive")
  2493. (uuid "bc330e13-2e7c-4174-affd-bba6d00e46f6")
  2494. )
  2495. (pad "2" smd roundrect
  2496. (at 1.55 0 270)
  2497. (size 1.3 1.75)
  2498. (layers "F.Cu" "F.Mask" "F.Paste")
  2499. (roundrect_rratio 0.192308)
  2500. (net "Net-(D6-A)")
  2501. (pintype "passive")
  2502. (uuid "f8bade11-77ad-4826-aac9-80d66c8779ce")
  2503. )
  2504. (embedded_fonts no)
  2505. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  2506. (offset
  2507. (xyz 0 0 0)
  2508. )
  2509. (scale
  2510. (xyz 1 1 1)
  2511. )
  2512. (rotate
  2513. (xyz 0 0 0)
  2514. )
  2515. )
  2516. )
  2517. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  2518. (layer "F.Cu")
  2519. (uuid "59c03875-09b8-4b49-82cf-9e1c78da97ed")
  2520. (at 142.05 65.05)
  2521. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  2522. (tags "capacitor handsolder")
  2523. (property "Reference" "C18"
  2524. (at 0 -1.85 0)
  2525. (layer "F.SilkS")
  2526. (uuid "69fcca22-6e1c-49e3-9355-cb61f9f462a7")
  2527. (effects
  2528. (font
  2529. (size 1 1)
  2530. (thickness 0.15)
  2531. )
  2532. )
  2533. )
  2534. (property "Value" "33u"
  2535. (at 0 1.85 0)
  2536. (layer "F.Fab")
  2537. (uuid "62059472-a204-41df-ae6a-1d18293fef18")
  2538. (effects
  2539. (font
  2540. (size 1 1)
  2541. (thickness 0.15)
  2542. )
  2543. )
  2544. )
  2545. (property "Datasheet" ""
  2546. (at 0 0 0)
  2547. (layer "F.Fab")
  2548. (hide yes)
  2549. (uuid "4967812e-4f2f-4af4-874e-f8520dcbba5f")
  2550. (effects
  2551. (font
  2552. (size 1.27 1.27)
  2553. )
  2554. )
  2555. )
  2556. (property "Description" "Unpolarized capacitor"
  2557. (at 0 0 0)
  2558. (layer "F.Fab")
  2559. (hide yes)
  2560. (uuid "d75149c5-943a-458d-84fb-07957c6877f4")
  2561. (effects
  2562. (font
  2563. (size 1.27 1.27)
  2564. )
  2565. )
  2566. )
  2567. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  2568. (at 0 0 0)
  2569. (layer "F.SilkS")
  2570. (hide yes)
  2571. (uuid "ae796f9f-946b-46a7-8281-7fa4666974b6")
  2572. (effects
  2573. (font
  2574. (size 1 1)
  2575. (thickness 0.15)
  2576. )
  2577. )
  2578. )
  2579. (property ki_fp_filters "C_*")
  2580. (path "/490a7643-0f07-4350-a6a3-47ed0b11455f/2903bfa4-4df9-439f-a643-9ef6ce174b36")
  2581. (sheetname "/Power section/")
  2582. (sheetfile "power_section.kicad_sch")
  2583. (units
  2584. (unit
  2585. (name "A")
  2586. (pins "1" "2")
  2587. )
  2588. )
  2589. (attr smd)
  2590. (duplicate_pad_numbers_are_jumpers no)
  2591. (fp_line
  2592. (start -0.711252 -0.91)
  2593. (end 0.711252 -0.91)
  2594. (stroke
  2595. (width 0.12)
  2596. (type solid)
  2597. )
  2598. (layer "F.SilkS")
  2599. (uuid "6751acad-2e1a-457e-b92d-5e159cf15e46")
  2600. )
  2601. (fp_line
  2602. (start -0.711252 0.91)
  2603. (end 0.711252 0.91)
  2604. (stroke
  2605. (width 0.12)
  2606. (type solid)
  2607. )
  2608. (layer "F.SilkS")
  2609. (uuid "7dfef7cc-3249-48d0-8515-4e9e3ef6b192")
  2610. )
  2611. (fp_rect
  2612. (start -2.48 -1.15)
  2613. (end 2.48 1.15)
  2614. (stroke
  2615. (width 0.05)
  2616. (type solid)
  2617. )
  2618. (fill no)
  2619. (layer "F.CrtYd")
  2620. (uuid "db22780b-d6ec-4e4e-88f0-1e33f9f984b6")
  2621. )
  2622. (fp_rect
  2623. (start -1.6 -0.8)
  2624. (end 1.6 0.8)
  2625. (stroke
  2626. (width 0.1)
  2627. (type solid)
  2628. )
  2629. (fill no)
  2630. (layer "F.Fab")
  2631. (uuid "22288751-0d2f-4a1b-9dc3-918a27a5632a")
  2632. )
  2633. (fp_text user "${REFERENCE}"
  2634. (at 0 0 0)
  2635. (layer "F.Fab")
  2636. (uuid "11d53359-9a2e-42bf-9fbf-7ddbfa379f0e")
  2637. (effects
  2638. (font
  2639. (size 0.8 0.8)
  2640. (thickness 0.12)
  2641. )
  2642. )
  2643. )
  2644. (pad "1" smd roundrect
  2645. (at -1.5625 0)
  2646. (size 1.325 1.8)
  2647. (layers "F.Cu" "F.Mask" "F.Paste")
  2648. (roundrect_rratio 0.188679)
  2649. (net "+3V3")
  2650. (pintype "passive")
  2651. (uuid "626351be-2855-412d-ace8-24d59dde4a43")
  2652. )
  2653. (pad "2" smd roundrect
  2654. (at 1.5625 0)
  2655. (size 1.325 1.8)
  2656. (layers "F.Cu" "F.Mask" "F.Paste")
  2657. (roundrect_rratio 0.188679)
  2658. (net "GND")
  2659. (pintype "passive")
  2660. (uuid "7e6cac1c-54df-4aa5-ad1a-ed9290a30a6c")
  2661. )
  2662. (embedded_fonts no)
  2663. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  2664. (offset
  2665. (xyz 0 0 0)
  2666. )
  2667. (scale
  2668. (xyz 1 1 1)
  2669. )
  2670. (rotate
  2671. (xyz 0 0 0)
  2672. )
  2673. )
  2674. )
  2675. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  2676. (layer "F.Cu")
  2677. (uuid "5dab368c-528e-4343-aad8-4f341a0c47c7")
  2678. (at 188.425 88.205)
  2679. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  2680. (tags "capacitor handsolder")
  2681. (property "Reference" "C10"
  2682. (at 0 -1.85 0)
  2683. (layer "F.SilkS")
  2684. (uuid "68b59ea5-8a81-44e1-b2f7-4b40dfe69535")
  2685. (effects
  2686. (font
  2687. (size 1 1)
  2688. (thickness 0.15)
  2689. )
  2690. )
  2691. )
  2692. (property "Value" "100n"
  2693. (at 0 1.85 0)
  2694. (layer "F.Fab")
  2695. (uuid "c1852a7f-0aef-4eab-8afa-007e31a6ccf2")
  2696. (effects
  2697. (font
  2698. (size 1 1)
  2699. (thickness 0.15)
  2700. )
  2701. )
  2702. )
  2703. (property "Datasheet" ""
  2704. (at 0 0 0)
  2705. (layer "F.Fab")
  2706. (hide yes)
  2707. (uuid "7fd3dee8-abfa-485e-bfd5-418a281bd7a5")
  2708. (effects
  2709. (font
  2710. (size 1.27 1.27)
  2711. )
  2712. )
  2713. )
  2714. (property "Description" "Unpolarized capacitor"
  2715. (at 0 0 0)
  2716. (layer "F.Fab")
  2717. (hide yes)
  2718. (uuid "7fbfef1a-9ad8-4bba-9d5a-6e5a817c0ad5")
  2719. (effects
  2720. (font
  2721. (size 1.27 1.27)
  2722. )
  2723. )
  2724. )
  2725. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  2726. (at 0 0 0)
  2727. (layer "F.SilkS")
  2728. (hide yes)
  2729. (uuid "b2620c6f-538d-41a6-b342-0406f031a2d9")
  2730. (effects
  2731. (font
  2732. (size 1 1)
  2733. (thickness 0.15)
  2734. )
  2735. )
  2736. )
  2737. (property ki_fp_filters "C_*")
  2738. (path "/1b0a1d68-e8b7-4c38-9961-408ecb09dccc/708431c3-b935-4ab6-86f4-60cad7d7edff")
  2739. (sheetname "/Communication/")
  2740. (sheetfile "communication.kicad_sch")
  2741. (units
  2742. (unit
  2743. (name "A")
  2744. (pins "1" "2")
  2745. )
  2746. )
  2747. (attr smd)
  2748. (duplicate_pad_numbers_are_jumpers no)
  2749. (fp_line
  2750. (start -0.711252 -0.91)
  2751. (end 0.711252 -0.91)
  2752. (stroke
  2753. (width 0.12)
  2754. (type solid)
  2755. )
  2756. (layer "F.SilkS")
  2757. (uuid "ebe68be7-14d5-4c41-a15a-eb5f8d16aa89")
  2758. )
  2759. (fp_line
  2760. (start -0.711252 0.91)
  2761. (end 0.711252 0.91)
  2762. (stroke
  2763. (width 0.12)
  2764. (type solid)
  2765. )
  2766. (layer "F.SilkS")
  2767. (uuid "912cf7c5-d70d-4dd1-a8a2-38f2a37ff1dd")
  2768. )
  2769. (fp_rect
  2770. (start -2.48 -1.15)
  2771. (end 2.48 1.15)
  2772. (stroke
  2773. (width 0.05)
  2774. (type solid)
  2775. )
  2776. (fill no)
  2777. (layer "F.CrtYd")
  2778. (uuid "f8032457-307d-4737-88db-dd8ef267c7ea")
  2779. )
  2780. (fp_rect
  2781. (start -1.6 -0.8)
  2782. (end 1.6 0.8)
  2783. (stroke
  2784. (width 0.1)
  2785. (type solid)
  2786. )
  2787. (fill no)
  2788. (layer "F.Fab")
  2789. (uuid "1a972483-0281-4969-bc79-b85345c7afbc")
  2790. )
  2791. (fp_text user "${REFERENCE}"
  2792. (at 0 0 0)
  2793. (layer "F.Fab")
  2794. (uuid "8439b85f-18bc-419c-94f4-b16c687c3e1f")
  2795. (effects
  2796. (font
  2797. (size 0.8 0.8)
  2798. (thickness 0.12)
  2799. )
  2800. )
  2801. )
  2802. (pad "1" smd roundrect
  2803. (at -1.5625 0)
  2804. (size 1.325 1.8)
  2805. (layers "F.Cu" "F.Mask" "F.Paste")
  2806. (roundrect_rratio 0.188679)
  2807. (net "+3V3")
  2808. (pintype "passive")
  2809. (uuid "95734b32-0b34-4261-ad64-3d9395fd0f8d")
  2810. )
  2811. (pad "2" smd roundrect
  2812. (at 1.5625 0)
  2813. (size 1.325 1.8)
  2814. (layers "F.Cu" "F.Mask" "F.Paste")
  2815. (roundrect_rratio 0.188679)
  2816. (net "GND")
  2817. (pintype "passive")
  2818. (uuid "ce70d65c-838a-4921-b359-e944e0aa05be")
  2819. )
  2820. (embedded_fonts no)
  2821. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  2822. (offset
  2823. (xyz 0 0 0)
  2824. )
  2825. (scale
  2826. (xyz 1 1 1)
  2827. )
  2828. (rotate
  2829. (xyz 0 0 0)
  2830. )
  2831. )
  2832. )
  2833. (footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
  2834. (layer "F.Cu")
  2835. (uuid "644d4b91-9668-4a23-983f-600f3efc012e")
  2836. (at 81.46 108.55 -90)
  2837. (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)")
  2838. (tags "LED handsolder")
  2839. (property "Reference" "D8"
  2840. (at 0 -1.83 90)
  2841. (layer "F.SilkS")
  2842. (uuid "97943530-3a81-4a84-b25d-a6651d998159")
  2843. (effects
  2844. (font
  2845. (size 1 1)
  2846. (thickness 0.15)
  2847. )
  2848. )
  2849. )
  2850. (property "Value" "RED"
  2851. (at 0 1.83 90)
  2852. (layer "F.Fab")
  2853. (uuid "0c03dc80-051e-49ce-a47e-8db4152db03f")
  2854. (effects
  2855. (font
  2856. (size 1 1)
  2857. (thickness 0.15)
  2858. )
  2859. )
  2860. )
  2861. (property "Datasheet" ""
  2862. (at 0 0 90)
  2863. (layer "F.Fab")
  2864. (hide yes)
  2865. (uuid "2f001025-81e4-42e3-b479-3f9736547411")
  2866. (effects
  2867. (font
  2868. (size 1.27 1.27)
  2869. )
  2870. )
  2871. )
  2872. (property "Description" "Light emitting diode"
  2873. (at 0 0 90)
  2874. (layer "F.Fab")
  2875. (hide yes)
  2876. (uuid "8bf6fa58-014a-4e1a-8b65-457c9fa38d90")
  2877. (effects
  2878. (font
  2879. (size 1.27 1.27)
  2880. )
  2881. )
  2882. )
  2883. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  2884. (at 0 0 90)
  2885. (layer "F.SilkS")
  2886. (hide yes)
  2887. (uuid "ff6eb627-2262-4272-9a3b-a3e6d60554f8")
  2888. (effects
  2889. (font
  2890. (size 1 1)
  2891. (thickness 0.15)
  2892. )
  2893. )
  2894. )
  2895. (property "Sim.Pins" "1=K 2=A"
  2896. (at 0 0 270)
  2897. (unlocked yes)
  2898. (layer "F.Fab")
  2899. (hide yes)
  2900. (uuid "dcec1f10-f941-420c-9ed4-7b9ee6849cd0")
  2901. (effects
  2902. (font
  2903. (size 1 1)
  2904. (thickness 0.15)
  2905. )
  2906. )
  2907. )
  2908. (property ki_fp_filters "LED* LED_SMD:* LED_THT:*")
  2909. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/154576c5-719f-406b-ac11-072d7ee6136a")
  2910. (sheetname "/IO/")
  2911. (sheetfile "io.kicad_sch")
  2912. (units
  2913. (unit
  2914. (name "A")
  2915. (pins "1" "2")
  2916. )
  2917. )
  2918. (attr smd)
  2919. (duplicate_pad_numbers_are_jumpers no)
  2920. (fp_line
  2921. (start -2.46 1.135)
  2922. (end 1.6 1.135)
  2923. (stroke
  2924. (width 0.12)
  2925. (type solid)
  2926. )
  2927. (layer "F.SilkS")
  2928. (uuid "4fda8e40-421d-4c16-bbd1-53810b504622")
  2929. )
  2930. (fp_line
  2931. (start -2.46 -1.135)
  2932. (end -2.46 1.135)
  2933. (stroke
  2934. (width 0.12)
  2935. (type solid)
  2936. )
  2937. (layer "F.SilkS")
  2938. (uuid "071ad888-6436-4652-9cef-86a736da9457")
  2939. )
  2940. (fp_line
  2941. (start 1.6 -1.135)
  2942. (end -2.46 -1.135)
  2943. (stroke
  2944. (width 0.12)
  2945. (type solid)
  2946. )
  2947. (layer "F.SilkS")
  2948. (uuid "0fd495f0-ff57-463a-a4d3-fb232a837271")
  2949. )
  2950. (fp_rect
  2951. (start -2.45 -1.13)
  2952. (end 2.45 1.13)
  2953. (stroke
  2954. (width 0.05)
  2955. (type solid)
  2956. )
  2957. (fill no)
  2958. (layer "F.CrtYd")
  2959. (uuid "7574fb5e-af33-4dd4-9ae7-9d5ad73483a1")
  2960. )
  2961. (fp_line
  2962. (start -1.6 0.8)
  2963. (end 1.6 0.8)
  2964. (stroke
  2965. (width 0.1)
  2966. (type solid)
  2967. )
  2968. (layer "F.Fab")
  2969. (uuid "4133680f-8029-40f2-9f69-d676ae49aa92")
  2970. )
  2971. (fp_line
  2972. (start 1.6 0.8)
  2973. (end 1.6 -0.8)
  2974. (stroke
  2975. (width 0.1)
  2976. (type solid)
  2977. )
  2978. (layer "F.Fab")
  2979. (uuid "def4c71f-109c-4384-995f-397243d6664a")
  2980. )
  2981. (fp_line
  2982. (start -1.6 -0.4)
  2983. (end -1.6 0.8)
  2984. (stroke
  2985. (width 0.1)
  2986. (type solid)
  2987. )
  2988. (layer "F.Fab")
  2989. (uuid "e6722b2c-15ca-4262-b935-dd9eb82b7b53")
  2990. )
  2991. (fp_line
  2992. (start -1.2 -0.8)
  2993. (end -1.6 -0.4)
  2994. (stroke
  2995. (width 0.1)
  2996. (type solid)
  2997. )
  2998. (layer "F.Fab")
  2999. (uuid "7435c6f7-7599-42e1-98e9-9ad85b2915a3")
  3000. )
  3001. (fp_line
  3002. (start 1.6 -0.8)
  3003. (end -1.2 -0.8)
  3004. (stroke
  3005. (width 0.1)
  3006. (type solid)
  3007. )
  3008. (layer "F.Fab")
  3009. (uuid "6ed36678-f4ea-4a1b-8542-2bc2d171d728")
  3010. )
  3011. (fp_text user "${REFERENCE}"
  3012. (at 0 0 90)
  3013. (layer "F.Fab")
  3014. (uuid "a08b0f4f-17e3-459a-ba67-d2e0fa19adba")
  3015. (effects
  3016. (font
  3017. (size 0.8 0.8)
  3018. (thickness 0.12)
  3019. )
  3020. )
  3021. )
  3022. (pad "1" smd roundrect
  3023. (at -1.4875 0 270)
  3024. (size 1.425 1.75)
  3025. (layers "F.Cu" "F.Mask" "F.Paste")
  3026. (roundrect_rratio 0.175439)
  3027. (net "GND")
  3028. (pinfunction "K_1")
  3029. (pintype "passive")
  3030. (uuid "7184ce7e-9490-403c-a543-6aa91857f24e")
  3031. )
  3032. (pad "2" smd roundrect
  3033. (at 1.4875 0 270)
  3034. (size 1.425 1.75)
  3035. (layers "F.Cu" "F.Mask" "F.Paste")
  3036. (roundrect_rratio 0.175439)
  3037. (net "Net-(D8-A)")
  3038. (pinfunction "A_2")
  3039. (pintype "passive")
  3040. (uuid "60dc1292-1c60-41f2-89ea-f78f6b8c2c68")
  3041. )
  3042. (embedded_fonts no)
  3043. (model "${KICAD10_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.step"
  3044. (offset
  3045. (xyz 0 0 0)
  3046. )
  3047. (scale
  3048. (xyz 1 1 1)
  3049. )
  3050. (rotate
  3051. (xyz 0 0 0)
  3052. )
  3053. )
  3054. )
  3055. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3056. (layer "F.Cu")
  3057. (uuid "66473658-3e69-40e5-b129-6dab583fc7c0")
  3058. (at 109.6 88.1 -90)
  3059. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  3060. (tags "resistor handsolder")
  3061. (property "Reference" "R8"
  3062. (at 0 -1.83 90)
  3063. (layer "F.SilkS")
  3064. (uuid "730e6bc0-df07-49ab-a7a4-8ff1b69320d4")
  3065. (effects
  3066. (font
  3067. (size 1 1)
  3068. (thickness 0.15)
  3069. )
  3070. )
  3071. )
  3072. (property "Value" "10k"
  3073. (at 0 1.83 90)
  3074. (layer "F.Fab")
  3075. (uuid "da276e2c-7374-4e9e-b921-6e582ed086ef")
  3076. (effects
  3077. (font
  3078. (size 1 1)
  3079. (thickness 0.15)
  3080. )
  3081. )
  3082. )
  3083. (property "Datasheet" ""
  3084. (at 0 0 90)
  3085. (layer "F.Fab")
  3086. (hide yes)
  3087. (uuid "fb347f59-158f-475d-9753-1b22ccfa2c5e")
  3088. (effects
  3089. (font
  3090. (size 1.27 1.27)
  3091. )
  3092. )
  3093. )
  3094. (property "Description" "Resistor"
  3095. (at 0 0 90)
  3096. (layer "F.Fab")
  3097. (hide yes)
  3098. (uuid "61663192-2da7-4687-a8be-6213dea8070b")
  3099. (effects
  3100. (font
  3101. (size 1.27 1.27)
  3102. )
  3103. )
  3104. )
  3105. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  3106. (at 0 0 90)
  3107. (layer "F.SilkS")
  3108. (hide yes)
  3109. (uuid "b650b5a0-3d70-4ecd-bd24-385374f55752")
  3110. (effects
  3111. (font
  3112. (size 1 1)
  3113. (thickness 0.15)
  3114. )
  3115. )
  3116. )
  3117. (property ki_fp_filters "R_*")
  3118. (path "/61d90625-cf7d-4b0e-a402-280f678c738c/5bda824c-84cd-489d-adac-534bc86e0001")
  3119. (sheetname "/IMU/")
  3120. (sheetfile "imu.kicad_sch")
  3121. (units
  3122. (unit
  3123. (name "A")
  3124. (pins "1" "2")
  3125. )
  3126. )
  3127. (attr smd)
  3128. (duplicate_pad_numbers_are_jumpers no)
  3129. (fp_line
  3130. (start -0.727064 0.91)
  3131. (end 0.727064 0.91)
  3132. (stroke
  3133. (width 0.12)
  3134. (type solid)
  3135. )
  3136. (layer "F.SilkS")
  3137. (uuid "9e355c44-3530-4f54-96d0-a248001c6fb4")
  3138. )
  3139. (fp_line
  3140. (start -0.727064 -0.91)
  3141. (end 0.727064 -0.91)
  3142. (stroke
  3143. (width 0.12)
  3144. (type solid)
  3145. )
  3146. (layer "F.SilkS")
  3147. (uuid "a298be4c-8f84-4e11-be49-69e31116c82c")
  3148. )
  3149. (fp_rect
  3150. (start -2.45 -1.13)
  3151. (end 2.45 1.13)
  3152. (stroke
  3153. (width 0.05)
  3154. (type solid)
  3155. )
  3156. (fill no)
  3157. (layer "F.CrtYd")
  3158. (uuid "748c6789-ea23-4b58-80bd-252ca66f1005")
  3159. )
  3160. (fp_rect
  3161. (start -1.6 -0.8)
  3162. (end 1.6 0.8)
  3163. (stroke
  3164. (width 0.1)
  3165. (type solid)
  3166. )
  3167. (fill no)
  3168. (layer "F.Fab")
  3169. (uuid "1af42504-887e-47bd-8346-2265e28b0618")
  3170. )
  3171. (fp_text user "${REFERENCE}"
  3172. (at 0 0 90)
  3173. (layer "F.Fab")
  3174. (uuid "087ebe96-9b94-43c4-a0cb-9f48de72e11f")
  3175. (effects
  3176. (font
  3177. (size 0.8 0.8)
  3178. (thickness 0.12)
  3179. )
  3180. )
  3181. )
  3182. (pad "1" smd roundrect
  3183. (at -1.55 0 270)
  3184. (size 1.3 1.75)
  3185. (layers "F.Cu" "F.Mask" "F.Paste")
  3186. (roundrect_rratio 0.192308)
  3187. (net "+3V3")
  3188. (pintype "passive")
  3189. (uuid "f9bf43df-6cbb-42c4-ac7b-c06cc5d81234")
  3190. )
  3191. (pad "2" smd roundrect
  3192. (at 1.55 0 270)
  3193. (size 1.3 1.75)
  3194. (layers "F.Cu" "F.Mask" "F.Paste")
  3195. (roundrect_rratio 0.192308)
  3196. (net "/IMU/SCL")
  3197. (pintype "passive")
  3198. (uuid "0b5488ed-6b40-445b-beff-5b014cb1b0ba")
  3199. )
  3200. (embedded_fonts no)
  3201. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  3202. (offset
  3203. (xyz 0 0 0)
  3204. )
  3205. (scale
  3206. (xyz 1 1 1)
  3207. )
  3208. (rotate
  3209. (xyz 0 0 0)
  3210. )
  3211. )
  3212. )
  3213. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3214. (layer "F.Cu")
  3215. (uuid "6953a25d-7ce4-4186-b6cd-9778d9d37885")
  3216. (at 107.25 88.1 -90)
  3217. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  3218. (tags "resistor handsolder")
  3219. (property "Reference" "R7"
  3220. (at 0 -1.83 90)
  3221. (layer "F.SilkS")
  3222. (uuid "23d09b1c-0c20-434c-8bfe-8295e519fc32")
  3223. (effects
  3224. (font
  3225. (size 1 1)
  3226. (thickness 0.15)
  3227. )
  3228. )
  3229. )
  3230. (property "Value" "10k"
  3231. (at 0 1.83 90)
  3232. (layer "F.Fab")
  3233. (uuid "b0644779-670b-4aef-ba81-211999d94676")
  3234. (effects
  3235. (font
  3236. (size 1 1)
  3237. (thickness 0.15)
  3238. )
  3239. )
  3240. )
  3241. (property "Datasheet" ""
  3242. (at 0 0 90)
  3243. (layer "F.Fab")
  3244. (hide yes)
  3245. (uuid "6a4c9e9d-42b9-428c-9f27-0569fbe10a55")
  3246. (effects
  3247. (font
  3248. (size 1.27 1.27)
  3249. )
  3250. )
  3251. )
  3252. (property "Description" "Resistor"
  3253. (at 0 0 90)
  3254. (layer "F.Fab")
  3255. (hide yes)
  3256. (uuid "a0919a93-922b-4b5a-a577-16ee8b4ccff6")
  3257. (effects
  3258. (font
  3259. (size 1.27 1.27)
  3260. )
  3261. )
  3262. )
  3263. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  3264. (at 0 0 90)
  3265. (layer "F.SilkS")
  3266. (hide yes)
  3267. (uuid "92ea9fc5-f1f0-4dfc-ba33-158f6f096502")
  3268. (effects
  3269. (font
  3270. (size 1 1)
  3271. (thickness 0.15)
  3272. )
  3273. )
  3274. )
  3275. (property ki_fp_filters "R_*")
  3276. (path "/61d90625-cf7d-4b0e-a402-280f678c738c/51f14a64-678c-4e33-b346-a62f3d2169a4")
  3277. (sheetname "/IMU/")
  3278. (sheetfile "imu.kicad_sch")
  3279. (units
  3280. (unit
  3281. (name "A")
  3282. (pins "1" "2")
  3283. )
  3284. )
  3285. (attr smd)
  3286. (duplicate_pad_numbers_are_jumpers no)
  3287. (fp_line
  3288. (start -0.727064 0.91)
  3289. (end 0.727064 0.91)
  3290. (stroke
  3291. (width 0.12)
  3292. (type solid)
  3293. )
  3294. (layer "F.SilkS")
  3295. (uuid "8d99a023-c9db-4b15-8de9-fa8ba33a8946")
  3296. )
  3297. (fp_line
  3298. (start -0.727064 -0.91)
  3299. (end 0.727064 -0.91)
  3300. (stroke
  3301. (width 0.12)
  3302. (type solid)
  3303. )
  3304. (layer "F.SilkS")
  3305. (uuid "3ca3fc02-caec-4751-8748-74dbf23e59cb")
  3306. )
  3307. (fp_rect
  3308. (start -2.45 -1.13)
  3309. (end 2.45 1.13)
  3310. (stroke
  3311. (width 0.05)
  3312. (type solid)
  3313. )
  3314. (fill no)
  3315. (layer "F.CrtYd")
  3316. (uuid "95af47a0-5250-4260-aa36-1becffb3e9ad")
  3317. )
  3318. (fp_rect
  3319. (start -1.6 -0.8)
  3320. (end 1.6 0.8)
  3321. (stroke
  3322. (width 0.1)
  3323. (type solid)
  3324. )
  3325. (fill no)
  3326. (layer "F.Fab")
  3327. (uuid "ce17837e-51b3-421b-b862-6b317366b630")
  3328. )
  3329. (fp_text user "${REFERENCE}"
  3330. (at 0 0 90)
  3331. (layer "F.Fab")
  3332. (uuid "d5080bfb-2a99-4d6f-af2a-5eb504197821")
  3333. (effects
  3334. (font
  3335. (size 0.8 0.8)
  3336. (thickness 0.12)
  3337. )
  3338. )
  3339. )
  3340. (pad "1" smd roundrect
  3341. (at -1.55 0 270)
  3342. (size 1.3 1.75)
  3343. (layers "F.Cu" "F.Mask" "F.Paste")
  3344. (roundrect_rratio 0.192308)
  3345. (net "+3V3")
  3346. (pintype "passive")
  3347. (uuid "69b56b8f-d5f8-4011-864e-cdfa370c0553")
  3348. )
  3349. (pad "2" smd roundrect
  3350. (at 1.55 0 270)
  3351. (size 1.3 1.75)
  3352. (layers "F.Cu" "F.Mask" "F.Paste")
  3353. (roundrect_rratio 0.192308)
  3354. (net "/IMU/SDA")
  3355. (pintype "passive")
  3356. (uuid "0d46dd49-54c4-44f5-b10e-20aed1cf5549")
  3357. )
  3358. (embedded_fonts no)
  3359. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  3360. (offset
  3361. (xyz 0 0 0)
  3362. )
  3363. (scale
  3364. (xyz 1 1 1)
  3365. )
  3366. (rotate
  3367. (xyz 0 0 0)
  3368. )
  3369. )
  3370. )
  3371. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3372. (layer "F.Cu")
  3373. (uuid "69f7d0c0-475d-422c-8345-44ee4f31572c")
  3374. (at 199.785 98.715)
  3375. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  3376. (tags "resistor handsolder")
  3377. (property "Reference" "R26"
  3378. (at 0 -1.83 0)
  3379. (layer "F.SilkS")
  3380. (uuid "7165d317-ec46-44ae-a7ba-e325922a262b")
  3381. (effects
  3382. (font
  3383. (size 1 1)
  3384. (thickness 0.15)
  3385. )
  3386. )
  3387. )
  3388. (property "Value" "10k"
  3389. (at 0 1.83 0)
  3390. (layer "F.Fab")
  3391. (uuid "aae93488-58b5-426e-bfe7-bb5948e71b9c")
  3392. (effects
  3393. (font
  3394. (size 1 1)
  3395. (thickness 0.15)
  3396. )
  3397. )
  3398. )
  3399. (property "Datasheet" ""
  3400. (at 0 0 0)
  3401. (layer "F.Fab")
  3402. (hide yes)
  3403. (uuid "0aad6563-8e91-4268-8e7c-0e23892a31ca")
  3404. (effects
  3405. (font
  3406. (size 1.27 1.27)
  3407. )
  3408. )
  3409. )
  3410. (property "Description" "Resistor"
  3411. (at 0 0 0)
  3412. (layer "F.Fab")
  3413. (hide yes)
  3414. (uuid "a2448086-c6ce-46cb-aa71-4e4b45fe1444")
  3415. (effects
  3416. (font
  3417. (size 1.27 1.27)
  3418. )
  3419. )
  3420. )
  3421. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  3422. (at 0 0 0)
  3423. (layer "F.SilkS")
  3424. (hide yes)
  3425. (uuid "8a2d9b39-43d4-4f9b-b02b-41c7286eec61")
  3426. (effects
  3427. (font
  3428. (size 1 1)
  3429. (thickness 0.15)
  3430. )
  3431. )
  3432. )
  3433. (property ki_fp_filters "R_*")
  3434. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/fd04ddc7-5236-4f57-a5e2-e2d152620981")
  3435. (sheetname "/IO/")
  3436. (sheetfile "io.kicad_sch")
  3437. (units
  3438. (unit
  3439. (name "A")
  3440. (pins "1" "2")
  3441. )
  3442. )
  3443. (attr smd)
  3444. (duplicate_pad_numbers_are_jumpers no)
  3445. (fp_line
  3446. (start -0.727064 -0.91)
  3447. (end 0.727064 -0.91)
  3448. (stroke
  3449. (width 0.12)
  3450. (type solid)
  3451. )
  3452. (layer "F.SilkS")
  3453. (uuid "31192153-639d-4d93-9d34-e1be9f7d76c5")
  3454. )
  3455. (fp_line
  3456. (start -0.727064 0.91)
  3457. (end 0.727064 0.91)
  3458. (stroke
  3459. (width 0.12)
  3460. (type solid)
  3461. )
  3462. (layer "F.SilkS")
  3463. (uuid "ba2cbd56-65ea-4361-bbbd-754bae044e04")
  3464. )
  3465. (fp_rect
  3466. (start -2.45 -1.13)
  3467. (end 2.45 1.13)
  3468. (stroke
  3469. (width 0.05)
  3470. (type solid)
  3471. )
  3472. (fill no)
  3473. (layer "F.CrtYd")
  3474. (uuid "098efa51-9f8a-4737-a8fe-828203c4c886")
  3475. )
  3476. (fp_rect
  3477. (start -1.6 -0.8)
  3478. (end 1.6 0.8)
  3479. (stroke
  3480. (width 0.1)
  3481. (type solid)
  3482. )
  3483. (fill no)
  3484. (layer "F.Fab")
  3485. (uuid "8312eab4-e7f3-4813-96b2-e54e124ca551")
  3486. )
  3487. (fp_text user "${REFERENCE}"
  3488. (at 0 0 0)
  3489. (layer "F.Fab")
  3490. (uuid "64f22366-088b-41be-9c57-6b3a1e2d9a9f")
  3491. (effects
  3492. (font
  3493. (size 0.8 0.8)
  3494. (thickness 0.12)
  3495. )
  3496. )
  3497. )
  3498. (pad "1" smd roundrect
  3499. (at -1.55 0)
  3500. (size 1.3 1.75)
  3501. (layers "F.Cu" "F.Mask" "F.Paste")
  3502. (roundrect_rratio 0.192308)
  3503. (net "+5V")
  3504. (pintype "passive")
  3505. (uuid "c9c4f134-dad7-40bc-ac1a-cce12c6070e0")
  3506. )
  3507. (pad "2" smd roundrect
  3508. (at 1.55 0)
  3509. (size 1.3 1.75)
  3510. (layers "F.Cu" "F.Mask" "F.Paste")
  3511. (roundrect_rratio 0.192308)
  3512. (net "Net-(Q5-Pad3)")
  3513. (pintype "passive")
  3514. (uuid "1fab36e2-47a8-4ca1-b89b-0c561972e151")
  3515. )
  3516. (embedded_fonts no)
  3517. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  3518. (offset
  3519. (xyz 0 0 0)
  3520. )
  3521. (scale
  3522. (xyz 1 1 1)
  3523. )
  3524. (rotate
  3525. (xyz 0 0 0)
  3526. )
  3527. )
  3528. )
  3529. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3530. (layer "F.Cu")
  3531. (uuid "6ccc886e-4a3c-4ee2-99f5-191460bac9be")
  3532. (at 188.395 84.875)
  3533. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  3534. (tags "resistor handsolder")
  3535. (property "Reference" "R18"
  3536. (at 0 -1.83 0)
  3537. (layer "F.SilkS")
  3538. (uuid "f746fbb9-8276-44c5-9ef1-b8ee9d69398e")
  3539. (effects
  3540. (font
  3541. (size 1 1)
  3542. (thickness 0.15)
  3543. )
  3544. )
  3545. )
  3546. (property "Value" "10k"
  3547. (at 0 1.83 0)
  3548. (layer "F.Fab")
  3549. (uuid "1aef5a53-c208-4ef7-b2d2-d4868100d3a8")
  3550. (effects
  3551. (font
  3552. (size 1 1)
  3553. (thickness 0.15)
  3554. )
  3555. )
  3556. )
  3557. (property "Datasheet" ""
  3558. (at 0 0 0)
  3559. (layer "F.Fab")
  3560. (hide yes)
  3561. (uuid "a49f0d6a-5d92-4b82-8488-49acfcd20f52")
  3562. (effects
  3563. (font
  3564. (size 1.27 1.27)
  3565. )
  3566. )
  3567. )
  3568. (property "Description" "Resistor"
  3569. (at 0 0 0)
  3570. (layer "F.Fab")
  3571. (hide yes)
  3572. (uuid "43828c2d-7cb7-4349-9567-b5d26ba07855")
  3573. (effects
  3574. (font
  3575. (size 1.27 1.27)
  3576. )
  3577. )
  3578. )
  3579. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  3580. (at 0 0 0)
  3581. (layer "F.SilkS")
  3582. (hide yes)
  3583. (uuid "77721283-248d-44ae-9ee1-99def2090c7b")
  3584. (effects
  3585. (font
  3586. (size 1 1)
  3587. (thickness 0.15)
  3588. )
  3589. )
  3590. )
  3591. (property ki_fp_filters "R_*")
  3592. (path "/1b0a1d68-e8b7-4c38-9961-408ecb09dccc/8893a592-e7ad-4bb9-86b8-d6dfae161c4f")
  3593. (sheetname "/Communication/")
  3594. (sheetfile "communication.kicad_sch")
  3595. (units
  3596. (unit
  3597. (name "A")
  3598. (pins "1" "2")
  3599. )
  3600. )
  3601. (attr smd)
  3602. (duplicate_pad_numbers_are_jumpers no)
  3603. (fp_line
  3604. (start -0.727064 -0.91)
  3605. (end 0.727064 -0.91)
  3606. (stroke
  3607. (width 0.12)
  3608. (type solid)
  3609. )
  3610. (layer "F.SilkS")
  3611. (uuid "815d83b3-d41a-4350-ac39-36443798b35f")
  3612. )
  3613. (fp_line
  3614. (start -0.727064 0.91)
  3615. (end 0.727064 0.91)
  3616. (stroke
  3617. (width 0.12)
  3618. (type solid)
  3619. )
  3620. (layer "F.SilkS")
  3621. (uuid "c8e004ae-986d-42d5-8f93-868550ffe964")
  3622. )
  3623. (fp_rect
  3624. (start -2.45 -1.13)
  3625. (end 2.45 1.13)
  3626. (stroke
  3627. (width 0.05)
  3628. (type solid)
  3629. )
  3630. (fill no)
  3631. (layer "F.CrtYd")
  3632. (uuid "90b2eee6-9fff-4de9-9f6b-38ec22b13970")
  3633. )
  3634. (fp_rect
  3635. (start -1.6 -0.8)
  3636. (end 1.6 0.8)
  3637. (stroke
  3638. (width 0.1)
  3639. (type solid)
  3640. )
  3641. (fill no)
  3642. (layer "F.Fab")
  3643. (uuid "cb8bed7c-073e-45dc-a19f-312015f5261c")
  3644. )
  3645. (fp_text user "${REFERENCE}"
  3646. (at 0 0 0)
  3647. (layer "F.Fab")
  3648. (uuid "f78b1e75-06b9-4ab7-a6f9-85fd24a649e3")
  3649. (effects
  3650. (font
  3651. (size 0.8 0.8)
  3652. (thickness 0.12)
  3653. )
  3654. )
  3655. )
  3656. (pad "1" smd roundrect
  3657. (at -1.55 0)
  3658. (size 1.3 1.75)
  3659. (layers "F.Cu" "F.Mask" "F.Paste")
  3660. (roundrect_rratio 0.192308)
  3661. (net "+3V3")
  3662. (pintype "passive")
  3663. (uuid "e7fc51ee-fac0-4cb9-a399-0115038db530")
  3664. )
  3665. (pad "2" smd roundrect
  3666. (at 1.55 0)
  3667. (size 1.3 1.75)
  3668. (layers "F.Cu" "F.Mask" "F.Paste")
  3669. (roundrect_rratio 0.192308)
  3670. (net "Net-(J1-Pin_2)")
  3671. (pintype "passive")
  3672. (uuid "6e435590-9d37-4ddb-876e-e8aac43a4ef3")
  3673. )
  3674. (embedded_fonts no)
  3675. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  3676. (offset
  3677. (xyz 0 0 0)
  3678. )
  3679. (scale
  3680. (xyz 1 1 1)
  3681. )
  3682. (rotate
  3683. (xyz 0 0 0)
  3684. )
  3685. )
  3686. )
  3687. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  3688. (layer "F.Cu")
  3689. (uuid "71c91fee-119c-4aa7-aeca-0452edfe6f7c")
  3690. (at 138.3 66.1375 90)
  3691. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  3692. (tags "capacitor handsolder")
  3693. (property "Reference" "C19"
  3694. (at 0 -1.85 90)
  3695. (layer "F.SilkS")
  3696. (uuid "c8cb3239-9c83-40de-b99a-67a56a2bc722")
  3697. (effects
  3698. (font
  3699. (size 1 1)
  3700. (thickness 0.15)
  3701. )
  3702. )
  3703. )
  3704. (property "Value" "33u"
  3705. (at 0 1.85 90)
  3706. (layer "F.Fab")
  3707. (uuid "267be59e-cd09-4968-8055-a85a403b3b0a")
  3708. (effects
  3709. (font
  3710. (size 1 1)
  3711. (thickness 0.15)
  3712. )
  3713. )
  3714. )
  3715. (property "Datasheet" ""
  3716. (at 0 0 90)
  3717. (layer "F.Fab")
  3718. (hide yes)
  3719. (uuid "377aec78-c5ea-44c9-accd-22f01842a8bc")
  3720. (effects
  3721. (font
  3722. (size 1.27 1.27)
  3723. )
  3724. )
  3725. )
  3726. (property "Description" "Unpolarized capacitor"
  3727. (at 0 0 90)
  3728. (layer "F.Fab")
  3729. (hide yes)
  3730. (uuid "cdab221a-fcab-41d5-bff1-e8948cff57b8")
  3731. (effects
  3732. (font
  3733. (size 1.27 1.27)
  3734. )
  3735. )
  3736. )
  3737. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  3738. (at 0 0 90)
  3739. (layer "F.SilkS")
  3740. (hide yes)
  3741. (uuid "325eaa16-fbc0-465e-b286-bfbac0af16fd")
  3742. (effects
  3743. (font
  3744. (size 1 1)
  3745. (thickness 0.15)
  3746. )
  3747. )
  3748. )
  3749. (property ki_fp_filters "C_*")
  3750. (path "/490a7643-0f07-4350-a6a3-47ed0b11455f/d588000c-1f66-46e6-b1af-d3516075d1b2")
  3751. (sheetname "/Power section/")
  3752. (sheetfile "power_section.kicad_sch")
  3753. (units
  3754. (unit
  3755. (name "A")
  3756. (pins "1" "2")
  3757. )
  3758. )
  3759. (attr smd)
  3760. (duplicate_pad_numbers_are_jumpers no)
  3761. (fp_line
  3762. (start -0.711252 -0.91)
  3763. (end 0.711252 -0.91)
  3764. (stroke
  3765. (width 0.12)
  3766. (type solid)
  3767. )
  3768. (layer "F.SilkS")
  3769. (uuid "9ccda04b-cb9f-40b4-8f5f-0e0dbe7f5cdf")
  3770. )
  3771. (fp_line
  3772. (start -0.711252 0.91)
  3773. (end 0.711252 0.91)
  3774. (stroke
  3775. (width 0.12)
  3776. (type solid)
  3777. )
  3778. (layer "F.SilkS")
  3779. (uuid "3dd86304-b15f-4d56-aff2-4c3ad0411d49")
  3780. )
  3781. (fp_rect
  3782. (start -2.48 -1.15)
  3783. (end 2.48 1.15)
  3784. (stroke
  3785. (width 0.05)
  3786. (type solid)
  3787. )
  3788. (fill no)
  3789. (layer "F.CrtYd")
  3790. (uuid "d114683b-ddc3-443c-aa8d-0ed65a4401e4")
  3791. )
  3792. (fp_rect
  3793. (start -1.6 -0.8)
  3794. (end 1.6 0.8)
  3795. (stroke
  3796. (width 0.1)
  3797. (type solid)
  3798. )
  3799. (fill no)
  3800. (layer "F.Fab")
  3801. (uuid "43eecd42-0868-4614-841b-38cb29399c49")
  3802. )
  3803. (fp_text user "${REFERENCE}"
  3804. (at 0 0 90)
  3805. (layer "F.Fab")
  3806. (uuid "5150bbca-26ef-413c-aa6a-d562e3093fe5")
  3807. (effects
  3808. (font
  3809. (size 0.8 0.8)
  3810. (thickness 0.12)
  3811. )
  3812. )
  3813. )
  3814. (pad "1" smd roundrect
  3815. (at -1.5625 0 90)
  3816. (size 1.325 1.8)
  3817. (layers "F.Cu" "F.Mask" "F.Paste")
  3818. (roundrect_rratio 0.188679)
  3819. (net "+3V3")
  3820. (pintype "passive")
  3821. (uuid "06552319-9e76-4b4c-8590-75b6b591259d")
  3822. )
  3823. (pad "2" smd roundrect
  3824. (at 1.5625 0 90)
  3825. (size 1.325 1.8)
  3826. (layers "F.Cu" "F.Mask" "F.Paste")
  3827. (roundrect_rratio 0.188679)
  3828. (net "GND")
  3829. (pintype "passive")
  3830. (uuid "09f9ef4e-c8ca-4c2f-b7f0-8f09a3dba485")
  3831. )
  3832. (embedded_fonts no)
  3833. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  3834. (offset
  3835. (xyz 0 0 0)
  3836. )
  3837. (scale
  3838. (xyz 1 1 1)
  3839. )
  3840. (rotate
  3841. (xyz 0 0 0)
  3842. )
  3843. )
  3844. )
  3845. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3846. (layer "F.Cu")
  3847. (uuid "7436aee3-c554-42e0-946f-d5df2717a625")
  3848. (at 110.9 84.4)
  3849. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  3850. (tags "resistor handsolder")
  3851. (property "Reference" "R6"
  3852. (at 0 -1.83 0)
  3853. (layer "F.SilkS")
  3854. (uuid "6f0b93aa-7e25-4e5e-89c2-f7b1c4e8d4d2")
  3855. (effects
  3856. (font
  3857. (size 1 1)
  3858. (thickness 0.15)
  3859. )
  3860. )
  3861. )
  3862. (property "Value" "10k"
  3863. (at 0 1.83 0)
  3864. (layer "F.Fab")
  3865. (uuid "248ef2d7-cb30-4f91-9ae5-96ed57512d4c")
  3866. (effects
  3867. (font
  3868. (size 1 1)
  3869. (thickness 0.15)
  3870. )
  3871. )
  3872. )
  3873. (property "Datasheet" ""
  3874. (at 0 0 0)
  3875. (layer "F.Fab")
  3876. (hide yes)
  3877. (uuid "6cd2eadc-37eb-4374-9532-8eae8d4ea8ef")
  3878. (effects
  3879. (font
  3880. (size 1.27 1.27)
  3881. )
  3882. )
  3883. )
  3884. (property "Description" "Resistor"
  3885. (at 0 0 0)
  3886. (layer "F.Fab")
  3887. (hide yes)
  3888. (uuid "a6f85758-10ec-4ead-a35e-2c3b96857d32")
  3889. (effects
  3890. (font
  3891. (size 1.27 1.27)
  3892. )
  3893. )
  3894. )
  3895. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  3896. (at 0 0 0)
  3897. (layer "F.SilkS")
  3898. (hide yes)
  3899. (uuid "010f4a3e-6a03-489c-9ed0-57af403eb971")
  3900. (effects
  3901. (font
  3902. (size 1 1)
  3903. (thickness 0.15)
  3904. )
  3905. )
  3906. )
  3907. (property ki_fp_filters "R_*")
  3908. (path "/61d90625-cf7d-4b0e-a402-280f678c738c/5d3da51c-0398-490e-8598-60f1f7ad3d0b")
  3909. (sheetname "/IMU/")
  3910. (sheetfile "imu.kicad_sch")
  3911. (units
  3912. (unit
  3913. (name "A")
  3914. (pins "1" "2")
  3915. )
  3916. )
  3917. (attr smd)
  3918. (duplicate_pad_numbers_are_jumpers no)
  3919. (fp_line
  3920. (start -0.727064 -0.91)
  3921. (end 0.727064 -0.91)
  3922. (stroke
  3923. (width 0.12)
  3924. (type solid)
  3925. )
  3926. (layer "F.SilkS")
  3927. (uuid "30d3dfb2-1107-424e-8ed5-bf8f03a8c4dd")
  3928. )
  3929. (fp_line
  3930. (start -0.727064 0.91)
  3931. (end 0.727064 0.91)
  3932. (stroke
  3933. (width 0.12)
  3934. (type solid)
  3935. )
  3936. (layer "F.SilkS")
  3937. (uuid "c8102115-e5f5-4c07-8063-72850c137164")
  3938. )
  3939. (fp_rect
  3940. (start -2.45 -1.13)
  3941. (end 2.45 1.13)
  3942. (stroke
  3943. (width 0.05)
  3944. (type solid)
  3945. )
  3946. (fill no)
  3947. (layer "F.CrtYd")
  3948. (uuid "2abcd983-72e0-492b-877b-8a3666e0164a")
  3949. )
  3950. (fp_rect
  3951. (start -1.6 -0.8)
  3952. (end 1.6 0.8)
  3953. (stroke
  3954. (width 0.1)
  3955. (type solid)
  3956. )
  3957. (fill no)
  3958. (layer "F.Fab")
  3959. (uuid "d35585de-6006-4935-a4aa-a067cafe3abc")
  3960. )
  3961. (fp_text user "${REFERENCE}"
  3962. (at 0 0 0)
  3963. (layer "F.Fab")
  3964. (uuid "3f0cbc35-f84f-4271-8e28-bbd952fb5179")
  3965. (effects
  3966. (font
  3967. (size 0.8 0.8)
  3968. (thickness 0.12)
  3969. )
  3970. )
  3971. )
  3972. (pad "1" smd roundrect
  3973. (at -1.55 0)
  3974. (size 1.3 1.75)
  3975. (layers "F.Cu" "F.Mask" "F.Paste")
  3976. (roundrect_rratio 0.192308)
  3977. (net "+3V3")
  3978. (pintype "passive")
  3979. (uuid "4e8014fc-48f8-4e0c-a5e3-c23cca246526")
  3980. )
  3981. (pad "2" smd roundrect
  3982. (at 1.55 0)
  3983. (size 1.3 1.75)
  3984. (layers "F.Cu" "F.Mask" "F.Paste")
  3985. (roundrect_rratio 0.192308)
  3986. (net "/IMU/INT")
  3987. (pintype "passive")
  3988. (uuid "a227ad84-7a4e-4c70-a288-fd2210baf814")
  3989. )
  3990. (embedded_fonts no)
  3991. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  3992. (offset
  3993. (xyz 0 0 0)
  3994. )
  3995. (scale
  3996. (xyz 1 1 1)
  3997. )
  3998. (rotate
  3999. (xyz 0 0 0)
  4000. )
  4001. )
  4002. )
  4003. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  4004. (layer "F.Cu")
  4005. (uuid "79099420-901d-400d-b9ea-d95c5ce74236")
  4006. (at 114.95 88.2 90)
  4007. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  4008. (tags "capacitor handsolder")
  4009. (property "Reference" "C4"
  4010. (at 0 -1.85 90)
  4011. (layer "F.SilkS")
  4012. (uuid "e7924a54-97bd-432c-a02a-076190d304b1")
  4013. (effects
  4014. (font
  4015. (size 1 1)
  4016. (thickness 0.15)
  4017. )
  4018. )
  4019. )
  4020. (property "Value" "1u"
  4021. (at 0 1.85 90)
  4022. (layer "F.Fab")
  4023. (uuid "1440c450-e5df-4e73-bdd7-17e5d2295c6b")
  4024. (effects
  4025. (font
  4026. (size 1 1)
  4027. (thickness 0.15)
  4028. )
  4029. )
  4030. )
  4031. (property "Datasheet" ""
  4032. (at 0 0 90)
  4033. (layer "F.Fab")
  4034. (hide yes)
  4035. (uuid "cb9f0228-fe91-411a-b84d-ba4e9da8f0ed")
  4036. (effects
  4037. (font
  4038. (size 1.27 1.27)
  4039. )
  4040. )
  4041. )
  4042. (property "Description" "Unpolarized capacitor"
  4043. (at 0 0 90)
  4044. (layer "F.Fab")
  4045. (hide yes)
  4046. (uuid "89dd5e2d-2416-4cf3-a361-088c1cda3655")
  4047. (effects
  4048. (font
  4049. (size 1.27 1.27)
  4050. )
  4051. )
  4052. )
  4053. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  4054. (at 0 0 90)
  4055. (layer "F.SilkS")
  4056. (hide yes)
  4057. (uuid "fab13591-b2eb-4378-b58d-109cfe1d1485")
  4058. (effects
  4059. (font
  4060. (size 1 1)
  4061. (thickness 0.15)
  4062. )
  4063. )
  4064. )
  4065. (property ki_fp_filters "C_*")
  4066. (path "/61d90625-cf7d-4b0e-a402-280f678c738c/1305c3e6-6f58-4e02-9727-e8fe21d37fbf")
  4067. (sheetname "/IMU/")
  4068. (sheetfile "imu.kicad_sch")
  4069. (units
  4070. (unit
  4071. (name "A")
  4072. (pins "1" "2")
  4073. )
  4074. )
  4075. (attr smd)
  4076. (duplicate_pad_numbers_are_jumpers no)
  4077. (fp_line
  4078. (start -0.711252 -0.91)
  4079. (end 0.711252 -0.91)
  4080. (stroke
  4081. (width 0.12)
  4082. (type solid)
  4083. )
  4084. (layer "F.SilkS")
  4085. (uuid "121f81ea-dd9e-431c-8be2-845a28542216")
  4086. )
  4087. (fp_line
  4088. (start -0.711252 0.91)
  4089. (end 0.711252 0.91)
  4090. (stroke
  4091. (width 0.12)
  4092. (type solid)
  4093. )
  4094. (layer "F.SilkS")
  4095. (uuid "6aedf566-638d-4779-8e50-d1270417eb53")
  4096. )
  4097. (fp_rect
  4098. (start -2.48 -1.15)
  4099. (end 2.48 1.15)
  4100. (stroke
  4101. (width 0.05)
  4102. (type solid)
  4103. )
  4104. (fill no)
  4105. (layer "F.CrtYd")
  4106. (uuid "0d2e158b-a943-47d6-a8fd-13bd05369111")
  4107. )
  4108. (fp_rect
  4109. (start -1.6 -0.8)
  4110. (end 1.6 0.8)
  4111. (stroke
  4112. (width 0.1)
  4113. (type solid)
  4114. )
  4115. (fill no)
  4116. (layer "F.Fab")
  4117. (uuid "f684a226-b976-4a77-bcee-db91cf90bf72")
  4118. )
  4119. (fp_text user "${REFERENCE}"
  4120. (at 0 0 90)
  4121. (layer "F.Fab")
  4122. (uuid "8a8acf05-553d-4f16-9c35-5f9b985ccb8a")
  4123. (effects
  4124. (font
  4125. (size 0.8 0.8)
  4126. (thickness 0.12)
  4127. )
  4128. )
  4129. )
  4130. (pad "1" smd roundrect
  4131. (at -1.5625 0 90)
  4132. (size 1.325 1.8)
  4133. (layers "F.Cu" "F.Mask" "F.Paste")
  4134. (roundrect_rratio 0.188679)
  4135. (net "Net-(U2-3V3)")
  4136. (pintype "passive")
  4137. (uuid "8bacdc1b-a917-4e6e-ae87-65c07c32f4a6")
  4138. )
  4139. (pad "2" smd roundrect
  4140. (at 1.5625 0 90)
  4141. (size 1.325 1.8)
  4142. (layers "F.Cu" "F.Mask" "F.Paste")
  4143. (roundrect_rratio 0.188679)
  4144. (net "GND")
  4145. (pintype "passive")
  4146. (uuid "47c4a296-c207-4637-b1ee-8eca1678e2fa")
  4147. )
  4148. (embedded_fonts no)
  4149. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  4150. (offset
  4151. (xyz 0 0 0)
  4152. )
  4153. (scale
  4154. (xyz 1 1 1)
  4155. )
  4156. (rotate
  4157. (xyz 0 0 0)
  4158. )
  4159. )
  4160. )
  4161. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  4162. (layer "F.Cu")
  4163. (uuid "7e58d251-7925-44fc-944e-f9f2a1db87c2")
  4164. (at 59.3425 120.79)
  4165. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  4166. (tags "resistor handsolder")
  4167. (property "Reference" "R24"
  4168. (at 0 -1.83 0)
  4169. (layer "F.SilkS")
  4170. (uuid "4ab5099f-da47-490d-bda7-bf943c1b1ee0")
  4171. (effects
  4172. (font
  4173. (size 1 1)
  4174. (thickness 0.15)
  4175. )
  4176. )
  4177. )
  4178. (property "Value" "330R"
  4179. (at 0 1.83 0)
  4180. (layer "F.Fab")
  4181. (uuid "addd9064-34e6-4945-94f7-1cfa628dd34c")
  4182. (effects
  4183. (font
  4184. (size 1 1)
  4185. (thickness 0.15)
  4186. )
  4187. )
  4188. )
  4189. (property "Datasheet" ""
  4190. (at 0 0 0)
  4191. (layer "F.Fab")
  4192. (hide yes)
  4193. (uuid "d97de3c7-df1a-4aca-9e41-5ec069159dbe")
  4194. (effects
  4195. (font
  4196. (size 1.27 1.27)
  4197. )
  4198. )
  4199. )
  4200. (property "Description" "Resistor"
  4201. (at 0 0 0)
  4202. (layer "F.Fab")
  4203. (hide yes)
  4204. (uuid "9b0d82dc-5235-4b91-a19b-58b98b697f36")
  4205. (effects
  4206. (font
  4207. (size 1.27 1.27)
  4208. )
  4209. )
  4210. )
  4211. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  4212. (at 0 0 0)
  4213. (layer "F.SilkS")
  4214. (hide yes)
  4215. (uuid "78094715-fd33-4716-bc42-6cfae05b496a")
  4216. (effects
  4217. (font
  4218. (size 1 1)
  4219. (thickness 0.15)
  4220. )
  4221. )
  4222. )
  4223. (property ki_fp_filters "R_*")
  4224. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/a22f15db-8d8d-4b9a-a274-3a59aad77f53")
  4225. (sheetname "/IO/")
  4226. (sheetfile "io.kicad_sch")
  4227. (units
  4228. (unit
  4229. (name "A")
  4230. (pins "1" "2")
  4231. )
  4232. )
  4233. (attr smd)
  4234. (duplicate_pad_numbers_are_jumpers no)
  4235. (fp_line
  4236. (start -0.727064 -0.91)
  4237. (end 0.727064 -0.91)
  4238. (stroke
  4239. (width 0.12)
  4240. (type solid)
  4241. )
  4242. (layer "F.SilkS")
  4243. (uuid "b3b6d4c8-6ac2-4ba9-a77d-387c4faa4667")
  4244. )
  4245. (fp_line
  4246. (start -0.727064 0.91)
  4247. (end 0.727064 0.91)
  4248. (stroke
  4249. (width 0.12)
  4250. (type solid)
  4251. )
  4252. (layer "F.SilkS")
  4253. (uuid "70de2d8d-55a2-4751-a455-d4bc20eef7fd")
  4254. )
  4255. (fp_rect
  4256. (start -2.45 -1.13)
  4257. (end 2.45 1.13)
  4258. (stroke
  4259. (width 0.05)
  4260. (type solid)
  4261. )
  4262. (fill no)
  4263. (layer "F.CrtYd")
  4264. (uuid "e37becad-53d8-40fa-9771-fc96ab1d95ae")
  4265. )
  4266. (fp_rect
  4267. (start -1.6 -0.8)
  4268. (end 1.6 0.8)
  4269. (stroke
  4270. (width 0.1)
  4271. (type solid)
  4272. )
  4273. (fill no)
  4274. (layer "F.Fab")
  4275. (uuid "e42afbdc-9b32-4370-824c-704be274603d")
  4276. )
  4277. (fp_text user "${REFERENCE}"
  4278. (at 0 0 0)
  4279. (layer "F.Fab")
  4280. (uuid "ddabfb99-e77f-43c6-9b5c-f8343f351335")
  4281. (effects
  4282. (font
  4283. (size 0.8 0.8)
  4284. (thickness 0.12)
  4285. )
  4286. )
  4287. )
  4288. (pad "1" smd roundrect
  4289. (at -1.55 0)
  4290. (size 1.3 1.75)
  4291. (layers "F.Cu" "F.Mask" "F.Paste")
  4292. (roundrect_rratio 0.192308)
  4293. (net "/IO/5V")
  4294. (pintype "passive")
  4295. (uuid "a38c3535-953f-4c30-9d58-b95653c8e949")
  4296. )
  4297. (pad "2" smd roundrect
  4298. (at 1.55 0)
  4299. (size 1.3 1.75)
  4300. (layers "F.Cu" "F.Mask" "F.Paste")
  4301. (roundrect_rratio 0.192308)
  4302. (net "Net-(D8-A)")
  4303. (pintype "passive")
  4304. (uuid "a1db51b5-6d95-4516-ad86-216e52005cad")
  4305. )
  4306. (embedded_fonts no)
  4307. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  4308. (offset
  4309. (xyz 0 0 0)
  4310. )
  4311. (scale
  4312. (xyz 1 1 1)
  4313. )
  4314. (rotate
  4315. (xyz 0 0 0)
  4316. )
  4317. )
  4318. )
  4319. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  4320. (layer "F.Cu")
  4321. (uuid "82974f38-7ec0-4e74-9cef-5edb9ecced1f")
  4322. (at 142.05 67.45)
  4323. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  4324. (tags "capacitor handsolder")
  4325. (property "Reference" "C17"
  4326. (at 0 -1.85 0)
  4327. (layer "F.SilkS")
  4328. (uuid "85ba9c3c-45b4-4356-a3ba-9492bdfa78f3")
  4329. (effects
  4330. (font
  4331. (size 1 1)
  4332. (thickness 0.15)
  4333. )
  4334. )
  4335. )
  4336. (property "Value" "33u"
  4337. (at 0 1.85 0)
  4338. (layer "F.Fab")
  4339. (uuid "6561dbcd-c306-42b9-9450-32f9f1c85009")
  4340. (effects
  4341. (font
  4342. (size 1 1)
  4343. (thickness 0.15)
  4344. )
  4345. )
  4346. )
  4347. (property "Datasheet" ""
  4348. (at 0 0 0)
  4349. (layer "F.Fab")
  4350. (hide yes)
  4351. (uuid "deb6304e-f04c-4c35-9c84-07e87de7ff70")
  4352. (effects
  4353. (font
  4354. (size 1.27 1.27)
  4355. )
  4356. )
  4357. )
  4358. (property "Description" "Unpolarized capacitor"
  4359. (at 0 0 0)
  4360. (layer "F.Fab")
  4361. (hide yes)
  4362. (uuid "075c8b26-5582-4c55-8b23-d9c0a20c49cd")
  4363. (effects
  4364. (font
  4365. (size 1.27 1.27)
  4366. )
  4367. )
  4368. )
  4369. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  4370. (at 0 0 0)
  4371. (layer "F.SilkS")
  4372. (hide yes)
  4373. (uuid "e4e1bba6-aa1f-4a7e-8933-0bcb5824e15a")
  4374. (effects
  4375. (font
  4376. (size 1 1)
  4377. (thickness 0.15)
  4378. )
  4379. )
  4380. )
  4381. (property ki_fp_filters "C_*")
  4382. (path "/490a7643-0f07-4350-a6a3-47ed0b11455f/b8dc9a34-c670-4604-9ed5-6c2f62eccc74")
  4383. (sheetname "/Power section/")
  4384. (sheetfile "power_section.kicad_sch")
  4385. (units
  4386. (unit
  4387. (name "A")
  4388. (pins "1" "2")
  4389. )
  4390. )
  4391. (attr smd)
  4392. (duplicate_pad_numbers_are_jumpers no)
  4393. (fp_line
  4394. (start -0.711252 -0.91)
  4395. (end 0.711252 -0.91)
  4396. (stroke
  4397. (width 0.12)
  4398. (type solid)
  4399. )
  4400. (layer "F.SilkS")
  4401. (uuid "44a99590-7590-4643-aeb5-59e6fa073d34")
  4402. )
  4403. (fp_line
  4404. (start -0.711252 0.91)
  4405. (end 0.711252 0.91)
  4406. (stroke
  4407. (width 0.12)
  4408. (type solid)
  4409. )
  4410. (layer "F.SilkS")
  4411. (uuid "299a52a0-717d-4de5-b70a-f91d1bf6e514")
  4412. )
  4413. (fp_rect
  4414. (start -2.48 -1.15)
  4415. (end 2.48 1.15)
  4416. (stroke
  4417. (width 0.05)
  4418. (type solid)
  4419. )
  4420. (fill no)
  4421. (layer "F.CrtYd")
  4422. (uuid "4a2a32da-4118-436b-93bf-953244501539")
  4423. )
  4424. (fp_rect
  4425. (start -1.6 -0.8)
  4426. (end 1.6 0.8)
  4427. (stroke
  4428. (width 0.1)
  4429. (type solid)
  4430. )
  4431. (fill no)
  4432. (layer "F.Fab")
  4433. (uuid "a40f4b8c-efba-4250-a9f4-917f0cef6ade")
  4434. )
  4435. (fp_text user "${REFERENCE}"
  4436. (at 0 0 0)
  4437. (layer "F.Fab")
  4438. (uuid "22b6712f-4d5a-43c1-ba33-0b1cc5a45edb")
  4439. (effects
  4440. (font
  4441. (size 0.8 0.8)
  4442. (thickness 0.12)
  4443. )
  4444. )
  4445. )
  4446. (pad "1" smd roundrect
  4447. (at -1.5625 0)
  4448. (size 1.325 1.8)
  4449. (layers "F.Cu" "F.Mask" "F.Paste")
  4450. (roundrect_rratio 0.188679)
  4451. (net "+3V3")
  4452. (pintype "passive")
  4453. (uuid "0a08c3dd-31c5-4ee3-9454-38f755f020e0")
  4454. )
  4455. (pad "2" smd roundrect
  4456. (at 1.5625 0)
  4457. (size 1.325 1.8)
  4458. (layers "F.Cu" "F.Mask" "F.Paste")
  4459. (roundrect_rratio 0.188679)
  4460. (net "GND")
  4461. (pintype "passive")
  4462. (uuid "903dab7c-eee6-4608-93c0-c6757a2d6e4f")
  4463. )
  4464. (embedded_fonts no)
  4465. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  4466. (offset
  4467. (xyz 0 0 0)
  4468. )
  4469. (scale
  4470. (xyz 1 1 1)
  4471. )
  4472. (rotate
  4473. (xyz 0 0 0)
  4474. )
  4475. )
  4476. )
  4477. (footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
  4478. (layer "F.Cu")
  4479. (uuid "82b01410-3676-4422-b40d-0f819876a26b")
  4480. (at 84 108.55 -90)
  4481. (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)")
  4482. (tags "LED handsolder")
  4483. (property "Reference" "D7"
  4484. (at 0 -1.83 90)
  4485. (layer "F.SilkS")
  4486. (uuid "bc0e96c5-4b75-43b3-9113-e25623366471")
  4487. (effects
  4488. (font
  4489. (size 1 1)
  4490. (thickness 0.15)
  4491. )
  4492. )
  4493. )
  4494. (property "Value" "RED"
  4495. (at 0 1.83 90)
  4496. (layer "F.Fab")
  4497. (uuid "670618e5-4456-43f6-8bf9-267489d1f8bf")
  4498. (effects
  4499. (font
  4500. (size 1 1)
  4501. (thickness 0.15)
  4502. )
  4503. )
  4504. )
  4505. (property "Datasheet" ""
  4506. (at 0 0 90)
  4507. (layer "F.Fab")
  4508. (hide yes)
  4509. (uuid "dc654d4b-de69-48e9-80ff-d3b1eadcb021")
  4510. (effects
  4511. (font
  4512. (size 1.27 1.27)
  4513. )
  4514. )
  4515. )
  4516. (property "Description" "Light emitting diode"
  4517. (at 0 0 90)
  4518. (layer "F.Fab")
  4519. (hide yes)
  4520. (uuid "ac5e7180-749e-4e9e-b194-47cd6a506272")
  4521. (effects
  4522. (font
  4523. (size 1.27 1.27)
  4524. )
  4525. )
  4526. )
  4527. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  4528. (at 0 0 90)
  4529. (layer "F.SilkS")
  4530. (hide yes)
  4531. (uuid "f907b9a0-61cf-49da-8c5d-95891b91f0dd")
  4532. (effects
  4533. (font
  4534. (size 1 1)
  4535. (thickness 0.15)
  4536. )
  4537. )
  4538. )
  4539. (property "Sim.Pins" "1=K 2=A"
  4540. (at 0 0 270)
  4541. (unlocked yes)
  4542. (layer "F.Fab")
  4543. (hide yes)
  4544. (uuid "20e990c6-05f3-4a57-a869-95fc3536f075")
  4545. (effects
  4546. (font
  4547. (size 1 1)
  4548. (thickness 0.15)
  4549. )
  4550. )
  4551. )
  4552. (property ki_fp_filters "LED* LED_SMD:* LED_THT:*")
  4553. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/7fe37b18-2a36-4485-8765-1d22563b8507")
  4554. (sheetname "/IO/")
  4555. (sheetfile "io.kicad_sch")
  4556. (units
  4557. (unit
  4558. (name "A")
  4559. (pins "1" "2")
  4560. )
  4561. )
  4562. (attr smd)
  4563. (duplicate_pad_numbers_are_jumpers no)
  4564. (fp_line
  4565. (start -2.46 1.135)
  4566. (end 1.6 1.135)
  4567. (stroke
  4568. (width 0.12)
  4569. (type solid)
  4570. )
  4571. (layer "F.SilkS")
  4572. (uuid "b8f34da2-d595-444c-ac83-facd29bb6bdb")
  4573. )
  4574. (fp_line
  4575. (start -2.46 -1.135)
  4576. (end -2.46 1.135)
  4577. (stroke
  4578. (width 0.12)
  4579. (type solid)
  4580. )
  4581. (layer "F.SilkS")
  4582. (uuid "7801b134-8cb6-433a-bbc1-4dea74b31e7a")
  4583. )
  4584. (fp_line
  4585. (start 1.6 -1.135)
  4586. (end -2.46 -1.135)
  4587. (stroke
  4588. (width 0.12)
  4589. (type solid)
  4590. )
  4591. (layer "F.SilkS")
  4592. (uuid "9881566f-ec2c-4900-a85a-8651c1a2c5ed")
  4593. )
  4594. (fp_rect
  4595. (start -2.45 -1.13)
  4596. (end 2.45 1.13)
  4597. (stroke
  4598. (width 0.05)
  4599. (type solid)
  4600. )
  4601. (fill no)
  4602. (layer "F.CrtYd")
  4603. (uuid "34c768e1-1a06-4b8b-b7e8-a411f1c58cb2")
  4604. )
  4605. (fp_line
  4606. (start -1.6 0.8)
  4607. (end 1.6 0.8)
  4608. (stroke
  4609. (width 0.1)
  4610. (type solid)
  4611. )
  4612. (layer "F.Fab")
  4613. (uuid "b2dbf897-5f55-4613-b238-300ceb1947d9")
  4614. )
  4615. (fp_line
  4616. (start 1.6 0.8)
  4617. (end 1.6 -0.8)
  4618. (stroke
  4619. (width 0.1)
  4620. (type solid)
  4621. )
  4622. (layer "F.Fab")
  4623. (uuid "51930bcc-d286-4099-8743-098bb363bd7f")
  4624. )
  4625. (fp_line
  4626. (start -1.6 -0.4)
  4627. (end -1.6 0.8)
  4628. (stroke
  4629. (width 0.1)
  4630. (type solid)
  4631. )
  4632. (layer "F.Fab")
  4633. (uuid "85dea436-88bc-42e2-8a32-b5e3c1e22521")
  4634. )
  4635. (fp_line
  4636. (start -1.2 -0.8)
  4637. (end -1.6 -0.4)
  4638. (stroke
  4639. (width 0.1)
  4640. (type solid)
  4641. )
  4642. (layer "F.Fab")
  4643. (uuid "8dd7740a-e554-4aa7-9927-79520797de35")
  4644. )
  4645. (fp_line
  4646. (start 1.6 -0.8)
  4647. (end -1.2 -0.8)
  4648. (stroke
  4649. (width 0.1)
  4650. (type solid)
  4651. )
  4652. (layer "F.Fab")
  4653. (uuid "a740ff99-5aaf-4cc0-92f7-08a5cc836e52")
  4654. )
  4655. (fp_text user "${REFERENCE}"
  4656. (at 0 0 90)
  4657. (layer "F.Fab")
  4658. (uuid "31b81371-63a8-4562-9d0f-856058c2bef0")
  4659. (effects
  4660. (font
  4661. (size 0.8 0.8)
  4662. (thickness 0.12)
  4663. )
  4664. )
  4665. )
  4666. (pad "1" smd roundrect
  4667. (at -1.4875 0 270)
  4668. (size 1.425 1.75)
  4669. (layers "F.Cu" "F.Mask" "F.Paste")
  4670. (roundrect_rratio 0.175439)
  4671. (net "GND")
  4672. (pinfunction "K_1")
  4673. (pintype "passive")
  4674. (uuid "9eb91742-e76c-46de-b556-75dda9761ae0")
  4675. )
  4676. (pad "2" smd roundrect
  4677. (at 1.4875 0 270)
  4678. (size 1.425 1.75)
  4679. (layers "F.Cu" "F.Mask" "F.Paste")
  4680. (roundrect_rratio 0.175439)
  4681. (net "Net-(D7-A)")
  4682. (pinfunction "A_2")
  4683. (pintype "passive")
  4684. (uuid "3e68fbf0-7439-4896-8336-9047a7c3130c")
  4685. )
  4686. (embedded_fonts no)
  4687. (model "${KICAD10_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.step"
  4688. (offset
  4689. (xyz 0 0 0)
  4690. )
  4691. (scale
  4692. (xyz 1 1 1)
  4693. )
  4694. (rotate
  4695. (xyz 0 0 0)
  4696. )
  4697. )
  4698. )
  4699. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  4700. (layer "F.Cu")
  4701. (uuid "85a6e078-de6f-4716-b23e-b377a732faac")
  4702. (at 79.6 115.65)
  4703. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  4704. (tags "resistor handsolder")
  4705. (property "Reference" "R23"
  4706. (at 0 -1.83 0)
  4707. (layer "F.SilkS")
  4708. (uuid "7d71fc4e-49a6-47c2-8ebb-df91e4c1e8db")
  4709. (effects
  4710. (font
  4711. (size 1 1)
  4712. (thickness 0.15)
  4713. )
  4714. )
  4715. )
  4716. (property "Value" "330R"
  4717. (at 0 1.83 0)
  4718. (layer "F.Fab")
  4719. (uuid "adb37033-1ca4-40c6-adfb-1998ef6fccc6")
  4720. (effects
  4721. (font
  4722. (size 1 1)
  4723. (thickness 0.15)
  4724. )
  4725. )
  4726. )
  4727. (property "Datasheet" ""
  4728. (at 0 0 0)
  4729. (layer "F.Fab")
  4730. (hide yes)
  4731. (uuid "aefcac80-dc89-464e-b23a-1f43d185f510")
  4732. (effects
  4733. (font
  4734. (size 1.27 1.27)
  4735. )
  4736. )
  4737. )
  4738. (property "Description" "Resistor"
  4739. (at 0 0 0)
  4740. (layer "F.Fab")
  4741. (hide yes)
  4742. (uuid "a0adc531-5a62-40a3-8c4d-90ed7ff7d955")
  4743. (effects
  4744. (font
  4745. (size 1.27 1.27)
  4746. )
  4747. )
  4748. )
  4749. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  4750. (at 0 0 0)
  4751. (layer "F.SilkS")
  4752. (hide yes)
  4753. (uuid "1e89d3c0-cdd9-42fb-9041-e18b68be083e")
  4754. (effects
  4755. (font
  4756. (size 1 1)
  4757. (thickness 0.15)
  4758. )
  4759. )
  4760. )
  4761. (property ki_fp_filters "R_*")
  4762. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/d4c99743-9a99-4115-a4bb-58eb562a7f9d")
  4763. (sheetname "/IO/")
  4764. (sheetfile "io.kicad_sch")
  4765. (units
  4766. (unit
  4767. (name "A")
  4768. (pins "1" "2")
  4769. )
  4770. )
  4771. (attr smd)
  4772. (duplicate_pad_numbers_are_jumpers no)
  4773. (fp_line
  4774. (start -0.727064 -0.91)
  4775. (end 0.727064 -0.91)
  4776. (stroke
  4777. (width 0.12)
  4778. (type solid)
  4779. )
  4780. (layer "F.SilkS")
  4781. (uuid "70108809-1f03-4789-8f98-c0aad0d1313a")
  4782. )
  4783. (fp_line
  4784. (start -0.727064 0.91)
  4785. (end 0.727064 0.91)
  4786. (stroke
  4787. (width 0.12)
  4788. (type solid)
  4789. )
  4790. (layer "F.SilkS")
  4791. (uuid "a8f66c96-1b71-42e6-ab36-60db7626853e")
  4792. )
  4793. (fp_rect
  4794. (start -2.45 -1.13)
  4795. (end 2.45 1.13)
  4796. (stroke
  4797. (width 0.05)
  4798. (type solid)
  4799. )
  4800. (fill no)
  4801. (layer "F.CrtYd")
  4802. (uuid "1bd441cc-00c2-4bc9-8491-1c92ec22f71b")
  4803. )
  4804. (fp_rect
  4805. (start -1.6 -0.8)
  4806. (end 1.6 0.8)
  4807. (stroke
  4808. (width 0.1)
  4809. (type solid)
  4810. )
  4811. (fill no)
  4812. (layer "F.Fab")
  4813. (uuid "2babf419-108e-436e-81eb-422564e1e5cb")
  4814. )
  4815. (fp_text user "${REFERENCE}"
  4816. (at 0 0 0)
  4817. (layer "F.Fab")
  4818. (uuid "f8628f2d-a99c-4e2d-8821-57ee4c538b8d")
  4819. (effects
  4820. (font
  4821. (size 0.8 0.8)
  4822. (thickness 0.12)
  4823. )
  4824. )
  4825. )
  4826. (pad "1" smd roundrect
  4827. (at -1.55 0)
  4828. (size 1.3 1.75)
  4829. (layers "F.Cu" "F.Mask" "F.Paste")
  4830. (roundrect_rratio 0.192308)
  4831. (net "+3V3")
  4832. (pintype "passive")
  4833. (uuid "4aa23539-3595-44a0-a324-17a24ecc38b7")
  4834. )
  4835. (pad "2" smd roundrect
  4836. (at 1.55 0)
  4837. (size 1.3 1.75)
  4838. (layers "F.Cu" "F.Mask" "F.Paste")
  4839. (roundrect_rratio 0.192308)
  4840. (net "Net-(D7-A)")
  4841. (pintype "passive")
  4842. (uuid "8607271f-9530-4742-8ed2-0e017a71d6cd")
  4843. )
  4844. (embedded_fonts no)
  4845. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  4846. (offset
  4847. (xyz 0 0 0)
  4848. )
  4849. (scale
  4850. (xyz 1 1 1)
  4851. )
  4852. (rotate
  4853. (xyz 0 0 0)
  4854. )
  4855. )
  4856. )
  4857. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  4858. (layer "F.Cu")
  4859. (uuid "930faeff-983b-4a04-a528-8d993f6800b2")
  4860. (at 135.85 68.25 90)
  4861. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  4862. (tags "capacitor handsolder")
  4863. (property "Reference" "C20"
  4864. (at 0 -1.85 90)
  4865. (layer "F.SilkS")
  4866. (uuid "4c21d666-491b-4c17-af20-892bde825f05")
  4867. (effects
  4868. (font
  4869. (size 1 1)
  4870. (thickness 0.15)
  4871. )
  4872. )
  4873. )
  4874. (property "Value" "33u"
  4875. (at 0 1.85 90)
  4876. (layer "F.Fab")
  4877. (uuid "1e8c15f0-d9f1-47ab-ba71-6fe6a5d95086")
  4878. (effects
  4879. (font
  4880. (size 1 1)
  4881. (thickness 0.15)
  4882. )
  4883. )
  4884. )
  4885. (property "Datasheet" ""
  4886. (at 0 0 90)
  4887. (layer "F.Fab")
  4888. (hide yes)
  4889. (uuid "5b696ce6-54b6-4993-8208-eafc439d2603")
  4890. (effects
  4891. (font
  4892. (size 1.27 1.27)
  4893. )
  4894. )
  4895. )
  4896. (property "Description" "Unpolarized capacitor"
  4897. (at 0 0 90)
  4898. (layer "F.Fab")
  4899. (hide yes)
  4900. (uuid "aa43cf92-885b-41ec-94d4-b393b889d25a")
  4901. (effects
  4902. (font
  4903. (size 1.27 1.27)
  4904. )
  4905. )
  4906. )
  4907. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  4908. (at 0 0 90)
  4909. (layer "F.SilkS")
  4910. (hide yes)
  4911. (uuid "10d19287-2748-4c20-9094-56a9291050d6")
  4912. (effects
  4913. (font
  4914. (size 1 1)
  4915. (thickness 0.15)
  4916. )
  4917. )
  4918. )
  4919. (property ki_fp_filters "C_*")
  4920. (path "/490a7643-0f07-4350-a6a3-47ed0b11455f/ef637363-a814-4afd-99f6-57eefb3d7c1b")
  4921. (sheetname "/Power section/")
  4922. (sheetfile "power_section.kicad_sch")
  4923. (units
  4924. (unit
  4925. (name "A")
  4926. (pins "1" "2")
  4927. )
  4928. )
  4929. (attr smd)
  4930. (duplicate_pad_numbers_are_jumpers no)
  4931. (fp_line
  4932. (start -0.711252 -0.91)
  4933. (end 0.711252 -0.91)
  4934. (stroke
  4935. (width 0.12)
  4936. (type solid)
  4937. )
  4938. (layer "F.SilkS")
  4939. (uuid "b5862ff2-2b67-4cf2-940e-b674ba1e1e83")
  4940. )
  4941. (fp_line
  4942. (start -0.711252 0.91)
  4943. (end 0.711252 0.91)
  4944. (stroke
  4945. (width 0.12)
  4946. (type solid)
  4947. )
  4948. (layer "F.SilkS")
  4949. (uuid "2298499b-09cb-48c8-aec6-2233119c05a1")
  4950. )
  4951. (fp_rect
  4952. (start -2.48 -1.15)
  4953. (end 2.48 1.15)
  4954. (stroke
  4955. (width 0.05)
  4956. (type solid)
  4957. )
  4958. (fill no)
  4959. (layer "F.CrtYd")
  4960. (uuid "a66ede6f-5f55-4669-96f8-fba7a9e8522f")
  4961. )
  4962. (fp_rect
  4963. (start -1.6 -0.8)
  4964. (end 1.6 0.8)
  4965. (stroke
  4966. (width 0.1)
  4967. (type solid)
  4968. )
  4969. (fill no)
  4970. (layer "F.Fab")
  4971. (uuid "11e7c62f-727e-42de-8bfa-bd87425243b3")
  4972. )
  4973. (fp_text user "${REFERENCE}"
  4974. (at 0 0 90)
  4975. (layer "F.Fab")
  4976. (uuid "1708e95a-2a0d-4dba-9389-6edfd183c1d9")
  4977. (effects
  4978. (font
  4979. (size 0.8 0.8)
  4980. (thickness 0.12)
  4981. )
  4982. )
  4983. )
  4984. (pad "1" smd roundrect
  4985. (at -1.5625 0 90)
  4986. (size 1.325 1.8)
  4987. (layers "F.Cu" "F.Mask" "F.Paste")
  4988. (roundrect_rratio 0.188679)
  4989. (net "+5V")
  4990. (pintype "passive")
  4991. (uuid "d7289085-d63d-4575-b085-cd0e65b692e6")
  4992. )
  4993. (pad "2" smd roundrect
  4994. (at 1.5625 0 90)
  4995. (size 1.325 1.8)
  4996. (layers "F.Cu" "F.Mask" "F.Paste")
  4997. (roundrect_rratio 0.188679)
  4998. (net "GND")
  4999. (pintype "passive")
  5000. (uuid "26c1c02b-1150-43fe-bca2-91ec0d4e5167")
  5001. )
  5002. (embedded_fonts no)
  5003. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  5004. (offset
  5005. (xyz 0 0 0)
  5006. )
  5007. (scale
  5008. (xyz 1 1 1)
  5009. )
  5010. (rotate
  5011. (xyz 0 0 0)
  5012. )
  5013. )
  5014. )
  5015. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  5016. (layer "F.Cu")
  5017. (uuid "9cfd1414-6a49-495d-bd32-32a61670de44")
  5018. (at 102.2 83.1 90)
  5019. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  5020. (tags "resistor handsolder")
  5021. (property "Reference" "R4"
  5022. (at 0 -1.83 90)
  5023. (layer "F.SilkS")
  5024. (uuid "d0220926-5917-43a4-b21a-7fafa7e29d64")
  5025. (effects
  5026. (font
  5027. (size 1 1)
  5028. (thickness 0.15)
  5029. )
  5030. )
  5031. )
  5032. (property "Value" "10k"
  5033. (at 0 1.83 90)
  5034. (layer "F.Fab")
  5035. (uuid "957be10c-d96f-4e51-bd68-120de04782d2")
  5036. (effects
  5037. (font
  5038. (size 1 1)
  5039. (thickness 0.15)
  5040. )
  5041. )
  5042. )
  5043. (property "Datasheet" ""
  5044. (at 0 0 90)
  5045. (layer "F.Fab")
  5046. (hide yes)
  5047. (uuid "b7bd0847-6aa2-4002-aab2-3aa007298cf2")
  5048. (effects
  5049. (font
  5050. (size 1.27 1.27)
  5051. )
  5052. )
  5053. )
  5054. (property "Description" "Resistor"
  5055. (at 0 0 90)
  5056. (layer "F.Fab")
  5057. (hide yes)
  5058. (uuid "b21c7c31-7c4b-483d-8619-850c8edc90c0")
  5059. (effects
  5060. (font
  5061. (size 1.27 1.27)
  5062. )
  5063. )
  5064. )
  5065. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  5066. (at 0 0 90)
  5067. (layer "F.SilkS")
  5068. (hide yes)
  5069. (uuid "721ab649-57d9-4557-ae32-e536ddef6eca")
  5070. (effects
  5071. (font
  5072. (size 1 1)
  5073. (thickness 0.15)
  5074. )
  5075. )
  5076. )
  5077. (property ki_fp_filters "R_*")
  5078. (path "/61d90625-cf7d-4b0e-a402-280f678c738c/75105437-cf16-4a41-b8e3-9b0d841ed460")
  5079. (sheetname "/IMU/")
  5080. (sheetfile "imu.kicad_sch")
  5081. (units
  5082. (unit
  5083. (name "A")
  5084. (pins "1" "2")
  5085. )
  5086. )
  5087. (attr smd)
  5088. (duplicate_pad_numbers_are_jumpers no)
  5089. (fp_line
  5090. (start -0.727064 -0.91)
  5091. (end 0.727064 -0.91)
  5092. (stroke
  5093. (width 0.12)
  5094. (type solid)
  5095. )
  5096. (layer "F.SilkS")
  5097. (uuid "a97d2942-6721-4353-9465-0ef9d0093487")
  5098. )
  5099. (fp_line
  5100. (start -0.727064 0.91)
  5101. (end 0.727064 0.91)
  5102. (stroke
  5103. (width 0.12)
  5104. (type solid)
  5105. )
  5106. (layer "F.SilkS")
  5107. (uuid "66543d04-9c0e-4661-ba33-89ce7f8d766b")
  5108. )
  5109. (fp_rect
  5110. (start -2.45 -1.13)
  5111. (end 2.45 1.13)
  5112. (stroke
  5113. (width 0.05)
  5114. (type solid)
  5115. )
  5116. (fill no)
  5117. (layer "F.CrtYd")
  5118. (uuid "2d97ffa3-9569-4b49-b0db-e66268d4c287")
  5119. )
  5120. (fp_rect
  5121. (start -1.6 -0.8)
  5122. (end 1.6 0.8)
  5123. (stroke
  5124. (width 0.1)
  5125. (type solid)
  5126. )
  5127. (fill no)
  5128. (layer "F.Fab")
  5129. (uuid "238224cd-1a5b-4b7b-a882-a8848d202c79")
  5130. )
  5131. (fp_text user "${REFERENCE}"
  5132. (at 0 0 90)
  5133. (layer "F.Fab")
  5134. (uuid "fbd7b28a-704b-4bd9-8c89-3133643059dd")
  5135. (effects
  5136. (font
  5137. (size 0.8 0.8)
  5138. (thickness 0.12)
  5139. )
  5140. )
  5141. )
  5142. (pad "1" smd roundrect
  5143. (at -1.55 0 90)
  5144. (size 1.3 1.75)
  5145. (layers "F.Cu" "F.Mask" "F.Paste")
  5146. (roundrect_rratio 0.192308)
  5147. (net "+3V3")
  5148. (pintype "passive")
  5149. (uuid "baacd6ef-7bde-4079-ac83-008b6a9746b7")
  5150. )
  5151. (pad "2" smd roundrect
  5152. (at 1.55 0 90)
  5153. (size 1.3 1.75)
  5154. (layers "F.Cu" "F.Mask" "F.Paste")
  5155. (roundrect_rratio 0.192308)
  5156. (net "Net-(U2-SDX)")
  5157. (pintype "passive")
  5158. (uuid "af2a3592-2d5e-43c4-b47c-165df0ea210c")
  5159. )
  5160. (embedded_fonts no)
  5161. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  5162. (offset
  5163. (xyz 0 0 0)
  5164. )
  5165. (scale
  5166. (xyz 1 1 1)
  5167. )
  5168. (rotate
  5169. (xyz 0 0 0)
  5170. )
  5171. )
  5172. )
  5173. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  5174. (layer "F.Cu")
  5175. (uuid "aa960938-594f-4f83-b157-b285cdacf733")
  5176. (at 205.765 97.485)
  5177. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  5178. (tags "capacitor handsolder")
  5179. (property "Reference" "C11"
  5180. (at 0 -1.85 0)
  5181. (layer "F.SilkS")
  5182. (uuid "e592e8af-43e2-4950-b25f-ea8a0d6c990a")
  5183. (effects
  5184. (font
  5185. (size 1 1)
  5186. (thickness 0.15)
  5187. )
  5188. )
  5189. )
  5190. (property "Value" "100n"
  5191. (at 0 1.85 0)
  5192. (layer "F.Fab")
  5193. (uuid "c825db66-1bfa-4b8c-93b5-92a06bb5e631")
  5194. (effects
  5195. (font
  5196. (size 1 1)
  5197. (thickness 0.15)
  5198. )
  5199. )
  5200. )
  5201. (property "Datasheet" ""
  5202. (at 0 0 0)
  5203. (layer "F.Fab")
  5204. (hide yes)
  5205. (uuid "a3996258-0b83-4231-b098-f3aeb4482775")
  5206. (effects
  5207. (font
  5208. (size 1.27 1.27)
  5209. )
  5210. )
  5211. )
  5212. (property "Description" "Unpolarized capacitor"
  5213. (at 0 0 0)
  5214. (layer "F.Fab")
  5215. (hide yes)
  5216. (uuid "91a27f98-3371-4eea-b65f-5e5b2e7ffc8a")
  5217. (effects
  5218. (font
  5219. (size 1.27 1.27)
  5220. )
  5221. )
  5222. )
  5223. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  5224. (at 0 0 0)
  5225. (layer "F.SilkS")
  5226. (hide yes)
  5227. (uuid "e37db75b-458b-473b-9c4c-a5f331664614")
  5228. (effects
  5229. (font
  5230. (size 1 1)
  5231. (thickness 0.15)
  5232. )
  5233. )
  5234. )
  5235. (property ki_fp_filters "C_*")
  5236. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/79a630b4-d8c4-483a-b4f5-2f711f692ffb")
  5237. (sheetname "/IO/")
  5238. (sheetfile "io.kicad_sch")
  5239. (units
  5240. (unit
  5241. (name "A")
  5242. (pins "1" "2")
  5243. )
  5244. )
  5245. (attr smd)
  5246. (duplicate_pad_numbers_are_jumpers no)
  5247. (fp_line
  5248. (start -0.711252 -0.91)
  5249. (end 0.711252 -0.91)
  5250. (stroke
  5251. (width 0.12)
  5252. (type solid)
  5253. )
  5254. (layer "F.SilkS")
  5255. (uuid "c316eaed-0e6b-405a-90a1-aa66d8c39f43")
  5256. )
  5257. (fp_line
  5258. (start -0.711252 0.91)
  5259. (end 0.711252 0.91)
  5260. (stroke
  5261. (width 0.12)
  5262. (type solid)
  5263. )
  5264. (layer "F.SilkS")
  5265. (uuid "cd53b328-807f-4633-b307-468a60228103")
  5266. )
  5267. (fp_rect
  5268. (start -2.48 -1.15)
  5269. (end 2.48 1.15)
  5270. (stroke
  5271. (width 0.05)
  5272. (type solid)
  5273. )
  5274. (fill no)
  5275. (layer "F.CrtYd")
  5276. (uuid "0df2eec0-3925-4939-a81c-75a26942b07a")
  5277. )
  5278. (fp_rect
  5279. (start -1.6 -0.8)
  5280. (end 1.6 0.8)
  5281. (stroke
  5282. (width 0.1)
  5283. (type solid)
  5284. )
  5285. (fill no)
  5286. (layer "F.Fab")
  5287. (uuid "feb042da-0806-48d8-b78d-b57914cf1f25")
  5288. )
  5289. (fp_text user "${REFERENCE}"
  5290. (at 0 0 0)
  5291. (layer "F.Fab")
  5292. (uuid "be6393d7-ca89-400e-87dc-9e40c168e3be")
  5293. (effects
  5294. (font
  5295. (size 0.8 0.8)
  5296. (thickness 0.12)
  5297. )
  5298. )
  5299. )
  5300. (pad "1" smd roundrect
  5301. (at -1.5625 0)
  5302. (size 1.325 1.8)
  5303. (layers "F.Cu" "F.Mask" "F.Paste")
  5304. (roundrect_rratio 0.188679)
  5305. (net "/IO/SWITCH")
  5306. (pintype "passive")
  5307. (uuid "d3efd95f-e025-48a7-828a-0a458516792d")
  5308. )
  5309. (pad "2" smd roundrect
  5310. (at 1.5625 0)
  5311. (size 1.325 1.8)
  5312. (layers "F.Cu" "F.Mask" "F.Paste")
  5313. (roundrect_rratio 0.188679)
  5314. (net "GND")
  5315. (pintype "passive")
  5316. (uuid "73736c76-118a-4c3f-92a5-504a8672b4ca")
  5317. )
  5318. (embedded_fonts no)
  5319. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  5320. (offset
  5321. (xyz 0 0 0)
  5322. )
  5323. (scale
  5324. (xyz 1 1 1)
  5325. )
  5326. (rotate
  5327. (xyz 0 0 0)
  5328. )
  5329. )
  5330. )
  5331. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  5332. (layer "F.Cu")
  5333. (uuid "aede8cc7-fabc-4720-aeaa-24397c08bd15")
  5334. (at 229.355 52.715)
  5335. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  5336. (tags "resistor handsolder")
  5337. (property "Reference" "R2"
  5338. (at 0 -1.83 0)
  5339. (layer "F.SilkS")
  5340. (uuid "ffde276e-b3ac-49a5-ab08-0cf764f3f9a9")
  5341. (effects
  5342. (font
  5343. (size 1 1)
  5344. (thickness 0.15)
  5345. )
  5346. )
  5347. )
  5348. (property "Value" "10k"
  5349. (at 0 1.83 0)
  5350. (layer "F.Fab")
  5351. (uuid "4c46de6d-fa72-45c4-9129-b5a71fc6311b")
  5352. (effects
  5353. (font
  5354. (size 1 1)
  5355. (thickness 0.15)
  5356. )
  5357. )
  5358. )
  5359. (property "Datasheet" ""
  5360. (at 0 0 0)
  5361. (layer "F.Fab")
  5362. (hide yes)
  5363. (uuid "714d6dd7-4fd6-49df-ba82-6b64c644d93d")
  5364. (effects
  5365. (font
  5366. (size 1.27 1.27)
  5367. )
  5368. )
  5369. )
  5370. (property "Description" "Resistor"
  5371. (at 0 0 0)
  5372. (layer "F.Fab")
  5373. (hide yes)
  5374. (uuid "b13f84fc-e650-47a3-ae61-0fa85528600a")
  5375. (effects
  5376. (font
  5377. (size 1.27 1.27)
  5378. )
  5379. )
  5380. )
  5381. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  5382. (at 0 0 0)
  5383. (layer "F.SilkS")
  5384. (hide yes)
  5385. (uuid "4cf7969b-fcb5-48de-bf6a-c67bce7d3481")
  5386. (effects
  5387. (font
  5388. (size 1 1)
  5389. (thickness 0.15)
  5390. )
  5391. )
  5392. )
  5393. (property ki_fp_filters "R_*")
  5394. (path "/0a5bfc67-f86c-4d5b-8ddb-d673aa97ba2e/c2fae6de-c805-4290-afce-9046322d6ec9")
  5395. (sheetname "/Motion controller/")
  5396. (sheetfile "motion_controller.kicad_sch")
  5397. (units
  5398. (unit
  5399. (name "A")
  5400. (pins "1" "2")
  5401. )
  5402. )
  5403. (attr smd)
  5404. (duplicate_pad_numbers_are_jumpers no)
  5405. (fp_line
  5406. (start -0.727064 -0.91)
  5407. (end 0.727064 -0.91)
  5408. (stroke
  5409. (width 0.12)
  5410. (type solid)
  5411. )
  5412. (layer "F.SilkS")
  5413. (uuid "469435c7-8673-404a-8289-2c8d9f029999")
  5414. )
  5415. (fp_line
  5416. (start -0.727064 0.91)
  5417. (end 0.727064 0.91)
  5418. (stroke
  5419. (width 0.12)
  5420. (type solid)
  5421. )
  5422. (layer "F.SilkS")
  5423. (uuid "c5e8e952-1d1c-4cae-8b05-b83474737af7")
  5424. )
  5425. (fp_rect
  5426. (start -2.45 -1.13)
  5427. (end 2.45 1.13)
  5428. (stroke
  5429. (width 0.05)
  5430. (type solid)
  5431. )
  5432. (fill no)
  5433. (layer "F.CrtYd")
  5434. (uuid "6b710db7-63a2-438b-b5d3-260849b837d6")
  5435. )
  5436. (fp_rect
  5437. (start -1.6 -0.8)
  5438. (end 1.6 0.8)
  5439. (stroke
  5440. (width 0.1)
  5441. (type solid)
  5442. )
  5443. (fill no)
  5444. (layer "F.Fab")
  5445. (uuid "41fc19e0-16cf-4622-9393-710db6371bdb")
  5446. )
  5447. (fp_text user "${REFERENCE}"
  5448. (at 0 0 0)
  5449. (layer "F.Fab")
  5450. (uuid "e7f3525a-6345-4b11-aac1-75414837de22")
  5451. (effects
  5452. (font
  5453. (size 0.8 0.8)
  5454. (thickness 0.12)
  5455. )
  5456. )
  5457. )
  5458. (pad "1" smd roundrect
  5459. (at -1.55 0)
  5460. (size 1.3 1.75)
  5461. (layers "F.Cu" "F.Mask" "F.Paste")
  5462. (roundrect_rratio 0.192308)
  5463. (net "+3V3")
  5464. (pintype "passive")
  5465. (uuid "e1b8f868-5e68-4849-bb66-3cdb7d31345e")
  5466. )
  5467. (pad "2" smd roundrect
  5468. (at 1.55 0)
  5469. (size 1.3 1.75)
  5470. (layers "F.Cu" "F.Mask" "F.Paste")
  5471. (roundrect_rratio 0.192308)
  5472. (net "/Communication/TX")
  5473. (pintype "passive")
  5474. (uuid "1d4c47d8-ed72-44ae-89a0-d85754261e4c")
  5475. )
  5476. (embedded_fonts no)
  5477. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  5478. (offset
  5479. (xyz 0 0 0)
  5480. )
  5481. (scale
  5482. (xyz 1 1 1)
  5483. )
  5484. (rotate
  5485. (xyz 0 0 0)
  5486. )
  5487. )
  5488. )
  5489. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  5490. (layer "F.Cu")
  5491. (uuid "b1b60327-6c44-45bd-9e73-665b7b2b8745")
  5492. (at 229.355 56.025)
  5493. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  5494. (tags "resistor handsolder")
  5495. (property "Reference" "R3"
  5496. (at 0 -1.83 0)
  5497. (layer "F.SilkS")
  5498. (uuid "a18a12d1-f579-48cf-b61a-dd7cba17933f")
  5499. (effects
  5500. (font
  5501. (size 1 1)
  5502. (thickness 0.15)
  5503. )
  5504. )
  5505. )
  5506. (property "Value" "10k"
  5507. (at 0 1.83 0)
  5508. (layer "F.Fab")
  5509. (uuid "f04c8118-4390-466a-920d-a4d6171b4c8d")
  5510. (effects
  5511. (font
  5512. (size 1 1)
  5513. (thickness 0.15)
  5514. )
  5515. )
  5516. )
  5517. (property "Datasheet" ""
  5518. (at 0 0 0)
  5519. (layer "F.Fab")
  5520. (hide yes)
  5521. (uuid "13ab5e91-6e16-494f-8244-786790723132")
  5522. (effects
  5523. (font
  5524. (size 1.27 1.27)
  5525. )
  5526. )
  5527. )
  5528. (property "Description" "Resistor"
  5529. (at 0 0 0)
  5530. (layer "F.Fab")
  5531. (hide yes)
  5532. (uuid "0e9b6506-3850-4c12-80bd-166287f43527")
  5533. (effects
  5534. (font
  5535. (size 1.27 1.27)
  5536. )
  5537. )
  5538. )
  5539. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  5540. (at 0 0 0)
  5541. (layer "F.SilkS")
  5542. (hide yes)
  5543. (uuid "a50dc7d2-2c09-485a-ba23-44f33f978208")
  5544. (effects
  5545. (font
  5546. (size 1 1)
  5547. (thickness 0.15)
  5548. )
  5549. )
  5550. )
  5551. (property ki_fp_filters "R_*")
  5552. (path "/0a5bfc67-f86c-4d5b-8ddb-d673aa97ba2e/0bfdfc4c-8089-42a3-bc69-0eb59e6dc4ad")
  5553. (sheetname "/Motion controller/")
  5554. (sheetfile "motion_controller.kicad_sch")
  5555. (units
  5556. (unit
  5557. (name "A")
  5558. (pins "1" "2")
  5559. )
  5560. )
  5561. (attr smd)
  5562. (duplicate_pad_numbers_are_jumpers no)
  5563. (fp_line
  5564. (start -0.727064 -0.91)
  5565. (end 0.727064 -0.91)
  5566. (stroke
  5567. (width 0.12)
  5568. (type solid)
  5569. )
  5570. (layer "F.SilkS")
  5571. (uuid "6a0aec64-ef0a-4c27-bc26-13a6ee4e99a9")
  5572. )
  5573. (fp_line
  5574. (start -0.727064 0.91)
  5575. (end 0.727064 0.91)
  5576. (stroke
  5577. (width 0.12)
  5578. (type solid)
  5579. )
  5580. (layer "F.SilkS")
  5581. (uuid "3185367a-4ffd-4c92-98b2-9650485aeaec")
  5582. )
  5583. (fp_rect
  5584. (start -2.45 -1.13)
  5585. (end 2.45 1.13)
  5586. (stroke
  5587. (width 0.05)
  5588. (type solid)
  5589. )
  5590. (fill no)
  5591. (layer "F.CrtYd")
  5592. (uuid "66fbe5ac-c89b-4575-9780-1090106193c0")
  5593. )
  5594. (fp_rect
  5595. (start -1.6 -0.8)
  5596. (end 1.6 0.8)
  5597. (stroke
  5598. (width 0.1)
  5599. (type solid)
  5600. )
  5601. (fill no)
  5602. (layer "F.Fab")
  5603. (uuid "b509fce3-12d3-45f9-bbc7-6ac831fbca55")
  5604. )
  5605. (fp_text user "${REFERENCE}"
  5606. (at 0 0 0)
  5607. (layer "F.Fab")
  5608. (uuid "e7a7df9a-6ac8-4841-9165-eb45aacfd116")
  5609. (effects
  5610. (font
  5611. (size 0.8 0.8)
  5612. (thickness 0.12)
  5613. )
  5614. )
  5615. )
  5616. (pad "1" smd roundrect
  5617. (at -1.55 0)
  5618. (size 1.3 1.75)
  5619. (layers "F.Cu" "F.Mask" "F.Paste")
  5620. (roundrect_rratio 0.192308)
  5621. (net "+3V3")
  5622. (pintype "passive")
  5623. (uuid "c6838533-3f1f-435f-8b0b-12343b65333b")
  5624. )
  5625. (pad "2" smd roundrect
  5626. (at 1.55 0)
  5627. (size 1.3 1.75)
  5628. (layers "F.Cu" "F.Mask" "F.Paste")
  5629. (roundrect_rratio 0.192308)
  5630. (net "/Communication/RX")
  5631. (pintype "passive")
  5632. (uuid "e1cac240-c2c2-4dea-b036-90a4f9afbf1c")
  5633. )
  5634. (embedded_fonts no)
  5635. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  5636. (offset
  5637. (xyz 0 0 0)
  5638. )
  5639. (scale
  5640. (xyz 1 1 1)
  5641. )
  5642. (rotate
  5643. (xyz 0 0 0)
  5644. )
  5645. )
  5646. )
  5647. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  5648. (layer "F.Cu")
  5649. (uuid "b38ba68c-9ec9-4eaa-bb9a-c8495b325fe8")
  5650. (at 220.715 78.875)
  5651. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  5652. (tags "capacitor handsolder")
  5653. (property "Reference" "C16"
  5654. (at 0 -1.85 0)
  5655. (layer "F.SilkS")
  5656. (uuid "1ca4e6e3-eedf-47f8-b5f1-bf7ddaefd5b2")
  5657. (effects
  5658. (font
  5659. (size 1 1)
  5660. (thickness 0.15)
  5661. )
  5662. )
  5663. )
  5664. (property "Value" "100n"
  5665. (at 0 1.85 0)
  5666. (layer "F.Fab")
  5667. (uuid "1e6159a9-5b87-4a61-91e5-9bb5bccda789")
  5668. (effects
  5669. (font
  5670. (size 1 1)
  5671. (thickness 0.15)
  5672. )
  5673. )
  5674. )
  5675. (property "Datasheet" ""
  5676. (at 0 0 0)
  5677. (layer "F.Fab")
  5678. (hide yes)
  5679. (uuid "80f5bc2b-86b3-4319-8164-2717fc75c048")
  5680. (effects
  5681. (font
  5682. (size 1.27 1.27)
  5683. )
  5684. )
  5685. )
  5686. (property "Description" "Unpolarized capacitor"
  5687. (at 0 0 0)
  5688. (layer "F.Fab")
  5689. (hide yes)
  5690. (uuid "ac4ea5e8-03b9-4256-9f5d-baf2c0e869de")
  5691. (effects
  5692. (font
  5693. (size 1.27 1.27)
  5694. )
  5695. )
  5696. )
  5697. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  5698. (at 0 0 0)
  5699. (layer "F.SilkS")
  5700. (hide yes)
  5701. (uuid "a8434bb1-b4b0-4a53-913f-bfcd15a3b1ed")
  5702. (effects
  5703. (font
  5704. (size 1 1)
  5705. (thickness 0.15)
  5706. )
  5707. )
  5708. )
  5709. (property ki_fp_filters "C_*")
  5710. (path "/490a7643-0f07-4350-a6a3-47ed0b11455f/1cbc741c-22cf-44d9-874b-dc1b86cce731")
  5711. (sheetname "/Power section/")
  5712. (sheetfile "power_section.kicad_sch")
  5713. (units
  5714. (unit
  5715. (name "A")
  5716. (pins "1" "2")
  5717. )
  5718. )
  5719. (attr smd)
  5720. (duplicate_pad_numbers_are_jumpers no)
  5721. (fp_line
  5722. (start -0.711252 -0.91)
  5723. (end 0.711252 -0.91)
  5724. (stroke
  5725. (width 0.12)
  5726. (type solid)
  5727. )
  5728. (layer "F.SilkS")
  5729. (uuid "80eb145e-a0ba-4ebf-ba4f-8f6e57609f99")
  5730. )
  5731. (fp_line
  5732. (start -0.711252 0.91)
  5733. (end 0.711252 0.91)
  5734. (stroke
  5735. (width 0.12)
  5736. (type solid)
  5737. )
  5738. (layer "F.SilkS")
  5739. (uuid "572555ae-a738-4996-bc78-df026c14839f")
  5740. )
  5741. (fp_rect
  5742. (start -2.48 -1.15)
  5743. (end 2.48 1.15)
  5744. (stroke
  5745. (width 0.05)
  5746. (type solid)
  5747. )
  5748. (fill no)
  5749. (layer "F.CrtYd")
  5750. (uuid "428261c4-8d35-4bcd-9d5f-7e1630dab0b3")
  5751. )
  5752. (fp_rect
  5753. (start -1.6 -0.8)
  5754. (end 1.6 0.8)
  5755. (stroke
  5756. (width 0.1)
  5757. (type solid)
  5758. )
  5759. (fill no)
  5760. (layer "F.Fab")
  5761. (uuid "0496584b-d6a1-4d49-9f4a-55221a148a5c")
  5762. )
  5763. (fp_text user "${REFERENCE}"
  5764. (at 0 0 0)
  5765. (layer "F.Fab")
  5766. (uuid "e012bcd8-64d1-4832-b53f-49b4a865dbef")
  5767. (effects
  5768. (font
  5769. (size 0.8 0.8)
  5770. (thickness 0.12)
  5771. )
  5772. )
  5773. )
  5774. (pad "1" smd roundrect
  5775. (at -1.5625 0)
  5776. (size 1.325 1.8)
  5777. (layers "F.Cu" "F.Mask" "F.Paste")
  5778. (roundrect_rratio 0.188679)
  5779. (net "/Motion controller/BATTERY_LEVEL")
  5780. (pintype "passive")
  5781. (uuid "45b6713b-1bff-4508-80fc-70dd544e3a30")
  5782. )
  5783. (pad "2" smd roundrect
  5784. (at 1.5625 0)
  5785. (size 1.325 1.8)
  5786. (layers "F.Cu" "F.Mask" "F.Paste")
  5787. (roundrect_rratio 0.188679)
  5788. (net "GND")
  5789. (pintype "passive")
  5790. (uuid "aa5c23e1-58f9-4621-86b8-ee32ccb891da")
  5791. )
  5792. (embedded_fonts no)
  5793. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  5794. (offset
  5795. (xyz 0 0 0)
  5796. )
  5797. (scale
  5798. (xyz 1 1 1)
  5799. )
  5800. (rotate
  5801. (xyz 0 0 0)
  5802. )
  5803. )
  5804. )
  5805. (footprint "Package_TO_SOT_SMD:TSOT-23"
  5806. (layer "F.Cu")
  5807. (uuid "b7ad063a-9dee-480c-97bc-58fa7312978e")
  5808. (at 211.445 79.64)
  5809. (descr "3-pin TSOT23 package, http://www.analog.com.tw/pdf/All_In_One.pdf")
  5810. (tags "TSOT-23")
  5811. (property "Reference" "Q5"
  5812. (at 0 -2.6 0)
  5813. (layer "F.SilkS")
  5814. (uuid "cbef9db9-c01d-4e70-a682-37a8de65c1e3")
  5815. (effects
  5816. (font
  5817. (size 1 1)
  5818. (thickness 0.15)
  5819. )
  5820. )
  5821. )
  5822. (property "Value" "YJL2312A"
  5823. (at 0 2.5 0)
  5824. (layer "F.Fab")
  5825. (uuid "3856c1e1-987e-4882-a879-8f1897da5569")
  5826. (effects
  5827. (font
  5828. (size 1 1)
  5829. (thickness 0.15)
  5830. )
  5831. )
  5832. )
  5833. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  5834. (at 0 0 0)
  5835. (unlocked yes)
  5836. (layer "F.Fab")
  5837. (hide yes)
  5838. (uuid "55696fe4-6132-49b5-8ea9-f9338783fc6e")
  5839. (effects
  5840. (font
  5841. (size 1.27 1.27)
  5842. (thickness 0.15)
  5843. )
  5844. )
  5845. )
  5846. (property "Description" ""
  5847. (at 0 0 0)
  5848. (unlocked yes)
  5849. (layer "F.Fab")
  5850. (hide yes)
  5851. (uuid "847fc277-ff4c-4ab1-bb5b-f63ab629d3c2")
  5852. (effects
  5853. (font
  5854. (size 1.27 1.27)
  5855. (thickness 0.15)
  5856. )
  5857. )
  5858. )
  5859. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/5ff12a34-a741-4ba7-8f77-42c62d064800")
  5860. (sheetname "/IO/")
  5861. (sheetfile "io.kicad_sch")
  5862. (units
  5863. (unit
  5864. (name "A")
  5865. (pins "1" "3" "2")
  5866. )
  5867. )
  5868. (attr smd)
  5869. (duplicate_pad_numbers_are_jumpers no)
  5870. (fp_line
  5871. (start 0.945 0.69)
  5872. (end 0.945 1.58)
  5873. (stroke
  5874. (width 0.12)
  5875. (type solid)
  5876. )
  5877. (layer "F.SilkS")
  5878. (uuid "919e418a-f61c-4b9c-a54e-9def7aef7992")
  5879. )
  5880. (fp_line
  5881. (start 0.945 1.58)
  5882. (end -0.905 1.58)
  5883. (stroke
  5884. (width 0.12)
  5885. (type solid)
  5886. )
  5887. (layer "F.SilkS")
  5888. (uuid "eca12e98-06bd-4a25-9fb7-e88aaf42ff31")
  5889. )
  5890. (fp_line
  5891. (start 0.96 -1.54)
  5892. (end -0.89 -1.54)
  5893. (stroke
  5894. (width 0.12)
  5895. (type solid)
  5896. )
  5897. (layer "F.SilkS")
  5898. (uuid "15e31488-d06c-4bdc-9cca-b2750e0cbd3f")
  5899. )
  5900. (fp_line
  5901. (start 0.96 -1.54)
  5902. (end 0.96 -0.65)
  5903. (stroke
  5904. (width 0.12)
  5905. (type solid)
  5906. )
  5907. (layer "F.SilkS")
  5908. (uuid "728cbfed-b152-4f44-b864-fa40a1c43767")
  5909. )
  5910. (fp_poly
  5911. (pts
  5912. (xy -1.28 -1.55) (xy -1.52 -1.88) (xy -1.04 -1.88) (xy -1.28 -1.55)
  5913. )
  5914. (stroke
  5915. (width 0.12)
  5916. (type solid)
  5917. )
  5918. (fill yes)
  5919. (layer "F.SilkS")
  5920. (uuid "55669edd-9eeb-45a8-a050-f10f24a506df")
  5921. )
  5922. (fp_line
  5923. (start -2.17 -1.7)
  5924. (end -2.17 1.7)
  5925. (stroke
  5926. (width 0.05)
  5927. (type solid)
  5928. )
  5929. (layer "F.CrtYd")
  5930. (uuid "8b4d7e12-b9ce-4c65-be08-31d798a07cba")
  5931. )
  5932. (fp_line
  5933. (start -2.17 -1.7)
  5934. (end 2.17 -1.7)
  5935. (stroke
  5936. (width 0.05)
  5937. (type solid)
  5938. )
  5939. (layer "F.CrtYd")
  5940. (uuid "6f2dc263-be43-4fcd-ada3-fd1409ffc4de")
  5941. )
  5942. (fp_line
  5943. (start 2.17 1.7)
  5944. (end -2.17 1.7)
  5945. (stroke
  5946. (width 0.05)
  5947. (type solid)
  5948. )
  5949. (layer "F.CrtYd")
  5950. (uuid "a0d45044-9417-4ee8-8cab-9b32bf8a4489")
  5951. )
  5952. (fp_line
  5953. (start 2.17 1.7)
  5954. (end 2.17 -1.7)
  5955. (stroke
  5956. (width 0.05)
  5957. (type solid)
  5958. )
  5959. (layer "F.CrtYd")
  5960. (uuid "ff9bd91f-fe04-426b-852f-41c94663c63a")
  5961. )
  5962. (fp_line
  5963. (start -0.88 -1)
  5964. (end -0.88 1.45)
  5965. (stroke
  5966. (width 0.1)
  5967. (type solid)
  5968. )
  5969. (layer "F.Fab")
  5970. (uuid "027490eb-3731-4ac5-b15c-ae3308ba737d")
  5971. )
  5972. (fp_line
  5973. (start -0.88 -1)
  5974. (end -0.43 -1.45)
  5975. (stroke
  5976. (width 0.1)
  5977. (type solid)
  5978. )
  5979. (layer "F.Fab")
  5980. (uuid "a99e1b02-ce2d-42ad-8e2d-7ed30b84f919")
  5981. )
  5982. (fp_line
  5983. (start 0.88 -1.45)
  5984. (end -0.43 -1.45)
  5985. (stroke
  5986. (width 0.1)
  5987. (type solid)
  5988. )
  5989. (layer "F.Fab")
  5990. (uuid "bcaa49dc-ed39-4c00-b47f-45f229270596")
  5991. )
  5992. (fp_line
  5993. (start 0.88 -1.45)
  5994. (end 0.88 1.45)
  5995. (stroke
  5996. (width 0.1)
  5997. (type solid)
  5998. )
  5999. (layer "F.Fab")
  6000. (uuid "76158c88-c8aa-40c5-b927-f258657be859")
  6001. )
  6002. (fp_line
  6003. (start 0.88 1.45)
  6004. (end -0.88 1.45)
  6005. (stroke
  6006. (width 0.1)
  6007. (type solid)
  6008. )
  6009. (layer "F.Fab")
  6010. (uuid "2cf081ef-a2d2-4508-bcf0-e6589faae88e")
  6011. )
  6012. (fp_text user "${REFERENCE}"
  6013. (at 0 0 90)
  6014. (layer "F.Fab")
  6015. (uuid "2820d263-e343-4600-acc6-921f474d6348")
  6016. (effects
  6017. (font
  6018. (size 0.5 0.5)
  6019. (thickness 0.075)
  6020. )
  6021. )
  6022. )
  6023. (pad "1" smd roundrect
  6024. (at -1.31 -0.95)
  6025. (size 1.22 0.65)
  6026. (layers "F.Cu" "F.Mask" "F.Paste")
  6027. (roundrect_rratio 0.25)
  6028. (net "+3V3")
  6029. (pintype "input")
  6030. (uuid "b9e17b81-836e-4a03-a7cf-df5e237eb8ef")
  6031. )
  6032. (pad "2" smd roundrect
  6033. (at -1.31 0.95)
  6034. (size 1.22 0.65)
  6035. (layers "F.Cu" "F.Mask" "F.Paste")
  6036. (roundrect_rratio 0.25)
  6037. (net "/Communication/LEDS_CHAIN")
  6038. (pintype "power_in")
  6039. (uuid "5ecabd3d-8057-424e-9503-534902298188")
  6040. )
  6041. (pad "3" smd roundrect
  6042. (at 1.31 0)
  6043. (size 1.22 0.65)
  6044. (layers "F.Cu" "F.Mask" "F.Paste")
  6045. (roundrect_rratio 0.25)
  6046. (net "Net-(Q5-Pad3)")
  6047. (pintype "power_out")
  6048. (uuid "1e7721c7-52eb-42ea-85ab-0aeb9bc6bd38")
  6049. )
  6050. (embedded_fonts no)
  6051. (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TSOT-23.step"
  6052. (offset
  6053. (xyz 0 0 0)
  6054. )
  6055. (scale
  6056. (xyz 1 1 1)
  6057. )
  6058. (rotate
  6059. (xyz 0 0 0)
  6060. )
  6061. )
  6062. )
  6063. (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
  6064. (layer "F.Cu")
  6065. (uuid "baa32cc5-1093-48ad-a61a-0f8b82fbac3a")
  6066. (at 139.05 81.65 -90)
  6067. (descr "module CMS SOT223 4 pins")
  6068. (tags "CMS SOT")
  6069. (property "Reference" "U3"
  6070. (at 0 -4.5 90)
  6071. (layer "F.SilkS")
  6072. (uuid "b95f79f5-a9a6-4914-b584-443742526fac")
  6073. (effects
  6074. (font
  6075. (size 1 1)
  6076. (thickness 0.15)
  6077. )
  6078. )
  6079. )
  6080. (property "Value" "LM1117MP-3.3"
  6081. (at 0 4.5 90)
  6082. (layer "F.Fab")
  6083. (uuid "ccd60d60-280e-4d52-b95b-800a90eee096")
  6084. (effects
  6085. (font
  6086. (size 1 1)
  6087. (thickness 0.15)
  6088. )
  6089. )
  6090. )
  6091. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  6092. (at 0 0 270)
  6093. (unlocked yes)
  6094. (layer "F.Fab")
  6095. (hide yes)
  6096. (uuid "b880e8a5-877e-4db7-b89d-cbff06409635")
  6097. (effects
  6098. (font
  6099. (size 1.27 1.27)
  6100. (thickness 0.15)
  6101. )
  6102. )
  6103. )
  6104. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
  6105. (at 0 0 270)
  6106. (unlocked yes)
  6107. (layer "F.Fab")
  6108. (hide yes)
  6109. (uuid "bbb5b565-80e3-4d0d-923b-61f310b6393f")
  6110. (effects
  6111. (font
  6112. (size 1.27 1.27)
  6113. (thickness 0.15)
  6114. )
  6115. )
  6116. )
  6117. (property ki_fp_filters "SOT?223*")
  6118. (path "/490a7643-0f07-4350-a6a3-47ed0b11455f/0d98c89f-e09f-47c0-a07e-0d4802028ddf")
  6119. (sheetname "/Power section/")
  6120. (sheetfile "power_section.kicad_sch")
  6121. (units
  6122. (unit
  6123. (name "A")
  6124. (pins "3" "1" "2")
  6125. )
  6126. )
  6127. (attr smd)
  6128. (duplicate_pad_numbers_are_jumpers no)
  6129. (fp_line
  6130. (start -1.85 3.41)
  6131. (end 1.91 3.41)
  6132. (stroke
  6133. (width 0.12)
  6134. (type solid)
  6135. )
  6136. (layer "F.SilkS")
  6137. (uuid "0744772a-e035-48d8-94fd-4e8b716d78a3")
  6138. )
  6139. (fp_line
  6140. (start 1.91 3.41)
  6141. (end 1.91 2.15)
  6142. (stroke
  6143. (width 0.12)
  6144. (type solid)
  6145. )
  6146. (layer "F.SilkS")
  6147. (uuid "d33ab835-2733-4039-a668-c6a584d91e35")
  6148. )
  6149. (fp_line
  6150. (start -1.85 -3.41)
  6151. (end 1.91 -3.41)
  6152. (stroke
  6153. (width 0.12)
  6154. (type solid)
  6155. )
  6156. (layer "F.SilkS")
  6157. (uuid "9f71d1f2-f4d7-4c3f-a106-63e0b42f887d")
  6158. )
  6159. (fp_line
  6160. (start 1.91 -3.41)
  6161. (end 1.91 -2.15)
  6162. (stroke
  6163. (width 0.12)
  6164. (type solid)
  6165. )
  6166. (layer "F.SilkS")
  6167. (uuid "af56ccd3-97d6-48b4-b928-50ca5999abfa")
  6168. )
  6169. (fp_poly
  6170. (pts
  6171. (xy -3.13 -3.31) (xy -3.37 -3.64) (xy -2.89 -3.64) (xy -3.13 -3.31)
  6172. )
  6173. (stroke
  6174. (width 0.12)
  6175. (type solid)
  6176. )
  6177. (fill yes)
  6178. (layer "F.SilkS")
  6179. (uuid "f746c4a1-5681-45e5-ad58-4e390e8c2902")
  6180. )
  6181. (fp_line
  6182. (start -4.4 3.6)
  6183. (end 4.4 3.6)
  6184. (stroke
  6185. (width 0.05)
  6186. (type solid)
  6187. )
  6188. (layer "F.CrtYd")
  6189. (uuid "0b6a08ca-40df-4ac9-85e8-e3b8d410de40")
  6190. )
  6191. (fp_line
  6192. (start 4.4 3.6)
  6193. (end 4.4 -3.6)
  6194. (stroke
  6195. (width 0.05)
  6196. (type solid)
  6197. )
  6198. (layer "F.CrtYd")
  6199. (uuid "846d5265-2d8f-4fbe-88cf-9e5d2472e7e4")
  6200. )
  6201. (fp_line
  6202. (start -4.4 -3.6)
  6203. (end -4.4 3.6)
  6204. (stroke
  6205. (width 0.05)
  6206. (type solid)
  6207. )
  6208. (layer "F.CrtYd")
  6209. (uuid "31b47c94-8a37-400e-b822-a7a18a60b182")
  6210. )
  6211. (fp_line
  6212. (start 4.4 -3.6)
  6213. (end -4.4 -3.6)
  6214. (stroke
  6215. (width 0.05)
  6216. (type solid)
  6217. )
  6218. (layer "F.CrtYd")
  6219. (uuid "80b1fc9a-889c-4dbc-a4cf-37a6a8659c0f")
  6220. )
  6221. (fp_line
  6222. (start -1.85 3.35)
  6223. (end 1.85 3.35)
  6224. (stroke
  6225. (width 0.1)
  6226. (type solid)
  6227. )
  6228. (layer "F.Fab")
  6229. (uuid "10f313b8-c2ea-439e-83e8-4adb6de66a13")
  6230. )
  6231. (fp_line
  6232. (start -1.85 -2.35)
  6233. (end -1.85 3.35)
  6234. (stroke
  6235. (width 0.1)
  6236. (type solid)
  6237. )
  6238. (layer "F.Fab")
  6239. (uuid "7ab2e6a6-7527-4d50-b248-bdd5aa7ae302")
  6240. )
  6241. (fp_line
  6242. (start -1.85 -2.35)
  6243. (end -0.85 -3.35)
  6244. (stroke
  6245. (width 0.1)
  6246. (type solid)
  6247. )
  6248. (layer "F.Fab")
  6249. (uuid "8ecc1c22-6e43-40b9-801c-4b96a8bd469f")
  6250. )
  6251. (fp_line
  6252. (start -0.85 -3.35)
  6253. (end 1.85 -3.35)
  6254. (stroke
  6255. (width 0.1)
  6256. (type solid)
  6257. )
  6258. (layer "F.Fab")
  6259. (uuid "30b933c9-4867-431b-bffe-a7a5ab6653d3")
  6260. )
  6261. (fp_line
  6262. (start 1.85 -3.35)
  6263. (end 1.85 3.35)
  6264. (stroke
  6265. (width 0.1)
  6266. (type solid)
  6267. )
  6268. (layer "F.Fab")
  6269. (uuid "7265cb49-bd11-4d9b-8ce5-e0c65d782b6f")
  6270. )
  6271. (fp_text user "${REFERENCE}"
  6272. (at 0 0 0)
  6273. (layer "F.Fab")
  6274. (uuid "213c474c-22da-496b-90f6-716f25540689")
  6275. (effects
  6276. (font
  6277. (size 0.8 0.8)
  6278. (thickness 0.12)
  6279. )
  6280. )
  6281. )
  6282. (pad "1" smd roundrect
  6283. (at -3.15 -2.3 270)
  6284. (size 2 1.5)
  6285. (layers "F.Cu" "F.Mask" "F.Paste")
  6286. (roundrect_rratio 0.25)
  6287. (net "GND")
  6288. (pinfunction "GND_1")
  6289. (pintype "power_in")
  6290. (uuid "e1d4bc9d-6a2e-4f95-8744-804595cdcedb")
  6291. )
  6292. (pad "2" smd roundrect
  6293. (at -3.15 0 270)
  6294. (size 2 1.5)
  6295. (layers "F.Cu" "F.Mask" "F.Paste")
  6296. (roundrect_rratio 0.25)
  6297. (net "+3V3")
  6298. (pinfunction "VO_2")
  6299. (pintype "power_out")
  6300. (uuid "dc18c1b7-7a57-4898-bae6-f39a9c9ba45c")
  6301. )
  6302. (pad "2" smd roundrect
  6303. (at 3.15 0 270)
  6304. (size 2 3.8)
  6305. (layers "F.Cu" "F.Mask" "F.Paste")
  6306. (roundrect_rratio 0.25)
  6307. (net "+3V3")
  6308. (pinfunction "VO_2")
  6309. (pintype "power_out")
  6310. (uuid "a2c5626b-cc2e-4ccb-ab57-9dfda8b1b51b")
  6311. )
  6312. (pad "3" smd roundrect
  6313. (at -3.15 2.3 270)
  6314. (size 2 1.5)
  6315. (layers "F.Cu" "F.Mask" "F.Paste")
  6316. (roundrect_rratio 0.25)
  6317. (net "+5V")
  6318. (pinfunction "VI_3")
  6319. (pintype "power_in")
  6320. (uuid "6b33b90f-66d2-444d-a6ef-975771a5206f")
  6321. )
  6322. (embedded_fonts no)
  6323. (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.step"
  6324. (offset
  6325. (xyz 0 0 0)
  6326. )
  6327. (scale
  6328. (xyz 1 1 1)
  6329. )
  6330. (rotate
  6331. (xyz 0 0 0)
  6332. )
  6333. )
  6334. )
  6335. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  6336. (layer "F.Cu")
  6337. (uuid "c348b929-a21e-4b71-b35e-11e1f880f2b2")
  6338. (at 229.355 49.405)
  6339. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  6340. (tags "resistor handsolder")
  6341. (property "Reference" "R1"
  6342. (at 0 -1.83 0)
  6343. (layer "F.SilkS")
  6344. (uuid "fa22ed37-28b3-4bed-80a0-65ed803a9db2")
  6345. (effects
  6346. (font
  6347. (size 1 1)
  6348. (thickness 0.15)
  6349. )
  6350. )
  6351. )
  6352. (property "Value" "10k"
  6353. (at 0 1.83 0)
  6354. (layer "F.Fab")
  6355. (uuid "fdb4579e-c434-437f-a842-c21cc687e191")
  6356. (effects
  6357. (font
  6358. (size 1 1)
  6359. (thickness 0.15)
  6360. )
  6361. )
  6362. )
  6363. (property "Datasheet" ""
  6364. (at 0 0 0)
  6365. (layer "F.Fab")
  6366. (hide yes)
  6367. (uuid "e7f4fe65-4c44-4876-a5a7-5cc742ebda06")
  6368. (effects
  6369. (font
  6370. (size 1.27 1.27)
  6371. )
  6372. )
  6373. )
  6374. (property "Description" "Resistor"
  6375. (at 0 0 0)
  6376. (layer "F.Fab")
  6377. (hide yes)
  6378. (uuid "35184004-57b3-4d3c-bbf3-d59a153bb2d5")
  6379. (effects
  6380. (font
  6381. (size 1.27 1.27)
  6382. )
  6383. )
  6384. )
  6385. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  6386. (at 0 0 0)
  6387. (layer "F.SilkS")
  6388. (hide yes)
  6389. (uuid "6844ad91-33f5-4757-ae12-7db6bbd33b76")
  6390. (effects
  6391. (font
  6392. (size 1 1)
  6393. (thickness 0.15)
  6394. )
  6395. )
  6396. )
  6397. (property ki_fp_filters "R_*")
  6398. (path "/0a5bfc67-f86c-4d5b-8ddb-d673aa97ba2e/c30c4891-97c0-478e-9093-ddd261a9e2f2")
  6399. (sheetname "/Motion controller/")
  6400. (sheetfile "motion_controller.kicad_sch")
  6401. (units
  6402. (unit
  6403. (name "A")
  6404. (pins "1" "2")
  6405. )
  6406. )
  6407. (attr smd)
  6408. (duplicate_pad_numbers_are_jumpers no)
  6409. (fp_line
  6410. (start -0.727064 -0.91)
  6411. (end 0.727064 -0.91)
  6412. (stroke
  6413. (width 0.12)
  6414. (type solid)
  6415. )
  6416. (layer "F.SilkS")
  6417. (uuid "1171f7e4-ae82-4466-a303-0a9f77953935")
  6418. )
  6419. (fp_line
  6420. (start -0.727064 0.91)
  6421. (end 0.727064 0.91)
  6422. (stroke
  6423. (width 0.12)
  6424. (type solid)
  6425. )
  6426. (layer "F.SilkS")
  6427. (uuid "1d4aea89-f827-4833-8930-4869a6173d80")
  6428. )
  6429. (fp_rect
  6430. (start -2.45 -1.13)
  6431. (end 2.45 1.13)
  6432. (stroke
  6433. (width 0.05)
  6434. (type solid)
  6435. )
  6436. (fill no)
  6437. (layer "F.CrtYd")
  6438. (uuid "d22919ca-98a5-4ab0-8cc5-c3e5b078a507")
  6439. )
  6440. (fp_rect
  6441. (start -1.6 -0.8)
  6442. (end 1.6 0.8)
  6443. (stroke
  6444. (width 0.1)
  6445. (type solid)
  6446. )
  6447. (fill no)
  6448. (layer "F.Fab")
  6449. (uuid "426cb07f-dff5-4a09-90f1-b36e1c631154")
  6450. )
  6451. (fp_text user "${REFERENCE}"
  6452. (at 0 0 0)
  6453. (layer "F.Fab")
  6454. (uuid "6b18b940-1c71-4871-8ba5-6c7563623e47")
  6455. (effects
  6456. (font
  6457. (size 0.8 0.8)
  6458. (thickness 0.12)
  6459. )
  6460. )
  6461. )
  6462. (pad "1" smd roundrect
  6463. (at -1.55 0)
  6464. (size 1.3 1.75)
  6465. (layers "F.Cu" "F.Mask" "F.Paste")
  6466. (roundrect_rratio 0.192308)
  6467. (net "+3V3")
  6468. (pintype "passive")
  6469. (uuid "e89a7c27-ca97-4f03-8549-2b6005898f1f")
  6470. )
  6471. (pad "2" smd roundrect
  6472. (at 1.55 0)
  6473. (size 1.3 1.75)
  6474. (layers "F.Cu" "F.Mask" "F.Paste")
  6475. (roundrect_rratio 0.192308)
  6476. (net "Net-(J3-Pin_2)")
  6477. (pintype "passive")
  6478. (uuid "431a5827-8e88-4ee3-9784-3c2a67923596")
  6479. )
  6480. (embedded_fonts no)
  6481. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  6482. (offset
  6483. (xyz 0 0 0)
  6484. )
  6485. (scale
  6486. (xyz 1 1 1)
  6487. )
  6488. (rotate
  6489. (xyz 0 0 0)
  6490. )
  6491. )
  6492. )
  6493. (footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
  6494. (layer "F.Cu")
  6495. (uuid "c6cdbb8b-be14-4564-b552-2b28cf07b64b")
  6496. (at 116.4 110.45 90)
  6497. (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)")
  6498. (tags "LED handsolder")
  6499. (property "Reference" "D6"
  6500. (at 0 -1.83 90)
  6501. (layer "F.SilkS")
  6502. (uuid "ba93245a-2dcc-44da-a840-3215ff01cc97")
  6503. (effects
  6504. (font
  6505. (size 1 1)
  6506. (thickness 0.15)
  6507. )
  6508. )
  6509. )
  6510. (property "Value" "RED"
  6511. (at 0 1.83 90)
  6512. (layer "F.Fab")
  6513. (uuid "a1316e05-8d6a-49f7-8f8f-6f16f6a86a16")
  6514. (effects
  6515. (font
  6516. (size 1 1)
  6517. (thickness 0.15)
  6518. )
  6519. )
  6520. )
  6521. (property "Datasheet" ""
  6522. (at 0 0 90)
  6523. (layer "F.Fab")
  6524. (hide yes)
  6525. (uuid "30bfce5a-2259-43c1-b6af-a164fe430e29")
  6526. (effects
  6527. (font
  6528. (size 1.27 1.27)
  6529. )
  6530. )
  6531. )
  6532. (property "Description" "Light emitting diode"
  6533. (at 0 0 90)
  6534. (layer "F.Fab")
  6535. (hide yes)
  6536. (uuid "75a8d124-2679-4a86-bc44-a8b7225c3ec7")
  6537. (effects
  6538. (font
  6539. (size 1.27 1.27)
  6540. )
  6541. )
  6542. )
  6543. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  6544. (at 0 0 90)
  6545. (layer "F.SilkS")
  6546. (hide yes)
  6547. (uuid "e135366d-494f-47cc-a1c3-af71537b27e3")
  6548. (effects
  6549. (font
  6550. (size 1 1)
  6551. (thickness 0.15)
  6552. )
  6553. )
  6554. )
  6555. (property "Sim.Pins" "1=K 2=A"
  6556. (at 0 0 90)
  6557. (unlocked yes)
  6558. (layer "F.Fab")
  6559. (hide yes)
  6560. (uuid "8e1ea9bd-c104-4521-b405-ec0c91b75bb1")
  6561. (effects
  6562. (font
  6563. (size 1 1)
  6564. (thickness 0.15)
  6565. )
  6566. )
  6567. )
  6568. (property ki_fp_filters "LED* LED_SMD:* LED_THT:*")
  6569. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/86e291a8-0b4d-4c19-8ee9-7e27b9d7c9a7")
  6570. (sheetname "/IO/")
  6571. (sheetfile "io.kicad_sch")
  6572. (units
  6573. (unit
  6574. (name "A")
  6575. (pins "1" "2")
  6576. )
  6577. )
  6578. (attr smd)
  6579. (duplicate_pad_numbers_are_jumpers no)
  6580. (fp_line
  6581. (start 1.6 -1.135)
  6582. (end -2.46 -1.135)
  6583. (stroke
  6584. (width 0.12)
  6585. (type solid)
  6586. )
  6587. (layer "F.SilkS")
  6588. (uuid "7cfebf43-e0a5-43b2-84ab-ad6b52c7b26c")
  6589. )
  6590. (fp_line
  6591. (start -2.46 -1.135)
  6592. (end -2.46 1.135)
  6593. (stroke
  6594. (width 0.12)
  6595. (type solid)
  6596. )
  6597. (layer "F.SilkS")
  6598. (uuid "5e93f5ff-b91f-4f9c-84d4-ef7d975674d3")
  6599. )
  6600. (fp_line
  6601. (start -2.46 1.135)
  6602. (end 1.6 1.135)
  6603. (stroke
  6604. (width 0.12)
  6605. (type solid)
  6606. )
  6607. (layer "F.SilkS")
  6608. (uuid "04203d8b-5d37-4444-ba43-a8d4e795e875")
  6609. )
  6610. (fp_rect
  6611. (start -2.45 -1.13)
  6612. (end 2.45 1.13)
  6613. (stroke
  6614. (width 0.05)
  6615. (type solid)
  6616. )
  6617. (fill no)
  6618. (layer "F.CrtYd")
  6619. (uuid "70df0aaa-bab3-45da-8b2f-a10519ba7c05")
  6620. )
  6621. (fp_line
  6622. (start 1.6 -0.8)
  6623. (end -1.2 -0.8)
  6624. (stroke
  6625. (width 0.1)
  6626. (type solid)
  6627. )
  6628. (layer "F.Fab")
  6629. (uuid "4dfb4fd0-55b2-4b0b-aa33-fe019df7ca1d")
  6630. )
  6631. (fp_line
  6632. (start -1.2 -0.8)
  6633. (end -1.6 -0.4)
  6634. (stroke
  6635. (width 0.1)
  6636. (type solid)
  6637. )
  6638. (layer "F.Fab")
  6639. (uuid "0930b2ec-b5ac-400b-9bfb-6630417858f8")
  6640. )
  6641. (fp_line
  6642. (start -1.6 -0.4)
  6643. (end -1.6 0.8)
  6644. (stroke
  6645. (width 0.1)
  6646. (type solid)
  6647. )
  6648. (layer "F.Fab")
  6649. (uuid "80543c4e-7b2c-47d4-92a3-4ae13e85e2f8")
  6650. )
  6651. (fp_line
  6652. (start 1.6 0.8)
  6653. (end 1.6 -0.8)
  6654. (stroke
  6655. (width 0.1)
  6656. (type solid)
  6657. )
  6658. (layer "F.Fab")
  6659. (uuid "c67237e5-9551-469c-b0e4-826ecac71351")
  6660. )
  6661. (fp_line
  6662. (start -1.6 0.8)
  6663. (end 1.6 0.8)
  6664. (stroke
  6665. (width 0.1)
  6666. (type solid)
  6667. )
  6668. (layer "F.Fab")
  6669. (uuid "cd015ef7-2639-40f0-900a-7e1627b98228")
  6670. )
  6671. (fp_text user "${REFERENCE}"
  6672. (at 0 0 90)
  6673. (layer "F.Fab")
  6674. (uuid "8a12c301-cd43-432b-9879-17afac8d9b73")
  6675. (effects
  6676. (font
  6677. (size 0.8 0.8)
  6678. (thickness 0.12)
  6679. )
  6680. )
  6681. )
  6682. (pad "1" smd roundrect
  6683. (at -1.4875 0 90)
  6684. (size 1.425 1.75)
  6685. (layers "F.Cu" "F.Mask" "F.Paste")
  6686. (roundrect_rratio 0.175439)
  6687. (net "GND")
  6688. (pinfunction "K_1")
  6689. (pintype "passive")
  6690. (uuid "e7a2bd79-6742-4590-8fa9-f46180f765b4")
  6691. )
  6692. (pad "2" smd roundrect
  6693. (at 1.4875 0 90)
  6694. (size 1.425 1.75)
  6695. (layers "F.Cu" "F.Mask" "F.Paste")
  6696. (roundrect_rratio 0.175439)
  6697. (net "Net-(D6-A)")
  6698. (pinfunction "A_2")
  6699. (pintype "passive")
  6700. (uuid "d8804e3d-0c31-4fd2-b609-3c66a0aa14d7")
  6701. )
  6702. (embedded_fonts no)
  6703. (model "${KICAD10_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.step"
  6704. (offset
  6705. (xyz 0 0 0)
  6706. )
  6707. (scale
  6708. (xyz 1 1 1)
  6709. )
  6710. (rotate
  6711. (xyz 0 0 0)
  6712. )
  6713. )
  6714. )
  6715. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  6716. (layer "F.Cu")
  6717. (uuid "c78d47eb-3070-4fca-8f23-c5a60ea7884c")
  6718. (at 112.75 95.7 180)
  6719. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  6720. (tags "capacitor handsolder")
  6721. (property "Reference" "C1"
  6722. (at 0 -1.85 0)
  6723. (layer "F.SilkS")
  6724. (uuid "d1967ad0-d5ba-43e3-b765-0611333bd1f9")
  6725. (effects
  6726. (font
  6727. (size 1 1)
  6728. (thickness 0.15)
  6729. )
  6730. )
  6731. )
  6732. (property "Value" "100n"
  6733. (at 0 1.85 0)
  6734. (layer "F.Fab")
  6735. (uuid "ea1bda78-037b-4247-a697-4e0a80aee947")
  6736. (effects
  6737. (font
  6738. (size 1 1)
  6739. (thickness 0.15)
  6740. )
  6741. )
  6742. )
  6743. (property "Datasheet" ""
  6744. (at 0 0 0)
  6745. (layer "F.Fab")
  6746. (hide yes)
  6747. (uuid "e4c3798d-fb41-4b80-8db3-428ed2266d11")
  6748. (effects
  6749. (font
  6750. (size 1.27 1.27)
  6751. )
  6752. )
  6753. )
  6754. (property "Description" "Unpolarized capacitor"
  6755. (at 0 0 0)
  6756. (layer "F.Fab")
  6757. (hide yes)
  6758. (uuid "6bf0bb9c-b3c2-48ba-a8bc-d53b2eea7b26")
  6759. (effects
  6760. (font
  6761. (size 1.27 1.27)
  6762. )
  6763. )
  6764. )
  6765. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  6766. (at 0 0 0)
  6767. (layer "F.SilkS")
  6768. (hide yes)
  6769. (uuid "808bd1c0-71fe-4460-a49f-1178ae083e61")
  6770. (effects
  6771. (font
  6772. (size 1 1)
  6773. (thickness 0.15)
  6774. )
  6775. )
  6776. )
  6777. (property ki_fp_filters "C_*")
  6778. (path "/0a5bfc67-f86c-4d5b-8ddb-d673aa97ba2e/c363ee03-fef0-40dd-8fa5-76fa23c9b01f")
  6779. (sheetname "/Motion controller/")
  6780. (sheetfile "motion_controller.kicad_sch")
  6781. (units
  6782. (unit
  6783. (name "A")
  6784. (pins "1" "2")
  6785. )
  6786. )
  6787. (attr smd)
  6788. (duplicate_pad_numbers_are_jumpers no)
  6789. (fp_line
  6790. (start -0.711252 0.91)
  6791. (end 0.711252 0.91)
  6792. (stroke
  6793. (width 0.12)
  6794. (type solid)
  6795. )
  6796. (layer "F.SilkS")
  6797. (uuid "b4311662-7a17-40ae-993a-f058568905f8")
  6798. )
  6799. (fp_line
  6800. (start -0.711252 -0.91)
  6801. (end 0.711252 -0.91)
  6802. (stroke
  6803. (width 0.12)
  6804. (type solid)
  6805. )
  6806. (layer "F.SilkS")
  6807. (uuid "b8adf486-1a44-4ab8-9a7c-1a06b984dac1")
  6808. )
  6809. (fp_rect
  6810. (start -2.48 -1.15)
  6811. (end 2.48 1.15)
  6812. (stroke
  6813. (width 0.05)
  6814. (type solid)
  6815. )
  6816. (fill no)
  6817. (layer "F.CrtYd")
  6818. (uuid "6f6823ad-4337-4f22-ba1a-dcbee0b1afbe")
  6819. )
  6820. (fp_rect
  6821. (start -1.6 -0.8)
  6822. (end 1.6 0.8)
  6823. (stroke
  6824. (width 0.1)
  6825. (type solid)
  6826. )
  6827. (fill no)
  6828. (layer "F.Fab")
  6829. (uuid "06dad0ef-32fa-43cf-89a4-3d891b82bfde")
  6830. )
  6831. (fp_text user "${REFERENCE}"
  6832. (at 0 0 0)
  6833. (layer "F.Fab")
  6834. (uuid "7de25f10-899e-46c3-8379-85970a278c85")
  6835. (effects
  6836. (font
  6837. (size 0.8 0.8)
  6838. (thickness 0.12)
  6839. )
  6840. )
  6841. )
  6842. (pad "1" smd roundrect
  6843. (at -1.5625 0 180)
  6844. (size 1.325 1.8)
  6845. (layers "F.Cu" "F.Mask" "F.Paste")
  6846. (roundrect_rratio 0.188679)
  6847. (net "+3V3")
  6848. (pintype "passive")
  6849. (uuid "1fcc012f-50b9-4646-9d42-4a1e63708915")
  6850. )
  6851. (pad "2" smd roundrect
  6852. (at 1.5625 0 180)
  6853. (size 1.325 1.8)
  6854. (layers "F.Cu" "F.Mask" "F.Paste")
  6855. (roundrect_rratio 0.188679)
  6856. (net "GND")
  6857. (pintype "passive")
  6858. (uuid "be6808e9-fe96-4011-ada8-7d0f2fdae355")
  6859. )
  6860. (embedded_fonts no)
  6861. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  6862. (offset
  6863. (xyz 0 0 0)
  6864. )
  6865. (scale
  6866. (xyz 1 1 1)
  6867. )
  6868. (rotate
  6869. (xyz 0 0 0)
  6870. )
  6871. )
  6872. )
  6873. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  6874. (layer "F.Cu")
  6875. (uuid "c99492f4-8e26-4937-b769-129ef8e981a0")
  6876. (at 199.785 85.475)
  6877. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  6878. (tags "resistor handsolder")
  6879. (property "Reference" "R21"
  6880. (at 0 -1.83 0)
  6881. (layer "F.SilkS")
  6882. (uuid "ad44655c-4823-45d4-94f4-f7f9e0e3d083")
  6883. (effects
  6884. (font
  6885. (size 1 1)
  6886. (thickness 0.15)
  6887. )
  6888. )
  6889. )
  6890. (property "Value" "5k1"
  6891. (at 0 1.83 0)
  6892. (layer "F.Fab")
  6893. (uuid "731a31ef-27cb-4590-ba10-fdd2d8140e5a")
  6894. (effects
  6895. (font
  6896. (size 1 1)
  6897. (thickness 0.15)
  6898. )
  6899. )
  6900. )
  6901. (property "Datasheet" ""
  6902. (at 0 0 0)
  6903. (layer "F.Fab")
  6904. (hide yes)
  6905. (uuid "f8aaf0ce-8a2c-4b26-b8a8-6aa2181c81b9")
  6906. (effects
  6907. (font
  6908. (size 1.27 1.27)
  6909. )
  6910. )
  6911. )
  6912. (property "Description" "Resistor"
  6913. (at 0 0 0)
  6914. (layer "F.Fab")
  6915. (hide yes)
  6916. (uuid "899f3465-23ce-4382-bf6e-c9f84fe39370")
  6917. (effects
  6918. (font
  6919. (size 1.27 1.27)
  6920. )
  6921. )
  6922. )
  6923. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  6924. (at 0 0 0)
  6925. (layer "F.SilkS")
  6926. (hide yes)
  6927. (uuid "c0039a67-5f60-45b6-8bcb-cce4d2d1858a")
  6928. (effects
  6929. (font
  6930. (size 1 1)
  6931. (thickness 0.15)
  6932. )
  6933. )
  6934. )
  6935. (property ki_fp_filters "R_*")
  6936. (path "/c822a6e7-989f-4861-ae60-5400a28e9960/f0d454f0-0b99-4ff6-b8b3-1620ea50c811")
  6937. (sheetname "/IO/")
  6938. (sheetfile "io.kicad_sch")
  6939. (units
  6940. (unit
  6941. (name "A")
  6942. (pins "1" "2")
  6943. )
  6944. )
  6945. (attr smd)
  6946. (duplicate_pad_numbers_are_jumpers no)
  6947. (fp_line
  6948. (start -0.727064 -0.91)
  6949. (end 0.727064 -0.91)
  6950. (stroke
  6951. (width 0.12)
  6952. (type solid)
  6953. )
  6954. (layer "F.SilkS")
  6955. (uuid "62bbee60-53e6-45d5-ab8d-94898b96875a")
  6956. )
  6957. (fp_line
  6958. (start -0.727064 0.91)
  6959. (end 0.727064 0.91)
  6960. (stroke
  6961. (width 0.12)
  6962. (type solid)
  6963. )
  6964. (layer "F.SilkS")
  6965. (uuid "9a68de0b-7978-4c7d-b719-011254765bd3")
  6966. )
  6967. (fp_rect
  6968. (start -2.45 -1.13)
  6969. (end 2.45 1.13)
  6970. (stroke
  6971. (width 0.05)
  6972. (type solid)
  6973. )
  6974. (fill no)
  6975. (layer "F.CrtYd")
  6976. (uuid "2b830848-8b06-4a03-9ec9-ae1ac06e77e2")
  6977. )
  6978. (fp_rect
  6979. (start -1.6 -0.8)
  6980. (end 1.6 0.8)
  6981. (stroke
  6982. (width 0.1)
  6983. (type solid)
  6984. )
  6985. (fill no)
  6986. (layer "F.Fab")
  6987. (uuid "c4b46fba-a0fd-43fd-8087-081f724c0621")
  6988. )
  6989. (fp_text user "${REFERENCE}"
  6990. (at 0 0 0)
  6991. (layer "F.Fab")
  6992. (uuid "322f2e7d-420c-4329-9873-ac6bb22d2f49")
  6993. (effects
  6994. (font
  6995. (size 0.8 0.8)
  6996. (thickness 0.12)
  6997. )
  6998. )
  6999. )
  7000. (pad "1" smd roundrect
  7001. (at -1.55 0)
  7002. (size 1.3 1.75)
  7003. (layers "F.Cu" "F.Mask" "F.Paste")
  7004. (roundrect_rratio 0.192308)
  7005. (net "+3V3")
  7006. (pintype "passive")
  7007. (uuid "25f21d8e-b545-4c3d-8ca7-85e03c7e14e0")
  7008. )
  7009. (pad "2" smd roundrect
  7010. (at 1.55 0)
  7011. (size 1.3 1.75)
  7012. (layers "F.Cu" "F.Mask" "F.Paste")
  7013. (roundrect_rratio 0.192308)
  7014. (net "Net-(R21-Pad2)")
  7015. (pintype "passive")
  7016. (uuid "76ffde51-16ab-42f2-87e5-d6d6d13ff9e6")
  7017. )
  7018. (embedded_fonts no)
  7019. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  7020. (offset
  7021. (xyz 0 0 0)
  7022. )
  7023. (scale
  7024. (xyz 1 1 1)
  7025. )
  7026. (rotate
  7027. (xyz 0 0 0)
  7028. )
  7029. )
  7030. )
  7031. (footprint "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical"
  7032. (layer "F.Cu")
  7033. (uuid "cb8f1958-1eed-4b3f-9d80-fc81030f11b0")
  7034. (at 187.715 73.025)
  7035. (descr "Through hole straight pin header, 2x01, 2.54mm pitch, double rows")
  7036. (tags "Through hole pin header THT 2x01 2.54mm double row")
  7037. (property "Reference" "J1"
  7038. (at 1.27 -2.38 0)
  7039. (layer "F.SilkS")
  7040. (uuid "3d061415-57cc-4aaf-b67e-0821130af1ab")
  7041. (effects
  7042. (font
  7043. (size 1 1)
  7044. (thickness 0.15)
  7045. )
  7046. )
  7047. )
  7048. (property "Value" "BURN"
  7049. (at 1.27 2.38 0)
  7050. (layer "F.Fab")
  7051. (uuid "6c96b9ff-a7df-42fc-83dd-e5236ed4ecb2")
  7052. (effects
  7053. (font
  7054. (size 1 1)
  7055. (thickness 0.15)
  7056. )
  7057. )
  7058. )
  7059. (property "Datasheet" ""
  7060. (at 0 0 0)
  7061. (layer "F.Fab")
  7062. (hide yes)
  7063. (uuid "124398f8-4514-4c27-88b0-c46649815dc6")
  7064. (effects
  7065. (font
  7066. (size 1.27 1.27)
  7067. )
  7068. )
  7069. )
  7070. (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
  7071. (at 0 0 0)
  7072. (layer "F.Fab")
  7073. (hide yes)
  7074. (uuid "02279c76-bd05-491a-a00d-96e3b41b1541")
  7075. (effects
  7076. (font
  7077. (size 1.27 1.27)
  7078. )
  7079. )
  7080. )
  7081. (property "KiLib_Generator" "connector/pin_header_socket"
  7082. (at 0 0 0)
  7083. (layer "F.SilkS")
  7084. (hide yes)
  7085. (uuid "2c7adc57-2ff6-4d91-a9d2-68727e732b5b")
  7086. (effects
  7087. (font
  7088. (size 1 1)
  7089. (thickness 0.15)
  7090. )
  7091. )
  7092. )
  7093. (property ki_fp_filters "Connector*:*_2x??_*")
  7094. (path "/1b0a1d68-e8b7-4c38-9961-408ecb09dccc/03e2d858-b0e8-4b86-a389-1adb65298a67")
  7095. (sheetname "/Communication/")
  7096. (sheetfile "communication.kicad_sch")
  7097. (units
  7098. (unit
  7099. (name "A")
  7100. (pins "1" "2")
  7101. )
  7102. )
  7103. (attr through_hole)
  7104. (duplicate_pad_numbers_are_jumpers no)
  7105. (fp_line
  7106. (start -1.38 -1.38)
  7107. (end 0 -1.38)
  7108. (stroke
  7109. (width 0.12)
  7110. (type solid)
  7111. )
  7112. (layer "F.SilkS")
  7113. (uuid "b2ad22a3-1a7a-43af-b372-5e22b7deb002")
  7114. )
  7115. (fp_line
  7116. (start -1.38 0)
  7117. (end -1.38 -1.38)
  7118. (stroke
  7119. (width 0.12)
  7120. (type solid)
  7121. )
  7122. (layer "F.SilkS")
  7123. (uuid "a34d4022-e1a9-41f9-ab78-d4a4870e908e")
  7124. )
  7125. (fp_line
  7126. (start -1.38 1.27)
  7127. (end -1.38 1.38)
  7128. (stroke
  7129. (width 0.12)
  7130. (type solid)
  7131. )
  7132. (layer "F.SilkS")
  7133. (uuid "f470ed41-117e-403e-a814-871320f6d553")
  7134. )
  7135. (fp_line
  7136. (start -1.38 1.27)
  7137. (end 1.27 1.27)
  7138. (stroke
  7139. (width 0.12)
  7140. (type solid)
  7141. )
  7142. (layer "F.SilkS")
  7143. (uuid "17bbf4e3-7c76-4755-8e7a-a32d829f3fa4")
  7144. )
  7145. (fp_line
  7146. (start -1.38 1.38)
  7147. (end 3.92 1.38)
  7148. (stroke
  7149. (width 0.12)
  7150. (type solid)
  7151. )
  7152. (layer "F.SilkS")
  7153. (uuid "9df1efd0-dc1b-4bc0-aa00-dda89ff087f0")
  7154. )
  7155. (fp_line
  7156. (start 1.27 -1.38)
  7157. (end 3.92 -1.38)
  7158. (stroke
  7159. (width 0.12)
  7160. (type solid)
  7161. )
  7162. (layer "F.SilkS")
  7163. (uuid "e9a8810f-2c75-4352-8c05-2a420a45b50e")
  7164. )
  7165. (fp_line
  7166. (start 1.27 1.27)
  7167. (end 1.27 -1.38)
  7168. (stroke
  7169. (width 0.12)
  7170. (type solid)
  7171. )
  7172. (layer "F.SilkS")
  7173. (uuid "ec96eb01-a577-405c-aff1-af82f481d788")
  7174. )
  7175. (fp_line
  7176. (start 3.92 -1.38)
  7177. (end 3.92 1.38)
  7178. (stroke
  7179. (width 0.12)
  7180. (type solid)
  7181. )
  7182. (layer "F.SilkS")
  7183. (uuid "1b5656c2-f2e7-4d1a-a59c-f661a6e01a96")
  7184. )
  7185. (fp_rect
  7186. (start -1.77 -1.77)
  7187. (end 4.32 1.77)
  7188. (stroke
  7189. (width 0.05)
  7190. (type solid)
  7191. )
  7192. (fill no)
  7193. (layer "F.CrtYd")
  7194. (uuid "eb1ca2e4-bdf8-46de-ab5e-04383d23f714")
  7195. )
  7196. (fp_line
  7197. (start -1.27 0)
  7198. (end 0 -1.27)
  7199. (stroke
  7200. (width 0.1)
  7201. (type solid)
  7202. )
  7203. (layer "F.Fab")
  7204. (uuid "86a24786-df8c-4636-932d-589a38a540bb")
  7205. )
  7206. (fp_line
  7207. (start -1.27 1.27)
  7208. (end -1.27 0)
  7209. (stroke
  7210. (width 0.1)
  7211. (type solid)
  7212. )
  7213. (layer "F.Fab")
  7214. (uuid "e4b044a8-8ccd-491c-8fad-2b4cea9c752e")
  7215. )
  7216. (fp_line
  7217. (start 0 -1.27)
  7218. (end 3.81 -1.27)
  7219. (stroke
  7220. (width 0.1)
  7221. (type solid)
  7222. )
  7223. (layer "F.Fab")
  7224. (uuid "cdeed277-67f1-46ab-837b-fd19f9372427")
  7225. )
  7226. (fp_line
  7227. (start 3.81 -1.27)
  7228. (end 3.81 1.27)
  7229. (stroke
  7230. (width 0.1)
  7231. (type solid)
  7232. )
  7233. (layer "F.Fab")
  7234. (uuid "c43e612c-5ad0-469d-808e-dcee951c5395")
  7235. )
  7236. (fp_line
  7237. (start 3.81 1.27)
  7238. (end -1.27 1.27)
  7239. (stroke
  7240. (width 0.1)
  7241. (type solid)
  7242. )
  7243. (layer "F.Fab")
  7244. (uuid "8eaced32-8919-4778-9fb4-92b07a996b53")
  7245. )
  7246. (fp_text user "${REFERENCE}"
  7247. (at 1.27 0 90)
  7248. (layer "F.Fab")
  7249. (uuid "0a9fd7e6-4c20-4aa0-9452-c5f3bf44f3ed")
  7250. (effects
  7251. (font
  7252. (size 1 1)
  7253. (thickness 0.15)
  7254. )
  7255. )
  7256. )
  7257. (pad "1" thru_hole rect
  7258. (at 0 0)
  7259. (size 1.7 1.7)
  7260. (drill 1)
  7261. (layers "*.Cu" "*.Mask")
  7262. (remove_unused_layers no)
  7263. (net "GND")
  7264. (pinfunction "Pin_1_1")
  7265. (pintype "passive")
  7266. (uuid "acec4792-2d0e-41d3-9752-781829fbe818")
  7267. )
  7268. (pad "2" thru_hole circle
  7269. (at 2.54 0)
  7270. (size 1.7 1.7)
  7271. (drill 1)
  7272. (layers "*.Cu" "*.Mask")
  7273. (remove_unused_layers no)
  7274. (net "Net-(J1-Pin_2)")
  7275. (pinfunction "Pin_2_2")
  7276. (pintype "passive")
  7277. (uuid "c0e855d6-c78a-4f07-93dc-97e702cde10a")
  7278. )
  7279. (embedded_fonts no)
  7280. (model "${KICAD10_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x01_P2.54mm_Vertical.step"
  7281. (offset
  7282. (xyz 0 0 0)
  7283. )
  7284. (scale
  7285. (xyz 1 1 1)
  7286. )
  7287. (rotate
  7288. (xyz 0 0 0)
  7289. )
  7290. )
  7291. )
  7292. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  7293. (layer "F.Cu")
  7294. (uuid "d9ec8128-cc48-4ddc-b2fc-c3098beabf63")
  7295. (at 116.45 97.05 -90)
  7296. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  7297. (tags "capacitor handsolder")
  7298. (property "Reference" "C2"
  7299. (at 0 -1.85 90)
  7300. (layer "F.SilkS")
  7301. (uuid "243635c8-4a44-4f18-a0f6-871a7831df7f")
  7302. (effects
  7303. (font
  7304. (size 1 1)
  7305. (thickness 0.15)
  7306. )
  7307. )
  7308. )
  7309. (property "Value" "1u"
  7310. (at 0 1.85 90)
  7311. (layer "F.Fab")
  7312. (uuid "898747d4-5ab0-4293-ba65-2ecb965b4c79")
  7313. (effects
  7314. (font
  7315. (size 1 1)
  7316. (thickness 0.15)
  7317. )
  7318. )
  7319. )
  7320. (property "Datasheet" ""
  7321. (at 0 0 90)
  7322. (layer "F.Fab")
  7323. (hide yes)
  7324. (uuid "9f16c067-a0d8-486e-8c1a-61f18c04c3c4")
  7325. (effects
  7326. (font
  7327. (size 1.27 1.27)
  7328. )
  7329. )
  7330. )
  7331. (property "Description" "Unpolarized capacitor"
  7332. (at 0 0 90)
  7333. (layer "F.Fab")
  7334. (hide yes)
  7335. (uuid "8c578ec5-46fd-47e0-806e-1d95cdc82b64")
  7336. (effects
  7337. (font
  7338. (size 1.27 1.27)
  7339. )
  7340. )
  7341. )
  7342. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  7343. (at 0 0 90)
  7344. (layer "F.SilkS")
  7345. (hide yes)
  7346. (uuid "62c51372-eb57-4298-b190-adc839663615")
  7347. (effects
  7348. (font
  7349. (size 1 1)
  7350. (thickness 0.15)
  7351. )
  7352. )
  7353. )
  7354. (property ki_fp_filters "C_*")
  7355. (path "/0a5bfc67-f86c-4d5b-8ddb-d673aa97ba2e/8c6f6677-3768-4146-b4dd-e13df7d6cb9a")
  7356. (sheetname "/Motion controller/")
  7357. (sheetfile "motion_controller.kicad_sch")
  7358. (units
  7359. (unit
  7360. (name "A")
  7361. (pins "1" "2")
  7362. )
  7363. )
  7364. (attr smd)
  7365. (duplicate_pad_numbers_are_jumpers no)
  7366. (fp_line
  7367. (start -0.711252 0.91)
  7368. (end 0.711252 0.91)
  7369. (stroke
  7370. (width 0.12)
  7371. (type solid)
  7372. )
  7373. (layer "F.SilkS")
  7374. (uuid "d2c3ae01-c5ca-4f51-8aac-1a894f161e02")
  7375. )
  7376. (fp_line
  7377. (start -0.711252 -0.91)
  7378. (end 0.711252 -0.91)
  7379. (stroke
  7380. (width 0.12)
  7381. (type solid)
  7382. )
  7383. (layer "F.SilkS")
  7384. (uuid "8e9df1f6-9690-474c-b38d-09aebaffc901")
  7385. )
  7386. (fp_rect
  7387. (start -2.48 -1.15)
  7388. (end 2.48 1.15)
  7389. (stroke
  7390. (width 0.05)
  7391. (type solid)
  7392. )
  7393. (fill no)
  7394. (layer "F.CrtYd")
  7395. (uuid "b482a678-1e02-4959-8e48-c90cc3e3a9bb")
  7396. )
  7397. (fp_rect
  7398. (start -1.6 -0.8)
  7399. (end 1.6 0.8)
  7400. (stroke
  7401. (width 0.1)
  7402. (type solid)
  7403. )
  7404. (fill no)
  7405. (layer "F.Fab")
  7406. (uuid "3bbcde55-a01a-4d4e-8f3f-95e767ee9131")
  7407. )
  7408. (fp_text user "${REFERENCE}"
  7409. (at 0 0 90)
  7410. (layer "F.Fab")
  7411. (uuid "54cf90ad-ebbb-42af-95a6-5b191183abbb")
  7412. (effects
  7413. (font
  7414. (size 0.8 0.8)
  7415. (thickness 0.12)
  7416. )
  7417. )
  7418. )
  7419. (pad "1" smd roundrect
  7420. (at -1.5625 0 270)
  7421. (size 1.325 1.8)
  7422. (layers "F.Cu" "F.Mask" "F.Paste")
  7423. (roundrect_rratio 0.188679)
  7424. (net "+3V3")
  7425. (pintype "passive")
  7426. (uuid "3000cce7-65c9-4409-8ae1-e4188e09a1b2")
  7427. )
  7428. (pad "2" smd roundrect
  7429. (at 1.5625 0 270)
  7430. (size 1.325 1.8)
  7431. (layers "F.Cu" "F.Mask" "F.Paste")
  7432. (roundrect_rratio 0.188679)
  7433. (net "GND")
  7434. (pintype "passive")
  7435. (uuid "4098f0a9-7744-46de-a199-cf760079b819")
  7436. )
  7437. (embedded_fonts no)
  7438. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  7439. (offset
  7440. (xyz 0 0 0)
  7441. )
  7442. (scale
  7443. (xyz 1 1 1)
  7444. )
  7445. (rotate
  7446. (xyz 0 0 0)
  7447. )
  7448. )
  7449. )
  7450. (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  7451. (layer "F.Cu")
  7452. (uuid "e1c0c68c-0eab-49dd-95ed-0ce7e9f21df5")
  7453. (at 117.35 88.2 90)
  7454. (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  7455. (tags "capacitor handsolder")
  7456. (property "Reference" "C3"
  7457. (at 0 -1.85 90)
  7458. (layer "F.SilkS")
  7459. (uuid "a29e8972-1378-4fe2-9e4f-2a6181e230aa")
  7460. (effects
  7461. (font
  7462. (size 1 1)
  7463. (thickness 0.15)
  7464. )
  7465. )
  7466. )
  7467. (property "Value" "1u"
  7468. (at 0 1.85 90)
  7469. (layer "F.Fab")
  7470. (uuid "d3fc6743-6472-4060-a3e5-ecb44e87b90c")
  7471. (effects
  7472. (font
  7473. (size 1 1)
  7474. (thickness 0.15)
  7475. )
  7476. )
  7477. )
  7478. (property "Datasheet" ""
  7479. (at 0 0 90)
  7480. (layer "F.Fab")
  7481. (hide yes)
  7482. (uuid "d8ffc3ed-2cea-42a2-ae8a-daba9dffc3f2")
  7483. (effects
  7484. (font
  7485. (size 1.27 1.27)
  7486. )
  7487. )
  7488. )
  7489. (property "Description" "Unpolarized capacitor"
  7490. (at 0 0 90)
  7491. (layer "F.Fab")
  7492. (hide yes)
  7493. (uuid "a451f20d-80ea-41a6-9634-2a742c239122")
  7494. (effects
  7495. (font
  7496. (size 1.27 1.27)
  7497. )
  7498. )
  7499. )
  7500. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  7501. (at 0 0 90)
  7502. (layer "F.SilkS")
  7503. (hide yes)
  7504. (uuid "dd57ef31-4e3e-434a-9d08-e72d2c4d587f")
  7505. (effects
  7506. (font
  7507. (size 1 1)
  7508. (thickness 0.15)
  7509. )
  7510. )
  7511. )
  7512. (property ki_fp_filters "C_*")
  7513. (path "/61d90625-cf7d-4b0e-a402-280f678c738c/8a23af7c-eab7-4702-a56e-de9a4b6f1afd")
  7514. (sheetname "/IMU/")
  7515. (sheetfile "imu.kicad_sch")
  7516. (units
  7517. (unit
  7518. (name "A")
  7519. (pins "1" "2")
  7520. )
  7521. )
  7522. (attr smd)
  7523. (duplicate_pad_numbers_are_jumpers no)
  7524. (fp_line
  7525. (start -0.711252 -0.91)
  7526. (end 0.711252 -0.91)
  7527. (stroke
  7528. (width 0.12)
  7529. (type solid)
  7530. )
  7531. (layer "F.SilkS")
  7532. (uuid "c41cd8c4-a0ab-4ad7-85aa-6e41847a9472")
  7533. )
  7534. (fp_line
  7535. (start -0.711252 0.91)
  7536. (end 0.711252 0.91)
  7537. (stroke
  7538. (width 0.12)
  7539. (type solid)
  7540. )
  7541. (layer "F.SilkS")
  7542. (uuid "24bcb54b-e9de-4fb6-bf90-d40c99ebe3c9")
  7543. )
  7544. (fp_rect
  7545. (start -2.48 -1.15)
  7546. (end 2.48 1.15)
  7547. (stroke
  7548. (width 0.05)
  7549. (type solid)
  7550. )
  7551. (fill no)
  7552. (layer "F.CrtYd")
  7553. (uuid "908a4196-bda2-4ee2-8e1c-ae50eb18a44c")
  7554. )
  7555. (fp_rect
  7556. (start -1.6 -0.8)
  7557. (end 1.6 0.8)
  7558. (stroke
  7559. (width 0.1)
  7560. (type solid)
  7561. )
  7562. (fill no)
  7563. (layer "F.Fab")
  7564. (uuid "ae8d83a2-7f68-45e7-8ec3-cc2bf80566c5")
  7565. )
  7566. (fp_text user "${REFERENCE}"
  7567. (at 0 0 90)
  7568. (layer "F.Fab")
  7569. (uuid "037e3d01-ff0d-49d8-84e9-90cde9a890dc")
  7570. (effects
  7571. (font
  7572. (size 0.8 0.8)
  7573. (thickness 0.12)
  7574. )
  7575. )
  7576. )
  7577. (pad "1" smd roundrect
  7578. (at -1.5625 0 90)
  7579. (size 1.325 1.8)
  7580. (layers "F.Cu" "F.Mask" "F.Paste")
  7581. (roundrect_rratio 0.188679)
  7582. (net "+5V")
  7583. (pintype "passive")
  7584. (uuid "aeaeed64-c7e1-41e8-9049-fb3a57161b01")
  7585. )
  7586. (pad "2" smd roundrect
  7587. (at 1.5625 0 90)
  7588. (size 1.325 1.8)
  7589. (layers "F.Cu" "F.Mask" "F.Paste")
  7590. (roundrect_rratio 0.188679)
  7591. (net "GND")
  7592. (pintype "passive")
  7593. (uuid "e952fd5d-2638-440c-a253-e49cacb6d62f")
  7594. )
  7595. (embedded_fonts no)
  7596. (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step"
  7597. (offset
  7598. (xyz 0 0 0)
  7599. )
  7600. (scale
  7601. (xyz 1 1 1)
  7602. )
  7603. (rotate
  7604. (xyz 0 0 0)
  7605. )
  7606. )
  7607. )
  7608. (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  7609. (layer "F.Cu")
  7610. (uuid "f607e1ec-3989-46f4-9923-396bc9d5383b")
  7611. (at 105.9 84.4)
  7612. (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)")
  7613. (tags "resistor handsolder")
  7614. (property "Reference" "R5"
  7615. (at 0 -1.83 0)
  7616. (layer "F.SilkS")
  7617. (uuid "d10e396f-ea55-4a2d-baf3-ed72603f41ec")
  7618. (effects
  7619. (font
  7620. (size 1 1)
  7621. (thickness 0.15)
  7622. )
  7623. )
  7624. )
  7625. (property "Value" "10k"
  7626. (at 0 1.83 0)
  7627. (layer "F.Fab")
  7628. (uuid "56cec925-cee1-4af4-b926-48853f85240b")
  7629. (effects
  7630. (font
  7631. (size 1 1)
  7632. (thickness 0.15)
  7633. )
  7634. )
  7635. )
  7636. (property "Datasheet" ""
  7637. (at 0 0 0)
  7638. (layer "F.Fab")
  7639. (hide yes)
  7640. (uuid "8209eec7-b9ed-48ee-a000-8afb149e0396")
  7641. (effects
  7642. (font
  7643. (size 1.27 1.27)
  7644. )
  7645. )
  7646. )
  7647. (property "Description" "Resistor"
  7648. (at 0 0 0)
  7649. (layer "F.Fab")
  7650. (hide yes)
  7651. (uuid "053d8625-116b-4bd0-befe-047b6a378031")
  7652. (effects
  7653. (font
  7654. (size 1.27 1.27)
  7655. )
  7656. )
  7657. )
  7658. (property "KiLib_Generator" "SMD_2terminal_chip_molded"
  7659. (at 0 0 0)
  7660. (layer "F.SilkS")
  7661. (hide yes)
  7662. (uuid "0a16a171-0519-4e5e-8ef3-b4258b0c8122")
  7663. (effects
  7664. (font
  7665. (size 1 1)
  7666. (thickness 0.15)
  7667. )
  7668. )
  7669. )
  7670. (property ki_fp_filters "R_*")
  7671. (path "/61d90625-cf7d-4b0e-a402-280f678c738c/0e140421-dab9-4606-99aa-4b15bf6c36ab")
  7672. (sheetname "/IMU/")
  7673. (sheetfile "imu.kicad_sch")
  7674. (units
  7675. (unit
  7676. (name "A")
  7677. (pins "1" "2")
  7678. )
  7679. )
  7680. (attr smd)
  7681. (duplicate_pad_numbers_are_jumpers no)
  7682. (fp_line
  7683. (start -0.727064 -0.91)
  7684. (end 0.727064 -0.91)
  7685. (stroke
  7686. (width 0.12)
  7687. (type solid)
  7688. )
  7689. (layer "F.SilkS")
  7690. (uuid "a24bd904-b9aa-459e-87d0-693df09c14a9")
  7691. )
  7692. (fp_line
  7693. (start -0.727064 0.91)
  7694. (end 0.727064 0.91)
  7695. (stroke
  7696. (width 0.12)
  7697. (type solid)
  7698. )
  7699. (layer "F.SilkS")
  7700. (uuid "60779c09-1395-43b7-9ac1-d06541a118e4")
  7701. )
  7702. (fp_rect
  7703. (start -2.45 -1.13)
  7704. (end 2.45 1.13)
  7705. (stroke
  7706. (width 0.05)
  7707. (type solid)
  7708. )
  7709. (fill no)
  7710. (layer "F.CrtYd")
  7711. (uuid "1036db7f-c31e-4697-93b0-a2cfc0fc3a33")
  7712. )
  7713. (fp_rect
  7714. (start -1.6 -0.8)
  7715. (end 1.6 0.8)
  7716. (stroke
  7717. (width 0.1)
  7718. (type solid)
  7719. )
  7720. (fill no)
  7721. (layer "F.Fab")
  7722. (uuid "a3eb5400-134a-49f6-89d2-d4b7400ef4bd")
  7723. )
  7724. (fp_text user "${REFERENCE}"
  7725. (at 0 0 0)
  7726. (layer "F.Fab")
  7727. (uuid "fc7540a1-cbe3-4ebe-92a9-92ee163585fe")
  7728. (effects
  7729. (font
  7730. (size 0.8 0.8)
  7731. (thickness 0.12)
  7732. )
  7733. )
  7734. )
  7735. (pad "1" smd roundrect
  7736. (at -1.55 0)
  7737. (size 1.3 1.75)
  7738. (layers "F.Cu" "F.Mask" "F.Paste")
  7739. (roundrect_rratio 0.192308)
  7740. (net "+3V3")
  7741. (pintype "passive")
  7742. (uuid "4b261798-bd3d-4125-94a9-2dec62f6650a")
  7743. )
  7744. (pad "2" smd roundrect
  7745. (at 1.55 0)
  7746. (size 1.3 1.75)
  7747. (layers "F.Cu" "F.Mask" "F.Paste")
  7748. (roundrect_rratio 0.192308)
  7749. (net "Net-(U2-SCX)")
  7750. (pintype "passive")
  7751. (uuid "86d01045-2eb8-40fb-8747-2c70b4d3b260")
  7752. )
  7753. (embedded_fonts no)
  7754. (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step"
  7755. (offset
  7756. (xyz 0 0 0)
  7757. )
  7758. (scale
  7759. (xyz 1 1 1)
  7760. )
  7761. (rotate
  7762. (xyz 0 0 0)
  7763. )
  7764. )
  7765. )
  7766. (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical"
  7767. (layer "B.Cu")
  7768. (uuid "62ee60b5-6050-4d07-9c68-9622d633020b")
  7769. (at 122.3 105.6)
  7770. (descr "Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0")
  7771. (tags "Through hole vertical IDC box header THT 2x05 2.54mm double row")
  7772. (property "Reference" "J2"
  7773. (at 1.27 6.1 0)
  7774. (layer "B.SilkS")
  7775. (uuid "805da747-2af9-4bed-9f21-1d3c4c36caf7")
  7776. (effects
  7777. (font
  7778. (size 1 1)
  7779. (thickness 0.15)
  7780. )
  7781. (justify mirror)
  7782. )
  7783. )
  7784. (property "Value" "~"
  7785. (at 1.27 -16.26 0)
  7786. (layer "B.Fab")
  7787. (uuid "a1fd83d5-ac63-469f-9e0b-17f5dec35157")
  7788. (effects
  7789. (font
  7790. (size 1 1)
  7791. (thickness 0.15)
  7792. )
  7793. (justify mirror)
  7794. )
  7795. )
  7796. (property "Datasheet" ""
  7797. (at 0 0 0)
  7798. (layer "B.Fab")
  7799. (hide yes)
  7800. (uuid "6d6d9a1b-8070-4752-9f36-da8355db2004")
  7801. (effects
  7802. (font
  7803. (size 1.27 1.27)
  7804. )
  7805. (justify mirror)
  7806. )
  7807. )
  7808. (property "Description" ""
  7809. (at 0 0 0)
  7810. (layer "B.Fab")
  7811. (hide yes)
  7812. (uuid "ed093c72-eb80-4b7f-ad5d-48d870fc9803")
  7813. (effects
  7814. (font
  7815. (size 1.27 1.27)
  7816. )
  7817. (justify mirror)
  7818. )
  7819. )
  7820. (property "KiLib_Generator" "connector/pin_header_socket"
  7821. (at 0 0 0)
  7822. (layer "B.SilkS")
  7823. (hide yes)
  7824. (uuid "39fa4520-010a-482d-8888-cff9a9f35bc9")
  7825. (effects
  7826. (font
  7827. (size 1 1)
  7828. (thickness 0.15)
  7829. )
  7830. (justify mirror)
  7831. )
  7832. )
  7833. (path "/787528c9-6a10-42c2-9d9c-20142a14f6f7")
  7834. (sheetname "/")
  7835. (sheetfile "cx-copter.kicad_sch")
  7836. (units
  7837. (unit
  7838. (name "A")
  7839. (pins "1" "3" "2" "4" "8" "6" "10" "5" "7" "9")
  7840. )
  7841. )
  7842. (attr through_hole)
  7843. (duplicate_pad_numbers_are_jumpers no)
  7844. (fp_line
  7845. (start -4.68 -0.5)
  7846. (end -3.68 0)
  7847. (stroke
  7848. (width 0.12)
  7849. (type solid)
  7850. )
  7851. (layer "B.SilkS")
  7852. (uuid "609dfd7f-599d-4ab8-a036-f1e39457a98a")
  7853. )
  7854. (fp_line
  7855. (start -4.68 0.5)
  7856. (end -4.68 -0.5)
  7857. (stroke
  7858. (width 0.12)
  7859. (type solid)
  7860. )
  7861. (layer "B.SilkS")
  7862. (uuid "114f3241-7fa2-4fdb-a25a-ded317909ca6")
  7863. )
  7864. (fp_line
  7865. (start -3.68 0)
  7866. (end -4.68 0.5)
  7867. (stroke
  7868. (width 0.12)
  7869. (type solid)
  7870. )
  7871. (layer "B.SilkS")
  7872. (uuid "3655f1e2-a757-4016-853d-571d2c4f4717")
  7873. )
  7874. (fp_line
  7875. (start -3.29 -15.37)
  7876. (end -3.29 5.21)
  7877. (stroke
  7878. (width 0.12)
  7879. (type solid)
  7880. )
  7881. (layer "B.SilkS")
  7882. (uuid "6682eba7-b190-410f-af19-c332b03a5aad")
  7883. )
  7884. (fp_line
  7885. (start -3.29 -3.03)
  7886. (end -1.98 -3.03)
  7887. (stroke
  7888. (width 0.12)
  7889. (type solid)
  7890. )
  7891. (layer "B.SilkS")
  7892. (uuid "b7e61115-179d-484e-b617-6bacfba5d05b")
  7893. )
  7894. (fp_line
  7895. (start -3.29 5.21)
  7896. (end 5.83 5.21)
  7897. (stroke
  7898. (width 0.12)
  7899. (type solid)
  7900. )
  7901. (layer "B.SilkS")
  7902. (uuid "1f580962-0c1f-4e40-953f-c442c39ad43a")
  7903. )
  7904. (fp_line
  7905. (start -1.98 -14.07)
  7906. (end -1.98 -7.13)
  7907. (stroke
  7908. (width 0.12)
  7909. (type solid)
  7910. )
  7911. (layer "B.SilkS")
  7912. (uuid "a9d2e2b2-d406-496d-8576-cd4ce7c82784")
  7913. )
  7914. (fp_line
  7915. (start -1.98 -7.13)
  7916. (end -3.29 -7.13)
  7917. (stroke
  7918. (width 0.12)
  7919. (type solid)
  7920. )
  7921. (layer "B.SilkS")
  7922. (uuid "cdd13f47-92ee-47ec-8502-fcea967b5a19")
  7923. )
  7924. (fp_line
  7925. (start -1.98 -3.03)
  7926. (end -1.98 3.91)
  7927. (stroke
  7928. (width 0.12)
  7929. (type solid)
  7930. )
  7931. (layer "B.SilkS")
  7932. (uuid "493dcbee-30b2-4b7a-a297-b6a21f51223a")
  7933. )
  7934. (fp_line
  7935. (start -1.98 3.91)
  7936. (end 4.52 3.91)
  7937. (stroke
  7938. (width 0.12)
  7939. (type solid)
  7940. )
  7941. (layer "B.SilkS")
  7942. (uuid "7d9589cb-576d-48ab-ba9b-3cf659b54cf7")
  7943. )
  7944. (fp_line
  7945. (start 4.52 -14.07)
  7946. (end -1.98 -14.07)
  7947. (stroke
  7948. (width 0.12)
  7949. (type solid)
  7950. )
  7951. (layer "B.SilkS")
  7952. (uuid "07a72729-03f5-45ff-9273-45cc1e837f1b")
  7953. )
  7954. (fp_line
  7955. (start 4.52 3.91)
  7956. (end 4.52 -14.07)
  7957. (stroke
  7958. (width 0.12)
  7959. (type solid)
  7960. )
  7961. (layer "B.SilkS")
  7962. (uuid "69359e44-9f36-4f51-ba4d-8f7b49161541")
  7963. )
  7964. (fp_line
  7965. (start 5.83 -15.37)
  7966. (end -3.29 -15.37)
  7967. (stroke
  7968. (width 0.12)
  7969. (type solid)
  7970. )
  7971. (layer "B.SilkS")
  7972. (uuid "74f27d93-7713-419a-9e2e-b550fa020ea0")
  7973. )
  7974. (fp_line
  7975. (start 5.83 5.21)
  7976. (end 5.83 -15.37)
  7977. (stroke
  7978. (width 0.12)
  7979. (type solid)
  7980. )
  7981. (layer "B.SilkS")
  7982. (uuid "222760f3-7634-41ce-980e-940b8f969d46")
  7983. )
  7984. (fp_rect
  7985. (start -3.68 5.6)
  7986. (end 6.22 -15.76)
  7987. (stroke
  7988. (width 0.05)
  7989. (type solid)
  7990. )
  7991. (fill no)
  7992. (layer "B.CrtYd")
  7993. (uuid "9bebc117-367b-4d0f-8a2b-361b5c98630a")
  7994. )
  7995. (fp_line
  7996. (start -3.18 -15.26)
  7997. (end -3.18 4.1)
  7998. (stroke
  7999. (width 0.1)
  8000. (type solid)
  8001. )
  8002. (layer "B.Fab")
  8003. (uuid "b020a84f-25fa-4aa1-84e0-72b54a081dd5")
  8004. )
  8005. (fp_line
  8006. (start -3.18 -3.03)
  8007. (end -1.98 -3.03)
  8008. (stroke
  8009. (width 0.1)
  8010. (type solid)
  8011. )
  8012. (layer "B.Fab")
  8013. (uuid "17a43ec0-ca68-4efa-a593-539126dde997")
  8014. )
  8015. (fp_line
  8016. (start -3.18 4.1)
  8017. (end -2.18 5.1)
  8018. (stroke
  8019. (width 0.1)
  8020. (type solid)
  8021. )
  8022. (layer "B.Fab")
  8023. (uuid "70bb11f0-f5ad-4298-b792-a28f7194cae9")
  8024. )
  8025. (fp_line
  8026. (start -2.18 5.1)
  8027. (end 5.72 5.1)
  8028. (stroke
  8029. (width 0.1)
  8030. (type solid)
  8031. )
  8032. (layer "B.Fab")
  8033. (uuid "98002f38-4a93-4165-a319-ca8c72b95009")
  8034. )
  8035. (fp_line
  8036. (start -1.98 -14.07)
  8037. (end -1.98 -7.13)
  8038. (stroke
  8039. (width 0.1)
  8040. (type solid)
  8041. )
  8042. (layer "B.Fab")
  8043. (uuid "6fce0a43-7d0c-41fe-99fe-643d4d1fcdf7")
  8044. )
  8045. (fp_line
  8046. (start -1.98 -7.13)
  8047. (end -3.18 -7.13)
  8048. (stroke
  8049. (width 0.1)
  8050. (type solid)
  8051. )
  8052. (layer "B.Fab")
  8053. (uuid "a98d2d1b-0c23-4f66-a339-7bc2bea15b52")
  8054. )
  8055. (fp_line
  8056. (start -1.98 -3.03)
  8057. (end -1.98 3.91)
  8058. (stroke
  8059. (width 0.1)
  8060. (type solid)
  8061. )
  8062. (layer "B.Fab")
  8063. (uuid "78addec2-8a44-4bb5-893a-4c9bd859ab65")
  8064. )
  8065. (fp_line
  8066. (start -1.98 3.91)
  8067. (end 4.52 3.91)
  8068. (stroke
  8069. (width 0.1)
  8070. (type solid)
  8071. )
  8072. (layer "B.Fab")
  8073. (uuid "e72ac033-2559-4dc8-bf21-0b3931f3d91f")
  8074. )
  8075. (fp_line
  8076. (start 4.52 -14.07)
  8077. (end -1.98 -14.07)
  8078. (stroke
  8079. (width 0.1)
  8080. (type solid)
  8081. )
  8082. (layer "B.Fab")
  8083. (uuid "e2a3f014-ad79-48e4-bc61-0a5ddfc0a564")
  8084. )
  8085. (fp_line
  8086. (start 4.52 3.91)
  8087. (end 4.52 -14.07)
  8088. (stroke
  8089. (width 0.1)
  8090. (type solid)
  8091. )
  8092. (layer "B.Fab")
  8093. (uuid "528c7e2c-26aa-43b5-8678-d2ad7e0e1878")
  8094. )
  8095. (fp_line
  8096. (start 5.72 -15.26)
  8097. (end -3.18 -15.26)
  8098. (stroke
  8099. (width 0.1)
  8100. (type solid)
  8101. )
  8102. (layer "B.Fab")
  8103. (uuid "3bdcc85e-018b-4ae8-88c4-f3e1ed1f02b7")
  8104. )
  8105. (fp_line
  8106. (start 5.72 5.1)
  8107. (end 5.72 -15.26)
  8108. (stroke
  8109. (width 0.1)
  8110. (type solid)
  8111. )
  8112. (layer "B.Fab")
  8113. (uuid "a92e7174-0de0-4b84-9a8d-2269de7ed00a")
  8114. )
  8115. (fp_text user "${REFERENCE}"
  8116. (at 1.27 -5.08 90)
  8117. (layer "B.Fab")
  8118. (uuid "0448127c-dfeb-4ff4-aa29-d45d808fa023")
  8119. (effects
  8120. (font
  8121. (size 1 1)
  8122. (thickness 0.15)
  8123. )
  8124. (justify mirror)
  8125. )
  8126. )
  8127. (pad "1" thru_hole roundrect
  8128. (at 0 0)
  8129. (size 1.7 1.7)
  8130. (drill 1)
  8131. (layers "*.Cu" "*.Mask")
  8132. (remove_unused_layers no)
  8133. (roundrect_rratio 0.147059)
  8134. (net "/Communication/TX")
  8135. (pinfunction "RX_1")
  8136. (pintype "input")
  8137. (uuid "6a31ca1e-81fd-40ab-9722-6635f995af29")
  8138. )
  8139. (pad "2" thru_hole circle
  8140. (at 2.54 0)
  8141. (size 1.7 1.7)
  8142. (drill 1)
  8143. (layers "*.Cu" "*.Mask")
  8144. (remove_unused_layers no)
  8145. (net "unconnected-(J2-SWCLK-Pad2)")
  8146. (pinfunction "SWCLK_2")
  8147. (pintype "bidirectional+no_connect")
  8148. (uuid "63924cf9-f90b-4436-be99-b0c750a8565f")
  8149. )
  8150. (pad "3" thru_hole circle
  8151. (at 0 -2.54)
  8152. (size 1.7 1.7)
  8153. (drill 1)
  8154. (layers "*.Cu" "*.Mask")
  8155. (remove_unused_layers no)
  8156. (net "/Communication/RX")
  8157. (pinfunction "TX_3")
  8158. (pintype "output")
  8159. (uuid "98ef48cf-0fe0-4b12-b42f-71c6e2397985")
  8160. )
  8161. (pad "4" thru_hole circle
  8162. (at 2.54 -2.54)
  8163. (size 1.7 1.7)
  8164. (drill 1)
  8165. (layers "*.Cu" "*.Mask")
  8166. (remove_unused_layers no)
  8167. (net "/IO/SWIO")
  8168. (pinfunction "SWIO_4")
  8169. (pintype "bidirectional")
  8170. (uuid "30cbc741-3c79-409a-bf10-1762a15f5b48")
  8171. )
  8172. (pad "5" thru_hole circle
  8173. (at 0 -5.08)
  8174. (size 1.7 1.7)
  8175. (drill 1)
  8176. (layers "*.Cu" "*.Mask")
  8177. (remove_unused_layers no)
  8178. (net "unconnected-(J2-TDO-Pad5)")
  8179. (pinfunction "TDO_5")
  8180. (pintype "bidirectional+no_connect")
  8181. (uuid "03c9d2f5-f15f-4297-924d-86889bfbdad6")
  8182. )
  8183. (pad "6" thru_hole circle
  8184. (at 2.54 -5.08)
  8185. (size 1.7 1.7)
  8186. (drill 1)
  8187. (layers "*.Cu" "*.Mask")
  8188. (remove_unused_layers no)
  8189. (net "GND")
  8190. (pinfunction "GND_6")
  8191. (pintype "power_in")
  8192. (uuid "5131d5b8-5043-4997-a24d-3da73c6b5b80")
  8193. )
  8194. (pad "7" thru_hole circle
  8195. (at 0 -7.62)
  8196. (size 1.7 1.7)
  8197. (drill 1)
  8198. (layers "*.Cu" "*.Mask")
  8199. (remove_unused_layers no)
  8200. (net "unconnected-(J2-TDI-Pad7)")
  8201. (pinfunction "TDI_7")
  8202. (pintype "bidirectional+no_connect")
  8203. (uuid "f442dbe2-d7d1-4820-9cd8-8e6ceaff50dc")
  8204. )
  8205. (pad "8" thru_hole circle
  8206. (at 2.54 -7.62)
  8207. (size 1.7 1.7)
  8208. (drill 1)
  8209. (layers "*.Cu" "*.Mask")
  8210. (remove_unused_layers no)
  8211. (net "unconnected-(J2-3V3-Pad8)")
  8212. (pinfunction "3V3_8")
  8213. (pintype "power_in+no_connect")
  8214. (uuid "8db571a4-826e-406e-9ccf-327219b043f0")
  8215. )
  8216. (pad "9" thru_hole circle
  8217. (at 0 -10.16)
  8218. (size 1.7 1.7)
  8219. (drill 1)
  8220. (layers "*.Cu" "*.Mask")
  8221. (remove_unused_layers no)
  8222. (net "unconnected-(J2-RST-Pad9)")
  8223. (pinfunction "RST_9")
  8224. (pintype "bidirectional+no_connect")
  8225. (uuid "d6f9b0e6-658b-4c0c-a0fc-d3d2737f8250")
  8226. )
  8227. (pad "10" thru_hole circle
  8228. (at 2.54 -10.16)
  8229. (size 1.7 1.7)
  8230. (drill 1)
  8231. (layers "*.Cu" "*.Mask")
  8232. (remove_unused_layers no)
  8233. (net "+5V")
  8234. (pinfunction "5V_10")
  8235. (pintype "power_in")
  8236. (uuid "a89a8838-a2cd-4910-b362-7e27940af767")
  8237. )
  8238. (embedded_fonts no)
  8239. (model "${KICAD10_3DMODEL_DIR}/Connector_IDC.3dshapes/IDC-Header_2x05_P2.54mm_Vertical.step"
  8240. (offset
  8241. (xyz 0 0 0)
  8242. )
  8243. (scale
  8244. (xyz 1 1 1)
  8245. )
  8246. (rotate
  8247. (xyz 0 0 0)
  8248. )
  8249. )
  8250. )
  8251. (footprint "imu:GY-LSM6DS3"
  8252. (layer "B.Cu")
  8253. (uuid "78efb7a7-2a49-4086-83a5-96b63643a142")
  8254. (at 110 86.95 180)
  8255. (property "Reference" "U2"
  8256. (at -9.87 0 90)
  8257. (layer "B.SilkS")
  8258. (uuid "33dfa571-0a75-4bfe-a122-f9a8e1d2f265")
  8259. (effects
  8260. (font
  8261. (size 1 1)
  8262. (thickness 0.15)
  8263. )
  8264. (justify mirror)
  8265. )
  8266. )
  8267. (property "Value" "LSM6DS3"
  8268. (at 0 0 0)
  8269. (layer "B.Fab")
  8270. (uuid "42112a3e-6197-42ec-90e7-52379e6a4d29")
  8271. (effects
  8272. (font
  8273. (size 1 1)
  8274. (thickness 0.15)
  8275. )
  8276. (justify mirror)
  8277. )
  8278. )
  8279. (property "Datasheet" "https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf"
  8280. (at 0 0 0)
  8281. (layer "B.Fab")
  8282. (hide yes)
  8283. (uuid "4ff89531-54d8-4404-8a03-b5e7a79d38d8")
  8284. (effects
  8285. (font
  8286. (size 1.27 1.27)
  8287. )
  8288. (justify mirror)
  8289. )
  8290. )
  8291. (property "Description" ""
  8292. (at 0 0 0)
  8293. (layer "B.Fab")
  8294. (hide yes)
  8295. (uuid "1a00c431-667d-4ea9-b265-9258b56f1722")
  8296. (effects
  8297. (font
  8298. (size 1.27 1.27)
  8299. )
  8300. (justify mirror)
  8301. )
  8302. )
  8303. (path "/61d90625-cf7d-4b0e-a402-280f678c738c/3e7ac7e3-7ef6-4c4b-8691-fb637248307d")
  8304. (sheetname "/IMU/")
  8305. (sheetfile "imu.kicad_sch")
  8306. (units
  8307. (unit
  8308. (name "A")
  8309. (pins "4" "5" "7" "6" "10" "11" "1" "3" "2" "8" "9" "12")
  8310. )
  8311. )
  8312. (attr through_hole)
  8313. (duplicate_pad_numbers_are_jumpers no)
  8314. (fp_line
  8315. (start 8.87 6.579999)
  8316. (end -8.87 6.58)
  8317. (stroke
  8318. (width 0.12)
  8319. (type default)
  8320. )
  8321. (layer "B.SilkS")
  8322. (uuid "984321fa-8640-4040-b89c-f7b324a79c93")
  8323. )
  8324. (fp_line
  8325. (start 8.87 -6.58)
  8326. (end 8.87 6.579999)
  8327. (stroke
  8328. (width 0.12)
  8329. (type default)
  8330. )
  8331. (layer "B.SilkS")
  8332. (uuid "4b57367d-c54c-43d9-b347-09a233aae5c2")
  8333. )
  8334. (fp_line
  8335. (start -8.87 6.58)
  8336. (end -8.87 -6.58)
  8337. (stroke
  8338. (width 0.12)
  8339. (type default)
  8340. )
  8341. (layer "B.SilkS")
  8342. (uuid "5e4f1f47-0ae9-4390-99dd-39fdce39fb6e")
  8343. )
  8344. (fp_line
  8345. (start -8.87 -6.579999)
  8346. (end 8.87 -6.58)
  8347. (stroke
  8348. (width 0.12)
  8349. (type default)
  8350. )
  8351. (layer "B.SilkS")
  8352. (uuid "568cfced-37d7-4e95-b02d-29feb54875a4")
  8353. )
  8354. (fp_circle
  8355. (center 7 3)
  8356. (end 7 4.5)
  8357. (stroke
  8358. (width 0.1)
  8359. (type default)
  8360. )
  8361. (fill no)
  8362. (layer "B.SilkS")
  8363. (uuid "1fa990d5-397d-461f-8d1b-fe77c5c76935")
  8364. )
  8365. (fp_circle
  8366. (center -7 3)
  8367. (end -7 4.5)
  8368. (stroke
  8369. (width 0.1)
  8370. (type default)
  8371. )
  8372. (fill no)
  8373. (layer "B.SilkS")
  8374. (uuid "8b969601-2471-416e-86c7-8a19d485aaee")
  8375. )
  8376. (fp_rect
  8377. (start -8.5 -4)
  8378. (end 8.5 -6.25)
  8379. (stroke
  8380. (width 0.05)
  8381. (type default)
  8382. )
  8383. (fill no)
  8384. (layer "B.CrtYd")
  8385. (uuid "7f1c1ab7-1721-4ae4-b0e2-3050baf3d406")
  8386. )
  8387. (fp_poly
  8388. (pts
  8389. (xy 6 6.25) (xy 6 4.5) (xy 5.5 4) (xy -5.5 4) (xy -6 4.5) (xy -6 6.25)
  8390. )
  8391. (stroke
  8392. (width 0.05)
  8393. (type solid)
  8394. )
  8395. (fill no)
  8396. (layer "B.CrtYd")
  8397. (uuid "dd28ffb5-ede6-4cfc-9fd1-6c3bffef2faa")
  8398. )
  8399. (pad "1" thru_hole oval
  8400. (at -7.62 -5.08 180)
  8401. (size 1.5 2)
  8402. (drill 0.9)
  8403. (layers "*.Cu" "*.Mask")
  8404. (remove_unused_layers no)
  8405. (net "+5V")
  8406. (pinfunction "VIN_1")
  8407. (pintype "power_in")
  8408. (thermal_bridge_angle 45)
  8409. (uuid "b2cb48cf-6d2c-4e21-a3ea-35061af6263e")
  8410. )
  8411. (pad "2" thru_hole oval
  8412. (at -5.08 -5.08 180)
  8413. (size 1.5 2)
  8414. (drill 0.9)
  8415. (layers "*.Cu" "*.Mask")
  8416. (remove_unused_layers no)
  8417. (net "Net-(U2-3V3)")
  8418. (pinfunction "3V3_2")
  8419. (pintype "power_in")
  8420. (thermal_bridge_angle 45)
  8421. (uuid "3fca0f09-2c4f-474f-8c63-995d13a143f0")
  8422. )
  8423. (pad "3" thru_hole oval
  8424. (at -2.54 -5.08 180)
  8425. (size 1.5 2)
  8426. (drill 0.9)
  8427. (layers "*.Cu" "*.Mask")
  8428. (remove_unused_layers no)
  8429. (net "GND")
  8430. (pinfunction "GND_3")
  8431. (pintype "power_in")
  8432. (thermal_bridge_angle 45)
  8433. (uuid "c77beebb-31b1-4c8e-b941-4ffa4af79acc")
  8434. )
  8435. (pad "4" thru_hole oval
  8436. (at 0 -5.08 180)
  8437. (size 1.5 2)
  8438. (drill 0.9)
  8439. (layers "*.Cu" "*.Mask")
  8440. (remove_unused_layers no)
  8441. (net "/IMU/SCL")
  8442. (pinfunction "SCL_4")
  8443. (pintype "input")
  8444. (thermal_bridge_angle 45)
  8445. (uuid "8c2b09de-528b-46a5-a9fd-fd5fba7fe2e1")
  8446. )
  8447. (pad "5" thru_hole oval
  8448. (at 2.54 -5.08 180)
  8449. (size 1.5 2)
  8450. (drill 0.9)
  8451. (layers "*.Cu" "*.Mask")
  8452. (remove_unused_layers no)
  8453. (net "/IMU/SDA")
  8454. (pinfunction "SDA/SDI_5")
  8455. (pintype "bidirectional")
  8456. (thermal_bridge_angle 45)
  8457. (uuid "9f172a76-9182-4ec0-b366-fc24b1475109")
  8458. )
  8459. (pad "6" thru_hole oval
  8460. (at 5.08 -5.08 180)
  8461. (size 1.5 2)
  8462. (drill 0.9)
  8463. (layers "*.Cu" "*.Mask")
  8464. (remove_unused_layers no)
  8465. (net "unconnected-(U2-CS-Pad6)")
  8466. (pinfunction "CS_6")
  8467. (pintype "input+no_connect")
  8468. (thermal_bridge_angle 45)
  8469. (uuid "cab3a7e7-6c5b-4f5e-8381-12daae332f10")
  8470. )
  8471. (pad "7" thru_hole oval
  8472. (at 7.62 -5.08 180)
  8473. (size 1.5 2)
  8474. (drill 0.9)
  8475. (layers "*.Cu" "*.Mask")
  8476. (remove_unused_layers no)
  8477. (net "unconnected-(U2-SDO{slash}SA0-Pad7)")
  8478. (pinfunction "SDO/SA0_7")
  8479. (pintype "bidirectional+no_connect")
  8480. (thermal_bridge_angle 45)
  8481. (uuid "b60338a6-88b2-4ff9-af9b-c3d396cb148d")
  8482. )
  8483. (pad "8" thru_hole oval
  8484. (at 5.08 5.08 180)
  8485. (size 1.5 2)
  8486. (drill 0.9)
  8487. (layers "*.Cu" "*.Mask")
  8488. (remove_unused_layers no)
  8489. (net "Net-(U2-SDX)")
  8490. (pinfunction "SDX_8")
  8491. (pintype "bidirectional")
  8492. (thermal_bridge_angle 45)
  8493. (uuid "95dc07b7-e63d-49e2-93c0-850ba6d6a1a5")
  8494. )
  8495. (pad "9" thru_hole oval
  8496. (at 2.54 5.08 180)
  8497. (size 1.5 2)
  8498. (drill 0.9)
  8499. (layers "*.Cu" "*.Mask")
  8500. (remove_unused_layers no)
  8501. (net "Net-(U2-SCX)")
  8502. (pinfunction "SCX_9")
  8503. (pintype "bidirectional")
  8504. (thermal_bridge_angle 45)
  8505. (uuid "9a57cc57-92b8-44fa-a299-804a0e967439")
  8506. )
  8507. (pad "10" thru_hole oval
  8508. (at 0 5.08 180)
  8509. (size 1.5 2)
  8510. (drill 0.9)
  8511. (layers "*.Cu" "*.Mask")
  8512. (remove_unused_layers no)
  8513. (net "/IMU/INT")
  8514. (pinfunction "INT1_10")
  8515. (pintype "output")
  8516. (thermal_bridge_angle 45)
  8517. (uuid "dd4fad89-3229-4e95-9880-8d9c7e2c7e37")
  8518. )
  8519. (pad "11" thru_hole oval
  8520. (at -2.54 5.08 180)
  8521. (size 1.5 2)
  8522. (drill 0.9)
  8523. (layers "*.Cu" "*.Mask")
  8524. (remove_unused_layers no)
  8525. (net "unconnected-(U2-INT2-Pad11)")
  8526. (pinfunction "INT2_11")
  8527. (pintype "output+no_connect")
  8528. (thermal_bridge_angle 45)
  8529. (uuid "c5535b8b-bd21-4420-b2a3-d7facc57b8d5")
  8530. )
  8531. (pad "12" thru_hole oval
  8532. (at -5.08 5.08 180)
  8533. (size 1.5 2)
  8534. (drill 0.9)
  8535. (layers "*.Cu" "*.Mask")
  8536. (remove_unused_layers no)
  8537. (net "unconnected-(U2-0CS-Pad12)")
  8538. (pinfunction "0CS_12")
  8539. (pintype "output+no_connect")
  8540. (thermal_bridge_angle 45)
  8541. (uuid "2bd779a1-dd25-4725-baba-62cda28aa430")
  8542. )
  8543. (embedded_fonts no)
  8544. )
  8545. (footprint "esp:ESP-01"
  8546. (layer "B.Cu")
  8547. (uuid "e04d65ce-8782-426d-b8e3-8042d8ae5924")
  8548. (at 110 112.8 180)
  8549. (property "Reference" "U4"
  8550. (at -6.11 0 90)
  8551. (layer "B.SilkS")
  8552. (uuid "9f80f241-03d9-4199-9f6b-662fb305fcc1")
  8553. (effects
  8554. (font
  8555. (size 1 1)
  8556. (thickness 0.15)
  8557. )
  8558. (justify mirror)
  8559. )
  8560. )
  8561. (property "Value" "ESP-01"
  8562. (at 0 0 0)
  8563. (layer "B.Fab")
  8564. (uuid "bbcec7c2-349d-4101-9e04-c499a3fbca3f")
  8565. (effects
  8566. (font
  8567. (size 1 1)
  8568. (thickness 0.15)
  8569. )
  8570. (justify mirror)
  8571. )
  8572. )
  8573. (property "Datasheet" "https://academy.cba.mit.edu/classes/networking_communications/ESP8266/esp01.pdf"
  8574. (at 0 0 0)
  8575. (layer "B.Fab")
  8576. (hide yes)
  8577. (uuid "1c464118-fb06-4ac1-87ff-619215ffb670")
  8578. (effects
  8579. (font
  8580. (size 1.27 1.27)
  8581. )
  8582. (justify mirror)
  8583. )
  8584. )
  8585. (property "Description" ""
  8586. (at 0 0 0)
  8587. (layer "B.Fab")
  8588. (hide yes)
  8589. (uuid "df420703-b462-40ef-aa6a-edb7711364c2")
  8590. (effects
  8591. (font
  8592. (size 1.27 1.27)
  8593. )
  8594. (justify mirror)
  8595. )
  8596. )
  8597. (path "/1b0a1d68-e8b7-4c38-9961-408ecb09dccc/b1cfa9ca-8ff9-4aa8-b59d-488d87badb92")
  8598. (sheetname "/Communication/")
  8599. (sheetfile "communication.kicad_sch")
  8600. (units
  8601. (unit
  8602. (name "A")
  8603. (pins "6" "7" "4" "8" "5" "1" "3" "2")
  8604. )
  8605. )
  8606. (attr through_hole)
  8607. (duplicate_pad_numbers_are_jumpers no)
  8608. (fp_line
  8609. (start 7.15 2.57)
  8610. (end 7.15 -27.37)
  8611. (stroke
  8612. (width 0.12)
  8613. (type solid)
  8614. )
  8615. (layer "B.SilkS")
  8616. (uuid "bb7f4636-8f38-4dbf-bd87-ccc6d869c747")
  8617. )
  8618. (fp_line
  8619. (start 7.15 2.569999)
  8620. (end -7.15 2.57)
  8621. (stroke
  8622. (width 0.12)
  8623. (type solid)
  8624. )
  8625. (layer "B.SilkS")
  8626. (uuid "34a1412d-ef63-4ea9-b025-3eb63f1056a2")
  8627. )
  8628. (fp_line
  8629. (start 7.15 -18.75)
  8630. (end -7.15 -18.75)
  8631. (stroke
  8632. (width 0.12)
  8633. (type solid)
  8634. )
  8635. (layer "B.SilkS")
  8636. (uuid "d8404059-8ed1-424d-b536-8c25501cc9ea")
  8637. )
  8638. (fp_line
  8639. (start 7.15 -27.37)
  8640. (end -7.15 -27.37)
  8641. (stroke
  8642. (width 0.12)
  8643. (type solid)
  8644. )
  8645. (layer "B.SilkS")
  8646. (uuid "195684de-ab7e-4f44-aabb-082205f8f410")
  8647. )
  8648. (fp_line
  8649. (start 5.11 -2.57)
  8650. (end 5.11 2.569999)
  8651. (stroke
  8652. (width 0.12)
  8653. (type default)
  8654. )
  8655. (layer "B.SilkS")
  8656. (uuid "c4835fbd-2b2e-4b10-b501-ae1a594fd47b")
  8657. )
  8658. (fp_line
  8659. (start -5.11 2.5)
  8660. (end -5.11 -2.569999)
  8661. (stroke
  8662. (width 0.12)
  8663. (type default)
  8664. )
  8665. (layer "B.SilkS")
  8666. (uuid "0975f89e-d133-4be8-9505-3d913a806bf6")
  8667. )
  8668. (fp_line
  8669. (start -5.11 -2.57)
  8670. (end 5.11 -2.57)
  8671. (stroke
  8672. (width 0.12)
  8673. (type solid)
  8674. )
  8675. (layer "B.SilkS")
  8676. (uuid "15cf2076-f804-4849-8047-60f72a2f7c8b")
  8677. )
  8678. (fp_line
  8679. (start -7.15 2.5)
  8680. (end -7.15 -27.37)
  8681. (stroke
  8682. (width 0.12)
  8683. (type solid)
  8684. )
  8685. (layer "B.SilkS")
  8686. (uuid "08538bc7-6627-487d-bd54-4113958ed9ab")
  8687. )
  8688. (fp_line
  8689. (start 4.86 2.32)
  8690. (end 4.86 -2.32)
  8691. (stroke
  8692. (width 0.05)
  8693. (type default)
  8694. )
  8695. (layer "B.CrtYd")
  8696. (uuid "e990fade-04b6-4917-8b29-c2d6995191f8")
  8697. )
  8698. (fp_line
  8699. (start 4.86 -2.32)
  8700. (end -4.86 -2.32)
  8701. (stroke
  8702. (width 0.05)
  8703. (type default)
  8704. )
  8705. (layer "B.CrtYd")
  8706. (uuid "ed8d4ff4-7973-4281-9fa3-969dd64bedd3")
  8707. )
  8708. (fp_line
  8709. (start -4.86 2.32)
  8710. (end 4.86 2.32)
  8711. (stroke
  8712. (width 0.05)
  8713. (type default)
  8714. )
  8715. (layer "B.CrtYd")
  8716. (uuid "5244f592-3e4e-487f-ad76-42269f4e7820")
  8717. )
  8718. (fp_line
  8719. (start -4.86 -2.32)
  8720. (end -4.86 2.32)
  8721. (stroke
  8722. (width 0.05)
  8723. (type default)
  8724. )
  8725. (layer "B.CrtYd")
  8726. (uuid "6c62970a-faa7-49b0-8b13-840f98ac0db1")
  8727. )
  8728. (fp_text user "WIFI"
  8729. (at 0 -23.25 0)
  8730. (unlocked yes)
  8731. (layer "B.SilkS")
  8732. (uuid "9319cffa-6f4f-4361-bbc2-8614dce8b6f1")
  8733. (effects
  8734. (font
  8735. (size 2 2)
  8736. (thickness 0.4)
  8737. (bold yes)
  8738. )
  8739. (justify mirror)
  8740. )
  8741. )
  8742. (pad "1" thru_hole circle
  8743. (at -3.81 -1.27 180)
  8744. (size 1.6 1.6)
  8745. (drill 0.8)
  8746. (layers "*.Cu" "*.Mask")
  8747. (remove_unused_layers no)
  8748. (net "GND")
  8749. (pinfunction "GND_1")
  8750. (pintype "power_in")
  8751. (uuid "0c201279-14bd-41f4-bdf8-8de30aa7dbed")
  8752. )
  8753. (pad "2" thru_hole circle
  8754. (at -1.27 -1.27 180)
  8755. (size 1.6 1.6)
  8756. (drill 0.8)
  8757. (layers "*.Cu" "*.Mask")
  8758. (remove_unused_layers no)
  8759. (net "/Communication/LEDS_CHAIN")
  8760. (pinfunction "GPIO2_2")
  8761. (pintype "bidirectional")
  8762. (uuid "a17ef711-a3cd-472e-8012-5012c9de66f0")
  8763. )
  8764. (pad "3" thru_hole circle
  8765. (at 1.27 -1.27 180)
  8766. (size 1.6 1.6)
  8767. (drill 0.8)
  8768. (layers "*.Cu" "*.Mask")
  8769. (remove_unused_layers no)
  8770. (net "/Communication/RF_LED")
  8771. (pinfunction "GPIO0_3")
  8772. (pintype "bidirectional")
  8773. (uuid "e1d106b0-0cb7-407b-af4a-c10a2a40e344")
  8774. )
  8775. (pad "4" thru_hole circle
  8776. (at 3.81 -1.27 180)
  8777. (size 1.6 1.6)
  8778. (drill 0.8)
  8779. (layers "*.Cu" "*.Mask")
  8780. (remove_unused_layers no)
  8781. (net "/Communication/RX")
  8782. (pinfunction "RX/GPIO3_4")
  8783. (pintype "input")
  8784. (uuid "b9f79e13-8d4c-45fa-8e4f-3bd23c6402ec")
  8785. )
  8786. (pad "5" thru_hole circle
  8787. (at 3.81 1.27 180)
  8788. (size 1.6 1.6)
  8789. (drill 0.8)
  8790. (layers "*.Cu" "*.Mask")
  8791. (remove_unused_layers no)
  8792. (net "+3V3")
  8793. (pinfunction "VCC_5")
  8794. (pintype "power_in")
  8795. (uuid "0c7c7a6b-4206-4386-a75d-f47a6b66ddd7")
  8796. )
  8797. (pad "6" thru_hole circle
  8798. (at 1.27 1.27 180)
  8799. (size 1.6 1.6)
  8800. (drill 0.8)
  8801. (layers "*.Cu" "*.Mask")
  8802. (remove_unused_layers no)
  8803. (net "Net-(J4-Pin_2)")
  8804. (pinfunction "RST_6")
  8805. (pintype "input")
  8806. (uuid "767eb6e3-759d-42c8-beee-c535294e0d32")
  8807. )
  8808. (pad "7" thru_hole circle
  8809. (at -1.27 1.27 180)
  8810. (size 1.6 1.6)
  8811. (drill 0.8)
  8812. (layers "*.Cu" "*.Mask")
  8813. (remove_unused_layers no)
  8814. (net "Net-(J1-Pin_2)")
  8815. (pinfunction "CH_PD_7")
  8816. (pintype "bidirectional")
  8817. (uuid "49c893e8-656c-43ba-b905-0f2ce295233f")
  8818. )
  8819. (pad "8" thru_hole circle
  8820. (at -3.81 1.27 180)
  8821. (size 1.6 1.6)
  8822. (drill 0.8)
  8823. (layers "*.Cu" "*.Mask")
  8824. (remove_unused_layers no)
  8825. (net "/Communication/TX")
  8826. (pinfunction "TX/GPIO1_8")
  8827. (pintype "output")
  8828. (uuid "38b4b12d-9073-4af0-86dc-e3dfe8cb984d")
  8829. )
  8830. (zone
  8831. (layer "B.CrtYd")
  8832. (uuid "bb3ede7d-7d30-495e-87c8-6ec59e4a503c")
  8833. (name "WIFI")
  8834. (hatch edge 0.5)
  8835. (connect_pads
  8836. (clearance 0)
  8837. )
  8838. (min_thickness 0.25)
  8839. (keepout
  8840. (tracks not_allowed)
  8841. (vias not_allowed)
  8842. (pads not_allowed)
  8843. (copperpour not_allowed)
  8844. (footprints not_allowed)
  8845. )
  8846. (placement
  8847. (enabled no)
  8848. (sheetname "")
  8849. )
  8850. (fill
  8851. (thermal_gap 0.5)
  8852. (thermal_bridge_width 0.5)
  8853. (island_removal_mode 0)
  8854. )
  8855. (polygon
  8856. (pts
  8857. (xy 102.85 131.55) (xy 117.15 131.55) (xy 117.15 140.17) (xy 102.85 140.17)
  8858. )
  8859. )
  8860. )
  8861. (embedded_fonts no)
  8862. )
  8863. (footprint "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical"
  8864. (layer "B.Cu")
  8865. (uuid "e0e0a0cb-2bfc-4ef5-a763-e3bd817aa09b")
  8866. (at 95 100 180)
  8867. (descr "Through hole straight pin header, 2x10, 2.54mm pitch, double rows")
  8868. (tags "Through hole pin header THT 2x10 2.54mm double row")
  8869. (property "Reference" "J5"
  8870. (at 0 13.81 0)
  8871. (layer "B.SilkS")
  8872. (uuid "cb6454c6-b6b5-4cbb-8e53-317db521605b")
  8873. (effects
  8874. (font
  8875. (size 1 1)
  8876. (thickness 0.15)
  8877. )
  8878. (justify mirror)
  8879. )
  8880. )
  8881. (property "Value" "INTERCONNECT"
  8882. (at 0 -13.81 0)
  8883. (layer "B.Fab")
  8884. (uuid "0d044413-bc1a-4d52-8f1b-9148e2eed696")
  8885. (effects
  8886. (font
  8887. (size 1 1)
  8888. (thickness 0.15)
  8889. )
  8890. (justify mirror)
  8891. )
  8892. )
  8893. (property "Datasheet" ""
  8894. (at 0 0 0)
  8895. (layer "B.Fab")
  8896. (hide yes)
  8897. (uuid "056025bb-99fe-4671-bca3-7f9e999a6747")
  8898. (effects
  8899. (font
  8900. (size 1.27 1.27)
  8901. )
  8902. (justify mirror)
  8903. )
  8904. )
  8905. (property "Description" "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"
  8906. (at 0 0 0)
  8907. (layer "B.Fab")
  8908. (hide yes)
  8909. (uuid "fabf59d1-8445-4b11-a41d-d983437a32f6")
  8910. (effects
  8911. (font
  8912. (size 1.27 1.27)
  8913. )
  8914. (justify mirror)
  8915. )
  8916. )
  8917. (property "KiLib_Generator" "connector/pin_header_socket"
  8918. (at 0 0 0)
  8919. (layer "B.SilkS")
  8920. (hide yes)
  8921. (uuid "00a3bb1c-cc9f-4f9b-83c7-c97d9c2e13b6")
  8922. (effects
  8923. (font
  8924. (size 1 1)
  8925. (thickness 0.15)
  8926. )
  8927. (justify mirror)
  8928. )
  8929. )
  8930. (property ki_fp_filters "Connector*:*_2x??_*")
  8931. (path "/bf89668e-c6ef-4da3-865c-33682ea9025e")
  8932. (sheetname "/")
  8933. (sheetfile "cx-copter.kicad_sch")
  8934. (units
  8935. (unit
  8936. (name "A")
  8937. (pins "1" "3" "5" "7" "9" "11" "13" "15" "17" "19" "2" "4" "6" "8" "10"
  8938. "12" "14" "16" "18" "20"
  8939. )
  8940. )
  8941. )
  8942. (attr through_hole)
  8943. (duplicate_pad_numbers_are_jumpers no)
  8944. (fp_line
  8945. (start 2.65 12.81)
  8946. (end 2.65 -12.81)
  8947. (stroke
  8948. (width 0.12)
  8949. (type solid)
  8950. )
  8951. (layer "B.SilkS")
  8952. (uuid "50b39ac7-c6b8-4d77-a448-86443a82d7ef")
  8953. )
  8954. (fp_line
  8955. (start 0 12.81)
  8956. (end 2.65 12.81)
  8957. (stroke
  8958. (width 0.12)
  8959. (type solid)
  8960. )
  8961. (layer "B.SilkS")
  8962. (uuid "dd1a6010-1732-4bc6-b2fa-a86241891569")
  8963. )
  8964. (fp_line
  8965. (start 0 10.16)
  8966. (end 0 12.81)
  8967. (stroke
  8968. (width 0.12)
  8969. (type solid)
  8970. )
  8971. (layer "B.SilkS")
  8972. (uuid "7f2e6cb0-5fd8-4788-b7b6-3f3a25789a76")
  8973. )
  8974. (fp_line
  8975. (start -2.65 12.81)
  8976. (end -1.27 12.81)
  8977. (stroke
  8978. (width 0.12)
  8979. (type solid)
  8980. )
  8981. (layer "B.SilkS")
  8982. (uuid "915a244b-7257-443a-91f5-38a16587df48")
  8983. )
  8984. (fp_line
  8985. (start -2.65 11.43)
  8986. (end -2.65 12.81)
  8987. (stroke
  8988. (width 0.12)
  8989. (type solid)
  8990. )
  8991. (layer "B.SilkS")
  8992. (uuid "afa244b1-8ce0-42bd-b0c0-5f09bb0d191b")
  8993. )
  8994. (fp_line
  8995. (start -2.65 10.16)
  8996. (end 0 10.16)
  8997. (stroke
  8998. (width 0.12)
  8999. (type solid)
  9000. )
  9001. (layer "B.SilkS")
  9002. (uuid "4a6d0d44-e9a7-4f66-b411-da66fee2e8c4")
  9003. )
  9004. (fp_line
  9005. (start -2.65 10.16)
  9006. (end -2.65 -12.81)
  9007. (stroke
  9008. (width 0.12)
  9009. (type solid)
  9010. )
  9011. (layer "B.SilkS")
  9012. (uuid "3e683f10-1552-4537-9d98-7d91153b4b1e")
  9013. )
  9014. (fp_line
  9015. (start -2.65 -12.81)
  9016. (end 2.65 -12.81)
  9017. (stroke
  9018. (width 0.12)
  9019. (type solid)
  9020. )
  9021. (layer "B.SilkS")
  9022. (uuid "53d0298b-4602-4d6b-bfe8-4475564f1112")
  9023. )
  9024. (fp_rect
  9025. (start -3.04 13.2)
  9026. (end 3.05 -13.2)
  9027. (stroke
  9028. (width 0.05)
  9029. (type solid)
  9030. )
  9031. (fill no)
  9032. (layer "B.CrtYd")
  9033. (uuid "98df279b-12ee-4857-9bbd-bfb0c9bf7595")
  9034. )
  9035. (fp_line
  9036. (start 2.54 12.7)
  9037. (end 2.54 -12.7)
  9038. (stroke
  9039. (width 0.1)
  9040. (type solid)
  9041. )
  9042. (layer "B.Fab")
  9043. (uuid "db510421-2360-4aa9-8ecf-5304243767d5")
  9044. )
  9045. (fp_line
  9046. (start 2.54 -12.7)
  9047. (end -2.54 -12.7)
  9048. (stroke
  9049. (width 0.1)
  9050. (type solid)
  9051. )
  9052. (layer "B.Fab")
  9053. (uuid "f6c287c0-0b79-4fce-8c2a-8cf1751abbcd")
  9054. )
  9055. (fp_line
  9056. (start -1.27 12.7)
  9057. (end 2.54 12.7)
  9058. (stroke
  9059. (width 0.1)
  9060. (type solid)
  9061. )
  9062. (layer "B.Fab")
  9063. (uuid "3d791fdb-612d-4343-bab4-19dbe75d0e11")
  9064. )
  9065. (fp_line
  9066. (start -2.54 11.43)
  9067. (end -1.27 12.7)
  9068. (stroke
  9069. (width 0.1)
  9070. (type solid)
  9071. )
  9072. (layer "B.Fab")
  9073. (uuid "53945366-dd00-4db9-84b6-1cdd7d291919")
  9074. )
  9075. (fp_line
  9076. (start -2.54 -12.7)
  9077. (end -2.54 11.43)
  9078. (stroke
  9079. (width 0.1)
  9080. (type solid)
  9081. )
  9082. (layer "B.Fab")
  9083. (uuid "0c76387a-9d31-4322-9f15-4ea8cb31481b")
  9084. )
  9085. (fp_text user "${REFERENCE}"
  9086. (at 0 0 90)
  9087. (layer "B.Fab")
  9088. (uuid "42bb93e0-a5ac-428c-a573-2ca3cfe16266")
  9089. (effects
  9090. (font
  9091. (size 1 1)
  9092. (thickness 0.15)
  9093. )
  9094. (justify mirror)
  9095. )
  9096. )
  9097. (pad "1" thru_hole rect
  9098. (at -1.27 11.43 180)
  9099. (size 1.7 1.7)
  9100. (drill 1)
  9101. (layers "*.Cu" "*.Mask")
  9102. (remove_unused_layers no)
  9103. (net "+5V")
  9104. (pinfunction "Pin_1_1")
  9105. (pintype "passive")
  9106. (uuid "94add0f2-40ef-445c-a94d-779f56f9531a")
  9107. )
  9108. (pad "2" thru_hole circle
  9109. (at 1.27 11.43 180)
  9110. (size 1.7 1.7)
  9111. (drill 1)
  9112. (layers "*.Cu" "*.Mask")
  9113. (remove_unused_layers no)
  9114. (net "+5V")
  9115. (pinfunction "Pin_2_2")
  9116. (pintype "passive")
  9117. (uuid "a9a0a781-1f63-40f8-8cfd-8427d5e6891a")
  9118. )
  9119. (pad "3" thru_hole circle
  9120. (at -1.27 8.89 180)
  9121. (size 1.7 1.7)
  9122. (drill 1)
  9123. (layers "*.Cu" "*.Mask")
  9124. (remove_unused_layers no)
  9125. (net "+5V")
  9126. (pinfunction "Pin_3_3")
  9127. (pintype "passive")
  9128. (uuid "800fc550-67a7-47ba-9214-804a7c9edafc")
  9129. )
  9130. (pad "4" thru_hole circle
  9131. (at 1.27 8.89 180)
  9132. (size 1.7 1.7)
  9133. (drill 1)
  9134. (layers "*.Cu" "*.Mask")
  9135. (remove_unused_layers no)
  9136. (net "+5V")
  9137. (pinfunction "Pin_4_4")
  9138. (pintype "passive")
  9139. (uuid "836a48d6-e9eb-49d8-8f83-a8cf0f44a602")
  9140. )
  9141. (pad "5" thru_hole circle
  9142. (at -1.27 6.35 180)
  9143. (size 1.7 1.7)
  9144. (drill 1)
  9145. (layers "*.Cu" "*.Mask")
  9146. (remove_unused_layers no)
  9147. (net "/Motion controller/PWM_M1A")
  9148. (pinfunction "Pin_5_5")
  9149. (pintype "passive")
  9150. (uuid "aede5674-e39a-4eb5-a725-5a16b08b6b0f")
  9151. )
  9152. (pad "6" thru_hole circle
  9153. (at 1.27 6.35 180)
  9154. (size 1.7 1.7)
  9155. (drill 1)
  9156. (layers "*.Cu" "*.Mask")
  9157. (remove_unused_layers no)
  9158. (net "/Motion controller/PWM_M1A")
  9159. (pinfunction "Pin_6_6")
  9160. (pintype "passive")
  9161. (uuid "7a8e7337-812f-41fd-9b20-51184f487fb7")
  9162. )
  9163. (pad "7" thru_hole circle
  9164. (at -1.27 3.81 180)
  9165. (size 1.7 1.7)
  9166. (drill 1)
  9167. (layers "*.Cu" "*.Mask")
  9168. (remove_unused_layers no)
  9169. (net "/Motion controller/PWM_M1B")
  9170. (pinfunction "Pin_7_7")
  9171. (pintype "passive")
  9172. (uuid "f2247b0f-e6f1-4eae-a175-9e36c5c87d70")
  9173. )
  9174. (pad "8" thru_hole circle
  9175. (at 1.27 3.81 180)
  9176. (size 1.7 1.7)
  9177. (drill 1)
  9178. (layers "*.Cu" "*.Mask")
  9179. (remove_unused_layers no)
  9180. (net "/Motion controller/PWM_M1B")
  9181. (pinfunction "Pin_8_8")
  9182. (pintype "passive")
  9183. (uuid "c1027911-211a-4f0e-acc3-f06736f51e22")
  9184. )
  9185. (pad "9" thru_hole circle
  9186. (at -1.27 1.27 180)
  9187. (size 1.7 1.7)
  9188. (drill 1)
  9189. (layers "*.Cu" "*.Mask")
  9190. (remove_unused_layers no)
  9191. (net "/Motion controller/PWM_M2A")
  9192. (pinfunction "Pin_9_9")
  9193. (pintype "passive")
  9194. (uuid "8661a37a-dbb4-4b56-b261-6efe041588ba")
  9195. )
  9196. (pad "10" thru_hole circle
  9197. (at 1.27 1.27 180)
  9198. (size 1.7 1.7)
  9199. (drill 1)
  9200. (layers "*.Cu" "*.Mask")
  9201. (remove_unused_layers no)
  9202. (net "/Motion controller/PWM_M2A")
  9203. (pinfunction "Pin_10_10")
  9204. (pintype "passive")
  9205. (uuid "244b3551-ea97-49d2-8799-dec4af0aeae9")
  9206. )
  9207. (pad "11" thru_hole circle
  9208. (at -1.27 -1.27 180)
  9209. (size 1.7 1.7)
  9210. (drill 1)
  9211. (layers "*.Cu" "*.Mask")
  9212. (remove_unused_layers no)
  9213. (net "/Motion controller/PWM_M2B")
  9214. (pinfunction "Pin_11_11")
  9215. (pintype "passive")
  9216. (uuid "a81cca56-ffa1-4aa8-8309-4ffc0742217b")
  9217. )
  9218. (pad "12" thru_hole circle
  9219. (at 1.27 -1.27 180)
  9220. (size 1.7 1.7)
  9221. (drill 1)
  9222. (layers "*.Cu" "*.Mask")
  9223. (remove_unused_layers no)
  9224. (net "/Motion controller/PWM_M2B")
  9225. (pinfunction "Pin_12_12")
  9226. (pintype "passive")
  9227. (uuid "51a1aa46-c386-4bb3-83c2-0c814a11e017")
  9228. )
  9229. (pad "13" thru_hole circle
  9230. (at -1.27 -3.81 180)
  9231. (size 1.7 1.7)
  9232. (drill 1)
  9233. (layers "*.Cu" "*.Mask")
  9234. (remove_unused_layers no)
  9235. (net "/Communication/LEDS_CHAIN")
  9236. (pinfunction "Pin_13_13")
  9237. (pintype "passive")
  9238. (uuid "0abbf411-422d-4bbc-98ee-825d9a4f04e5")
  9239. )
  9240. (pad "14" thru_hole circle
  9241. (at 1.27 -3.81 180)
  9242. (size 1.7 1.7)
  9243. (drill 1)
  9244. (layers "*.Cu" "*.Mask")
  9245. (remove_unused_layers no)
  9246. (net "/Communication/LEDS_CHAIN")
  9247. (pinfunction "Pin_14_14")
  9248. (pintype "passive")
  9249. (uuid "fc2faeb1-c0ea-46bb-915e-e87f2bb23603")
  9250. )
  9251. (pad "15" thru_hole circle
  9252. (at -1.27 -6.35 180)
  9253. (size 1.7 1.7)
  9254. (drill 1)
  9255. (layers "*.Cu" "*.Mask")
  9256. (remove_unused_layers no)
  9257. (net "/Motion controller/BATTERY_LEVEL")
  9258. (pinfunction "Pin_15_15")
  9259. (pintype "passive")
  9260. (uuid "9d06722a-1e48-4d2c-b365-60aac728d534")
  9261. )
  9262. (pad "16" thru_hole circle
  9263. (at 1.27 -6.35 180)
  9264. (size 1.7 1.7)
  9265. (drill 1)
  9266. (layers "*.Cu" "*.Mask")
  9267. (remove_unused_layers no)
  9268. (net "/Motion controller/BATTERY_LEVEL")
  9269. (pinfunction "Pin_16_16")
  9270. (pintype "passive")
  9271. (uuid "25266d9c-b1f0-4ef7-a392-839a7604bd48")
  9272. )
  9273. (pad "17" thru_hole circle
  9274. (at -1.27 -8.89 180)
  9275. (size 1.7 1.7)
  9276. (drill 1)
  9277. (layers "*.Cu" "*.Mask")
  9278. (remove_unused_layers no)
  9279. (net "GND")
  9280. (pinfunction "Pin_17_17")
  9281. (pintype "passive")
  9282. (uuid "800c5a6f-5a0b-42a3-988f-6c7ece7fe19f")
  9283. )
  9284. (pad "18" thru_hole circle
  9285. (at 1.27 -8.89 180)
  9286. (size 1.7 1.7)
  9287. (drill 1)
  9288. (layers "*.Cu" "*.Mask")
  9289. (remove_unused_layers no)
  9290. (net "GND")
  9291. (pinfunction "Pin_18_18")
  9292. (pintype "passive")
  9293. (uuid "d55458b5-fe47-4765-87ac-89f6ded5f144")
  9294. )
  9295. (pad "19" thru_hole circle
  9296. (at -1.27 -11.43 180)
  9297. (size 1.7 1.7)
  9298. (drill 1)
  9299. (layers "*.Cu" "*.Mask")
  9300. (remove_unused_layers no)
  9301. (net "GND")
  9302. (pinfunction "Pin_19_19")
  9303. (pintype "passive")
  9304. (uuid "368e38f2-85a1-4c92-9ba5-eff627297075")
  9305. )
  9306. (pad "20" thru_hole circle
  9307. (at 1.27 -11.43 180)
  9308. (size 1.7 1.7)
  9309. (drill 1)
  9310. (layers "*.Cu" "*.Mask")
  9311. (remove_unused_layers no)
  9312. (net "GND")
  9313. (pinfunction "Pin_20_20")
  9314. (pintype "passive")
  9315. (uuid "1b08e8ee-dcf8-4d44-afcf-d9a3cb33dabc")
  9316. )
  9317. (embedded_fonts no)
  9318. (model "${KICAD10_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x10_P2.54mm_Vertical.step"
  9319. (offset
  9320. (xyz 0 0 0)
  9321. )
  9322. (scale
  9323. (xyz 1 1 1)
  9324. )
  9325. (rotate
  9326. (xyz 0 0 0)
  9327. )
  9328. )
  9329. )
  9330. (gr_rect
  9331. (start 90 80)
  9332. (end 130 120)
  9333. (radius 5)
  9334. (stroke
  9335. (width 0.5)
  9336. (type solid)
  9337. )
  9338. (fill no)
  9339. (layer "Edge.Cuts")
  9340. (uuid "385cb322-ce43-44ee-bc4f-61cfc1adf827")
  9341. )
  9342. (segment
  9343. (start 107.25 86.55)
  9344. (end 106.5 86.55)
  9345. (width 0.5)
  9346. (layer "F.Cu")
  9347. (net "+3V3")
  9348. (uuid "22eb2483-ac9a-4ea6-837c-ab2b5fc2a818")
  9349. )
  9350. (segment
  9351. (start 114.3125 98.4375)
  9352. (end 113.78 98.97)
  9353. (width 0.5)
  9354. (layer "F.Cu")
  9355. (net "+3V3")
  9356. (uuid "2bfa69e0-b400-43c1-be9b-5ab07e0d7e77")
  9357. )
  9358. (segment
  9359. (start 114.3125 95.7)
  9360. (end 116.2375 95.7)
  9361. (width 0.5)
  9362. (layer "F.Cu")
  9363. (net "+3V3")
  9364. (uuid "4d56fd8e-7b3d-410d-beb3-d1182d066e6a")
  9365. )
  9366. (segment
  9367. (start 109.6 86.55)
  9368. (end 109.6 84.65)
  9369. (width 0.5)
  9370. (layer "F.Cu")
  9371. (net "+3V3")
  9372. (uuid "4da082bd-70d5-42d3-aed8-0c2778cb426f")
  9373. )
  9374. (segment
  9375. (start 116.2375 95.7)
  9376. (end 116.45 95.4875)
  9377. (width 0.5)
  9378. (layer "F.Cu")
  9379. (net "+3V3")
  9380. (uuid "55171d4a-a625-4ef7-a305-b2c724c31e49")
  9381. )
  9382. (segment
  9383. (start 104.1 84.65)
  9384. (end 104.35 84.4)
  9385. (width 0.5)
  9386. (layer "F.Cu")
  9387. (net "+3V3")
  9388. (uuid "6e1d9573-1f76-440c-817d-644ccd667505")
  9389. )
  9390. (segment
  9391. (start 113.78 98.97)
  9392. (end 112.75 98.97)
  9393. (width 0.5)
  9394. (layer "F.Cu")
  9395. (net "+3V3")
  9396. (uuid "730d5d8b-ffee-4bc1-bad0-b30f21f71ea0")
  9397. )
  9398. (segment
  9399. (start 114.3125 95.7)
  9400. (end 114.3125 98.4375)
  9401. (width 0.5)
  9402. (layer "F.Cu")
  9403. (net "+3V3")
  9404. (uuid "9b8231b4-a160-48b5-9c3f-f123a1abcac3")
  9405. )
  9406. (segment
  9407. (start 102.2 84.65)
  9408. (end 104.1 84.65)
  9409. (width 0.5)
  9410. (layer "F.Cu")
  9411. (net "+3V3")
  9412. (uuid "b1801684-59b4-490a-94da-5abd0ccd6e7f")
  9413. )
  9414. (segment
  9415. (start 109.6 84.65)
  9416. (end 109.35 84.4)
  9417. (width 0.5)
  9418. (layer "F.Cu")
  9419. (net "+3V3")
  9420. (uuid "c22b5f5f-4431-47a2-84b2-069f984a1258")
  9421. )
  9422. (segment
  9423. (start 106.5 86.55)
  9424. (end 104.35 84.4)
  9425. (width 0.5)
  9426. (layer "F.Cu")
  9427. (net "+3V3")
  9428. (uuid "c2724762-aa2a-4b9b-b0fb-7e298841b0f6")
  9429. )
  9430. (segment
  9431. (start 109.6 86.55)
  9432. (end 107.25 86.55)
  9433. (width 0.5)
  9434. (layer "F.Cu")
  9435. (net "+3V3")
  9436. (uuid "ebd6218d-d4dd-40e1-8ac2-9d62ee93536b")
  9437. )
  9438. (segment
  9439. (start 93.73 108.89)
  9440. (end 96.27 108.89)
  9441. (width 0.5)
  9442. (layer "F.Cu")
  9443. (net "GND")
  9444. (uuid "009064f2-dfe6-43cf-8d69-e0a1d986d5de")
  9445. )
  9446. (segment
  9447. (start 126.5 93.55)
  9448. (end 126.5 98.86)
  9449. (width 0.5)
  9450. (layer "F.Cu")
  9451. (net "GND")
  9452. (uuid "0ca179f6-3e72-44f1-b00d-c6960427c005")
  9453. )
  9454. (segment
  9455. (start 93.73 108.89)
  9456. (end 93.73 111.43)
  9457. (width 0.5)
  9458. (layer "F.Cu")
  9459. (net "GND")
  9460. (uuid "1104687a-28c3-498a-b362-6856e6de574f")
  9461. )
  9462. (segment
  9463. (start 126.5 98.86)
  9464. (end 124.84 100.52)
  9465. (width 0.5)
  9466. (layer "F.Cu")
  9467. (net "GND")
  9468. (uuid "1b8563a6-3c12-4bd2-afec-5b92c28339bb")
  9469. )
  9470. (segment
  9471. (start 112.54 87.86)
  9472. (end 113.7625 86.6375)
  9473. (width 0.5)
  9474. (layer "F.Cu")
  9475. (net "GND")
  9476. (uuid "24571509-5603-46dd-8519-236544b37051")
  9477. )
  9478. (segment
  9479. (start 111.1875 95.7)
  9480. (end 111.2 95.6875)
  9481. (width 0.5)
  9482. (layer "F.Cu")
  9483. (net "GND")
  9484. (uuid "248b7b94-b0bc-4e89-95cb-c01791d562fc")
  9485. )
  9486. (segment
  9487. (start 113.81 114.07)
  9488. (end 116.37 114.07)
  9489. (width 0.5)
  9490. (layer "F.Cu")
  9491. (net "GND")
  9492. (uuid "39ba6554-92e0-4b17-bb8f-ca3201d660d7")
  9493. )
  9494. (segment
  9495. (start 111.1875 95.7)
  9496. (end 111.1875 99.7375)
  9497. (width 0.5)
  9498. (layer "F.Cu")
  9499. (net "GND")
  9500. (uuid "445c868e-0e59-44ed-8df8-6b169fd5415d")
  9501. )
  9502. (segment
  9503. (start 114.8225 100.24)
  9504. (end 116.45 98.6125)
  9505. (width 0.5)
  9506. (layer "F.Cu")
  9507. (net "GND")
  9508. (uuid "50d10003-73fd-4222-b67d-13514a4a1143")
  9509. )
  9510. (segment
  9511. (start 111.2 94.39375)
  9512. (end 112.54 93.05375)
  9513. (width 0.5)
  9514. (layer "F.Cu")
  9515. (net "GND")
  9516. (uuid "55947f3d-be6e-4c6f-85c4-d361b231fdea")
  9517. )
  9518. (segment
  9519. (start 112.75 100.24)
  9520. (end 114.8225 100.24)
  9521. (width 0.5)
  9522. (layer "F.Cu")
  9523. (net "GND")
  9524. (uuid "5837e4e0-1255-43c2-a2ad-c1d0fe1af22e")
  9525. )
  9526. (segment
  9527. (start 116.4 111.9375)
  9528. (end 116.4 114.1)
  9529. (width 0.5)
  9530. (layer "F.Cu")
  9531. (net "GND")
  9532. (uuid "5bb7652f-2138-4fc6-9db5-59f3396f88d0")
  9533. )
  9534. (segment
  9535. (start 96.27 111.43)
  9536. (end 93.73 111.43)
  9537. (width 0.5)
  9538. (layer "F.Cu")
  9539. (net "GND")
  9540. (uuid "735128dc-6ef3-4746-ba57-68e5ab7ee756")
  9541. )
  9542. (segment
  9543. (start 111.69 100.24)
  9544. (end 112.75 100.24)
  9545. (width 0.5)
  9546. (layer "F.Cu")
  9547. (net "GND")
  9548. (uuid "73ac5e77-ed02-46c7-9054-885709cf9c15")
  9549. )
  9550. (segment
  9551. (start 111.1875 99.7375)
  9552. (end 111.69 100.24)
  9553. (width 0.5)
  9554. (layer "F.Cu")
  9555. (net "GND")
  9556. (uuid "8e18b461-907a-49ac-beb3-aa9cc1572f1a")
  9557. )
  9558. (segment
  9559. (start 118.7375 86.6375)
  9560. (end 119.3 87.2)
  9561. (width 0.5)
  9562. (layer "F.Cu")
  9563. (net "GND")
  9564. (uuid "8f4df4a6-25ab-4150-ad5a-096ef8644fb2")
  9565. )
  9566. (segment
  9567. (start 111.2 95.6875)
  9568. (end 111.2 94.39375)
  9569. (width 0.5)
  9570. (layer "F.Cu")
  9571. (net "GND")
  9572. (uuid "8f9f58a6-5b7d-4365-9508-7c86789261b7")
  9573. )
  9574. (segment
  9575. (start 113.7625 86.6375)
  9576. (end 114.95 86.6375)
  9577. (width 0.5)
  9578. (layer "F.Cu")
  9579. (net "GND")
  9580. (uuid "907be12c-7bee-466e-acb6-65c126e86de5")
  9581. )
  9582. (segment
  9583. (start 119.3 87.2)
  9584. (end 119.3 90)
  9585. (width 0.5)
  9586. (layer "F.Cu")
  9587. (net "GND")
  9588. (uuid "9519b037-9631-4451-b3cb-a72e84bb7612")
  9589. )
  9590. (segment
  9591. (start 123.85 90.9)
  9592. (end 126.5 93.55)
  9593. (width 0.5)
  9594. (layer "F.Cu")
  9595. (net "GND")
  9596. (uuid "afcf14c9-1319-47f4-bb64-6f30ad5006d7")
  9597. )
  9598. (segment
  9599. (start 119.3 90)
  9600. (end 120.2 90.9)
  9601. (width 0.5)
  9602. (layer "F.Cu")
  9603. (net "GND")
  9604. (uuid "b1299f8a-c270-4f1a-bc7e-e7345c0ba33b")
  9605. )
  9606. (segment
  9607. (start 112.54 93.05375)
  9608. (end 112.54 92.03)
  9609. (width 0.5)
  9610. (layer "F.Cu")
  9611. (net "GND")
  9612. (uuid "bee1d098-6394-4a09-b065-9512eea5ed37")
  9613. )
  9614. (segment
  9615. (start 120.2 90.9)
  9616. (end 123.85 90.9)
  9617. (width 0.5)
  9618. (layer "F.Cu")
  9619. (net "GND")
  9620. (uuid "c29cf0e4-f5da-4222-8d7f-ae33e1f91fd5")
  9621. )
  9622. (segment
  9623. (start 117.35 86.6375)
  9624. (end 118.7375 86.6375)
  9625. (width 0.5)
  9626. (layer "F.Cu")
  9627. (net "GND")
  9628. (uuid "c9441013-9c5f-40b1-8fa6-e5bb014cda42")
  9629. )
  9630. (segment
  9631. (start 116.37 114.07)
  9632. (end 116.4 114.1)
  9633. (width 0.5)
  9634. (layer "F.Cu")
  9635. (net "GND")
  9636. (uuid "e5dfc383-88dc-4fad-8949-11871f05ecc1")
  9637. )
  9638. (segment
  9639. (start 112.54 92.03)
  9640. (end 112.54 87.86)
  9641. (width 0.5)
  9642. (layer "F.Cu")
  9643. (net "GND")
  9644. (uuid "e98f887c-f6d9-4b40-ad95-01d60e2cc099")
  9645. )
  9646. (segment
  9647. (start 114.95 86.6375)
  9648. (end 117.35 86.6375)
  9649. (width 0.5)
  9650. (layer "F.Cu")
  9651. (net "GND")
  9652. (uuid "ea7dfce5-e087-4cdf-8a95-19e79577d0d7")
  9653. )
  9654. (segment
  9655. (start 96.27 108.89)
  9656. (end 96.27 111.43)
  9657. (width 0.5)
  9658. (layer "F.Cu")
  9659. (net "GND")
  9660. (uuid "f8aa43e1-2717-48db-9fc9-d27b9426b71a")
  9661. )
  9662. (segment
  9663. (start 96.27 88.57)
  9664. (end 93.73 88.57)
  9665. (width 0.5)
  9666. (layer "F.Cu")
  9667. (net "+5V")
  9668. (uuid "0cfcce6d-7823-4262-8731-368564dff2a7")
  9669. )
  9670. (segment
  9671. (start 117.35 91.76)
  9672. (end 117.62 92.03)
  9673. (width 0.5)
  9674. (layer "F.Cu")
  9675. (net "+5V")
  9676. (uuid "357c85bc-60c6-4679-92dd-4419c64f6887")
  9677. )
  9678. (segment
  9679. (start 123.53 92.03)
  9680. (end 117.62 92.03)
  9681. (width 0.5)
  9682. (layer "F.Cu")
  9683. (net "+5V")
  9684. (uuid "4214d420-81ba-412e-b8a1-f05e0923d3b9")
  9685. )
  9686. (segment
  9687. (start 124.84 95.44)
  9688. (end 124.84 93.34)
  9689. (width 0.5)
  9690. (layer "F.Cu")
  9691. (net "+5V")
  9692. (uuid "70bb5bd0-25cf-4325-bfa3-160eddcb66f7")
  9693. )
  9694. (segment
  9695. (start 117.35 89.7625)
  9696. (end 117.35 91.76)
  9697. (width 0.5)
  9698. (layer "F.Cu")
  9699. (net "+5V")
  9700. (uuid "8a5e9496-f908-4fec-afa9-00a6576c370a")
  9701. )
  9702. (segment
  9703. (start 93.73 88.57)
  9704. (end 93.73 91.11)
  9705. (width 0.5)
  9706. (layer "F.Cu")
  9707. (net "+5V")
  9708. (uuid "97045fae-1f6e-43ba-a16e-058f9b051e99")
  9709. )
  9710. (segment
  9711. (start 124.84 93.34)
  9712. (end 123.53 92.03)
  9713. (width 0.5)
  9714. (layer "F.Cu")
  9715. (net "+5V")
  9716. (uuid "a317e13a-ab1e-487c-836e-1a5c0193ed66")
  9717. )
  9718. (segment
  9719. (start 96.27 88.57)
  9720. (end 96.27 91.11)
  9721. (width 0.5)
  9722. (layer "F.Cu")
  9723. (net "+5V")
  9724. (uuid "d89d645d-fc35-47c3-b31c-fb316c0d2a99")
  9725. )
  9726. (segment
  9727. (start 96.27 91.11)
  9728. (end 93.73 91.11)
  9729. (width 0.5)
  9730. (layer "F.Cu")
  9731. (net "+5V")
  9732. (uuid "f1818095-b324-40fb-8384-920507f2411e")
  9733. )
  9734. (segment
  9735. (start 96.27 98.73)
  9736. (end 93.73 98.73)
  9737. (width 0.5)
  9738. (layer "F.Cu")
  9739. (net "/Motion controller/PWM_M2A")
  9740. (uuid "ce3b0268-5019-439d-896b-930a5f6d38c3")
  9741. )
  9742. (segment
  9743. (start 108.73 114.07)
  9744. (end 108.73 115.68)
  9745. (width 0.5)
  9746. (layer "F.Cu")
  9747. (net "/Communication/RF_LED")
  9748. (uuid "7170feeb-4d91-4f27-9d3e-da20544a5f2c")
  9749. )
  9750. (segment
  9751. (start 108.73 115.68)
  9752. (end 109.75 116.7)
  9753. (width 0.5)
  9754. (layer "F.Cu")
  9755. (net "/Communication/RF_LED")
  9756. (uuid "d78cbfc0-129b-46f9-8f94-0910400e9af9")
  9757. )
  9758. (segment
  9759. (start 116.025 116.7)
  9760. (end 116.4 117.075)
  9761. (width 0.5)
  9762. (layer "F.Cu")
  9763. (net "Net-(D1-A)")
  9764. (uuid "32590f31-527e-466f-90aa-4d6f510f7390")
  9765. )
  9766. (segment
  9767. (start 112.85 116.7)
  9768. (end 116.025 116.7)
  9769. (width 0.5)
  9770. (layer "F.Cu")
  9771. (net "Net-(D1-A)")
  9772. (uuid "91d1c870-6757-416d-afe0-d224fe6b6473")
  9773. )
  9774. (segment
  9775. (start 96.27 101.27)
  9776. (end 93.73 101.27)
  9777. (width 0.5)
  9778. (layer "F.Cu")
  9779. (net "/Motion controller/PWM_M2B")
  9780. (uuid "8719d39e-f59b-44bf-9d7c-c6b9d4d5632b")
  9781. )
  9782. (segment
  9783. (start 115.46 102.96)
  9784. (end 116.4 103.9)
  9785. (width 0.5)
  9786. (layer "F.Cu")
  9787. (net "/IO/STATUS")
  9788. (uuid "28f742dd-9a3f-46a9-8aa6-b2b283189e12")
  9789. )
  9790. (segment
  9791. (start 112.65 102.96)
  9792. (end 115.46 102.96)
  9793. (width 0.5)
  9794. (layer "F.Cu")
  9795. (net "/IO/STATUS")
  9796. (uuid "e408e955-c508-4d08-b804-bb8506c95931")
  9797. )
  9798. (segment
  9799. (start 116.4 107)
  9800. (end 116.4 108.9625)
  9801. (width 0.5)
  9802. (layer "F.Cu")
  9803. (net "Net-(D6-A)")
  9804. (uuid "2b0a55d2-367f-4b54-b55f-063a79540249")
  9805. )
  9806. (segment
  9807. (start 104.6 81.55)
  9808. (end 104.92 81.87)
  9809. (width 0.5)
  9810. (layer "F.Cu")
  9811. (net "Net-(U2-SDX)")
  9812. (uuid "0111e15d-2b2d-4112-b77b-a25439323481")
  9813. )
  9814. (segment
  9815. (start 102.2 81.55)
  9816. (end 104.6 81.55)
  9817. (width 0.5)
  9818. (layer "F.Cu")
  9819. (net "Net-(U2-SDX)")
  9820. (uuid "301f4014-a54a-4b81-b5b8-03703e62836b")
  9821. )
  9822. (segment
  9823. (start 107.46 81.87)
  9824. (end 107.46 84.39)
  9825. (width 0.5)
  9826. (layer "F.Cu")
  9827. (net "Net-(U2-SCX)")
  9828. (uuid "076949fe-e90c-4a8c-b56d-8c615c45feee")
  9829. )
  9830. (segment
  9831. (start 107.46 84.39)
  9832. (end 107.45 84.4)
  9833. (width 0.5)
  9834. (layer "F.Cu")
  9835. (net "Net-(U2-SCX)")
  9836. (uuid "7de2dea5-e36e-4bdf-a56e-fff190d75c1f")
  9837. )
  9838. (segment
  9839. (start 96.27 103.81)
  9840. (end 93.73 103.81)
  9841. (width 0.5)
  9842. (layer "F.Cu")
  9843. (net "/Communication/LEDS_CHAIN")
  9844. (uuid "88e44906-56d5-4f30-be08-a2b8460abbe3")
  9845. )
  9846. (segment
  9847. (start 108.249999 98.97)
  9848. (end 108.95 98.269999)
  9849. (width 0.5)
  9850. (layer "F.Cu")
  9851. (net "/IMU/SCL")
  9852. (uuid "14a92796-3110-4af2-9d63-ffafe88e7498")
  9853. )
  9854. (segment
  9855. (start 109.6 89.65)
  9856. (end 109.6 91.63)
  9857. (width 0.5)
  9858. (layer "F.Cu")
  9859. (net "/IMU/SCL")
  9860. (uuid "330458a3-4bb5-4869-bb82-4d6f61a4a029")
  9861. )
  9862. (segment
  9863. (start 108.95 98.269999)
  9864. (end 108.95 93.08)
  9865. (width 0.5)
  9866. (layer "F.Cu")
  9867. (net "/IMU/SCL")
  9868. (uuid "76b724ae-e4a2-4fc1-8b14-5c861193970b")
  9869. )
  9870. (segment
  9871. (start 107.45 98.97)
  9872. (end 108.249999 98.97)
  9873. (width 0.5)
  9874. (layer "F.Cu")
  9875. (net "/IMU/SCL")
  9876. (uuid "a7349332-1254-49b1-8ff1-1dc984127ddf")
  9877. )
  9878. (segment
  9879. (start 108.95 93.08)
  9880. (end 110 92.03)
  9881. (width 0.5)
  9882. (layer "F.Cu")
  9883. (net "/IMU/SCL")
  9884. (uuid "f2c47c10-2cf1-4f0d-aa56-21dd9fbbdd83")
  9885. )
  9886. (segment
  9887. (start 109.6 91.63)
  9888. (end 110 92.03)
  9889. (width 0.5)
  9890. (layer "F.Cu")
  9891. (net "/IMU/SCL")
  9892. (uuid "fb4fb79e-141c-43f9-8cb6-999bd8141b33")
  9893. )
  9894. (segment
  9895. (start 115.2 105.45)
  9896. (end 119.91 105.45)
  9897. (width 0.5)
  9898. (layer "F.Cu")
  9899. (net "/Communication/RX")
  9900. (uuid "223ec9ec-32fd-40dc-8f2a-b8a3292d7437")
  9901. )
  9902. (segment
  9903. (start 115.15 105.5)
  9904. (end 115.2 105.45)
  9905. (width 0.5)
  9906. (layer "F.Cu")
  9907. (net "/Communication/RX")
  9908. (uuid "39cfc4d4-603d-4d64-8fe9-432968999690")
  9909. )
  9910. (segment
  9911. (start 119.91 105.45)
  9912. (end 122.3 103.06)
  9913. (width 0.5)
  9914. (layer "F.Cu")
  9915. (net "/Communication/RX")
  9916. (uuid "dca9707d-5adf-4103-96e2-b5b2b304a764")
  9917. )
  9918. (segment
  9919. (start 112.65 105.5)
  9920. (end 115.15 105.5)
  9921. (width 0.5)
  9922. (layer "F.Cu")
  9923. (net "/Communication/RX")
  9924. (uuid "f6fcc5fa-0ca3-44dd-9ed4-ef496b7862e4")
  9925. )
  9926. (segment
  9927. (start 107.25 91.82)
  9928. (end 107.46 92.03)
  9929. (width 0.5)
  9930. (layer "F.Cu")
  9931. (net "/IMU/SDA")
  9932. (uuid "0083f8b2-4c43-4052-8da1-6c0090325545")
  9933. )
  9934. (segment
  9935. (start 107.45 97.7)
  9936. (end 107.45 92.04)
  9937. (width 0.5)
  9938. (layer "F.Cu")
  9939. (net "/IMU/SDA")
  9940. (uuid "3aba3c01-14d9-47e2-9884-fbd379253caf")
  9941. )
  9942. (segment
  9943. (start 107.45 92.04)
  9944. (end 107.46 92.03)
  9945. (width 0.5)
  9946. (layer "F.Cu")
  9947. (net "/IMU/SDA")
  9948. (uuid "99872394-6b6a-4098-a6da-e810b3b95fa3")
  9949. )
  9950. (segment
  9951. (start 107.25 89.65)
  9952. (end 107.25 91.82)
  9953. (width 0.5)
  9954. (layer "F.Cu")
  9955. (net "/IMU/SDA")
  9956. (uuid "f48598be-a905-4d30-a6c8-db6b6ffedea5")
  9957. )
  9958. (segment
  9959. (start 111.25 83.12)
  9960. (end 111.25 85.6)
  9961. (width 0.5)
  9962. (layer "F.Cu")
  9963. (net "/IMU/INT")
  9964. (uuid "1b85588a-01b1-401f-8a34-e59d572bda32")
  9965. )
  9966. (segment
  9967. (start 109.8 99.959999)
  9968. (end 109.8 94.4)
  9969. (width 0.5)
  9970. (layer "F.Cu")
  9971. (net "/IMU/INT")
  9972. (uuid "3fa724e7-1a9c-48e4-9a3e-06564e8adbcd")
  9973. )
  9974. (segment
  9975. (start 107.45 101.51)
  9976. (end 108.249999 101.51)
  9977. (width 0.5)
  9978. (layer "F.Cu")
  9979. (net "/IMU/INT")
  9980. (uuid "439f463f-f357-4b6e-8fe8-88585f6cf468")
  9981. )
  9982. (segment
  9983. (start 108.249999 101.51)
  9984. (end 109.8 99.959999)
  9985. (width 0.5)
  9986. (layer "F.Cu")
  9987. (net "/IMU/INT")
  9988. (uuid "803a71be-a46d-4cff-a928-c976599ea32b")
  9989. )
  9990. (segment
  9991. (start 110 81.87)
  9992. (end 111.25 83.12)
  9993. (width 0.5)
  9994. (layer "F.Cu")
  9995. (net "/IMU/INT")
  9996. (uuid "b299f385-2104-495f-9655-9de958bfba44")
  9997. )
  9998. (segment
  9999. (start 111.25 92.95)
  10000. (end 111.25 85.6)
  10001. (width 0.5)
  10002. (layer "F.Cu")
  10003. (net "/IMU/INT")
  10004. (uuid "ca1023b8-4805-4a54-82bb-19cfcfababce")
  10005. )
  10006. (segment
  10007. (start 111.25 85.6)
  10008. (end 112.45 84.4)
  10009. (width 0.5)
  10010. (layer "F.Cu")
  10011. (net "/IMU/INT")
  10012. (uuid "d66790b1-9a6c-4d92-9f06-452f3001bc36")
  10013. )
  10014. (segment
  10015. (start 109.8 94.4)
  10016. (end 111.25 92.95)
  10017. (width 0.5)
  10018. (layer "F.Cu")
  10019. (net "/IMU/INT")
  10020. (uuid "fc611bdb-e529-43d8-b5be-97458ee34ff6")
  10021. )
  10022. (segment
  10023. (start 122.3 105.6)
  10024. (end 122.3 108.7)
  10025. (width 0.5)
  10026. (layer "F.Cu")
  10027. (net "/Communication/TX")
  10028. (uuid "1b59e9a0-e4b3-425a-bf7f-5ad4ebc19ba8")
  10029. )
  10030. (segment
  10031. (start 114.89 110.45)
  10032. (end 113.81 111.53)
  10033. (width 0.5)
  10034. (layer "F.Cu")
  10035. (net "/Communication/TX")
  10036. (uuid "551554e3-1da0-419a-8bc7-f5efd2f6e00d")
  10037. )
  10038. (segment
  10039. (start 120.55 110.45)
  10040. (end 114.89 110.45)
  10041. (width 0.5)
  10042. (layer "F.Cu")
  10043. (net "/Communication/TX")
  10044. (uuid "7fae3902-0abc-4dd9-99d9-1b3ba7c74030")
  10045. )
  10046. (segment
  10047. (start 114.89 110.45)
  10048. (end 113.85 110.45)
  10049. (width 0.5)
  10050. (layer "F.Cu")
  10051. (net "/Communication/TX")
  10052. (uuid "837767f4-88e0-43f6-8b4f-41d69dce4c01")
  10053. )
  10054. (segment
  10055. (start 113.85 110.45)
  10056. (end 112.65 109.25)
  10057. (width 0.5)
  10058. (layer "F.Cu")
  10059. (net "/Communication/TX")
  10060. (uuid "98ff0200-a976-47f0-b2c1-c7a62975bd4f")
  10061. )
  10062. (segment
  10063. (start 112.65 109.25)
  10064. (end 112.65 106.77)
  10065. (width 0.5)
  10066. (layer "F.Cu")
  10067. (net "/Communication/TX")
  10068. (uuid "de691ae2-215c-4951-853f-474d97e46af6")
  10069. )
  10070. (segment
  10071. (start 122.3 108.7)
  10072. (end 120.55 110.45)
  10073. (width 0.5)
  10074. (layer "F.Cu")
  10075. (net "/Communication/TX")
  10076. (uuid "deb9e801-28b5-4a38-9e94-97d4a632942a")
  10077. )
  10078. (segment
  10079. (start 114.95 91.9)
  10080. (end 115.08 92.03)
  10081. (width 0.5)
  10082. (layer "F.Cu")
  10083. (net "Net-(U2-3V3)")
  10084. (uuid "ee960966-ae07-4d9c-a3d3-6366f5002c97")
  10085. )
  10086. (segment
  10087. (start 114.95 89.7625)
  10088. (end 114.95 91.9)
  10089. (width 0.5)
  10090. (layer "F.Cu")
  10091. (net "Net-(U2-3V3)")
  10092. (uuid "f7ed348e-215c-4fa5-b152-e0c742dedc45")
  10093. )
  10094. (embedded_fonts no)
  10095. )