Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dispensy.kicad_pcb 431KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039
  1. (kicad_pcb (version 20221018) (generator pcbnew)
  2. (general
  3. (thickness 1.09)
  4. )
  5. (paper "A4")
  6. (title_block
  7. (title "Dispensy Mainboard")
  8. (date "2024-01-21")
  9. (rev "0")
  10. (company "DrinkRobotics")
  11. (comment 1 "https://git.xythobuz.de/thomas/Dispensy")
  12. (comment 2 "Licensed under the CERN-OHL-S-2.0+")
  13. (comment 3 "PCB Thickness: 1mm")
  14. (comment 4 "Copyright (c) 2023 - 2024 Thomas Buck <thomas@xythobuz.de>")
  15. )
  16. (layers
  17. (0 "F.Cu" signal)
  18. (31 "B.Cu" signal)
  19. (32 "B.Adhes" user "B.Adhesive")
  20. (33 "F.Adhes" user "F.Adhesive")
  21. (34 "B.Paste" user)
  22. (35 "F.Paste" user)
  23. (36 "B.SilkS" user "B.Silkscreen")
  24. (37 "F.SilkS" user "F.Silkscreen")
  25. (38 "B.Mask" user)
  26. (39 "F.Mask" user)
  27. (40 "Dwgs.User" user "User.Drawings")
  28. (41 "Cmts.User" user "User.Comments")
  29. (42 "Eco1.User" user "User.Eco1")
  30. (43 "Eco2.User" user "User.Eco2")
  31. (44 "Edge.Cuts" user)
  32. (45 "Margin" user)
  33. (46 "B.CrtYd" user "B.Courtyard")
  34. (47 "F.CrtYd" user "F.Courtyard")
  35. (48 "B.Fab" user)
  36. (49 "F.Fab" user)
  37. (50 "User.1" user)
  38. (51 "User.2" user)
  39. (52 "User.3" user)
  40. (53 "User.4" user)
  41. (54 "User.5" user)
  42. (55 "User.6" user)
  43. (56 "User.7" user)
  44. (57 "User.8" user)
  45. (58 "User.9" user)
  46. )
  47. (setup
  48. (stackup
  49. (layer "F.SilkS" (type "Top Silk Screen"))
  50. (layer "F.Paste" (type "Top Solder Paste"))
  51. (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
  52. (layer "F.Cu" (type "copper") (thickness 0.035))
  53. (layer "dielectric 1" (type "core") (thickness 1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
  54. (layer "B.Cu" (type "copper") (thickness 0.035))
  55. (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
  56. (layer "B.Paste" (type "Bottom Solder Paste"))
  57. (layer "B.SilkS" (type "Bottom Silk Screen"))
  58. (copper_finish "None")
  59. (dielectric_constraints no)
  60. )
  61. (pad_to_mask_clearance 0)
  62. (pcbplotparams
  63. (layerselection 0x00010fc_ffffffff)
  64. (plot_on_all_layers_selection 0x0000000_00000000)
  65. (disableapertmacros false)
  66. (usegerberextensions false)
  67. (usegerberattributes true)
  68. (usegerberadvancedattributes true)
  69. (creategerberjobfile true)
  70. (dashed_line_dash_ratio 12.000000)
  71. (dashed_line_gap_ratio 3.000000)
  72. (svgprecision 4)
  73. (plotframeref false)
  74. (viasonmask false)
  75. (mode 1)
  76. (useauxorigin false)
  77. (hpglpennumber 1)
  78. (hpglpenspeed 20)
  79. (hpglpendiameter 15.000000)
  80. (dxfpolygonmode true)
  81. (dxfimperialunits true)
  82. (dxfusepcbnewfont true)
  83. (psnegative false)
  84. (psa4output false)
  85. (plotreference true)
  86. (plotvalue true)
  87. (plotinvisibletext false)
  88. (sketchpadsonfab false)
  89. (subtractmaskfromsilk false)
  90. (outputformat 1)
  91. (mirror false)
  92. (drillshape 1)
  93. (scaleselection 1)
  94. (outputdirectory "")
  95. )
  96. )
  97. (net 0 "")
  98. (net 1 "GND")
  99. (net 2 "+3.3V")
  100. (net 3 "+VDC")
  101. (net 4 "/EXT_PSU/Vout")
  102. (net 5 "+5V")
  103. (net 6 "Net-(U10-XIN)")
  104. (net 7 "Net-(X1-OSC2)")
  105. (net 8 "+1V1")
  106. (net 9 "Net-(U14-CANH)")
  107. (net 10 "Net-(C25-Pad1)")
  108. (net 11 "Net-(U14-CANL)")
  109. (net 12 "/PI/PI_PSU/Vout")
  110. (net 13 "Net-(U3-OUT)")
  111. (net 14 "Net-(U16-OUT)")
  112. (net 15 "/PI/ADC0")
  113. (net 16 "/PI/ADC1")
  114. (net 17 "/PI/ADC2")
  115. (net 18 "/PI/ADC3")
  116. (net 19 "/PI/IO0")
  117. (net 20 "/PI/IO1")
  118. (net 21 "/PI/IO2")
  119. (net 22 "/PI/IO3")
  120. (net 23 "/PI/IO4")
  121. (net 24 "/PI/IO5")
  122. (net 25 "/PI/IO6")
  123. (net 26 "/PI/IO7")
  124. (net 27 "/PI/IO8")
  125. (net 28 "/PI/IO9")
  126. (net 29 "/PI/IO10")
  127. (net 30 "/PI/IO11")
  128. (net 31 "/PI/IO12")
  129. (net 32 "/PI/IO13")
  130. (net 33 "/PI/IO14")
  131. (net 34 "/PI/IO15")
  132. (net 35 "/PI/Debug_Clock")
  133. (net 36 "/PI/Debug_Data")
  134. (net 37 "/PI/Debug_Tx")
  135. (net 38 "/PI/Debug_Rx")
  136. (net 39 "Net-(U7-DO)")
  137. (net 40 "Net-(H8-Pad1)")
  138. (net 41 "Net-(H9-Pad1)")
  139. (net 42 "Net-(H10-Pad1)")
  140. (net 43 "/PI/I2C_SCL")
  141. (net 44 "/PI/I2C_SDA")
  142. (net 45 "Net-(U2-SH1)")
  143. (net 46 "/PI/SPI_FLASH.SS")
  144. (net 47 "Net-(R5-Pad1)")
  145. (net 48 "Net-(U9-D7)")
  146. (net 49 "Net-(U9-D6)")
  147. (net 50 "Net-(U9-D5)")
  148. (net 51 "Net-(U9-D4)")
  149. (net 52 "Net-(U10-RUN)")
  150. (net 53 "Net-(R11-Pad2)")
  151. (net 54 "Net-(U10-XOUT)")
  152. (net 55 "/PI/USBC.DP")
  153. (net 56 "Net-(U10-USB_DP)")
  154. (net 57 "/PI/USBC.DM")
  155. (net 58 "Net-(U10-USB_DM)")
  156. (net 59 "Net-(U15-CC2)")
  157. (net 60 "Net-(R16-Pad1)")
  158. (net 61 "/PI/USBC.SHIELD")
  159. (net 62 "Net-(U15-CC1)")
  160. (net 63 "Net-(U2-D+)")
  161. (net 64 "/PI/LED_Din")
  162. (net 65 "/PI/SPI_FLASH.SD1")
  163. (net 66 "/PI/SPI_FLASH.SD2")
  164. (net 67 "/PI/SPI_FLASH.SD0")
  165. (net 68 "/PI/SPI_FLASH.SCLK")
  166. (net 69 "/PI/SPI_FLASH.SD3")
  167. (net 70 "/PI/SR_Load")
  168. (net 71 "/PI/SR_Clock")
  169. (net 72 "unconnected-(U9-Q7#-Pad7)")
  170. (net 73 "/PI/SR_Data")
  171. (net 74 "Net-(U10-GPIO24)")
  172. (net 75 "Net-(U10-GPIO25)")
  173. (net 76 "/PI/USBC.VBUS")
  174. (net 77 "unconnected-(U15-TX1+-PadA2)")
  175. (net 78 "unconnected-(U15-TX1--PadA3)")
  176. (net 79 "unconnected-(U15-SBU1-PadA8)")
  177. (net 80 "unconnected-(U15-RX2--PadA10)")
  178. (net 81 "unconnected-(U15-RX2+-PadA11)")
  179. (net 82 "unconnected-(U15-RX1+-PadB11)")
  180. (net 83 "unconnected-(U15-RX1--PadB10)")
  181. (net 84 "unconnected-(U15-SBU2-PadB8)")
  182. (net 85 "unconnected-(U15-TX2--PadB3)")
  183. (net 86 "unconnected-(U15-TX2+-PadB2)")
  184. (net 87 "Net-(U2-VCC)")
  185. (net 88 "Net-(U11-A)")
  186. (net 89 "Net-(LED1-+)")
  187. (net 90 "Net-(LED2-+)")
  188. (net 91 "Net-(LED3-+)")
  189. (footprint "jlc_footprints:HDR-TH_3P-P2.54-V-F" (layer "F.Cu")
  190. (tstamp 0068787b-d448-4395-ac01-ba746ce69bba)
  191. (at 148 136 180)
  192. (descr "HDR-TH_3P-P2.54-V-F footprint")
  193. (tags "HDR-TH_3P-P2.54-V-F footprint C146690")
  194. (property "LCSC" "C146690")
  195. (property "Sheetfile" "pi.kicad_sch")
  196. (property "Sheetname" "PI")
  197. (property "ki_keywords" "C146690")
  198. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/276bcfa5-f921-4e41-b920-f313ad86171a")
  199. (attr through_hole)
  200. (fp_text reference "H7" (at 3 2 180) (layer "F.SilkS")
  201. (effects (font (size 1 1) (thickness 0.15)))
  202. (tstamp 51b07767-64ec-4ef3-a327-15f13b684eb2)
  203. )
  204. (fp_text value "WS2812" (at 1 2) (layer "F.Fab")
  205. (effects (font (size 1 1) (thickness 0.15)))
  206. (tstamp 4aa28f66-3477-481f-8fa7-fd03084d73ac)
  207. )
  208. (fp_line (start -3.810008 -1.270003) (end -3.810008 1.270003)
  209. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 62009718-86a9-4760-8e21-71c957959f0c))
  210. (fp_line (start -3.810008 -1.270003) (end 3.810008 -1.270003)
  211. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a5c4d152-71b3-4e58-9973-c8145db9937e))
  212. (fp_line (start -3.810008 1.270003) (end 3.810008 1.270003)
  213. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a3e1881b-d564-4a8c-a9a5-3837efcb7c39))
  214. (fp_line (start -1.221565 -1.270003) (end -1.221565 1.270003)
  215. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 77e20eb5-cc5d-4585-b108-39585b1fa305))
  216. (fp_line (start 3.810008 -1.270003) (end 3.810008 1.270003)
  217. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp eef1f8ba-a0ab-4911-a884-c1160076d7a7))
  218. (fp_circle (center -3.810008 1.250013) (end -3.78001 1.250013)
  219. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp d3a2d34f-e5b3-40cd-8de0-e2119038861d))
  220. (pad "1" thru_hole rect (at -2.540005 0 180) (size 1.574803 1.574803) (drill 1.020015) (layers "*.Cu" "*.Mask")
  221. (net 1 "GND") (pinfunction "1") (pintype "unspecified") (tstamp d3763b4d-f1ac-4037-a72e-5b2b8fd80cf8))
  222. (pad "2" thru_hole circle (at 0 0 180) (size 1.574803 1.574803) (drill 1.020015) (layers "*.Cu" "*.Mask")
  223. (net 39 "Net-(U7-DO)") (pinfunction "2") (pintype "unspecified") (tstamp 989e4ecb-5f52-46ac-89c0-c7d46c031293))
  224. (pad "3" thru_hole circle (at 2.540005 0 180) (size 1.574803 1.574803) (drill 1.020015) (layers "*.Cu" "*.Mask")
  225. (net 5 "+5V") (pinfunction "3") (pintype "unspecified") (tstamp f842ce88-91d2-4856-8c16-4b44a3ce6149))
  226. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_3P-P2.54-V-F.step"
  227. (offset (xyz 0.999997985 0 0))
  228. (scale (xyz 1 1 1))
  229. (rotate (xyz 0 0 0))
  230. )
  231. )
  232. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  233. (tstamp 00707c18-3abb-4f5a-bd4b-e9009eed8cb7)
  234. (at 149 107.34763 -90)
  235. (descr "C0402 footprint")
  236. (tags "C0402 footprint C140675")
  237. (property "Capacitance" "1uF")
  238. (property "LCSC" "C83063")
  239. (property "Sheetfile" "pi.kicad_sch")
  240. (property "Sheetname" "PI")
  241. (property "ki_keywords" "C83063")
  242. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/44a41c22-a5a5-4266-87e6-71a3f12d2962")
  243. (attr smd)
  244. (fp_text reference "C13" (at 2.954915 0 90) (layer "F.SilkS")
  245. (effects (font (size 1 1) (thickness 0.15)))
  246. (tstamp ad6ed36e-ee24-4fc3-a4e1-37fb551eb5fe)
  247. )
  248. (fp_text value "1uF" (at 2.954915 0 90) (layer "F.Fab")
  249. (effects (font (size 1 1) (thickness 0.15)))
  250. (tstamp 61925072-160a-4eb4-b364-8c7e0aaf3a21)
  251. )
  252. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  253. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9acb87be-38f3-4a51-b29c-c3a6da7c66d4))
  254. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  255. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 50469982-8fa0-47a9-b6c1-99d2645809fe))
  256. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  257. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6039e942-773a-48e0-a678-da3974cacf9d))
  258. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  259. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 76401e8d-6241-46d3-b2f1-9cc41ddd9aa3))
  260. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  261. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1007a273-74b4-440b-ba8f-d47cbc630cc7))
  262. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  263. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9568eb5a-90e7-4893-bdc7-865faf44beb8))
  264. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  265. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3871cc8b-a400-4589-a91e-d139fec4a1e8))
  266. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  267. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 28972645-3ac4-41bd-b7de-ae94e6cbac07))
  268. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  269. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1b39f864-1120-4dc1-97a6-70c8f95f108d))
  270. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  271. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 643222c5-1eab-4a7c-a99a-076b52e4c7d0))
  272. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  273. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp ceba0c7a-b5cf-472b-a114-8afd3202098b))
  274. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  275. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp a3e7d341-e68c-43d4-8d9e-cabd30eea380))
  276. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  277. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 7988c1d5-da31-499a-8ec8-f18fa9e076a3))
  278. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  279. (offset (xyz 0 0.0000253999996185 0.2499359962))
  280. (scale (xyz 1 1 1))
  281. (rotate (xyz 0 0 0))
  282. )
  283. )
  284. (footprint "jlc_footprints:LED0603-RD" (layer "F.Cu")
  285. (tstamp 0881f2eb-2df0-4758-bb76-37c1b4a22aac)
  286. (at 123.101981 88.506858)
  287. (descr "LED0603-RD footprint")
  288. (tags "LED0603-RD footprint C84264")
  289. (property "LCSC" "C84264")
  290. (property "Sheetfile" "dispensy.kicad_sch")
  291. (property "Sheetname" "")
  292. (property "ki_keywords" "C84264")
  293. (path "/836d4190-18b0-44cf-ba93-d64b9192ea73")
  294. (attr smd)
  295. (fp_text reference "LED3" (at -0.049568 1.5) (layer "F.SilkS")
  296. (effects (font (size 1 1) (thickness 0.15)))
  297. (tstamp 1346206b-5435-4c93-adb3-10cbe640c9e2)
  298. )
  299. (fp_text value "FC-D1608HGK-572C" (at 0 -1.5) (layer "F.Fab")
  300. (effects (font (size 1 1) (thickness 0.15)))
  301. (tstamp 201ef39a-4cf3-417b-b5be-edd7bd6aa82e)
  302. )
  303. (fp_line (start -1.489611 -0.454331) (end -1.189662 -0.75428)
  304. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 18146928-0108-4a92-877c-3612e6f8f7de))
  305. (fp_line (start -1.489611 -0.354178) (end -1.489611 -0.454331)
  306. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 8ab5d1e4-824f-4c4f-8386-5f858b9343d7))
  307. (fp_line (start -1.489611 -0.354178) (end -1.489611 0.345771)
  308. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 0c2975b5-f2e7-44ca-8b43-fe84ca797acc))
  309. (fp_line (start -1.489611 0.345771) (end -1.489611 0.445796)
  310. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp ce16399e-13ca-42cc-aa18-92ec27344407))
  311. (fp_line (start -1.489611 0.445796) (end -1.189662 0.745847)
  312. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 550b5e43-5a4f-4969-99aa-54a69d3b49f7))
  313. (fp_line (start -0.139548 -0.75428) (end -1.189662 -0.75428)
  314. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp ef0f3c06-c439-4f25-999a-b10c6c7a59f5))
  315. (fp_line (start -0.139548 0.745847) (end -1.189662 0.745847)
  316. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 525f7209-c59a-4c4d-8b1b-795625b43380))
  317. (fp_line (start 0.210465 0.32352) (end -0.119583 -0.006528)
  318. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp e81e9119-8cc5-457a-ba0e-5ea0c518a72a))
  319. (fp_line (start 0.220422 -0.356515) (end 0.220422 -0.346533)
  320. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp bd3c22dd-7764-4ae1-8458-57714e11b756))
  321. (fp_line (start 0.220422 -0.356515) (end 0.220422 0.32352)
  322. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 7fd377e0-88b2-4cea-8f04-f28bcf17e167))
  323. (fp_line (start 0.220422 -0.346533) (end -0.119583 -0.006528)
  324. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp d5ba471f-503d-440c-88c0-f8ebc86982ba))
  325. (fp_line (start 0.220422 -0.006528) (end -0.119583 -0.006528)
  326. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 6393d0e5-a2d8-42db-8b53-d1432840fbd5))
  327. (fp_line (start 0.220422 0.32352) (end 0.210465 0.32352)
  328. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 7251b6c3-5875-4190-943d-48edd4451bdc))
  329. (fp_line (start 0.240462 -0.756591) (end 1.390475 -0.756591)
  330. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 523854ee-8b73-49c4-91e6-667f40264d2c))
  331. (fp_line (start 0.240462 0.743536) (end 1.390475 0.743536)
  332. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 0e648cb4-eca4-481e-b44f-2f9d1434d0c6))
  333. (fp_line (start 1.390475 -0.75649) (end 1.390475 0.723444)
  334. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp c8993705-eb32-40ed-8a21-72389cd1b323))
  335. (fp_circle (center -0.799467 0.40348) (end -0.769495 0.40348)
  336. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp e0959ebd-7138-4a85-aebf-aaaf11a347a8))
  337. (pad "1" smd rect (at -0.799467 0.003429 90) (size 0.8 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  338. (net 1 "GND") (pinfunction "-") (pintype "input") (tstamp 8537de74-7ddb-49ec-badd-d63cffba551a))
  339. (pad "2" smd rect (at 0.799467 -0.003429 90) (size 0.8 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  340. (net 91 "Net-(LED3-+)") (pinfunction "+") (pintype "input") (tstamp 2fba028d-d25e-41d4-b18e-3ca38ab0c55e))
  341. (model "jlc_lib/jlc_footprints/packages3d/LED0603-RD.step"
  342. (offset (xyz 0 -0.0000253999996185 0.009905999851))
  343. (scale (xyz 1 1 1))
  344. (rotate (xyz 0 0 0))
  345. )
  346. )
  347. (footprint "jlc_footprints:R1206" (layer "F.Cu")
  348. (tstamp 0f01f5f9-9c64-4cb1-a34d-86af5695e1f5)
  349. (at 183.754966 99.907765)
  350. (descr "R1206 footprint")
  351. (tags "R1206 footprint C144481")
  352. (property "LCSC" "C144481")
  353. (property "Resistance" "60.4Ω")
  354. (property "Sheetfile" "pi.kicad_sch")
  355. (property "Sheetname" "PI")
  356. (property "ki_keywords" "C144481")
  357. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/25a72365-d995-4d4d-af33-d2e4d5cb8310")
  358. (attr smd)
  359. (fp_text reference "R19" (at 0 -2) (layer "F.SilkS")
  360. (effects (font (size 1 1) (thickness 0.15)))
  361. (tstamp e409f040-c40b-4244-b831-4acd443ce74b)
  362. )
  363. (fp_text value "60R4" (at -3 -0.5 90) (layer "F.Fab")
  364. (effects (font (size 1 1) (thickness 0.15)))
  365. (tstamp da84ce69-6f03-4569-b216-1af9cb163ea1)
  366. )
  367. (fp_line (start -2.311125 -1.079096) (end -0.951207 -1.079096)
  368. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8a1903f8-47c3-4824-8e46-1b19364cf96b))
  369. (fp_line (start -2.311125 1.079096) (end -2.311125 -1.079096)
  370. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0cbe8a54-3807-4661-a69b-5aa5e098a11f))
  371. (fp_line (start -0.951207 1.079096) (end -2.311125 1.079096)
  372. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7193fe90-337a-47f6-932f-18c903bffe44))
  373. (fp_line (start 0.951207 1.079096) (end 2.311125 1.079096)
  374. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 51a9f709-d541-45f4-859a-e0b7e95b349f))
  375. (fp_line (start 2.311125 -1.079096) (end 0.951207 -1.079096)
  376. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5c0224db-a0ff-4489-bdc0-3a58d5bb092d))
  377. (fp_line (start 2.311125 1.079096) (end 2.311125 -1.079096)
  378. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 926bb6f7-533c-4945-b12c-f2a1ce3d9d41))
  379. (fp_circle (center -1.549911 0.787402) (end -1.519939 0.787402)
  380. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 645cab84-9104-4e3d-8cbf-3b9099523af9))
  381. (pad "1" smd rect (at -1.478791 0) (size 1.207518 1.701016) (layers "F.Cu" "F.Paste" "F.Mask")
  382. (net 10 "Net-(C25-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp a33640c6-3bc6-4ab5-896f-b22d8cc131e2))
  383. (pad "2" smd rect (at 1.478791 0) (size 1.207518 1.701016) (layers "F.Cu" "F.Paste" "F.Mask")
  384. (net 42 "Net-(H10-Pad1)") (pinfunction "2") (pintype "unspecified") (tstamp 34ec4961-bf00-4ad2-aa9b-47804d45fe03))
  385. (model "jlc_lib/jlc_footprints/packages3d/R1206.step"
  386. (offset (xyz 0 0 0))
  387. (scale (xyz 1 1 1))
  388. (rotate (xyz 0 0 0))
  389. )
  390. )
  391. (footprint "jlc_footprints:TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR" (layer "F.Cu")
  392. (tstamp 0fac7494-bcee-4276-9a28-5de77c135e31)
  393. (at 125.990456 68.034258 90)
  394. (descr "TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR footprint")
  395. (tags "TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR footprint C194472")
  396. (property "LCSC" "C194472")
  397. (property "Sheetfile" "psu_lm2576.kicad_sch")
  398. (property "Sheetname" "EXT_PSU")
  399. (property "ki_keywords" "C194472")
  400. (path "/635c7f01-c861-45f9-bb15-e53673572e1d/e2ea5dce-aadc-4b92-9967-8de923c62659")
  401. (attr smd)
  402. (fp_text reference "U3" (at 0.316612 -6 90) (layer "F.SilkS")
  403. (effects (font (size 1 1) (thickness 0.15)))
  404. (tstamp ae1f57aa-ce2f-4e80-a892-b98228dc30cb)
  405. )
  406. (fp_text value "LM2576S-5_0_TR" (at -10.183388 0) (layer "F.Fab")
  407. (effects (font (size 1 1) (thickness 0.15)))
  408. (tstamp d3a1368c-2e40-4ccf-961a-875693937ca8)
  409. )
  410. (fp_line (start -1.115596 -5.091212) (end 0.958192 -5.091212)
  411. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0b992b35-d04e-473c-a2e5-693651a473b2))
  412. (fp_line (start -1.115596 5.091212) (end 0.958192 5.091212)
  413. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e9387e56-2551-4e8f-9b3c-14d6046cd027))
  414. (fp_line (start 0.958192 5.091212) (end 0.958192 -5.091212)
  415. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7156f437-2f4e-49bd-bc51-be8f378b5a8c))
  416. (fp_circle (center 5.800102 5.014986) (end 5.830074 5.014986)
  417. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 74375eb7-7f84-4ca8-9e21-3d15d72b070d))
  418. (fp_circle (center 6.350013 3.429007) (end 6.549911 3.429007)
  419. (stroke (width 0.4) (type solid)) (fill none) (layer "F.Fab") (tstamp 66f2a421-7c72-4d44-9f17-7deccb2a4afe))
  420. (pad "1" smd rect (at 5.183388 3.400051 90) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  421. (net 3 "+VDC") (pinfunction "VIN") (pintype "power_in") (tstamp 00abc48e-dde7-4fb0-94ba-74cde9857c4a))
  422. (pad "2" smd rect (at 5.183388 1.700025 90) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  423. (net 13 "Net-(U3-OUT)") (pinfunction "OUT") (pintype "power_in") (tstamp eb835120-c107-4639-a5e7-e6cabf0cbb94))
  424. (pad "3" smd rect (at 5.183388 0 90) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  425. (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c4ab287b-2df2-4404-bdba-8c0628158250))
  426. (pad "4" smd rect (at 5.183388 -1.700025 90) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  427. (net 4 "/EXT_PSU/Vout") (pinfunction "FB") (pintype "unspecified") (tstamp 8b4bd83d-799b-4482-911b-dd27b48de3df))
  428. (pad "5" smd rect (at 5.183388 -3.400051 90) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  429. (net 1 "GND") (pinfunction "ON#/OFF") (pintype "unspecified") (tstamp 2eb76755-3255-43c9-80e8-9b7bc9e48290))
  430. (pad "6" smd rect (at -5.183388 0 90) (size 7.830556 10.431217) (layers "F.Cu" "F.Paste" "F.Mask")
  431. (net 1 "GND") (pinfunction "TAB") (pintype "power_in") (tstamp b5e44916-3761-449f-8a43-078a6eefc925))
  432. (model "jlc_lib/jlc_footprints/packages3d/TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR.step"
  433. (offset (xyz -1.31800598 -2.796489158 0.01473199978))
  434. (scale (xyz 1 1 1))
  435. (rotate (xyz 0 0 -90))
  436. )
  437. )
  438. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  439. (tstamp 13b8fc46-c1b2-420a-a58a-944cd5f0d683)
  440. (at 136 108.802545 -90)
  441. (descr "R0402 footprint")
  442. (tags "R0402 footprint C279981")
  443. (property "LCSC" "C406733")
  444. (property "Resistance" "10kΩ")
  445. (property "Sheetfile" "pi.kicad_sch")
  446. (property "Sheetname" "PI")
  447. (property "ki_keywords" "C406733")
  448. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/7ee0fbe3-06f6-4e17-b54a-24aec78e96c9")
  449. (attr smd)
  450. (fp_text reference "R10" (at 2.5 0 90) (layer "F.SilkS")
  451. (effects (font (size 1 1) (thickness 0.15)))
  452. (tstamp 1d08d2f9-314d-4c88-a24a-64665317c7dd)
  453. )
  454. (fp_text value "10K" (at 2.5 0 90) (layer "F.Fab")
  455. (effects (font (size 1 1) (thickness 0.15)))
  456. (tstamp 45218afc-2c7d-4302-b24a-93063d9b45fe)
  457. )
  458. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  459. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 159d12d4-2672-4515-a9d4-541750c8be84))
  460. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  461. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a066e66b-0d50-4711-9946-d9423978b6fc))
  462. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  463. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2bfcbee3-ae98-42ba-8134-0be5c0fb7316))
  464. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  465. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2a1c09ee-ff66-4941-8ed3-7b40183f9c11))
  466. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  467. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d2d5f44e-c018-4f54-92d9-53a7a71cfb2f))
  468. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  469. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0ac04749-6424-4f1c-9848-b717bf7cf27b))
  470. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  471. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8a243352-71b6-4561-8b2d-277a8839922e))
  472. (pad "1" smd rect (at -0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  473. (net 52 "Net-(U10-RUN)") (pinfunction "1") (pintype "unspecified") (tstamp 5f04ff26-8247-4f64-8261-2dd1cab2d4af))
  474. (pad "2" smd rect (at 0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  475. (net 2 "+3.3V") (pinfunction "2") (pintype "unspecified") (tstamp 0c4f03a6-710e-4774-9ee6-51e032ac2d8c))
  476. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  477. (offset (xyz 0 0.0000253999996185 0.2499359962))
  478. (scale (xyz 1 1 1))
  479. (rotate (xyz 0 0 0))
  480. )
  481. )
  482. (footprint "jlc_footprints:CAP-SMD_BD10.0-L10.3-W10.3-FD" (layer "F.Cu")
  483. (tstamp 18d98989-30fb-4a45-9eec-f90c47b23762)
  484. (at 158.190482 58.51762)
  485. (descr "CAP-SMD_BD10.0-L10.3-W10.3-FD footprint")
  486. (tags "CAP-SMD_BD10.0-L10.3-W10.3-FD footprint C249838")
  487. (property "Capacitance" "100uF")
  488. (property "LCSC" "C249838")
  489. (property "Sheetfile" "psu_lm2576.kicad_sch")
  490. (property "Sheetname" "PI_PSU")
  491. (property "ki_keywords" "C249838")
  492. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876/04ef562d-6ae5-43ee-951a-6683c9942340")
  493. (attr smd)
  494. (fp_text reference "C27" (at -2.000127 -6) (layer "F.SilkS")
  495. (effects (font (size 1 1) (thickness 0.15)))
  496. (tstamp f1a4e634-4985-4b17-b04f-1cecea5b7609)
  497. )
  498. (fp_text value "100uF" (at 2.999873 -6) (layer "F.Fab")
  499. (effects (font (size 1 1) (thickness 0.15)))
  500. (tstamp bbf19737-9735-48ab-8eff-0d10fa7b1551)
  501. )
  502. (fp_line (start -5.226238 -3.089992) (end -5.226238 -0.852426)
  503. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 57dac86e-b831-46d5-bad8-c1a7ecbb361c))
  504. (fp_line (start -5.226238 3.089992) (end -5.226238 0.852426)
  505. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 39792420-a56e-4247-8985-7c25c7840840))
  506. (fp_line (start -3.089992 -5.226238) (end -5.226238 -3.089992)
  507. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e18e4025-80b5-4442-826d-becee28feb84))
  508. (fp_line (start -3.089992 5.226238) (end -5.226238 3.089992)
  509. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b95de572-7562-4f2c-b5d3-e570666c9b89))
  510. (fp_line (start 5.226238 -5.226238) (end -3.089992 -5.226238)
  511. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 15c77a2f-e3bf-4fa5-8f5e-9cae37c74ce9))
  512. (fp_line (start 5.226238 -0.852426) (end 5.226238 -5.226238)
  513. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp dd8f413a-5da5-4d4b-a48d-4212b22939c1))
  514. (fp_line (start 5.226238 0.852426) (end 5.226238 5.226238)
  515. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ea59d52b-3472-42f6-8628-56323e599e40))
  516. (fp_line (start 5.226238 5.226238) (end -3.089992 5.226238)
  517. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4f637899-2d46-4657-a370-ab19fde30084))
  518. (fp_circle (center -5.800102 5.150114) (end -5.77013 5.150114)
  519. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 99a16502-b96f-4c9a-966c-79420b5d8281))
  520. (pad "1" smd rect (at -4.499873 0) (size 4.5 1.650013) (layers "F.Cu" "F.Paste" "F.Mask")
  521. (net 3 "+VDC") (pinfunction "1") (pintype "unspecified") (tstamp 10784e0b-5b58-4522-8052-379459adf4ff))
  522. (pad "2" smd rect (at 4.499873 0) (size 4.5 1.650013) (layers "F.Cu" "F.Paste" "F.Mask")
  523. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp aaf13e81-6a95-4123-a224-e4076122d196))
  524. (model "jlc_lib/jlc_footprints/packages3d/CAP-SMD_BD10.0-L10.3-W10.3-FD.step"
  525. (offset (xyz 0 0 0.05003799925))
  526. (scale (xyz 1 1 1))
  527. (rotate (xyz 0 0 -180))
  528. )
  529. )
  530. (footprint "jlc_footprints:HDR-TH_6P-P2.54-V-F" (layer "F.Cu")
  531. (tstamp 193f1dae-a8e3-4eb8-96ce-511d9b02ddd8)
  532. (at 96 100.310008 -90)
  533. (descr "HDR-TH_6P-P2.54-V-F footprint")
  534. (tags "HDR-TH_6P-P2.54-V-F footprint C40877")
  535. (property "LCSC" "C40877")
  536. (property "Sheetfile" "dispensy.kicad_sch")
  537. (property "Sheetname" "")
  538. (property "ki_keywords" "C40877")
  539. (path "/b6f2c421-b0d9-400b-af65-588d57a8e0cd")
  540. (attr through_hole)
  541. (fp_text reference "H4" (at 6.689992 -2 90) (layer "F.SilkS")
  542. (effects (font (size 1 1) (thickness 0.15)))
  543. (tstamp a398b182-c935-4d49-b017-29ade7bcb037)
  544. )
  545. (fp_text value "IO_C" (at 3.689992 -2 90) (layer "F.SilkS")
  546. (effects (font (size 1 1) (thickness 0.15)))
  547. (tstamp b56cb5d2-2ff4-47a1-a763-5a1055865c7e)
  548. )
  549. (fp_line (start -7.849987 -1.249987) (end 7.850013 -1.249987)
  550. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1f9342c2-d52a-407b-9f5a-b0bfaa7cd954))
  551. (fp_line (start -7.849987 -0.9) (end -7.849987 -1.249987)
  552. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4e1d2929-a41b-413d-86ca-30d598c5deb4))
  553. (fp_line (start -7.849987 1.249987) (end -7.849987 -0.949987)
  554. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 11005019-2a66-4f16-9ab9-d497d4e4d52f))
  555. (fp_line (start 7.850013 -1.249987) (end 7.850013 1.249987)
  556. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1efee751-2be1-4c8c-b794-283a272935fd))
  557. (fp_line (start 7.850013 1.249987) (end -7.849987 1.249987)
  558. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a2caa21f-c357-413f-993c-f16bd725171f))
  559. (fp_circle (center -7.869952 1.249936) (end -7.83998 1.249936)
  560. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp a929b256-ab52-4766-a972-ca53658f192c))
  561. (fp_circle (center -6.649987 -1.899924) (end -6.350013 -1.899924)
  562. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5f76185d-2936-4697-8c2f-fbc2d73d7d5f))
  563. (pad "1" thru_hole rect (at -6.350013 0 270) (size 1.8 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  564. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 9c0b681c-82f1-4139-9c10-e5ab4703fee0))
  565. (pad "2" thru_hole circle (at -3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  566. (net 27 "/PI/IO8") (pinfunction "2") (pintype "unspecified") (tstamp 2029d9dc-16c3-46a8-b3da-fffc21972077))
  567. (pad "3" thru_hole circle (at -1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  568. (net 28 "/PI/IO9") (pinfunction "3") (pintype "unspecified") (tstamp 13c83fb6-573f-4c6d-a584-2f1677b13b54))
  569. (pad "4" thru_hole circle (at 1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  570. (net 29 "/PI/IO10") (pinfunction "4") (pintype "unspecified") (tstamp e8dc8a9f-ca8f-4ced-949f-6825bde1820a))
  571. (pad "5" thru_hole circle (at 3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  572. (net 30 "/PI/IO11") (pinfunction "5") (pintype "unspecified") (tstamp 754ea6ac-97da-4ff5-8ddf-855263f59f9f))
  573. (pad "6" thru_hole circle (at 6.350013 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  574. (net 1 "GND") (pinfunction "6") (pintype "unspecified") (tstamp dae8c491-416f-420e-a50e-202a8ea81b8b))
  575. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_6P-P2.54-V-F.step"
  576. (offset (xyz -0.0000253999996185 0 -0.0001015999985))
  577. (scale (xyz 1 1 1))
  578. (rotate (xyz 0 0 0))
  579. )
  580. )
  581. (footprint "jlc_footprints:CONN-TH_4P-P7.62_L15.2-W31.7-EX4.2" (layer "F.Cu")
  582. (tstamp 1ec5371c-6eeb-4e46-a909-025f36aa25ad)
  583. (at 191 57.5 180)
  584. (descr "CONN-TH_4P-P7.62_L15.2-W31.7-EX4.2 footprint")
  585. (tags "CONN-TH_4P-P7.62_L15.2-W31.7-EX4.2 footprint C496132")
  586. (property "LCSC" "C496132")
  587. (property "Sheetfile" "dispensy.kicad_sch")
  588. (property "Sheetname" "")
  589. (property "ki_keywords" "C496132")
  590. (path "/880f7d7b-3223-4c1a-81a0-36f9513bf6e4")
  591. (attr through_hole)
  592. (fp_text reference "U1" (at 0 -2) (layer "F.SilkS")
  593. (effects (font (size 1 1) (thickness 0.15)))
  594. (tstamp d96bd077-f097-46c7-8946-ff8e8c81e2b1)
  595. )
  596. (fp_text value "DBT50G-7_62-4P" (at 0 2) (layer "F.Fab")
  597. (effects (font (size 1 1) (thickness 0.15)))
  598. (tstamp 1d337d4a-1f42-4bf2-bd06-a28b01a38acd)
  599. )
  600. (fp_text user "REF**" (at 0 4) (layer "F.Fab")
  601. (effects (font (size 1 1) (thickness 0.15)))
  602. (tstamp f7004948-21e6-482b-ba32-3110d6bab89a)
  603. )
  604. (fp_line (start -15.83998 -4.199898) (end -15.83998 11.000254)
  605. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4c950e72-ddca-4e95-a7e1-47fc2564d9e4))
  606. (fp_line (start -15.83998 11.000254) (end 15.860071 11.000254)
  607. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b2c5377e-cb35-473a-9198-7f7547c13447))
  608. (fp_line (start -8.340107 -4.199898) (end -8.340107 11)
  609. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0ac194f3-e786-48ed-947a-fa5cecd52d3c))
  610. (fp_line (start -8.340107 11) (end -6.890018 11)
  611. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 819c30cd-1252-4467-952b-8c89e3040f93))
  612. (fp_line (start -6.890018 -4.199898) (end -8.340107 -4.199898)
  613. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 489f4f2c-a9a8-4035-9626-5405c7a955ed))
  614. (fp_line (start -6.890018 11) (end -6.890018 -4.199898)
  615. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 76f834e8-d669-440a-871a-7663d1acf503))
  616. (fp_line (start -0.720091 -4.199898) (end -0.720091 11)
  617. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp eb66591b-9dbc-457f-a894-ea5a4b9033b5))
  618. (fp_line (start -0.720091 11) (end 0.729997 11)
  619. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp cba3c348-78d2-4180-89b0-9e489d51693a))
  620. (fp_line (start 0.729997 -4.199898) (end -0.720091 -4.199898)
  621. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8bd00827-2831-4f13-a58f-ea786d28d793))
  622. (fp_line (start 0.729997 11) (end 0.729997 -4.199898)
  623. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 7d4a329f-e923-461f-a4b3-f803b67c494a))
  624. (fp_line (start 6.899924 -4.199898) (end 6.899924 11)
  625. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e035e67d-00df-4809-a5b0-867ab66ceee7))
  626. (fp_line (start 6.899924 11) (end 8.350013 11)
  627. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp bcd97c14-e779-4f87-a3a7-2120df131e62))
  628. (fp_line (start 8.350013 -4.199898) (end 6.899924 -4.199898)
  629. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3717a406-9446-475f-9aec-57036a74aa1f))
  630. (fp_line (start 8.350013 11) (end 8.350013 -4.199898)
  631. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 323a2456-735e-409c-a15d-a62fa4601f90))
  632. (fp_line (start 15.860071 -4.199898) (end -15.83998 -4.199898)
  633. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp bb7f8f65-4517-4b5a-af18-b7ea2cb3cb9c))
  634. (fp_line (start 15.860071 11.000254) (end 15.860071 -4.199898)
  635. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 053f2f9f-4383-4c05-8245-3983d9e15378))
  636. (fp_circle (center -15.96698 11.127254) (end -15.936982 11.127254)
  637. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp ad5fcaaf-ca8d-434e-aed0-207e41a275a7))
  638. (pad "1" thru_hole rect (at -11.430023 0 180) (size 2.6 2.6) (drill 1.6) (layers "*.Cu" "*.Mask")
  639. (net 3 "+VDC") (pinfunction "1") (pintype "unspecified") (tstamp b0b3292a-1ae5-42cc-a041-243b3fbd792c))
  640. (pad "2" thru_hole circle (at -3.810008 0 180) (size 2.6 2.6) (drill 1.6) (layers "*.Cu" "*.Mask")
  641. (net 3 "+VDC") (pinfunction "2") (pintype "unspecified") (tstamp 5e668a21-59b7-4a41-8222-09d3edd9c868))
  642. (pad "3" thru_hole circle (at 3.810008 0 180) (size 2.6 2.6) (drill 1.6) (layers "*.Cu" "*.Mask")
  643. (net 1 "GND") (pinfunction "3") (pintype "unspecified") (tstamp a53a543d-a491-42a8-8957-fd887f3c6759))
  644. (pad "4" thru_hole circle (at 11.430023 0 180) (size 2.6 2.6) (drill 1.6) (layers "*.Cu" "*.Mask")
  645. (net 1 "GND") (pinfunction "4") (pintype "unspecified") (tstamp 868975e6-2f76-4db3-99ef-42e0ed4760e6))
  646. (model "jlc_lib/jlc_footprints/packages3d/CONN-TH_4P-P7.62_L15.2-W31.7-EX4.2.step"
  647. (offset (xyz 0 -3.399993149 0.0001269999981))
  648. (scale (xyz 1 1 1))
  649. (rotate (xyz 0 0 0))
  650. )
  651. )
  652. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  653. (tstamp 1efb2c5c-d8c2-420c-9dce-6814d3e066fd)
  654. (at 167 123.5 -90)
  655. (descr "R0402 footprint")
  656. (tags "R0402 footprint C279981")
  657. (property "LCSC" "C172043")
  658. (property "Resistance" "27.4Ω")
  659. (property "Sheetfile" "pi.kicad_sch")
  660. (property "Sheetname" "PI")
  661. (property "ki_keywords" "C172043")
  662. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/6675dd06-9ba9-42b8-9184-1916e894eddc")
  663. (attr smd)
  664. (fp_text reference "R14" (at -2.5 0 90) (layer "F.SilkS")
  665. (effects (font (size 1 1) (thickness 0.15)))
  666. (tstamp ad21053c-eb38-44eb-872b-1ed5363cc2ea)
  667. )
  668. (fp_text value "27R4" (at -3 0 90) (layer "F.Fab")
  669. (effects (font (size 1 1) (thickness 0.15)))
  670. (tstamp 2fc3718e-237b-4a53-a4b0-f5e66db547db)
  671. )
  672. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  673. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 843372a7-ed15-4c43-8366-86a7c469d5cb))
  674. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  675. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp cef814fa-f336-49bf-b7f7-06db8d0520bc))
  676. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  677. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e5cd6cfc-911b-46e3-9e13-e0e3d110b284))
  678. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  679. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6b5ccb82-8b6a-4412-986d-a2310279b27a))
  680. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  681. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8ffd8ab9-0077-4984-8097-30938260c1bb))
  682. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  683. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9d4bbede-b00c-486c-a680-7db0c1991ea2))
  684. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  685. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp ed9789d4-8c68-4865-92ed-1948bc9f74c9))
  686. (pad "1" smd rect (at -0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  687. (net 58 "Net-(U10-USB_DM)") (pinfunction "1") (pintype "unspecified") (tstamp 2709ee3a-0ea5-4b27-9315-fcf846effb2e))
  688. (pad "2" smd rect (at 0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  689. (net 57 "/PI/USBC.DM") (pinfunction "2") (pintype "unspecified") (tstamp 46a71626-500a-4143-8cd3-7312bd664d9d))
  690. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  691. (offset (xyz 0 0.0000253999996185 0.2499359962))
  692. (scale (xyz 1 1 1))
  693. (rotate (xyz 0 0 0))
  694. )
  695. )
  696. (footprint "jlc_footprints:RJ45-TH_DS1129-05-S80BP-X" (layer "F.Cu")
  697. (tstamp 2265c4f2-79f7-4dbe-a9c1-db64d348d5f5)
  698. (at 206.140469 89.407765 90)
  699. (descr "RJ45-TH_DS1129-05-S80BP-X footprint")
  700. (tags "RJ45-TH_DS1129-05-S80BP-X footprint C86580")
  701. (property "LCSC" "C86580")
  702. (property "Sheetfile" "pi.kicad_sch")
  703. (property "Sheetname" "PI")
  704. (property "ki_keywords" "C86580")
  705. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/d256002b-f1be-4732-b344-2b5cb2dfa5d6")
  706. (attr through_hole)
  707. (fp_text reference "U13" (at 17 -6.885503 180) (layer "F.SilkS")
  708. (effects (font (size 1 1) (thickness 0.15)))
  709. (tstamp 1a79e1b3-216c-49bd-b8db-b53eab2537d2)
  710. )
  711. (fp_text value "CAN_IO" (at 17 -2.885503 180) (layer "F.Fab")
  712. (effects (font (size 1 1) (thickness 0.15)))
  713. (tstamp e608065f-c4f2-4533-b1c5-208e8059e547)
  714. )
  715. (fp_line (start -15.493904 -8.087021) (end -15.493904 13.757023)
  716. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4d1bc0bd-eb92-408c-9eda-caaa7bd6ef85))
  717. (fp_line (start -15.493904 13.757023) (end 15.748158 13.757023)
  718. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 69d9f13d-f364-4c24-a63b-8067e52b2005))
  719. (fp_line (start 15.748158 -8.087021) (end -15.493904 -8.087021)
  720. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 7fd177d6-087b-418c-9a15-9c8c6de79b04))
  721. (fp_line (start 15.748158 13.757023) (end 15.748158 -8.087021)
  722. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 46938c4e-9528-44a9-8d38-9505d9bb1c4b))
  723. (fp_circle (center -15.559944 -8.02098) (end -15.529972 -8.02098)
  724. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6917b6b0-2f75-4ba1-b114-dc3e498e23ef))
  725. (fp_circle (center -12.699898 2.835001) (end -11.949835 2.835001)
  726. (stroke (width 1.5) (type solid)) (fill none) (layer "F.Fab") (tstamp ed0b0cdf-0000-471a-b7d3-9a3caf2743aa))
  727. (fp_circle (center 12.700152 2.835001) (end 13.450216 2.835001)
  728. (stroke (width 1.5) (type solid)) (fill none) (layer "F.Fab") (tstamp db0caf9b-ef8f-4c37-ba34-f2e922667a37))
  729. (pad "" np_thru_hole circle (at -12.699898 2.835001 90) (size 3.249987 3.249987) (drill 3.249987) (layers "*.Cu" "*.Mask") (tstamp 0f538ee9-585e-4cee-a965-e104611e4543))
  730. (pad "" np_thru_hole circle (at 12.700152 2.835001 90) (size 3.249987 3.249987) (drill 3.249987) (layers "*.Cu" "*.Mask") (tstamp b7566cc0-5c69-4a9e-a1b9-b02588b3fcee))
  731. (pad "1" thru_hole circle (at -11.429896 -3.515011 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  732. (net 9 "Net-(U14-CANH)") (pinfunction "1") (pintype "unspecified") (tstamp b4b7ac6a-7c78-4b55-ac1a-a923c27131f2))
  733. (pad "2" thru_hole circle (at -10.159893 -6.055017 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  734. (net 11 "Net-(U14-CANL)") (pinfunction "2") (pintype "unspecified") (tstamp 8b2dbd8d-d5bb-4e07-ac7d-90bdaea9f59a))
  735. (pad "3" thru_hole circle (at -8.889891 -3.515011 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  736. (net 1 "GND") (pinfunction "3") (pintype "unspecified") (tstamp e86bc2a5-3563-40d8-bade-02175c9f2331))
  737. (pad "4" thru_hole circle (at -7.619888 -6.055017 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  738. (net 40 "Net-(H8-Pad1)") (pinfunction "4") (pintype "unspecified") (tstamp e11fbadb-798b-4ab7-a69e-e8ef0ffebe58))
  739. (pad "5" thru_hole circle (at -6.349886 -3.515011 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  740. (net 40 "Net-(H8-Pad1)") (pinfunction "5") (pintype "unspecified") (tstamp 94e71a47-c315-4e1c-af5d-7141be00a698))
  741. (pad "6" thru_hole circle (at -5.079883 -6.055017 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  742. (net 1 "GND") (pinfunction "6") (pintype "unspecified") (tstamp 288bd611-6d0d-459e-9ea2-32330fd71809))
  743. (pad "7" thru_hole circle (at -3.809881 -3.515011 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  744. (net 1 "GND") (pinfunction "7") (pintype "unspecified") (tstamp d3e08198-8b28-4461-8d38-24e9795d6727))
  745. (pad "8" thru_hole circle (at -2.539878 -6.055017 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  746. (net 40 "Net-(H8-Pad1)") (pinfunction "8") (pintype "unspecified") (tstamp a018dcf1-72ef-46ac-9765-20e1bc7b1f7c))
  747. (pad "9" thru_hole circle (at 2.540132 -3.515011 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  748. (net 9 "Net-(U14-CANH)") (pinfunction "9") (pintype "unspecified") (tstamp ab8178b3-d6dd-4227-9b1f-ef0d87ab16bf))
  749. (pad "10" thru_hole circle (at 3.810135 -6.055017 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  750. (net 11 "Net-(U14-CANL)") (pinfunction "10") (pintype "unspecified") (tstamp 22a63309-6447-459f-ba51-9a6d33cb82a4))
  751. (pad "11" thru_hole circle (at 5.080137 -3.515011 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  752. (net 1 "GND") (pinfunction "11") (pintype "unspecified") (tstamp 03371e42-c648-4567-afa1-608eec94df28))
  753. (pad "12" thru_hole circle (at 6.35014 -6.055017 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  754. (net 40 "Net-(H8-Pad1)") (pinfunction "12") (pintype "unspecified") (tstamp 59c0b49b-073e-4a10-86f5-5ef638fce465))
  755. (pad "13" thru_hole circle (at 7.620142 -3.515011 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  756. (net 40 "Net-(H8-Pad1)") (pinfunction "13") (pintype "unspecified") (tstamp 3f61dd74-7c9c-400c-828c-41dbae892582))
  757. (pad "14" thru_hole circle (at 8.890145 -6.055017 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  758. (net 1 "GND") (pinfunction "14") (pintype "unspecified") (tstamp e246f3da-5c82-4dba-bc13-9d949bf16f44))
  759. (pad "15" thru_hole circle (at 10.160147 -3.515011 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  760. (net 1 "GND") (pinfunction "15") (pintype "unspecified") (tstamp 90ff9dfb-3153-484a-bc88-a3bd93256df4))
  761. (pad "16" thru_hole circle (at 11.43015 -6.055017 90) (size 1.524003 1.524003) (drill 0.914402) (layers "*.Cu" "*.Mask")
  762. (net 40 "Net-(H8-Pad1)") (pinfunction "16") (pintype "unspecified") (tstamp f26167f9-6f29-4234-8c79-8e846133f515))
  763. (pad "17" thru_hole circle (at -15.434976 7.405004 90) (size 2.5 2.5) (drill 1.6) (layers "*.Cu" "*.Mask")
  764. (net 60 "Net-(R16-Pad1)") (pinfunction "17") (pintype "unspecified") (tstamp 859ab256-f9bd-494d-badd-fda8dba3df4a))
  765. (pad "18" thru_hole circle (at 15.434976 7.405004 90) (size 2.5 2.5) (drill 1.6) (layers "*.Cu" "*.Mask")
  766. (net 60 "Net-(R16-Pad1)") (pinfunction "18") (pintype "unspecified") (tstamp 8488f013-d56e-4167-9efe-96e5c4832e13))
  767. (pad "19" thru_hole circle (at 0.001143 -7.405029 90) (size 2.5 2.5) (drill 1.6) (layers "*.Cu" "*.Mask")
  768. (net 60 "Net-(R16-Pad1)") (pinfunction "19") (pintype "unspecified") (tstamp a197f439-e1b4-4c22-b053-fc4857b84594))
  769. (model "jlc_lib/jlc_footprints/packages3d/RJ45-TH_DS1129-05-S80BP-X.step"
  770. (offset (xyz 0.0000253999996185 -3.000501955 0.2924555956))
  771. (scale (xyz 1 1 1))
  772. (rotate (xyz 0 0 0))
  773. )
  774. )
  775. (footprint "jlc_footprints:SOD-123_L2.8-W1.8-LS3.7-RD" (layer "F.Cu")
  776. (tstamp 22bde3f1-6bec-4d2c-adb1-ae8a961cffb0)
  777. (at 170.690482 61.01762)
  778. (descr "SOD-123_L2.8-W1.8-LS3.7-RD footprint")
  779. (tags "SOD-123_L2.8-W1.8-LS3.7-RD footprint C475721")
  780. (property "LCSC" "C475721")
  781. (property "Sheetfile" "psu_lm2576.kicad_sch")
  782. (property "Sheetname" "PI_PSU")
  783. (property "ki_keywords" "C475721")
  784. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876/20dd6577-8636-444a-97ff-a0d42be2ea02")
  785. (attr smd)
  786. (fp_text reference "D2" (at 0 -2) (layer "F.SilkS")
  787. (effects (font (size 1 1) (thickness 0.15)))
  788. (tstamp 10b6b66d-e7f0-4cf0-b3e9-061c8a4dc81a)
  789. )
  790. (fp_text value "MBR340F" (at 0 2) (layer "F.Fab")
  791. (effects (font (size 1 1) (thickness 0.15)))
  792. (tstamp 105fe50f-6527-4df0-85b1-f13ed60de324)
  793. )
  794. (fp_line (start -1.58001 -0.866193) (end -1.406172 -0.866193)
  795. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 867e939c-ac48-4cb6-95af-2d57ce3c9249))
  796. (fp_line (start -1.58001 -0.755144) (end -1.58001 -0.866193)
  797. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 8e1e2c75-27ed-40b8-8df7-55184848e38b))
  798. (fp_line (start -1.58001 -0.755144) (end -1.406172 -0.755144)
  799. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 466d2f8a-8d11-4e37-99fe-574593a8eb76))
  800. (fp_line (start -1.58001 0.755144) (end -1.406172 0.755144)
  801. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp d45c2a9f-74f3-46ff-9917-7c9d241d44f1))
  802. (fp_line (start -1.58001 0.866193) (end -1.58001 0.755144)
  803. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp a43831e6-b2ea-40cf-b752-c1c47fe6ef9d))
  804. (fp_line (start -1.406172 -0.866193) (end -1.406172 -0.755144)
  805. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp ff6b408e-5b12-4ea9-b454-471bb5e6adce))
  806. (fp_line (start -1.406172 -0.866193) (end 1.406172 -0.866193)
  807. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 857b6272-e8ea-4173-bc69-3a970e64e064))
  808. (fp_line (start -1.406172 0.755144) (end -1.406172 0.866193)
  809. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp a941bafe-87bd-47cb-ac03-de1f1cb48945))
  810. (fp_line (start -1.406172 0.866193) (end -1.58001 0.866193)
  811. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 040312b2-a868-4b12-8291-ad0103aaf859))
  812. (fp_line (start -1.406172 0.866193) (end 1.406172 0.866193)
  813. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2ae141cd-412e-4246-a588-c86753dcca34))
  814. (fp_line (start -0.970003 -0.866193) (end -0.970003 0.866193)
  815. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a593cb0c-82ce-412e-ac94-be9d71bbf419))
  816. (fp_line (start -0.827127 -0.866193) (end -0.827127 0.866193)
  817. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 8a31d404-f019-4493-83f5-791157808a35))
  818. (fp_line (start 1.406172 -0.866193) (end 1.406172 -0.698197)
  819. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bd3354b4-f788-4825-a59f-20843588cf84))
  820. (fp_line (start 1.406172 0.866193) (end 1.406172 0.698197)
  821. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e8a8ab04-ab74-47ce-a22e-48bc06e1a06e))
  822. (fp_circle (center -1.850394 0.899924) (end -1.820422 0.899924)
  823. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp db459e53-9e5b-4f0d-9e57-57abcebc6202))
  824. (pad "1" smd rect (at -1.692405 0) (size 0.950013 1.150013) (layers "F.Cu" "F.Paste" "F.Mask")
  825. (net 14 "Net-(U16-OUT)") (pinfunction "1") (pintype "unspecified") (tstamp 3190c3cf-0147-418a-af68-c148f0ca777e))
  826. (pad "2" smd rect (at 1.692405 0) (size 0.950013 1.150013) (layers "F.Cu" "F.Paste" "F.Mask")
  827. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 671e2e38-7a46-4745-925f-875a409d2f9a))
  828. (model "jlc_lib/jlc_footprints/packages3d/SOD-123_L2.8-W1.8-LS3.7-RD.step"
  829. (offset (xyz 0 0 0.5499099917))
  830. (scale (xyz 1 1 1))
  831. (rotate (xyz 0 0 0))
  832. )
  833. )
  834. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  835. (tstamp 29528051-c988-462d-95e5-4c29a28759e4)
  836. (at 188.754966 82.407765 180)
  837. (descr "C0402 footprint")
  838. (tags "C0402 footprint C140675")
  839. (property "Capacitance" "47nF")
  840. (property "LCSC" "C697422")
  841. (property "Sheetfile" "pi.kicad_sch")
  842. (property "Sheetname" "PI")
  843. (property "ki_keywords" "C697422")
  844. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/131c2d35-3e01-4b36-88d8-a36093ac80a6")
  845. (attr smd)
  846. (fp_text reference "C23" (at 0 1.5) (layer "F.SilkS")
  847. (effects (font (size 1 1) (thickness 0.15)))
  848. (tstamp 8768beec-4eb3-4a06-a798-3be4b2272ef5)
  849. )
  850. (fp_text value "47nF" (at 0 -1.5) (layer "F.Fab")
  851. (effects (font (size 1 1) (thickness 0.15)))
  852. (tstamp 8cedf02f-bbd4-4efb-b108-0f61ccce49b1)
  853. )
  854. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  855. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4412c4e0-7c4c-4259-bcd2-f39e8a47de12))
  856. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  857. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f18d72c8-0538-469e-806a-b37fe88bcace))
  858. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  859. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp de1b8d6f-7ee3-4194-b90a-674ccd19f25d))
  860. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  861. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6612a4a5-ef5d-4951-8c48-35123d27b82f))
  862. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  863. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ad68fd5b-262d-4a3e-b468-d6c7f562b5f8))
  864. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  865. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 98fb6dcc-3de0-442b-a7ed-d344305739b4))
  866. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  867. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5fb079a9-928f-4cff-a927-e51a3e572e23))
  868. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  869. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp dd8f9a79-736c-493a-9f91-26660e56df13))
  870. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  871. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7598d718-760c-404b-a3cd-b4aa2504f3fa))
  872. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  873. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 11dd9631-c031-4c14-aab7-15e6aab84fb9))
  874. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  875. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp fd0646c5-c670-4c4e-8c07-8d1d59eea5ef))
  876. (pad "1" smd rect (at -0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  877. (net 5 "+5V") (pinfunction "1") (pintype "unspecified") (tstamp e17393df-bf03-4095-b6f0-8a6e3d69d03e))
  878. (pad "2" smd rect (at 0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  879. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp e49e2429-a2ac-43e8-9cac-f2ff08996ba2))
  880. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  881. (offset (xyz 0 0.0000253999996185 0.2499359962))
  882. (scale (xyz 1 1 1))
  883. (rotate (xyz 0 0 0))
  884. )
  885. )
  886. (footprint "jlc_footprints:F1812" (layer "F.Cu")
  887. (tstamp 315033d5-4a2f-4681-9d50-ad6712dc3b25)
  888. (at 110.646558 53.5 180)
  889. (descr "F1812 footprint")
  890. (tags "F1812 footprint C2982285")
  891. (property "LCSC" "C2982285")
  892. (property "Sheetfile" "dispensy.kicad_sch")
  893. (property "Sheetname" "")
  894. (property "ki_keywords" "C2982285")
  895. (path "/75c590aa-dd6e-4017-ad6b-301f87d648a8")
  896. (attr smd)
  897. (fp_text reference "F1" (at 0 -3) (layer "F.SilkS")
  898. (effects (font (size 1 1) (thickness 0.15)))
  899. (tstamp ab0f50a5-a9b8-4fe6-a403-e7f6d97c2f8a)
  900. )
  901. (fp_text value "ASMD1812-350-16V" (at 0 3) (layer "F.Fab")
  902. (effects (font (size 1 1) (thickness 0.15)))
  903. (tstamp ef9fe85e-718f-43fa-8fb3-3d3b722df14e)
  904. )
  905. (fp_line (start -2.794006 -1.797765) (end -2.794006 1.758242)
  906. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 51f18d51-46db-4c11-a1e3-b351bc281512))
  907. (fp_line (start -2.540005 -2.032004) (end -1.23495 -2.032004)
  908. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 95d21580-ed44-4a0b-96bf-115b12cecba1))
  909. (fp_line (start -1.270003 2.032004) (end -2.540005 2.032004)
  910. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e656de9e-6165-4b43-bb57-87f0551e4faa))
  911. (fp_line (start 1.270003 2.032004) (end 2.540005 2.032004)
  912. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp aa81b368-8987-4283-b6ac-e037de849e57))
  913. (fp_line (start 2.540005 -2.032004) (end 1.270003 -2.032004)
  914. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8c4c7847-413d-47cc-8455-129f9b07d3ff))
  915. (fp_line (start 2.794006 -1.778004) (end 2.794006 1.778004)
  916. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 28374f56-e891-4c41-8bae-8d952ef3d6a5))
  917. (fp_arc (start 0 0) (mid -0.317501 -0.317501) (end 0 -0.635002)
  918. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 43f3e93f-485b-46ae-a403-ed94604569a1))
  919. (fp_arc (start 0 0) (mid 0.317501 0.317501) (end 0 0.635002)
  920. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 9c52618b-1d49-46db-82b7-420a4d846cfe))
  921. (fp_circle (center -2.275083 1.620015) (end -2.24511 1.620015)
  922. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 253dd13e-d7ec-43e6-aeba-1ac5f7ed38cb))
  923. (pad "1" smd rect (at -1.853442 0 180) (size 1.40668 3.499213) (layers "F.Cu" "F.Paste" "F.Mask")
  924. (net 4 "/EXT_PSU/Vout") (pinfunction "1") (pintype "unspecified") (tstamp feab7161-43b9-4b62-8482-830fc14578cb))
  925. (pad "2" smd rect (at 1.853442 0 180) (size 1.40668 3.499213) (layers "F.Cu" "F.Paste" "F.Mask")
  926. (net 87 "Net-(U2-VCC)") (pinfunction "2") (pintype "unspecified") (tstamp 14d6399a-ab49-4163-ae86-287f8c272c60))
  927. (model "jlc_lib/jlc_footprints/packages3d/F1812.step"
  928. (offset (xyz 0 0 0))
  929. (scale (xyz 1 1 1))
  930. (rotate (xyz 0 0 0))
  931. )
  932. )
  933. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  934. (tstamp 31da8113-213c-4739-a21f-26b27948078c)
  935. (at 135.5 106 -90)
  936. (descr "C0402 footprint")
  937. (tags "C0402 footprint C140675")
  938. (property "Capacitance" "100nF")
  939. (property "LCSC" "C105883")
  940. (property "Sheetfile" "pi.kicad_sch")
  941. (property "Sheetname" "PI")
  942. (property "ki_keywords" "C105883")
  943. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/ca063349-a33d-4ec5-aa05-5646eb18b2cb")
  944. (attr smd)
  945. (fp_text reference "C11" (at -2.545085 0 90) (layer "F.SilkS")
  946. (effects (font (size 1 1) (thickness 0.15)))
  947. (tstamp 32e5cd61-45be-4707-ab08-a5ddbfb473bb)
  948. )
  949. (fp_text value "100nF" (at -3.545085 0 90) (layer "F.Fab")
  950. (effects (font (size 1 1) (thickness 0.15)))
  951. (tstamp 95d824d2-6e96-4229-bc83-95db46a52c43)
  952. )
  953. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  954. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7b8e4737-fb41-4b75-8dc4-873f9728352a))
  955. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  956. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 360f9b95-f2e8-44ca-ac43-b3051c1faa8d))
  957. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  958. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6742037f-96c3-4854-b03c-fbb17152fa7e))
  959. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  960. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp dfa09c23-e7cf-4468-b7d1-40b412a989f0))
  961. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  962. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0cab33f2-b5b6-482c-8a35-f9187111ed9a))
  963. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  964. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d5508de8-2484-4211-a3c5-7f3f02a8ca59))
  965. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  966. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 73e402bc-b2bd-49da-af2c-0299b51186fe))
  967. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  968. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 78fbf583-7787-49ea-9a0b-f82581fb14a9))
  969. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  970. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a19fec30-c303-4c58-a3d4-ab93ca0b5a29))
  971. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  972. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp eab8b996-c187-4ad1-bacd-f3d3044aa87b))
  973. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  974. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp fba672e3-4790-4bc4-9bd3-3a9b895aab35))
  975. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  976. (net 8 "+1V1") (pinfunction "1") (pintype "input") (tstamp 34ad20d2-01b3-400e-a863-0f7a90089507))
  977. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  978. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 65b4a65b-fdac-4025-bade-6ef8e8098e92))
  979. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  980. (offset (xyz 0 0.0000253999996185 0.2499359962))
  981. (scale (xyz 1 1 1))
  982. (rotate (xyz 0 0 0))
  983. )
  984. )
  985. (footprint "jlc_footprints:CAP-SMD_BD10.0-L10.3-W10.3-FD" (layer "F.Cu")
  986. (tstamp 336fd8f1-2b69-46ff-98a0-5f24e57b9606)
  987. (at 136.990456 60.717646 -90)
  988. (descr "CAP-SMD_BD10.0-L10.3-W10.3-FD footprint")
  989. (tags "CAP-SMD_BD10.0-L10.3-W10.3-FD footprint C249838")
  990. (property "Capacitance" "100uF")
  991. (property "LCSC" "C249838")
  992. (property "Sheetfile" "psu_lm2576.kicad_sch")
  993. (property "Sheetname" "EXT_PSU")
  994. (property "ki_keywords" "C249838")
  995. (path "/635c7f01-c861-45f9-bb15-e53673572e1d/04ef562d-6ae5-43ee-951a-6683c9942340")
  996. (attr smd)
  997. (fp_text reference "C2" (at -2.000127 -6 90) (layer "F.SilkS")
  998. (effects (font (size 1 1) (thickness 0.15)))
  999. (tstamp d8f5cc26-f74c-4862-8e70-8c08aa3b1a0d)
  1000. )
  1001. (fp_text value "100uF" (at 2.999873 -6 90) (layer "F.Fab")
  1002. (effects (font (size 1 1) (thickness 0.15)))
  1003. (tstamp 29b30a82-84d5-4800-bb8b-042087c0c6f6)
  1004. )
  1005. (fp_line (start -5.226238 -3.089992) (end -5.226238 -0.852426)
  1006. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f9b4bd85-e675-4647-b556-d072c9d31fd8))
  1007. (fp_line (start -5.226238 3.089992) (end -5.226238 0.852426)
  1008. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c4cec5ca-fe9b-4824-bb8e-019e3db41e74))
  1009. (fp_line (start -3.089992 -5.226238) (end -5.226238 -3.089992)
  1010. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2b118e30-5415-499a-a793-bec54c972524))
  1011. (fp_line (start -3.089992 5.226238) (end -5.226238 3.089992)
  1012. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7bed6504-9395-4197-9aff-7dd421368ecc))
  1013. (fp_line (start 5.226238 -5.226238) (end -3.089992 -5.226238)
  1014. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c8d59d4c-b6de-468e-8bc7-a97136011fde))
  1015. (fp_line (start 5.226238 -0.852426) (end 5.226238 -5.226238)
  1016. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 74264978-5569-47ba-a6b8-f5c5689cf1c7))
  1017. (fp_line (start 5.226238 0.852426) (end 5.226238 5.226238)
  1018. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fc27f36e-f824-46bf-8efd-5ab415024aae))
  1019. (fp_line (start 5.226238 5.226238) (end -3.089992 5.226238)
  1020. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c443abcf-e7e2-463a-afab-355fa113b764))
  1021. (fp_circle (center -5.800102 5.150114) (end -5.77013 5.150114)
  1022. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp c17088be-e417-4a7c-8d28-5f11574ddfd7))
  1023. (pad "1" smd rect (at -4.499873 0 270) (size 4.5 1.650013) (layers "F.Cu" "F.Paste" "F.Mask")
  1024. (net 3 "+VDC") (pinfunction "1") (pintype "unspecified") (tstamp 8034cb64-6248-4701-9ef1-9536a49a8a4c))
  1025. (pad "2" smd rect (at 4.499873 0 270) (size 4.5 1.650013) (layers "F.Cu" "F.Paste" "F.Mask")
  1026. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp c4c00c67-0929-49d2-9ee2-69d5c57f8ec7))
  1027. (model "jlc_lib/jlc_footprints/packages3d/CAP-SMD_BD10.0-L10.3-W10.3-FD.step"
  1028. (offset (xyz 0 0 0.05003799925))
  1029. (scale (xyz 1 1 1))
  1030. (rotate (xyz 0 0 -180))
  1031. )
  1032. )
  1033. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  1034. (tstamp 3bfe2890-a4ce-42bf-aa48-716ab0ce7a83)
  1035. (at 123 118.53813)
  1036. (descr "R0402 footprint")
  1037. (tags "R0402 footprint C279981")
  1038. (property "LCSC" "C406733")
  1039. (property "Resistance" "10kΩ")
  1040. (property "Sheetfile" "pi.kicad_sch")
  1041. (property "Sheetname" "PI")
  1042. (property "ki_keywords" "C406733")
  1043. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/1b9f5a71-52c6-4599-8d99-e9b42783134b")
  1044. (attr smd)
  1045. (fp_text reference "R6" (at 0 -1.5) (layer "F.SilkS")
  1046. (effects (font (size 1 1) (thickness 0.15)))
  1047. (tstamp 3973d473-f816-40ce-843f-875a010894c1)
  1048. )
  1049. (fp_text value "10K" (at 2.5 0) (layer "F.Fab")
  1050. (effects (font (size 1 1) (thickness 0.15)))
  1051. (tstamp 5ac287a6-0d60-434b-9002-b8ed5905b54c)
  1052. )
  1053. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  1054. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 053eac28-7cd9-45cb-b1b3-5d576f88a3ce))
  1055. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  1056. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 54121324-0caa-45d2-9973-f8d30ff50751))
  1057. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  1058. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp af2a4146-c28d-40e9-9793-ed277283d435))
  1059. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  1060. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 567cc1bc-a264-4093-aa07-f8fc96a3679f))
  1061. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  1062. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 283247ac-e122-4020-989b-0452fd314862))
  1063. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  1064. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 82bc3ec9-e8e6-4d0a-95c7-bf4e92fa79f8))
  1065. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  1066. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6c953e7c-baa7-4b06-9061-41e793159ca3))
  1067. (pad "1" smd rect (at -0.432817 0) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1068. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp de94d404-3fbe-435e-b8c4-dee79a39e634))
  1069. (pad "2" smd rect (at 0.432817 0) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1070. (net 48 "Net-(U9-D7)") (pinfunction "2") (pintype "unspecified") (tstamp ec346279-4da2-47cd-a236-8e06fde445e2))
  1071. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  1072. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1073. (scale (xyz 1 1 1))
  1074. (rotate (xyz 0 0 0))
  1075. )
  1076. )
  1077. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  1078. (tstamp 3e08c9df-0be3-4680-a74a-f91af08880a2)
  1079. (at 191.874904 109.82738 180)
  1080. (descr "C0402 footprint")
  1081. (tags "C0402 footprint C140675")
  1082. (property "Capacitance" "100nF")
  1083. (property "LCSC" "C105883")
  1084. (property "Sheetfile" "dispensy.kicad_sch")
  1085. (property "Sheetname" "")
  1086. (property "ki_keywords" "C105883")
  1087. (path "/18c5a7a0-1e43-49d0-8208-bfef0e4fd32a")
  1088. (attr smd)
  1089. (fp_text reference "C1" (at 2.5 0) (layer "F.SilkS")
  1090. (effects (font (size 1 1) (thickness 0.15)))
  1091. (tstamp 2b308a41-cdcd-4c9f-86bb-73252edc15d3)
  1092. )
  1093. (fp_text value "100nF" (at 3.5 0) (layer "F.Fab")
  1094. (effects (font (size 1 1) (thickness 0.15)))
  1095. (tstamp f47d0277-8b80-4cae-8303-ba955ebbb85c)
  1096. )
  1097. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  1098. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 24fd3fb4-6f08-4e65-b6c7-d716000fdce9))
  1099. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  1100. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fc2c46a2-fc26-4740-8e7b-eb67bed10d5b))
  1101. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  1102. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 20bb9e69-e736-45f6-9a88-5779a2de61aa))
  1103. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  1104. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 618ecab8-1e78-49d7-a9ba-6d5c694405d3))
  1105. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  1106. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 602fbec1-ab50-487d-91e0-48ca9121cbde))
  1107. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  1108. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 28d42e71-c9ce-4ad6-a6ac-41fd0b47dc41))
  1109. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  1110. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6d62498c-6603-4911-a06b-13dbfec57651))
  1111. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  1112. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 34baaba7-e5bd-4696-b6d8-573f896fc8c8))
  1113. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  1114. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 36b86ab8-114d-4e20-9365-1e4ede8f07e0))
  1115. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  1116. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6097e780-dbf3-4551-949f-6ac0ccbd5896))
  1117. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  1118. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 1bb2ae40-d9a7-4eb3-8c2b-e9b93e955dc1))
  1119. (pad "1" smd rect (at -0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1120. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp fc380f99-7557-449b-a621-9c0ebd3b2e2c))
  1121. (pad "2" smd rect (at 0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1122. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 13afaf95-9a7a-4659-bcfe-1db1bd20557f))
  1123. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  1124. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1125. (scale (xyz 1 1 1))
  1126. (rotate (xyz 0 0 0))
  1127. )
  1128. )
  1129. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  1130. (tstamp 3e75ddbf-6f50-4f3a-9959-6ef8c23aa4dc)
  1131. (at 165.5 123.5 -90)
  1132. (descr "R0402 footprint")
  1133. (tags "R0402 footprint C279981")
  1134. (property "LCSC" "C172043")
  1135. (property "Resistance" "27.4Ω")
  1136. (property "Sheetfile" "pi.kicad_sch")
  1137. (property "Sheetname" "PI")
  1138. (property "ki_keywords" "C172043")
  1139. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/19029a03-6c1d-449b-a465-d2795e2296f6")
  1140. (attr smd)
  1141. (fp_text reference "R13" (at -2.5 0 90) (layer "F.SilkS")
  1142. (effects (font (size 1 1) (thickness 0.15)))
  1143. (tstamp 3ffc448a-787b-45d0-a902-f9cd378c5aee)
  1144. )
  1145. (fp_text value "27R4" (at -3 0 90) (layer "F.Fab")
  1146. (effects (font (size 1 1) (thickness 0.15)))
  1147. (tstamp 0c0e59cb-f03b-4b43-8813-05a01d9be580)
  1148. )
  1149. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  1150. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c8f6bf22-266c-4312-b7e7-d97739316e9a))
  1151. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  1152. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5c8e4d8d-2c4b-432a-983a-4f3422b15cac))
  1153. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  1154. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 903f4c35-33a3-4dec-8381-3107ad0d0d90))
  1155. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  1156. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ab0564c0-94b0-4d26-be43-75795b89be19))
  1157. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  1158. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e31ef4be-5085-4663-947d-b83a1b31cba4))
  1159. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  1160. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5ab21136-8836-4f32-ac1a-3e50e2c55657))
  1161. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  1162. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8368c298-e89b-4e98-b8e9-2d3a8822dfb1))
  1163. (pad "1" smd rect (at -0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1164. (net 56 "Net-(U10-USB_DP)") (pinfunction "1") (pintype "unspecified") (tstamp 71e129ba-0b17-433e-86c9-1394eb20ed1f))
  1165. (pad "2" smd rect (at 0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1166. (net 55 "/PI/USBC.DP") (pinfunction "2") (pintype "unspecified") (tstamp 18e45e2e-e743-4ff6-b748-dfa0a701fb32))
  1167. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  1168. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1169. (scale (xyz 1 1 1))
  1170. (rotate (xyz 0 0 0))
  1171. )
  1172. )
  1173. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  1174. (tstamp 3e8d0672-2e29-4908-9f0e-2dfd7efbd031)
  1175. (at 147.5 107.802545 -90)
  1176. (descr "C0402 footprint")
  1177. (tags "C0402 footprint C140675")
  1178. (property "Capacitance" "100nF")
  1179. (property "LCSC" "C105883")
  1180. (property "Sheetfile" "pi.kicad_sch")
  1181. (property "Sheetname" "PI")
  1182. (property "ki_keywords" "C105883")
  1183. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/3b19fdc5-2f45-4a8f-a7f5-c8bc2f274425")
  1184. (attr smd)
  1185. (fp_text reference "C21" (at 3 0 90) (layer "F.SilkS")
  1186. (effects (font (size 1 1) (thickness 0.15)))
  1187. (tstamp 43aa0d37-3174-47c7-ac14-97f63e1b4b4d)
  1188. )
  1189. (fp_text value "100nF" (at 3.5 0 90) (layer "F.Fab")
  1190. (effects (font (size 1 1) (thickness 0.15)))
  1191. (tstamp 47b53161-60d8-4803-b45b-677db9f06629)
  1192. )
  1193. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  1194. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 76e683f9-b20e-4fd6-b809-334cd8cde4af))
  1195. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  1196. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d4be15ee-e671-4acd-b25f-22e37a979bb4))
  1197. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  1198. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5437596f-547e-4c40-bcd7-23e191bec0f6))
  1199. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  1200. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 207dcd7c-5bfb-4ed4-86d0-145750e55a6c))
  1201. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  1202. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4b148076-2987-42d5-9c63-2e592f65c48b))
  1203. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  1204. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9173c0ce-bd92-4720-a64f-4390a22072f5))
  1205. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  1206. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8bfddbf2-4fc3-4466-859d-4386df5bfe4c))
  1207. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  1208. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d4fb8239-adc4-41df-81d4-6fcb690a0203))
  1209. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  1210. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a557dd13-c02e-4ce6-9fe0-81dbb33a8773))
  1211. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  1212. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fcd1eb76-9227-44d8-8b27-77b2742e63d3))
  1213. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  1214. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp c034fd70-3420-4414-a3d6-b034bcdc0477))
  1215. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1216. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp 92659e6f-6c44-4117-b46f-cc66c027f284))
  1217. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1218. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 0f5ffe84-356e-4bf8-8177-b8abfa30058f))
  1219. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  1220. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1221. (scale (xyz 1 1 1))
  1222. (rotate (xyz 0 0 0))
  1223. )
  1224. )
  1225. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  1226. (tstamp 42f7e5d4-3b5b-458e-854b-32586539935f)
  1227. (at 192.254966 96.907765)
  1228. (descr "C0402 footprint")
  1229. (tags "C0402 footprint C140675")
  1230. (property "Capacitance" "100pF")
  1231. (property "LCSC" "C106200")
  1232. (property "Sheetfile" "pi.kicad_sch")
  1233. (property "Sheetname" "PI")
  1234. (property "ki_keywords" "C106200")
  1235. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/4c0ad137-061a-4c61-958f-2413064cd3c7")
  1236. (attr smd)
  1237. (fp_text reference "C26" (at 0 -1.5) (layer "F.SilkS")
  1238. (effects (font (size 1 1) (thickness 0.15)))
  1239. (tstamp 7b195163-8bbb-4c68-b6b9-7d30294453f2)
  1240. )
  1241. (fp_text value "100pF" (at -3.5 -0.5) (layer "F.Fab")
  1242. (effects (font (size 1 1) (thickness 0.15)))
  1243. (tstamp 4362411a-1333-417c-b635-3b8b4a654d60)
  1244. )
  1245. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  1246. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 26bd77d3-534c-4457-b51f-6cca546661c8))
  1247. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  1248. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a588ca2d-cede-4ae9-b690-065df6c57517))
  1249. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  1250. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 71f4baf6-20b3-4714-a74b-220104eb78f4))
  1251. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  1252. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d1b46ce6-4275-43f3-937e-a05a4f5bfd74))
  1253. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  1254. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6a0f983b-cc47-4d2c-b841-58b52c457d9e))
  1255. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  1256. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 08306e62-cbaf-4dec-b39f-764c9b8910e9))
  1257. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  1258. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 03b351a0-e598-46ad-871d-586dfba73dfc))
  1259. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  1260. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3de7d8d0-5bd8-49c3-b1aa-fbe2c3a31e9d))
  1261. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  1262. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0ccf0c3d-e9d7-4677-b19c-2e8f2d9f10a5))
  1263. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  1264. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 76b0c6dd-4c7a-412e-ab33-e87f195bdffc))
  1265. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  1266. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 3715f28f-079d-407a-b1cb-ea6591da5089))
  1267. (pad "1" smd rect (at -0.545085 0) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1268. (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 02f14a30-8982-4c66-8059-fb5a8fd0d29a))
  1269. (pad "2" smd rect (at 0.545085 0) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1270. (net 11 "Net-(U14-CANL)") (pinfunction "2") (pintype "input") (tstamp 9a6352e1-467b-4cb9-ac82-e094f47509f2))
  1271. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  1272. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1273. (scale (xyz 1 1 1))
  1274. (rotate (xyz 0 0 0))
  1275. )
  1276. )
  1277. (footprint "jlc_footprints:HDR-TH_6P-P2.54-V-F" (layer "F.Cu")
  1278. (tstamp 43ff2a79-f907-4cc7-af23-83e3325d3cf9)
  1279. (at 106 117.310008 -90)
  1280. (descr "HDR-TH_6P-P2.54-V-F footprint")
  1281. (tags "HDR-TH_6P-P2.54-V-F footprint C40877")
  1282. (property "LCSC" "C40877")
  1283. (property "Sheetfile" "pi.kicad_sch")
  1284. (property "Sheetname" "PI")
  1285. (property "ki_keywords" "C40877")
  1286. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/34b9da71-c5d6-4204-acf5-f95e8339da8d")
  1287. (attr through_hole)
  1288. (fp_text reference "H6" (at 6.689992 -2 90) (layer "F.SilkS")
  1289. (effects (font (size 1 1) (thickness 0.15)))
  1290. (tstamp afd9b1b6-cffe-4f15-86f4-f43bcbbcf914)
  1291. )
  1292. (fp_text value "Debug" (at 2.689992 -2 90) (layer "F.SilkS")
  1293. (effects (font (size 1 1) (thickness 0.15)))
  1294. (tstamp 8a955e03-e489-4b03-9be3-c1b70b2eb32a)
  1295. )
  1296. (fp_line (start -7.849987 -1.249987) (end 7.850013 -1.249987)
  1297. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 81fe7118-ef07-43f2-8e04-24e99c0ee4f0))
  1298. (fp_line (start -7.849987 -0.9) (end -7.849987 -1.249987)
  1299. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp d5af5b8f-dab6-440b-8ae5-6caac21f4714))
  1300. (fp_line (start -7.849987 1.249987) (end -7.849987 -0.949987)
  1301. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9d43040d-b76a-48ec-9752-c891ab2b1cde))
  1302. (fp_line (start 7.850013 -1.249987) (end 7.850013 1.249987)
  1303. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8561fcfb-67cc-462a-a60d-74f1d928335b))
  1304. (fp_line (start 7.850013 1.249987) (end -7.849987 1.249987)
  1305. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5bc6a685-1191-4cb1-9355-6bce93466a0c))
  1306. (fp_circle (center -7.869952 1.249936) (end -7.83998 1.249936)
  1307. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp f9521335-ec82-4d63-975c-a0ed5612303d))
  1308. (fp_circle (center -6.649987 -1.899924) (end -6.350013 -1.899924)
  1309. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2067250a-66c0-4faf-95ad-14c65d67f317))
  1310. (pad "1" thru_hole rect (at -6.350013 0 270) (size 1.8 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1311. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 0beac0bc-eb39-4f0c-9ee8-6918d603e382))
  1312. (pad "2" thru_hole circle (at -3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1313. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp edc8c8c7-1523-4944-aefb-0859302d60fc))
  1314. (pad "3" thru_hole circle (at -1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1315. (net 35 "/PI/Debug_Clock") (pinfunction "3") (pintype "unspecified") (tstamp 350edbc4-2fa6-4d28-bc18-1f9d98f70523))
  1316. (pad "4" thru_hole circle (at 1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1317. (net 36 "/PI/Debug_Data") (pinfunction "4") (pintype "unspecified") (tstamp 1f071cb0-f4ee-4cca-b79c-4aac7b85525a))
  1318. (pad "5" thru_hole circle (at 3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1319. (net 37 "/PI/Debug_Tx") (pinfunction "5") (pintype "unspecified") (tstamp ed5e25f2-df01-4fff-860e-b5fd8ce79b9d))
  1320. (pad "6" thru_hole circle (at 6.350013 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1321. (net 38 "/PI/Debug_Rx") (pinfunction "6") (pintype "unspecified") (tstamp 5e020544-e996-4be6-8034-e089e55b27f7))
  1322. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_6P-P2.54-V-F.step"
  1323. (offset (xyz -0.0000253999996185 0 -0.0001015999985))
  1324. (scale (xyz 1 1 1))
  1325. (rotate (xyz 0 0 0))
  1326. )
  1327. )
  1328. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  1329. (tstamp 46d3cb25-b122-4bac-ab7d-ac9d7db0a75e)
  1330. (at 141.5 110.802545 -90)
  1331. (descr "C0402 footprint")
  1332. (tags "C0402 footprint C140675")
  1333. (property "Capacitance" "100nF")
  1334. (property "LCSC" "C105883")
  1335. (property "Sheetfile" "pi.kicad_sch")
  1336. (property "Sheetname" "PI")
  1337. (property "ki_keywords" "C105883")
  1338. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/955b2d0c-caa8-49f2-aa9c-7de3cca4e29e")
  1339. (attr smd)
  1340. (fp_text reference "C16" (at 2.954915 0 90) (layer "F.SilkS")
  1341. (effects (font (size 1 1) (thickness 0.15)))
  1342. (tstamp 78fd67e2-12a7-4a6b-834e-759f60270dda)
  1343. )
  1344. (fp_text value "100nF" (at 3.454915 0 90) (layer "F.Fab")
  1345. (effects (font (size 1 1) (thickness 0.15)))
  1346. (tstamp 55d19ace-318d-4a6f-abdb-5b5df212a4a2)
  1347. )
  1348. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  1349. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e2bcf8a2-c815-4a0f-8c41-d1987deb5a24))
  1350. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  1351. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2886b56b-0623-4759-98e6-fa14a2a6eaf7))
  1352. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  1353. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a4ea88d1-bdf1-4b6d-bfc1-9d49d93d2bbe))
  1354. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  1355. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp edc8b61e-de41-400e-9f78-84588eac0495))
  1356. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  1357. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f2f83d58-3f5f-4e0f-8cd6-52400bf7d52b))
  1358. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  1359. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9ab4f32d-18e5-487e-bbb9-cb0621b682b8))
  1360. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  1361. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8b86c15e-b63a-4032-b426-5dc0b76bbeee))
  1362. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  1363. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 571a7074-4db0-429a-9602-0551a3d8da1d))
  1364. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  1365. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8c4de5a5-34a1-44e5-998e-3af45d951656))
  1366. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  1367. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7e90ba8e-84dd-4eb3-8d3f-af85ba96717b))
  1368. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  1369. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 918681be-c768-45c0-818b-6afeac5edda7))
  1370. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1371. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp 82bfe45c-5d21-4a0b-a80b-6cefb2a6a61b))
  1372. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1373. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 4063d5f0-0e1e-489b-8444-0d57fd58e76a))
  1374. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  1375. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1376. (scale (xyz 1 1 1))
  1377. (rotate (xyz 0 0 0))
  1378. )
  1379. )
  1380. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  1381. (tstamp 47d4a23d-aa97-4b0a-b96f-588d57e320cf)
  1382. (at 126.601981 88.506858 180)
  1383. (descr "R0402 footprint")
  1384. (tags "R0402 footprint C279981")
  1385. (property "LCSC" "C279981")
  1386. (property "Resistance" "1kΩ")
  1387. (property "Sheetfile" "dispensy.kicad_sch")
  1388. (property "Sheetname" "")
  1389. (property "ki_keywords" "C279981")
  1390. (path "/2125afab-f43b-48e4-97d7-9740dc2764b6")
  1391. (attr smd)
  1392. (fp_text reference "R23" (at 0 -1.5) (layer "F.SilkS")
  1393. (effects (font (size 1 1) (thickness 0.15)))
  1394. (tstamp 105ff3db-d96a-491f-b654-205e54db0c4e)
  1395. )
  1396. (fp_text value "1K" (at 0 1) (layer "F.Fab")
  1397. (effects (font (size 1 1) (thickness 0.15)))
  1398. (tstamp e0f8191b-acbb-4a3b-9c81-154c49dec8b9)
  1399. )
  1400. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  1401. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0a731d8d-a46e-45de-aa76-b818ac514236))
  1402. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  1403. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7c6be7e2-0b49-47c7-8dd1-92163dbee15b))
  1404. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  1405. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9e5e36fa-68ca-4661-ade4-6125c1c95591))
  1406. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  1407. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 76f849e1-a59b-4995-a629-417e5f5b105a))
  1408. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  1409. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c92462dc-dfa3-42e9-a41c-cc1a6834b411))
  1410. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  1411. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 473547aa-20f7-4f94-91f6-4f51d017d8f6))
  1412. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  1413. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 39b40cba-379a-438d-8c17-e695fbdc29c3))
  1414. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1415. (net 87 "Net-(U2-VCC)") (pinfunction "1") (pintype "unspecified") (tstamp 21c3e33d-b694-422f-8e8b-134401cf92d6))
  1416. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1417. (net 91 "Net-(LED3-+)") (pinfunction "2") (pintype "unspecified") (tstamp c836494d-1e4d-453e-b45f-669ff810c12a))
  1418. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  1419. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1420. (scale (xyz 1 1 1))
  1421. (rotate (xyz 0 0 0))
  1422. )
  1423. )
  1424. (footprint "jlc_footprints:SOT-223-4_L6.5-W3.5-P2.30-LS7.0-BR" (layer "F.Cu")
  1425. (tstamp 4af2c9d1-eb88-4802-ab45-6ece0f4f9db8)
  1426. (at 138 80.75)
  1427. (descr "SOT-223-4_L6.5-W3.5-P2.30-LS7.0-BR footprint")
  1428. (tags "SOT-223-4_L6.5-W3.5-P2.30-LS7.0-BR footprint C347222")
  1429. (property "LCSC" "C347222")
  1430. (property "Sheetfile" "pi.kicad_sch")
  1431. (property "Sheetname" "PI")
  1432. (property "ki_keywords" "C347222")
  1433. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/59148905-235f-4009-bab4-a4b824009677")
  1434. (attr smd)
  1435. (fp_text reference "U5" (at 0 -4.200025) (layer "F.SilkS")
  1436. (effects (font (size 1 1) (thickness 0.15)))
  1437. (tstamp 4e4e02bb-b3df-4374-babc-617104a38293)
  1438. )
  1439. (fp_text value "AMS1117-3_3_C347222" (at 2.8349 4.299975) (layer "F.Fab")
  1440. (effects (font (size 1 1) (thickness 0.15)))
  1441. (tstamp 6dd2afb3-2056-44d2-8d83-0fddb2b36613)
  1442. )
  1443. (fp_line (start -1.3714 -3.326213) (end 1.3714 -3.326213)
  1444. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6141d571-4677-41d5-ae5f-c64f70703ae5))
  1445. (fp_line (start -1.3714 3.326213) (end -1.3714 -3.326213)
  1446. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp aca134fb-3950-4d7d-a12a-3ca8b2c12c9d))
  1447. (fp_line (start 1.3714 -3.326213) (end 1.3714 3.326213)
  1448. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c534b2f3-94c5-4852-9d44-02f70de5219d))
  1449. (fp_line (start 1.3714 3.326213) (end -1.3714 3.326213)
  1450. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ee294f0b-e2ab-4516-8dee-3dda4fde3718))
  1451. (fp_circle (center 3.500127 3.249936) (end 3.530099 3.249936)
  1452. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp f5a6c204-d099-4731-ab65-f1b53d0755ab))
  1453. (fp_circle (center 3.556007 2.413005) (end 3.80602 2.413005)
  1454. (stroke (width 0.5) (type solid)) (fill none) (layer "F.Fab") (tstamp aceeb2e0-5fac-4bf4-9b9e-f3fb662a250b))
  1455. (pad "1" smd rect (at 2.8349 2.299975) (size 2.470003 0.98001) (layers "F.Cu" "F.Paste" "F.Mask")
  1456. (net 1 "GND") (pinfunction "ADJ(GND)") (pintype "unspecified") (tstamp b4b81e2c-c5b8-403e-a9d2-c72e8090ff7f))
  1457. (pad "2" smd rect (at 2.8349 0) (size 2.470003 0.98001) (layers "F.Cu" "F.Paste" "F.Mask")
  1458. (net 2 "+3.3V") (pinfunction "VOUT(TAB)") (pintype "unspecified") (tstamp ca1e6a19-2ac7-41a7-8c63-1b5e3ed95060))
  1459. (pad "3" smd rect (at 2.8349 -2.299975) (size 2.470003 0.98001) (layers "F.Cu" "F.Paste" "F.Mask")
  1460. (net 5 "+5V") (pinfunction "VIN") (pintype "unspecified") (tstamp 5e442b8b-2d42-4db1-acbb-8f6400f42cfd))
  1461. (pad "4" smd rect (at -2.8349 0) (size 2.470003 3.6) (layers "F.Cu" "F.Paste" "F.Mask")
  1462. (net 2 "+3.3V") (pinfunction "TAB") (pintype "unspecified") (tstamp 7c311783-a9b4-4696-adfc-9057a9beda83))
  1463. (model "jlc_lib/jlc_footprints/packages3d/SOT-223-4_L6.5-W3.5-P2.30-LS7.0-BR.step"
  1464. (offset (xyz -0.0000253999996185 -0.0000253999996185 0.04927599926))
  1465. (scale (xyz 1 1 1))
  1466. (rotate (xyz 0 0 -180))
  1467. )
  1468. )
  1469. (footprint "jlc_footprints:SOIC-8_L5.0-W4.0-P1.27-LS6.0-BL" (layer "F.Cu")
  1470. (tstamp 4da67977-4814-447f-92cc-649c14e0df9a)
  1471. (at 190.849962 88.407765)
  1472. (descr "SOIC-8_L5.0-W4.0-P1.27-LS6.0-BL footprint")
  1473. (tags "SOIC-8_L5.0-W4.0-P1.27-LS6.0-BL footprint C132227")
  1474. (property "LCSC" "C132227")
  1475. (property "Sheetfile" "pi.kicad_sch")
  1476. (property "Sheetname" "PI")
  1477. (property "ki_keywords" "C132227")
  1478. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/94161e3c-f789-45b3-a64b-a8fee2facac8")
  1479. (attr smd)
  1480. (fp_text reference "U14" (at 3.405004 -1 90) (layer "F.SilkS")
  1481. (effects (font (size 1 1) (thickness 0.15)))
  1482. (tstamp 6519bee1-c2bd-4d5f-99e9-9b79c635b93b)
  1483. )
  1484. (fp_text value "TJA1042T_3_1J" (at -3.594996 0.5 90) (layer "F.Fab")
  1485. (effects (font (size 1 1) (thickness 0.15)))
  1486. (tstamp 49a4567e-828d-4f1d-b98e-7b8c8bf15f66)
  1487. )
  1488. (fp_line (start -2.5 -1.905004) (end -2.408585 -1.905004)
  1489. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 28b4e7f0-f6ab-48f1-8113-f536cae270b0))
  1490. (fp_line (start -2.5 -1.5) (end -2.5 -1.905004)
  1491. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp cdb379a7-aac9-4465-8096-2934ae5a327a))
  1492. (fp_line (start -2.5 -1.5) (end -2.5 -0.726289)
  1493. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e9255417-f9de-4154-b2d5-55b868473adf))
  1494. (fp_line (start -2.5 1.5) (end -2.5 0.726568)
  1495. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e1c04c38-23b8-400d-a32d-dba55665e3f3))
  1496. (fp_line (start -2.5 1.5) (end -2.5 1.905004)
  1497. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0031f0f6-908a-49b3-8e08-cdc7c22ce1e2))
  1498. (fp_line (start -2.5 1.905004) (end -2.408585 1.905004)
  1499. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp df1a6d14-c3f7-4254-9e66-37e0fd0eff03))
  1500. (fp_line (start 2.5 -1.905004) (end 2.408585 -1.905004)
  1501. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a473b8a8-d166-419d-9dfd-51093a109722))
  1502. (fp_line (start 2.5 -1.5) (end 2.5 -1.905004)
  1503. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ce7a00ab-e46b-4b14-a698-7613ec4bec7b))
  1504. (fp_line (start 2.5 -1.5) (end 2.5 1.5)
  1505. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 88d9d51e-cb66-4efc-bdaa-f9932fce1871))
  1506. (fp_line (start 2.5 1.5) (end 2.5 1.905004)
  1507. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1394b5a7-02ed-46fc-829d-876bef35b9f6))
  1508. (fp_line (start 2.5 1.905004) (end 2.408585 1.905004)
  1509. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c154d698-fff6-46ea-8b5a-b8963dcdcdcf))
  1510. (fp_arc (start -2.495098 -0.726289) (mid -1.812145 0.002452) (end -2.499999 0.726568)
  1511. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ac617dbd-0212-46dc-92f4-90d3e90b1348))
  1512. (fp_circle (center -2.540005 2.667005) (end -2.389891 2.667005)
  1513. (stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp d29f5782-5e0b-4073-90a2-fd0afd60b124))
  1514. (fp_circle (center -2.420117 3) (end -2.390145 3)
  1515. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2e35d394-f8ec-4a8e-9b49-2f7084a0c4e9))
  1516. (fp_circle (center -1.905004 3.400051) (end -1.75489 3.400051)
  1517. (stroke (width 0.3) (type solid)) (fill none) (layer "F.Fab") (tstamp 2f90ef4c-fac9-47e0-8a22-ff6197a352fa))
  1518. (pad "1" smd oval (at -1.905004 2.705105) (size 0.568402 1.950216) (layers "F.Cu" "F.Paste" "F.Mask")
  1519. (net 74 "Net-(U10-GPIO24)") (pinfunction "TXD") (pintype "unspecified") (tstamp 270f9927-f692-44ab-b27f-121f7f7bd729))
  1520. (pad "2" smd oval (at -0.635001 2.705105) (size 0.568402 1.950216) (layers "F.Cu" "F.Paste" "F.Mask")
  1521. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp 76b72afc-5e14-4d59-a47d-8f0bb4644eb4))
  1522. (pad "3" smd oval (at 0.635001 2.705105) (size 0.568402 1.950216) (layers "F.Cu" "F.Paste" "F.Mask")
  1523. (net 5 "+5V") (pinfunction "VCC") (pintype "unspecified") (tstamp d81103f7-395e-4a61-8ba1-6e6121c2f978))
  1524. (pad "4" smd oval (at 1.905004 2.705105) (size 0.568402 1.950216) (layers "F.Cu" "F.Paste" "F.Mask")
  1525. (net 75 "Net-(U10-GPIO25)") (pinfunction "RXD") (pintype "unspecified") (tstamp b78b46c4-8139-4192-8d23-112593314c74))
  1526. (pad "5" smd oval (at 1.905004 -2.705105) (size 0.568402 1.950216) (layers "F.Cu" "F.Paste" "F.Mask")
  1527. (net 2 "+3.3V") (pinfunction "VIO") (pintype "unspecified") (tstamp e09e6ba2-01c9-49ef-af46-f09bb9835383))
  1528. (pad "6" smd oval (at 0.635001 -2.705105) (size 0.568402 1.950216) (layers "F.Cu" "F.Paste" "F.Mask")
  1529. (net 11 "Net-(U14-CANL)") (pinfunction "CANL") (pintype "unspecified") (tstamp 1b75ca07-c8f1-442f-adda-c703f45f0c2b))
  1530. (pad "7" smd oval (at -0.635001 -2.705105) (size 0.568402 1.950216) (layers "F.Cu" "F.Paste" "F.Mask")
  1531. (net 9 "Net-(U14-CANH)") (pinfunction "CANH") (pintype "unspecified") (tstamp fa70d697-42d1-40d5-8fff-5cd4c4d4071e))
  1532. (pad "8" smd oval (at -1.905004 -2.705105) (size 0.568402 1.950216) (layers "F.Cu" "F.Paste" "F.Mask")
  1533. (net 1 "GND") (pinfunction "STB") (pintype "unspecified") (tstamp 2a1b2386-d314-46d7-a302-923c4f2b7528))
  1534. (model "jlc_lib/jlc_footprints/packages3d/SOIC-8_L5.0-W4.0-P1.27-LS6.0-BL.step"
  1535. (offset (xyz -0.0000253999996185 0.0000253999996185 0))
  1536. (scale (xyz 1 1 1))
  1537. (rotate (xyz 0 0 0))
  1538. )
  1539. )
  1540. (footprint "jlc_footprints:CONN-TH_XY300V-A-5.0-2P" (layer "F.Cu")
  1541. (tstamp 52b6d074-9cad-40f9-8d17-8d454be44428)
  1542. (at 96.5 82 90)
  1543. (descr "CONN-TH_XY300V-A-5.0-2P footprint")
  1544. (tags "CONN-TH_XY300V-A-5.0-2P footprint C557648")
  1545. (property "LCSC" "C557648")
  1546. (property "Sheetfile" "dispensy.kicad_sch")
  1547. (property "Sheetname" "")
  1548. (property "ki_keywords" "C557648")
  1549. (path "/5d77193b-eb49-4e71-a8a5-7fe6d08c238e")
  1550. (attr through_hole)
  1551. (fp_text reference "U18" (at -6 4 180) (layer "F.SilkS")
  1552. (effects (font (size 1 1) (thickness 0.15)))
  1553. (tstamp 25842bb7-136a-4030-9a05-b4f429bc9ce0)
  1554. )
  1555. (fp_text value "XY300V-A-5_0-2P" (at 0 -2 90) (layer "F.Fab")
  1556. (effects (font (size 1 1) (thickness 0.15)))
  1557. (tstamp 4ce63629-dc04-49df-938d-53319cb18011)
  1558. )
  1559. (fp_line (start -5.000127 -3.7) (end -5.000127 5.300025)
  1560. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b5f65597-0844-4717-beaf-05a52f871014))
  1561. (fp_line (start -5.000127 -3.7) (end 4.999873 -3.7)
  1562. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 102bfd53-e191-47f7-b794-e89f733e4083))
  1563. (fp_line (start -5.000127 -3.033985) (end 4.999873 -3.033985)
  1564. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 22a13f0d-e1aa-4119-85d5-204beeb08a27))
  1565. (fp_line (start -5.000127 5.300025) (end 4.999873 5.300025)
  1566. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1e986e1d-85b9-4c66-8324-38a135709e56))
  1567. (fp_line (start -4.952985 4.445034) (end 5.047015 4.445034)
  1568. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1c8fc42d-8b72-416b-ba22-1b34a571c554))
  1569. (fp_line (start -3.569469 -3.7) (end -3.569469 -1.524003)
  1570. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e2a00542-c076-4d93-9fee-f69d257a8a4d))
  1571. (fp_line (start -3.569469 -1.524003) (end -1.524003 -1.524003)
  1572. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ed019abb-277c-49b3-b587-8f989f144e67))
  1573. (fp_line (start -1.524003 -1.524003) (end -1.524003 -3.7)
  1574. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 25306d48-97ad-47d5-b3cb-a04220cd91df))
  1575. (fp_line (start 1.535941 -3.7) (end 1.535941 -1.524003)
  1576. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 45dc3cfa-93a2-40c8-b144-b22001a002b2))
  1577. (fp_line (start 1.535941 -1.524003) (end 3.581407 -1.524003)
  1578. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a9bc92ca-6c96-4a3a-bc35-38ae9acf5b75))
  1579. (fp_line (start 3.581407 -1.524003) (end 3.581407 -3.7)
  1580. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e8702a77-4b71-4e81-b832-3d2c9b869d94))
  1581. (fp_line (start 4.999873 -3.7) (end 4.999873 5.300025)
  1582. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 74482b33-348a-4a21-a90c-e022ea15ced7))
  1583. (fp_circle (center -5.127127 5.426975) (end -5.097155 5.426975)
  1584. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp ffaa81b0-f967-4f28-815d-73cbd29b7a1e))
  1585. (pad "1" thru_hole circle (at -2.5 0 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
  1586. (net 1 "GND") (pinfunction "1") (pintype "unspecified") (tstamp 4bbc52bf-38f9-4b5b-bc7b-00e3daf6a666))
  1587. (pad "2" thru_hole circle (at 2.5 0 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
  1588. (net 87 "Net-(U2-VCC)") (pinfunction "2") (pintype "unspecified") (tstamp b8b4b74d-4226-4721-8fbb-2f77a7527ba1))
  1589. (model "jlc_lib/jlc_footprints/packages3d/CONN-TH_XY300V-A-5.0-2P.step"
  1590. (offset (xyz 0.2120645968 -0.799998388 6.250050906))
  1591. (scale (xyz 1 1 1))
  1592. (rotate (xyz 0 0 0))
  1593. )
  1594. )
  1595. (footprint "jlc_footprints:LED-SMD_4P-L5.0-W5.0-LS5.4-TL-1" (layer "F.Cu")
  1596. (tstamp 534f8443-9a94-4ad7-8416-1c71e8dbf9f9)
  1597. (at 146.5 120.5 90)
  1598. (descr "LED-SMD_4P-L5.0-W5.0-LS5.4-TL-1 footprint")
  1599. (tags "LED-SMD_4P-L5.0-W5.0-LS5.4-TL-1 footprint C2920042")
  1600. (property "LCSC" "C2920042")
  1601. (property "Sheetfile" "pi.kicad_sch")
  1602. (property "Sheetname" "PI")
  1603. (property "ki_keywords" "C2920042")
  1604. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/915abf8b-4178-4d7a-b16d-8120528e8d98")
  1605. (attr smd)
  1606. (fp_text reference "U7" (at -0.5 -3.5 90) (layer "F.SilkS")
  1607. (effects (font (size 1 1) (thickness 0.15)))
  1608. (tstamp 88e7aee7-8252-4b91-9920-b475430a81ef)
  1609. )
  1610. (fp_text value "WS2812E-V5" (at 0.5 3.5 90) (layer "F.Fab")
  1611. (effects (font (size 1 1) (thickness 0.15)))
  1612. (tstamp 852db8d2-6de9-4575-91e3-fc7ff1681a60)
  1613. )
  1614. (fp_line (start -2.539929 -2.540005) (end 2.540081 -2.540005)
  1615. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 935871f9-c334-492f-90b0-03450fc93fcb))
  1616. (fp_line (start -2.539929 -2.431191) (end -2.539929 -2.540005)
  1617. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a1af2385-a71c-4883-94eb-b3be952f4137))
  1618. (fp_line (start -2.539929 0.768809) (end -2.539929 -0.768885)
  1619. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 49afcf72-d26d-4cde-88e0-caa95525162a))
  1620. (fp_line (start -2.539929 2.540005) (end -2.539929 2.43109)
  1621. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8262a0dd-c987-43b5-bc5b-9cb9bc065aae))
  1622. (fp_line (start 2.540081 -2.540005) (end 2.540081 -2.431191)
  1623. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ef43c4e2-85e1-4869-b50d-c84f9b0e72de))
  1624. (fp_line (start 2.540081 -0.768885) (end 2.540081 0.768809)
  1625. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ece76aa8-d37f-46e2-85eb-fdfad6169414))
  1626. (fp_line (start 2.540081 2.43109) (end 2.540081 2.540005)
  1627. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3e84cc2e-e44e-4960-8a3c-537d95247aea))
  1628. (fp_line (start 2.540081 2.540005) (end -2.539929 2.540005)
  1629. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 37c6e089-905d-4b5b-a7e4-ea66eac0a835))
  1630. (fp_circle (center -2.699771 -2.5) (end -2.669799 -2.5)
  1631. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6be1baec-f4ca-4a2a-8f97-fff59e759d41))
  1632. (pad "1" smd rect (at -2.350013 -1.650114 90) (size 1.6 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
  1633. (net 5 "+5V") (pinfunction "VDD") (pintype "unspecified") (tstamp 6391f9cb-ce50-46e6-adab-deb7ea74ede4))
  1634. (pad "2" smd rect (at -2.350013 1.650114 90) (size 1.6 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
  1635. (net 39 "Net-(U7-DO)") (pinfunction "DO") (pintype "unspecified") (tstamp 22629903-e66c-48b8-9014-6fbd8f48d683))
  1636. (pad "3" smd rect (at 2.350013 1.650114 90) (size 1.6 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
  1637. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp 5410b176-a423-4287-aaf4-1b2760651938))
  1638. (pad "4" smd rect (at 2.350013 -1.650114 90) (size 1.6 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
  1639. (net 64 "/PI/LED_Din") (pinfunction "DIN") (pintype "unspecified") (tstamp 632611b0-6794-4f7a-9dba-af7da12ee483))
  1640. (model "jlc_lib/jlc_footprints/packages3d/LED-SMD_4P-L5.0-W5.0-LS5.4-TL-1.step"
  1641. (offset (xyz 0 0 0))
  1642. (scale (xyz 1 1 1))
  1643. (rotate (xyz 0 0 0))
  1644. )
  1645. )
  1646. (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (layer "F.Cu")
  1647. (tstamp 56828855-5a83-4f1d-911d-4458320805fa)
  1648. (at 213.5 52.5)
  1649. (descr "Mounting Hole 3.2mm, M3")
  1650. (tags "mounting hole 3.2mm m3")
  1651. (property "Sheetfile" "dispensy.kicad_sch")
  1652. (property "Sheetname" "")
  1653. (property "ki_description" "Mounting Hole without connection")
  1654. (property "ki_keywords" "mounting hole")
  1655. (path "/8245835b-6904-4b68-a5aa-8efe32ec8b78")
  1656. (attr exclude_from_pos_files)
  1657. (fp_text reference "H12" (at 0 -4.2) (layer "F.SilkS") hide
  1658. (effects (font (size 1 1) (thickness 0.15)))
  1659. (tstamp 3596b0f2-9742-4bcc-b1d2-85a5d759b092)
  1660. )
  1661. (fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab") hide
  1662. (effects (font (size 1 1) (thickness 0.15)))
  1663. (tstamp b9bd80d3-c724-4924-9f53-38442f87b04e)
  1664. )
  1665. (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
  1666. (effects (font (size 1 1) (thickness 0.15)))
  1667. (tstamp ac8f56bd-6df3-422e-9a90-1d4b46abe8f9)
  1668. )
  1669. (fp_circle (center 0 0) (end 3.2 0)
  1670. (stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp b1d6c140-b7d8-440e-82bb-cfe74a77cf6f))
  1671. (fp_circle (center 0 0) (end 3.45 0)
  1672. (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 260f22d9-3d6d-4347-9cc6-5af7a5b3504e))
  1673. (pad "1" thru_hole circle (at 0 0) (size 3.6 3.6) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 905e1a92-dedd-462b-8931-f1726d378c30))
  1674. (pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "F.Cu" "F.Mask") (tstamp 4affa8f0-f2ee-42e8-94f3-bfd37ae6f63b))
  1675. (pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "B.Cu" "B.Mask") (tstamp 22a8b05f-a4d6-4958-9e0d-255a7820aa24))
  1676. )
  1677. (footprint "jlc_footprints:HDR-TH_6P-P2.54-V-F" (layer "F.Cu")
  1678. (tstamp 569fc382-be8e-4371-bb66-c3a5bcc5cacd)
  1679. (at 101 117.310008 -90)
  1680. (descr "HDR-TH_6P-P2.54-V-F footprint")
  1681. (tags "HDR-TH_6P-P2.54-V-F footprint C40877")
  1682. (property "LCSC" "C40877")
  1683. (property "Sheetfile" "dispensy.kicad_sch")
  1684. (property "Sheetname" "")
  1685. (property "ki_keywords" "C40877")
  1686. (path "/e65f24fb-7c5f-4ed4-8ac9-8ee5b2c8b83c")
  1687. (attr through_hole)
  1688. (fp_text reference "H1" (at 6.689992 -2 90) (layer "F.SilkS")
  1689. (effects (font (size 1 1) (thickness 0.15)))
  1690. (tstamp 54ad9ff5-13b7-47f6-ba15-3b5e4023ebfe)
  1691. )
  1692. (fp_text value "IO_ADC" (at 2.689992 -2 90) (layer "F.SilkS")
  1693. (effects (font (size 1 1) (thickness 0.15)))
  1694. (tstamp ba7a6a18-8487-4c9a-9e10-0c05ef6e96ab)
  1695. )
  1696. (fp_line (start -7.849987 -1.249987) (end 7.850013 -1.249987)
  1697. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 735cf5b6-1890-4dc0-ae56-fe5f0343413b))
  1698. (fp_line (start -7.849987 -0.9) (end -7.849987 -1.249987)
  1699. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 47bbe316-8074-4a18-b882-c0ca182d283a))
  1700. (fp_line (start -7.849987 1.249987) (end -7.849987 -0.949987)
  1701. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b9840878-44cc-4e6b-9be1-ccac4c55ab3e))
  1702. (fp_line (start 7.850013 -1.249987) (end 7.850013 1.249987)
  1703. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0f6f7b9f-5c53-4b3c-8a22-735575899bd8))
  1704. (fp_line (start 7.850013 1.249987) (end -7.849987 1.249987)
  1705. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5d19644c-148c-4983-87d4-ffc248731ff8))
  1706. (fp_circle (center -7.869952 1.249936) (end -7.83998 1.249936)
  1707. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 132e8f2b-9410-430a-aca8-5fd78b3592d8))
  1708. (fp_circle (center -6.649987 -1.899924) (end -6.350013 -1.899924)
  1709. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp e32f63e6-5454-4a80-ae2c-f685d5b4e9ec))
  1710. (pad "1" thru_hole rect (at -6.350013 0 270) (size 1.8 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1711. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 47c2bb36-8a08-4dbe-ba0e-5515920bda0e))
  1712. (pad "2" thru_hole circle (at -3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1713. (net 15 "/PI/ADC0") (pinfunction "2") (pintype "unspecified") (tstamp 4b609766-4026-4d9c-af21-8a818a4260b5))
  1714. (pad "3" thru_hole circle (at -1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1715. (net 16 "/PI/ADC1") (pinfunction "3") (pintype "unspecified") (tstamp 2c0c7672-6d65-4b28-86e7-bd09d22993d8))
  1716. (pad "4" thru_hole circle (at 1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1717. (net 17 "/PI/ADC2") (pinfunction "4") (pintype "unspecified") (tstamp ab925b06-4c2d-42d0-88d9-db8dbace1c27))
  1718. (pad "5" thru_hole circle (at 3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1719. (net 18 "/PI/ADC3") (pinfunction "5") (pintype "unspecified") (tstamp 93eb7d0c-4e45-48c1-894f-f580d21c8dc5))
  1720. (pad "6" thru_hole circle (at 6.350013 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  1721. (net 1 "GND") (pinfunction "6") (pintype "unspecified") (tstamp 218bd974-ad02-44f3-b8e8-396e2e201421))
  1722. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_6P-P2.54-V-F.step"
  1723. (offset (xyz -0.0000253999996185 0 -0.0001015999985))
  1724. (scale (xyz 1 1 1))
  1725. (rotate (xyz 0 0 0))
  1726. )
  1727. )
  1728. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  1729. (tstamp 5a6b8d83-da3d-43ce-9953-0e087f011543)
  1730. (at 103.490456 73.784829 90)
  1731. (descr "R0402 footprint")
  1732. (tags "R0402 footprint C279981")
  1733. (property "LCSC" "C144787")
  1734. (property "Resistance" "1MΩ")
  1735. (property "Sheetfile" "dispensy.kicad_sch")
  1736. (property "Sheetname" "")
  1737. (property "ki_keywords" "C144787")
  1738. (path "/8d059a53-268e-4310-b02c-e3cea10095ff")
  1739. (attr smd)
  1740. (fp_text reference "R3" (at 0 -1.5 90) (layer "F.SilkS")
  1741. (effects (font (size 1 1) (thickness 0.15)))
  1742. (tstamp d0965e0e-70f8-4446-9528-2b650d82d83b)
  1743. )
  1744. (fp_text value "1M" (at 0 1.5 90) (layer "F.Fab")
  1745. (effects (font (size 1 1) (thickness 0.15)))
  1746. (tstamp d62cc05e-572c-4900-b807-9609ec04d4a1)
  1747. )
  1748. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  1749. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2de6b141-5763-4f29-9830-2178d1b138d8))
  1750. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  1751. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0730a76e-7469-4d02-b9f0-791bb31929ee))
  1752. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  1753. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bdc0556e-2e0a-4e31-a8bd-c188486fdbc7))
  1754. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  1755. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 81649a8a-b5f8-44a0-9feb-c13631afb1ac))
  1756. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  1757. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fc281a75-666f-4f9f-9a25-741d7c9ca136))
  1758. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  1759. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp cfd39886-a0a3-4ed0-9bb3-8de8b0becad8))
  1760. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  1761. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp cdde99b0-c432-4005-a540-a178fe486eff))
  1762. (pad "1" smd rect (at -0.432817 0 90) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1763. (net 1 "GND") (pinfunction "1") (pintype "unspecified") (tstamp 3425d2fc-a17f-460a-873e-3509285ac357))
  1764. (pad "2" smd rect (at 0.432817 0 90) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1765. (net 45 "Net-(U2-SH1)") (pinfunction "2") (pintype "unspecified") (tstamp e4bc3375-6855-442a-9e59-1613ce0be71f))
  1766. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  1767. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1768. (scale (xyz 1 1 1))
  1769. (rotate (xyz 0 0 0))
  1770. )
  1771. )
  1772. (footprint "jlc_footprints:LED0603-RD" (layer "F.Cu")
  1773. (tstamp 61b699a1-4319-4d07-89b2-8085dced4a34)
  1774. (at 123.169164 80.503429)
  1775. (descr "LED0603-RD footprint")
  1776. (tags "LED0603-RD footprint C84264")
  1777. (property "LCSC" "C84264")
  1778. (property "Sheetfile" "pi.kicad_sch")
  1779. (property "Sheetname" "PI")
  1780. (property "ki_keywords" "C84264")
  1781. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/cd19a50b-53ad-4be5-afc7-0b2338a46f51")
  1782. (attr smd)
  1783. (fp_text reference "LED2" (at -0.049568 1.64755) (layer "F.SilkS")
  1784. (effects (font (size 1 1) (thickness 0.15)))
  1785. (tstamp a06433f7-4c63-424a-ac69-75f7c483ae15)
  1786. )
  1787. (fp_text value "FC-D1608HGK-572C" (at 0.32 -1.35245) (layer "F.Fab")
  1788. (effects (font (size 1 1) (thickness 0.15)))
  1789. (tstamp 70c529c4-2199-49ea-a976-4a0f493e8fe0)
  1790. )
  1791. (fp_line (start -1.489611 -0.454331) (end -1.189662 -0.75428)
  1792. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 46c74c8b-0a84-4790-b293-7c0c1c8c84e2))
  1793. (fp_line (start -1.489611 -0.354178) (end -1.489611 -0.454331)
  1794. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp ef41e71f-d878-4b2a-aabb-2380c7b797e7))
  1795. (fp_line (start -1.489611 -0.354178) (end -1.489611 0.345771)
  1796. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp b72e5388-b469-4961-80ad-c72cb5885746))
  1797. (fp_line (start -1.489611 0.345771) (end -1.489611 0.445796)
  1798. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 2422386a-1485-4174-8e18-7cd5b13f04ed))
  1799. (fp_line (start -1.489611 0.445796) (end -1.189662 0.745847)
  1800. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp feeaf86e-339f-427d-bea7-24798c8512be))
  1801. (fp_line (start -0.139548 -0.75428) (end -1.189662 -0.75428)
  1802. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 97f6f0d3-1a43-47a0-8daf-71c62cc6b804))
  1803. (fp_line (start -0.139548 0.745847) (end -1.189662 0.745847)
  1804. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 7c5b3b7a-17a8-43f7-8148-1c7fb6b2aa40))
  1805. (fp_line (start 0.210465 0.32352) (end -0.119583 -0.006528)
  1806. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 200de761-0a39-4e20-b789-76e52f4d704a))
  1807. (fp_line (start 0.220422 -0.356515) (end 0.220422 -0.346533)
  1808. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 0b40ab22-7191-409b-adc4-37343e715be6))
  1809. (fp_line (start 0.220422 -0.356515) (end 0.220422 0.32352)
  1810. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 916cea29-941f-4d94-b292-6ea974ca6277))
  1811. (fp_line (start 0.220422 -0.346533) (end -0.119583 -0.006528)
  1812. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 02cb8da4-1ddf-416c-9b7b-8b987f978de5))
  1813. (fp_line (start 0.220422 -0.006528) (end -0.119583 -0.006528)
  1814. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp fc0659d0-bc43-4517-bbb0-908d016ef744))
  1815. (fp_line (start 0.220422 0.32352) (end 0.210465 0.32352)
  1816. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp ccf41382-1585-4d23-9628-b0f6c2188abb))
  1817. (fp_line (start 0.240462 -0.756591) (end 1.390475 -0.756591)
  1818. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 2669209b-4630-4864-860f-87c5762dbd72))
  1819. (fp_line (start 0.240462 0.743536) (end 1.390475 0.743536)
  1820. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp e01bdeed-8cf8-473d-9a3f-81ebf6a13f03))
  1821. (fp_line (start 1.390475 -0.75649) (end 1.390475 0.723444)
  1822. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp bc1b9fad-2161-40fc-ace5-2a1ad76b5507))
  1823. (fp_circle (center -0.799467 0.40348) (end -0.769495 0.40348)
  1824. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp ad58ab55-6cc9-4871-ad34-1917493c0321))
  1825. (pad "1" smd rect (at -0.799467 0.003429 90) (size 0.8 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  1826. (net 1 "GND") (pinfunction "-") (pintype "input") (tstamp dfe77688-aaa2-444c-8326-8b52c21768d8))
  1827. (pad "2" smd rect (at 0.799467 -0.003429 90) (size 0.8 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  1828. (net 90 "Net-(LED2-+)") (pinfunction "+") (pintype "input") (tstamp dbb3750c-bb2b-4cc2-a651-63a694d359d5))
  1829. (model "jlc_lib/jlc_footprints/packages3d/LED0603-RD.step"
  1830. (offset (xyz 0 -0.0000253999996185 0.009905999851))
  1831. (scale (xyz 1 1 1))
  1832. (rotate (xyz 0 0 0))
  1833. )
  1834. )
  1835. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  1836. (tstamp 6366cc09-a456-4897-838f-a812baad5e67)
  1837. (at 156.5 101.25746 90)
  1838. (descr "C0402 footprint")
  1839. (tags "C0402 footprint C140675")
  1840. (property "Capacitance" "100nF")
  1841. (property "LCSC" "C105883")
  1842. (property "Sheetfile" "pi.kicad_sch")
  1843. (property "Sheetname" "PI")
  1844. (property "ki_keywords" "C105883")
  1845. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/eb98f349-8407-49cc-909a-b1eed0983b63")
  1846. (attr smd)
  1847. (fp_text reference "C7" (at -2.545085 0 90) (layer "F.SilkS")
  1848. (effects (font (size 1 1) (thickness 0.15)))
  1849. (tstamp 776d70f3-e168-46d0-a731-f0f4eba65dd3)
  1850. )
  1851. (fp_text value "100nF" (at -3.545085 0 90) (layer "F.Fab")
  1852. (effects (font (size 1 1) (thickness 0.15)))
  1853. (tstamp 145ef479-aa8b-4324-a2cd-7c3e377ad955)
  1854. )
  1855. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  1856. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e1d29c79-bf42-4545-a72d-e8f8ab191746))
  1857. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  1858. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5620e297-dc06-4a26-ad2e-4ac1c72e3327))
  1859. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  1860. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6a5dd854-20bb-4a75-923c-534e74ea9612))
  1861. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  1862. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7248d774-b552-46fc-84b3-1d10853fa9ca))
  1863. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  1864. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 021e4646-f56e-4b3e-aabb-50c27b63ea0f))
  1865. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  1866. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6192a54a-788e-411f-90ae-852f921b6361))
  1867. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  1868. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5d58177d-295e-433e-8018-72459641126d))
  1869. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  1870. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e08d2857-fb3c-4d7f-9473-d46bd41c8629))
  1871. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  1872. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bf83c87d-7e9c-4d0a-adaf-edbc9e0cda3d))
  1873. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  1874. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7c7d4504-3c77-4988-bbdc-fbd659093f94))
  1875. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  1876. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp f968fae3-2bc1-4a13-b5cf-2eb27186aa8e))
  1877. (pad "1" smd rect (at -0.545085 0 90) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1878. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp 79a2980d-c2b6-4f1b-986c-6396f3a731a7))
  1879. (pad "2" smd rect (at 0.545085 0 90) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1880. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 546b6afd-60d7-4e4e-b3a3-386c2e19882d))
  1881. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  1882. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1883. (scale (xyz 1 1 1))
  1884. (rotate (xyz 0 0 0))
  1885. )
  1886. )
  1887. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  1888. (tstamp 6987b8b9-fec4-4747-90e7-ef9afce03ea0)
  1889. (at 133.045085 97.302545 180)
  1890. (descr "C0402 footprint")
  1891. (tags "C0402 footprint C140675")
  1892. (property "Capacitance" "27pF")
  1893. (property "LCSC" "C140675")
  1894. (property "Sheetfile" "pi.kicad_sch")
  1895. (property "Sheetname" "PI")
  1896. (property "ki_keywords" "C140675")
  1897. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/8f8afd91-ca83-484a-bb96-b810cae475ff")
  1898. (attr smd)
  1899. (fp_text reference "C9" (at -0.454915 1.5) (layer "F.SilkS")
  1900. (effects (font (size 1 1) (thickness 0.15)))
  1901. (tstamp eb5a037a-8f78-4834-a5d6-626ddaea8dbf)
  1902. )
  1903. (fp_text value "27p" (at -0.455042 1.5) (layer "F.Fab")
  1904. (effects (font (size 1 1) (thickness 0.15)))
  1905. (tstamp ec5b53de-ec6c-4659-9722-d6ece5162fbe)
  1906. )
  1907. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  1908. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5c9bc9bb-fa44-4f39-a062-59766c3737c7))
  1909. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  1910. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5b61e386-3238-443a-8921-ca07066d4720))
  1911. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  1912. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fc5f1cf8-8100-4e42-a14a-e962a0f0536c))
  1913. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  1914. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp db595814-da26-49e0-97ab-386b45258b54))
  1915. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  1916. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 76eb3670-bbf0-4365-b407-4d48c35c065a))
  1917. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  1918. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f044b2e4-ae57-4543-8714-a7f6a876e1c0))
  1919. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  1920. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 32d18a01-c37e-4e56-9987-d382078006cb))
  1921. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  1922. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7dc0ad38-c63d-4895-9941-9d546aacf2a5))
  1923. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  1924. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5ab290a3-93fa-438c-a5ea-6074188df7d0))
  1925. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  1926. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5296553e-8cd0-4817-a44a-a7a0b2f14fd6))
  1927. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  1928. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 139401fe-e531-4f8c-a898-5530478a5cc9))
  1929. (pad "1" smd rect (at -0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1930. (net 1 "GND") (pinfunction "1") (pintype "unspecified") (tstamp 1b339bae-6e1a-492b-939d-5e949ca80b06))
  1931. (pad "2" smd rect (at 0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  1932. (net 7 "Net-(X1-OSC2)") (pinfunction "2") (pintype "unspecified") (tstamp ace8c887-21e1-455e-a03e-6b0ef7153265))
  1933. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  1934. (offset (xyz 0 0.0000253999996185 0.2499359962))
  1935. (scale (xyz 1 1 1))
  1936. (rotate (xyz 0 0 0))
  1937. )
  1938. )
  1939. (footprint "jlc_footprints:HDR-TH_2P-P2.54-V-M-1" (layer "F.Cu")
  1940. (tstamp 6c3dfe28-561f-4b22-9dab-dc851f3ea1eb)
  1941. (at 191.754966 77.907765 180)
  1942. (descr "HDR-TH_2P-P2.54-V-M-1 footprint")
  1943. (tags "HDR-TH_2P-P2.54-V-M-1 footprint C234182")
  1944. (property "LCSC" "C234182")
  1945. (property "Sheetfile" "pi.kicad_sch")
  1946. (property "Sheetname" "PI")
  1947. (property "ki_keywords" "C234182")
  1948. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/9985d561-360d-4ceb-b21e-89e44ac79d43")
  1949. (attr through_hole)
  1950. (fp_text reference "H8" (at -3.729997 0.5 90) (layer "F.SilkS")
  1951. (effects (font (size 1 1) (thickness 0.15)))
  1952. (tstamp 3d26893a-6795-467f-8d4b-3f7f48c65b20)
  1953. )
  1954. (fp_text value "PWR" (at 0.729997 2) (layer "F.Fab")
  1955. (effects (font (size 1 1) (thickness 0.15)))
  1956. (tstamp 1c3e8924-7007-49e1-b19b-874a0a8a144c)
  1957. )
  1958. (fp_line (start -2.540005 -1.270003) (end -2.540005 1.270003)
  1959. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 21f8c263-8bfa-4c7d-97f8-8617a1ffde49))
  1960. (fp_line (start -2.540005 1.270003) (end 2.540005 1.270003)
  1961. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp bf549825-6e40-4b66-88f9-aa5201ecb50e))
  1962. (fp_line (start 2.540005 -1.270003) (end -2.540005 -1.270003)
  1963. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1a2944a2-14b4-4ca0-ba94-0580718b2565))
  1964. (fp_line (start 2.540005 1.270003) (end 2.540005 -1.270003)
  1965. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e16f2b2e-ae05-4b5a-8093-0cd3091b84f2))
  1966. (fp_circle (center -2.540005 1.270003) (end -2.510033 1.270003)
  1967. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 381442d8-de77-47de-b687-19fbbf678d0c))
  1968. (pad "1" thru_hole rect (at -1.270003 0 180) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
  1969. (net 40 "Net-(H8-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp 9e37fa84-5e96-4034-8f7d-dbaaf1cc9d4c))
  1970. (pad "2" thru_hole circle (at 1.270003 0 180) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
  1971. (net 3 "+VDC") (pinfunction "2") (pintype "unspecified") (tstamp 0895c1ac-bd85-4222-a0df-3bd31390f991))
  1972. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_2P-P2.54-V-M-1.step"
  1973. (offset (xyz 0.5000243925 0 0))
  1974. (scale (xyz 1 1 1))
  1975. (rotate (xyz 0 0 0))
  1976. )
  1977. )
  1978. (footprint "jlc_footprints:HDR-TH_6P-P2.54-V-F" (layer "F.Cu")
  1979. (tstamp 6c9ab27c-8978-48db-b3ec-6c0799cba5de)
  1980. (at 106 100.310008 -90)
  1981. (descr "HDR-TH_6P-P2.54-V-F footprint")
  1982. (tags "HDR-TH_6P-P2.54-V-F footprint C40877")
  1983. (property "LCSC" "C40877")
  1984. (property "Sheetfile" "dispensy.kicad_sch")
  1985. (property "Sheetname" "")
  1986. (property "ki_keywords" "C40877")
  1987. (path "/71037b18-2b78-42f7-9b5a-fc8886923f59")
  1988. (attr through_hole)
  1989. (fp_text reference "H2" (at 6.689992 -2.107412 -270) (layer "F.SilkS")
  1990. (effects (font (size 1 1) (thickness 0.15)))
  1991. (tstamp dd44e499-3784-4b4b-ab53-c529eac75023)
  1992. )
  1993. (fp_text value "IO_A" (at 3.689992 -2 90) (layer "F.SilkS")
  1994. (effects (font (size 1 1) (thickness 0.15)))
  1995. (tstamp 6a24d48f-c716-492a-a5af-50929c5a58c2)
  1996. )
  1997. (fp_line (start -7.849987 -1.249987) (end 7.850013 -1.249987)
  1998. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 53560460-f052-4936-85ff-cc63c22bf7d4))
  1999. (fp_line (start -7.849987 -0.9) (end -7.849987 -1.249987)
  2000. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp fbbf4aca-4d32-4a4b-8cd7-fdc2545f9f29))
  2001. (fp_line (start -7.849987 1.249987) (end -7.849987 -0.949987)
  2002. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9930f3c7-25f0-4bd6-a67f-56fa1696099d))
  2003. (fp_line (start 7.850013 -1.249987) (end 7.850013 1.249987)
  2004. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2dd55222-0c70-4469-9655-6bee8111edff))
  2005. (fp_line (start 7.850013 1.249987) (end -7.849987 1.249987)
  2006. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4ce3af39-aad0-4c3a-a1f7-ada953a03070))
  2007. (fp_circle (center -7.869952 1.249936) (end -7.83998 1.249936)
  2008. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8eb693aa-8af9-4419-b8ba-3b086a20f311))
  2009. (fp_circle (center -6.649987 -1.899924) (end -6.350013 -1.899924)
  2010. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 232b49d7-f294-43e9-a623-0db31efd9115))
  2011. (pad "1" thru_hole rect (at -6.350013 0 270) (size 1.8 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2012. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 31b64341-fa7c-46ba-8269-54ebc85b8d86))
  2013. (pad "2" thru_hole circle (at -3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2014. (net 19 "/PI/IO0") (pinfunction "2") (pintype "unspecified") (tstamp 189472e8-5c2e-4da5-aca3-7d38b7044a59))
  2015. (pad "3" thru_hole circle (at -1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2016. (net 20 "/PI/IO1") (pinfunction "3") (pintype "unspecified") (tstamp 0a284fc4-28bf-407d-a07c-8710c45b6b39))
  2017. (pad "4" thru_hole circle (at 1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2018. (net 21 "/PI/IO2") (pinfunction "4") (pintype "unspecified") (tstamp d91922d7-f0b0-400b-96f8-08fdb0c3c5b2))
  2019. (pad "5" thru_hole circle (at 3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2020. (net 22 "/PI/IO3") (pinfunction "5") (pintype "unspecified") (tstamp e927020c-61a1-444f-a4d5-a77f19614df0))
  2021. (pad "6" thru_hole circle (at 6.350013 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2022. (net 1 "GND") (pinfunction "6") (pintype "unspecified") (tstamp 7b37c0bc-9874-49f5-b492-39cd2f9ba9e5))
  2023. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_6P-P2.54-V-F.step"
  2024. (offset (xyz -0.0000253999996185 0 -0.0001015999985))
  2025. (scale (xyz 1 1 1))
  2026. (rotate (xyz 0 0 0))
  2027. )
  2028. )
  2029. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  2030. (tstamp 6f975234-be0c-47a6-bf5b-1384806ca305)
  2031. (at 194.874904 109.82738 180)
  2032. (descr "R0402 footprint")
  2033. (tags "R0402 footprint C279981")
  2034. (property "LCSC" "C406733")
  2035. (property "Resistance" "10kΩ")
  2036. (property "Sheetfile" "dispensy.kicad_sch")
  2037. (property "Sheetname" "")
  2038. (property "ki_keywords" "C406733")
  2039. (path "/f2d2013e-631b-4cf6-93b6-f0431ef0af50")
  2040. (attr smd)
  2041. (fp_text reference "R1" (at -0.125096 1.23238) (layer "F.SilkS")
  2042. (effects (font (size 1 1) (thickness 0.15)))
  2043. (tstamp b8f6646d-2939-4893-a349-31aaa934271e)
  2044. )
  2045. (fp_text value "10K" (at -0.125096 1.23238) (layer "F.Fab")
  2046. (effects (font (size 1 1) (thickness 0.15)))
  2047. (tstamp ca0f4658-648d-4382-b0b6-afe325475435)
  2048. )
  2049. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  2050. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9cf92547-bb93-4184-9146-ccaecf93139e))
  2051. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  2052. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d3f42440-2e95-404a-afac-b2441adb82e6))
  2053. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  2054. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5850e4df-7e31-43a2-9295-f7a4c796e8e3))
  2055. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  2056. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2911625a-57d7-4707-aefd-a976300fd7fa))
  2057. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  2058. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 018e3ba1-fb46-4026-ac16-888d4adfff2f))
  2059. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  2060. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 342d403e-5ee5-4b69-86ca-b4bcca54e8ff))
  2061. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  2062. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp bbfc1a68-b3c4-424e-ad58-38a6ecbbe64b))
  2063. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2064. (net 43 "/PI/I2C_SCL") (pinfunction "1") (pintype "unspecified") (tstamp 92833be1-b680-447e-aad8-075aef8e16bd))
  2065. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2066. (net 2 "+3.3V") (pinfunction "2") (pintype "unspecified") (tstamp 98b54805-50bb-4533-a08a-42a51a355270))
  2067. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  2068. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2069. (scale (xyz 1 1 1))
  2070. (rotate (xyz 0 0 0))
  2071. )
  2072. )
  2073. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  2074. (tstamp 721c586b-f46f-4b3a-a975-059d804aea45)
  2075. (at 165 127 180)
  2076. (descr "R0402 footprint")
  2077. (tags "R0402 footprint C279981")
  2078. (property "LCSC" "C409700")
  2079. (property "Resistance" "5.1kΩ")
  2080. (property "Sheetfile" "pi.kicad_sch")
  2081. (property "Sheetname" "PI")
  2082. (property "ki_keywords" "C409700")
  2083. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/b2a1bdf5-59b3-4621-bcc6-907ce13443a9")
  2084. (attr smd)
  2085. (fp_text reference "R20" (at -0.5 1.5) (layer "F.SilkS")
  2086. (effects (font (size 1 1) (thickness 0.15)))
  2087. (tstamp 0e4e4946-d60e-4731-ad43-b9eeb8449983)
  2088. )
  2089. (fp_text value "5K1" (at -0.5 3) (layer "F.Fab")
  2090. (effects (font (size 1 1) (thickness 0.15)))
  2091. (tstamp c88f218e-113f-43d2-8b73-6f92d003a0e1)
  2092. )
  2093. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  2094. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2d091b74-59f1-4f09-96fb-482119e1c7f2))
  2095. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  2096. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 117ea36a-0388-47e7-9a94-7c5eef8980fe))
  2097. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  2098. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c1d2ac0f-627f-47dc-bc79-a626b54c4c8d))
  2099. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  2100. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2e3bdbaa-a95e-4ef3-a14a-1d67c8d76932))
  2101. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  2102. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6b36bd5d-897a-4063-b628-72562100cac2))
  2103. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  2104. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 40bbf31c-40c8-4032-804a-f541400a3848))
  2105. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  2106. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 63473115-4411-4912-aded-48bcbb9c2d90))
  2107. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2108. (net 62 "Net-(U15-CC1)") (pinfunction "1") (pintype "unspecified") (tstamp 263618b9-943e-4934-b321-4a07880c89b8))
  2109. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2110. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp df3ba27c-3c22-4368-9a7b-473b0050cfbb))
  2111. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  2112. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2113. (scale (xyz 1 1 1))
  2114. (rotate (xyz 0 0 0))
  2115. )
  2116. )
  2117. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  2118. (tstamp 77e43af8-564f-4c0c-a21c-206044adf7cc)
  2119. (at 141.5 97.802545 90)
  2120. (descr "C0402 footprint")
  2121. (tags "C0402 footprint C140675")
  2122. (property "Capacitance" "100nF")
  2123. (property "LCSC" "C105883")
  2124. (property "Sheetfile" "pi.kicad_sch")
  2125. (property "Sheetname" "PI")
  2126. (property "ki_keywords" "C105883")
  2127. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/e8aef277-45c7-424c-bba7-792762627f4a")
  2128. (attr smd)
  2129. (fp_text reference "C18" (at 3 0 90) (layer "F.SilkS")
  2130. (effects (font (size 1 1) (thickness 0.15)))
  2131. (tstamp bec818b7-d5d4-4fed-8b5c-36bd6d6e3ad9)
  2132. )
  2133. (fp_text value "100nF" (at 3.5 0 90) (layer "F.Fab")
  2134. (effects (font (size 1 1) (thickness 0.15)))
  2135. (tstamp af46ca4c-be53-47bb-a516-8bc5f0333389)
  2136. )
  2137. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  2138. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp dc755383-e7be-4246-bf4a-a2c31b612287))
  2139. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  2140. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 88f4e7de-9122-4aa5-95cb-6a650e15ab89))
  2141. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  2142. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2b1ed21d-c217-45f2-856f-46588130b8f7))
  2143. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  2144. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b5b4b3e8-cbe4-4cae-8a03-c49db0d94ced))
  2145. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  2146. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a01bac03-b155-477d-9067-6c6b2f1c04bb))
  2147. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  2148. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a2e1ba32-fd20-4fc5-80ba-2fc0353576dd))
  2149. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  2150. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1d5d6b14-faea-4b7a-a55b-4c15e6521c0b))
  2151. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  2152. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 07f3e461-5535-468a-befe-853fdabf2b96))
  2153. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  2154. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 55310edc-8cfb-49d6-b366-65369a1ce2e7))
  2155. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  2156. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1bbffca2-1734-4980-8377-e4c684cf6d65))
  2157. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  2158. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 577a75ff-e477-4b2f-8aaf-2da615930385))
  2159. (pad "1" smd rect (at -0.545085 0 90) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2160. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp e0065b81-29ed-4761-a948-96305b133df5))
  2161. (pad "2" smd rect (at 0.545085 0 90) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2162. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 9b382322-fe81-4862-8a46-bcf992de452d))
  2163. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  2164. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2165. (scale (xyz 1 1 1))
  2166. (rotate (xyz 0 0 0))
  2167. )
  2168. )
  2169. (footprint "jlc_footprints:USB-C-SMD_TYPE-C-USB-18" (layer "F.Cu")
  2170. (tstamp 792ea401-2c67-4c00-9aea-2da50899a602)
  2171. (at 166.5 133)
  2172. (descr "USB-C-SMD_TYPE-C-USB-18 footprint")
  2173. (tags "USB-C-SMD_TYPE-C-USB-18 footprint C134092")
  2174. (property "LCSC" "C134092")
  2175. (property "Sheetfile" "pi.kicad_sch")
  2176. (property "Sheetname" "PI")
  2177. (property "ki_keywords" "C134092")
  2178. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/727ed3a5-ed8c-4c31-8ce4-a435d7fee889")
  2179. (attr through_hole)
  2180. (fp_text reference "U15" (at -8.5 -3.197455 90) (layer "F.SilkS")
  2181. (effects (font (size 1 1) (thickness 0.15)))
  2182. (tstamp 9924dfbf-b60a-4da8-bda7-0cd1d685c1db)
  2183. )
  2184. (fp_text value "USB-C" (at -6 2 90) (layer "F.Fab")
  2185. (effects (font (size 1 1) (thickness 0.15)))
  2186. (tstamp 45cef02d-a2a8-44ac-a317-15b97af8029e)
  2187. )
  2188. (fp_line (start -4.31999 1.428829) (end -4.31999 -1.118821)
  2189. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b6e43463-cd59-4662-86bd-93854b2919ad))
  2190. (fp_line (start -4.31999 4.680036) (end -4.31999 4.391085)
  2191. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 43881247-c75d-4409-b227-206f60c5d56f))
  2192. (fp_line (start -3.4889 -2.474981) (end -3.376378 -2.474981)
  2193. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4948e516-d163-4ec6-bcf8-f59f4f558054))
  2194. (fp_line (start -0.121514 -2.474981) (end 0.125654 -2.474981)
  2195. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c45d1d68-0e38-4f64-850c-1b3b5640acdb))
  2196. (fp_line (start 3.378486 -2.474981) (end 3.4889 -2.474981)
  2197. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp efa52582-ddff-49fa-9730-fe498653bd56))
  2198. (fp_line (start 4.31999 -1.118821) (end 4.31999 1.428829)
  2199. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5267d2b6-3827-4c5a-aea8-23355a2f0ac0))
  2200. (fp_line (start 4.31999 4.391085) (end 4.31999 4.680036)
  2201. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5f9c03dd-0966-4631-9bf0-273d4630184d))
  2202. (fp_line (start 4.31999 4.680036) (end -4.31999 4.680036)
  2203. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e3d521f2-9e50-40bc-8791-571f7eb0e7aa))
  2204. (fp_circle (center -4.480061 -3.025019) (end -4.450089 -3.025019)
  2205. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp eb5dfe3d-d42d-417f-8b39-7109ac7c9cd3))
  2206. (fp_circle (center -3.459995 -3.510008) (end -3.309982 -3.510008)
  2207. (stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0d78c53d-016e-41df-87db-9a32ef73b326))
  2208. (fp_circle (center -3.459995 -3.510008) (end -3.309982 -3.510008)
  2209. (stroke (width 0.3) (type solid)) (fill none) (layer "F.Fab") (tstamp 679f9bae-0524-406f-8451-1d9e257e9d6c))
  2210. (pad "0" thru_hole oval (at -4.320041 -2.449962) (size 1 2.1) (drill oval 0.6 1.6) (layers "*.Cu" "*.Mask")
  2211. (net 61 "/PI/USBC.SHIELD") (pinfunction "0") (pintype "unspecified") (tstamp 1a9068e4-e7de-42c6-a37d-d2cead8df052))
  2212. (pad "0" thru_hole oval (at -4.320041 2.909957) (size 1 2.6) (drill oval 0.6 2.099975) (layers "*.Cu" "*.Mask")
  2213. (net 61 "/PI/USBC.SHIELD") (pinfunction "0") (pintype "unspecified") (tstamp 4ee06546-fa57-4534-8eff-8de5208de896))
  2214. (pad "0" thru_hole oval (at 4.320041 -2.449962) (size 1 2.1) (drill oval 0.6 1.6) (layers "*.Cu" "*.Mask")
  2215. (net 61 "/PI/USBC.SHIELD") (pinfunction "0") (pintype "unspecified") (tstamp d9c8859d-27b7-4b60-bccf-ac0c1f3b00a3))
  2216. (pad "0" thru_hole oval (at 4.320041 2.909957) (size 1 2.6) (drill oval 0.6 2.1) (layers "*.Cu" "*.Mask")
  2217. (net 61 "/PI/USBC.SHIELD") (pinfunction "0") (pintype "unspecified") (tstamp ffb8cd06-3740-49b1-a3ff-f952c73fb149))
  2218. (pad "A1" smd rect (at -3 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2219. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp b9a52ee8-74ab-4f33-8fdd-2a8c133dc384))
  2220. (pad "A2" smd rect (at -2.499873 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2221. (net 77 "unconnected-(U15-TX1+-PadA2)") (pinfunction "TX1+") (pintype "unspecified+no_connect") (tstamp 0dff174a-4c65-48e0-b1d1-6b9199639d8c))
  2222. (pad "A3" smd rect (at -2 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2223. (net 78 "unconnected-(U15-TX1--PadA3)") (pinfunction "TX1-") (pintype "unspecified+no_connect") (tstamp f027ec77-f31c-4905-b3f6-70822b329ef3))
  2224. (pad "A4" smd rect (at -1.499873 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2225. (net 76 "/PI/USBC.VBUS") (pinfunction "VBUS") (pintype "unspecified") (tstamp a034d4ef-21bb-42ae-a7b3-ad801b4da3c5))
  2226. (pad "A5" smd rect (at -1 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2227. (net 62 "Net-(U15-CC1)") (pinfunction "CC1") (pintype "unspecified") (tstamp c1ffe652-54fc-48df-aea3-f9e6ce6ec8cf))
  2228. (pad "A6" smd rect (at -0.499873 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2229. (net 55 "/PI/USBC.DP") (pinfunction "D+") (pintype "unspecified") (tstamp 9d31e4aa-3d79-4747-a4ce-f439e25ff30a))
  2230. (pad "A7" smd rect (at 0.500127 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2231. (net 57 "/PI/USBC.DM") (pinfunction "D-") (pintype "unspecified") (tstamp bf080044-ac06-46de-aacb-52f9229a1918))
  2232. (pad "A8" smd rect (at 1 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2233. (net 79 "unconnected-(U15-SBU1-PadA8)") (pinfunction "SBU1") (pintype "unspecified+no_connect") (tstamp 048335bf-fab1-4a74-b48f-55df84b27f3c))
  2234. (pad "A9" smd rect (at 1.500127 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2235. (net 76 "/PI/USBC.VBUS") (pinfunction "VBUS") (pintype "unspecified") (tstamp b573beeb-57f4-43df-bf99-29450cafc555))
  2236. (pad "A10" smd rect (at 2 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2237. (net 80 "unconnected-(U15-RX2--PadA10)") (pinfunction "RX2-") (pintype "unspecified+no_connect") (tstamp fbfefe5d-8904-4efb-80f9-f3f5d3c852e7))
  2238. (pad "A11" smd rect (at 2.500127 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2239. (net 81 "unconnected-(U15-RX2+-PadA11)") (pinfunction "RX2+") (pintype "unspecified+no_connect") (tstamp 050b78bf-79f0-4235-99e5-2d5eef92149b))
  2240. (pad "A12" smd rect (at 3 -2.909957) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  2241. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp c1650bab-08e2-47d1-8dcb-7667ca163da9))
  2242. (pad "B1" smd rect (at 3.100076 -1.559944) (size 1 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2243. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp a6ea19a8-fbd6-4e0e-818c-68f70db0a2aa))
  2244. (pad "B2" smd rect (at 2.249936 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2245. (net 86 "unconnected-(U15-TX2+-PadB2)") (pinfunction "TX2+") (pintype "unspecified+no_connect") (tstamp 8b698249-1d94-4d4f-a4b5-8a6aa88fee96))
  2246. (pad "B3" smd rect (at 1.750064 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2247. (net 85 "unconnected-(U15-TX2--PadB3)") (pinfunction "TX2-") (pintype "unspecified+no_connect") (tstamp 64512de3-2f39-4752-8e7e-52691ff34477))
  2248. (pad "B4" smd rect (at 1.249936 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2249. (net 76 "/PI/USBC.VBUS") (pinfunction "VBUS") (pintype "unspecified") (tstamp d85c6a3f-2812-48f6-9d8d-e29090d52583))
  2250. (pad "B5" smd rect (at 0.750064 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2251. (net 59 "Net-(U15-CC2)") (pinfunction "CC2") (pintype "unspecified") (tstamp 77356f00-a6ac-4fbb-a20b-520afd63a6e6))
  2252. (pad "B6" smd rect (at 0.249936 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2253. (net 55 "/PI/USBC.DP") (pinfunction "D+") (pintype "unspecified") (tstamp 12b5c66d-4e31-4c9a-8bf1-1f66f5ee121a))
  2254. (pad "B7" smd rect (at -0.249936 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2255. (net 57 "/PI/USBC.DM") (pinfunction "D-") (pintype "unspecified") (tstamp 060503fc-5264-445c-8396-ffde696934cc))
  2256. (pad "B8" smd rect (at -0.750064 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2257. (net 84 "unconnected-(U15-SBU2-PadB8)") (pinfunction "SBU2") (pintype "unspecified+no_connect") (tstamp e03044de-4d68-4221-99b2-1e988b0ed61b))
  2258. (pad "B9" smd rect (at -1.249936 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2259. (net 76 "/PI/USBC.VBUS") (pinfunction "VBUS") (pintype "unspecified") (tstamp 11f5c663-d3de-444e-9655-db3ba45d754a))
  2260. (pad "B10" smd rect (at -1.750064 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2261. (net 83 "unconnected-(U15-RX1--PadB10)") (pinfunction "RX1-") (pintype "unspecified+no_connect") (tstamp 37bd72cb-bc45-4346-b609-982dead618b4))
  2262. (pad "B11" smd rect (at -2.249936 -1.559944) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2263. (net 82 "unconnected-(U15-RX1+-PadB11)") (pinfunction "RX1+") (pintype "unspecified+no_connect") (tstamp d531484a-dfc7-435a-a359-a2f388e4f5ef))
  2264. (pad "B12" smd rect (at -3.100076 -1.559944) (size 1 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
  2265. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp 282cb106-6da8-4451-8b02-cac3fa3a4e1e))
  2266. (model "jlc_lib/jlc_footprints/packages3d/USB-C-SMD_TYPE-C-USB-18.step"
  2267. (offset (xyz 0 -0.9230359861 0))
  2268. (scale (xyz 1 1 1))
  2269. (rotate (xyz 0 0 -180))
  2270. )
  2271. )
  2272. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  2273. (tstamp 7cd69e10-ddb1-46d8-a803-237fcf0849f0)
  2274. (at 150.5 106.802545 -90)
  2275. (descr "C0402 footprint")
  2276. (tags "C0402 footprint C140675")
  2277. (property "Capacitance" "1uF")
  2278. (property "LCSC" "C83063")
  2279. (property "Sheetfile" "pi.kicad_sch")
  2280. (property "Sheetname" "PI")
  2281. (property "ki_keywords" "C83063")
  2282. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/72c70bef-784e-45ae-883f-125f83135d46")
  2283. (attr smd)
  2284. (fp_text reference "C12" (at 3 0 90) (layer "F.SilkS")
  2285. (effects (font (size 1 1) (thickness 0.15)))
  2286. (tstamp a13c2480-b3d2-4eef-a969-85cb59c611b6)
  2287. )
  2288. (fp_text value "1uF" (at 3 0 90) (layer "F.Fab")
  2289. (effects (font (size 1 1) (thickness 0.15)))
  2290. (tstamp fff6c20d-3053-481d-bf82-68074aa37477)
  2291. )
  2292. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  2293. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4cb58cb7-fb71-4c8d-b11b-0d46d3bb8302))
  2294. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  2295. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f649fa37-c8a3-43db-8b3d-f3dbe9ab5593))
  2296. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  2297. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5f86c268-e1ff-4e09-b0c4-32e3aaf66170))
  2298. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  2299. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5b038f21-8450-407f-8ea6-e6c955ea9865))
  2300. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  2301. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a00f6cae-48b9-49e7-9fdd-a777d517fcee))
  2302. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  2303. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9f47eb3a-ab66-4a00-89d1-db8597c5f732))
  2304. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  2305. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 039c5535-4c76-437a-b8c4-b440f6127ce6))
  2306. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  2307. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp aebba9b7-79e3-4fd9-bae9-064b44e73a1f))
  2308. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  2309. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b9ceb537-9968-4c87-b8c6-17d08018ad66))
  2310. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  2311. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 93c274d6-e964-4d35-ac92-d9a6b084361f))
  2312. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  2313. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2ebdc094-a2d2-4d45-8bbc-fd125e4d6236))
  2314. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2315. (net 8 "+1V1") (pinfunction "1") (pintype "unspecified") (tstamp 9dab5699-11d3-41e2-9206-6763aaf3d209))
  2316. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2317. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp deb15ffc-555c-485a-9856-d1319fec0adb))
  2318. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  2319. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2320. (scale (xyz 1 1 1))
  2321. (rotate (xyz 0 0 0))
  2322. )
  2323. )
  2324. (footprint "jlc_footprints:OSC-SMD_2P-L5.0-W3.2" (layer "F.Cu")
  2325. (tstamp 7e90db31-469d-46ab-8b26-05d462827540)
  2326. (at 131.5 101.302545 90)
  2327. (descr "OSC-SMD_2P-L5.0-W3.2 footprint")
  2328. (tags "OSC-SMD_2P-L5.0-W3.2 footprint C148313")
  2329. (property "Frequency" "12MHz")
  2330. (property "LCSC" "C148313")
  2331. (property "Sheetfile" "pi.kicad_sch")
  2332. (property "Sheetname" "PI")
  2333. (property "ki_keywords" "C148313")
  2334. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/718b06ea-834e-49ca-8671-61f4a9dd18f1")
  2335. (attr smd)
  2336. (fp_text reference "X1" (at 4.050038 -1 180) (layer "F.SilkS")
  2337. (effects (font (size 1 1) (thickness 0.15)))
  2338. (tstamp f1e252fd-f48b-4a7d-a10f-ac47d603c5be)
  2339. )
  2340. (fp_text value "12MHz" (at 1 -2.5 90) (layer "F.Fab")
  2341. (effects (font (size 1 1) (thickness 0.15)))
  2342. (tstamp bc1bae17-58c4-41eb-9c5d-04b843616211)
  2343. )
  2344. (fp_line (start -3.098806 -1.750064) (end 3.098806 -1.750064)
  2345. (stroke (width 0.18001) (type solid)) (layer "F.SilkS") (tstamp 16eab938-77c1-466c-bc21-3fce22134700))
  2346. (fp_line (start -3.098806 -1.399543) (end -3.098806 -1.750064)
  2347. (stroke (width 0.18001) (type solid)) (layer "F.SilkS") (tstamp e80401dc-a98c-4635-b566-e79e645abf85))
  2348. (fp_line (start -3.098806 1.750064) (end -3.098806 -1.399543)
  2349. (stroke (width 0.18001) (type solid)) (layer "F.SilkS") (tstamp 06e88a6c-fb84-49f2-904c-42192e6a6a55))
  2350. (fp_line (start 3.098806 -1.750064) (end 3.098806 1.750064)
  2351. (stroke (width 0.18001) (type solid)) (layer "F.SilkS") (tstamp 1e1c3ccd-75e0-4d9f-9c0f-fead51fad9a8))
  2352. (fp_line (start 3.098806 1.750064) (end -3.098806 1.750064)
  2353. (stroke (width 0.18001) (type solid)) (layer "F.SilkS") (tstamp 3e751dc9-7e3f-4a11-ad49-bae79d4d25a5))
  2354. (fp_circle (center -2.499873 1.599949) (end -2.469901 1.599949)
  2355. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp bf56efa3-805c-4d3f-83d3-21e808b1e74d))
  2356. (pad "1" smd rect (at -1.949962 0 90) (size 1.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
  2357. (net 6 "Net-(U10-XIN)") (pinfunction "OSC1") (pintype "input") (tstamp 862371f8-750b-4f77-b153-8b8c57bc069a))
  2358. (pad "2" smd rect (at 1.949962 0 90) (size 1.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
  2359. (net 7 "Net-(X1-OSC2)") (pinfunction "OSC2") (pintype "input") (tstamp 3f3f9aaa-d24d-45d2-a275-e0bc52448568))
  2360. (model "jlc_lib/jlc_footprints/packages3d/OSC-SMD_2P-L5.0-W3.2.step"
  2361. (offset (xyz 0 -0.0002031999969 0))
  2362. (scale (xyz 1 1 1))
  2363. (rotate (xyz 0 0 0))
  2364. )
  2365. )
  2366. (footprint "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (layer "F.Cu")
  2367. (tstamp 7ed29c74-4ad5-44a6-944e-50af64459f16)
  2368. (at 159.5 100.302545 -90)
  2369. (descr "SW-SMD_L6.1-W3.6-LS6.6 footprint")
  2370. (tags "SW-SMD_L6.1-W3.6-LS6.6 footprint C520861")
  2371. (property "LCSC" "C520861")
  2372. (property "Sheetfile" "pi.kicad_sch")
  2373. (property "Sheetname" "PI")
  2374. (property "ki_keywords" "C520861")
  2375. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/9b31ba75-4d95-4113-b8b5-b8c144c13a9f")
  2376. (attr smd)
  2377. (fp_text reference "SW1" (at 5 1.5 90) (layer "F.SilkS")
  2378. (effects (font (size 1 1) (thickness 0.15)))
  2379. (tstamp 111017e1-f163-4ca4-b47d-7632b8e2f444)
  2380. )
  2381. (fp_text value "BOOTSEL" (at 0 -2.5 90) (layer "F.Fab")
  2382. (effects (font (size 1 1) (thickness 0.15)))
  2383. (tstamp 8b6ee1cf-7a1c-4538-86dc-95fc0c57a118)
  2384. )
  2385. (fp_line (start -3.049987 -1.8) (end 3.050013 -1.8)
  2386. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ad2df36d-fca3-4c67-a3d1-61dcc15339b6))
  2387. (fp_line (start -3.049987 -0.666624) (end -3.049987 -1.8)
  2388. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1b61ad9e-b7a4-4e43-b4e1-8a306795b823))
  2389. (fp_line (start -3.049987 1.8) (end -3.049987 0.66665)
  2390. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 91d3b81f-a5c5-46ce-8352-b8612cc87339))
  2391. (fp_line (start -1.975006 -1.124968) (end -1.975006 1.125019)
  2392. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 54d932e3-49d8-4977-aeac-45bfe85c4b62))
  2393. (fp_line (start -1.975006 1.125019) (end 1.975006 1.125019)
  2394. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 858b0dbb-c07c-43a8-ac62-d77c61f34a4f))
  2395. (fp_line (start 1.975006 -1.124968) (end -1.975006 -1.124968)
  2396. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 723325bc-9adb-4be8-ba0c-9034ad0462f7))
  2397. (fp_line (start 1.975006 1.125019) (end 1.975006 -1.124968)
  2398. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 908311d3-a83e-4bac-a7b6-6c46334f7c69))
  2399. (fp_line (start 3.050013 -1.8) (end 3.050013 -0.666624)
  2400. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2c983f7b-4378-451e-8f59-0b184006bfb9))
  2401. (fp_line (start 3.050013 0.66665) (end 3.050013 1.8)
  2402. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 39e636c2-82cd-447a-8fe4-ea3875ca1631))
  2403. (fp_line (start 3.050013 1.8) (end -3.049987 1.8)
  2404. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5043d7c3-c34c-4849-aa3c-0fb9e88dad65))
  2405. (fp_circle (center -3.299416 -1.8) (end -3.269418 -1.8)
  2406. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2dc45f30-db3c-42b8-af7d-3bfa9ac46b26))
  2407. (pad "1" smd rect (at -3.217424 0 270) (size 2 1) (layers "F.Cu" "F.Paste" "F.Mask")
  2408. (net 47 "Net-(R5-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp 8d186729-e12d-4b24-a0bc-cfb437e50f1a))
  2409. (pad "2" smd rect (at 3.217424 0 270) (size 2 1) (layers "F.Cu" "F.Paste" "F.Mask")
  2410. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp bdda1b39-75cd-4fd2-b0f0-b0bbefe17c16))
  2411. (model "jlc_lib/jlc_footprints/packages3d/SW-SMD_L6.1-W3.6-LS6.6.step"
  2412. (offset (xyz 0 0 0))
  2413. (scale (xyz 1 1 1))
  2414. (rotate (xyz 0 0 0))
  2415. )
  2416. )
  2417. (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (layer "F.Cu")
  2418. (tstamp 80cfa295-db11-4a10-994d-52f463f97a79)
  2419. (at 98.5 52.5)
  2420. (descr "Mounting Hole 3.2mm, M3")
  2421. (tags "mounting hole 3.2mm m3")
  2422. (property "Sheetfile" "dispensy.kicad_sch")
  2423. (property "Sheetname" "")
  2424. (property "ki_description" "Mounting Hole without connection")
  2425. (property "ki_keywords" "mounting hole")
  2426. (path "/00bf0cda-b8c6-4bc8-971a-693844a1e1d3")
  2427. (attr exclude_from_pos_files)
  2428. (fp_text reference "H11" (at 0 -4.2) (layer "F.SilkS") hide
  2429. (effects (font (size 1 1) (thickness 0.15)))
  2430. (tstamp 61e183a4-8903-46b8-b12f-39c3999344aa)
  2431. )
  2432. (fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab") hide
  2433. (effects (font (size 1 1) (thickness 0.15)))
  2434. (tstamp 718d5c3d-8c0c-4db2-9f62-2020e4e4bcce)
  2435. )
  2436. (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
  2437. (effects (font (size 1 1) (thickness 0.15)))
  2438. (tstamp 2dece7bd-f756-4a46-a476-42ecd6d6bbf4)
  2439. )
  2440. (fp_circle (center 0 0) (end 3.2 0)
  2441. (stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 7fbfe12d-0026-4d55-afd7-3f26a303b492))
  2442. (fp_circle (center 0 0) (end 3.45 0)
  2443. (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 62fa68bb-3f47-4162-be05-9038400559bd))
  2444. (pad "1" thru_hole circle (at 0 0) (size 3.6 3.6) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 52d983ed-1c3b-4899-ae64-b78f9c8769fc))
  2445. (pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "F.Cu" "F.Mask") (tstamp 2261a66e-9662-466e-8894-18c8ea7a6ed8))
  2446. (pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "B.Cu" "B.Mask") (tstamp ec4b5c3c-7566-47e1-bfc7-0a1944b957f0))
  2447. )
  2448. (footprint "jlc_footprints:TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR" (layer "F.Cu")
  2449. (tstamp 828c0870-3a88-4a80-8c58-3aa8aed0c9fa)
  2450. (at 165.507094 69.51762 180)
  2451. (descr "TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR footprint")
  2452. (tags "TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR footprint C194472")
  2453. (property "LCSC" "C194472")
  2454. (property "Sheetfile" "psu_lm2576.kicad_sch")
  2455. (property "Sheetname" "PI_PSU")
  2456. (property "ki_keywords" "C194472")
  2457. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876/e2ea5dce-aadc-4b92-9967-8de923c62659")
  2458. (attr smd)
  2459. (fp_text reference "U16" (at 0.316612 -6) (layer "F.SilkS")
  2460. (effects (font (size 1 1) (thickness 0.15)))
  2461. (tstamp 7f8e7e89-8986-4481-a48a-f95acc39c618)
  2462. )
  2463. (fp_text value "LM2576S-5_0_TR" (at -10.183388 0 90) (layer "F.Fab")
  2464. (effects (font (size 1 1) (thickness 0.15)))
  2465. (tstamp 3b9011d6-2f2e-4012-a7fa-e8d5cee83e39)
  2466. )
  2467. (fp_line (start -1.115596 -5.091212) (end 0.958192 -5.091212)
  2468. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6d00cd1a-a15f-41d4-af1e-4c69941a2eed))
  2469. (fp_line (start -1.115596 5.091212) (end 0.958192 5.091212)
  2470. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6aea7df7-6eee-4fc0-ab47-abac90c177f4))
  2471. (fp_line (start 0.958192 5.091212) (end 0.958192 -5.091212)
  2472. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 51750883-3b03-4823-8ac6-075504de37f2))
  2473. (fp_circle (center 5.800102 5.014986) (end 5.830074 5.014986)
  2474. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 4e095603-6dac-4969-93b4-87ad639714e9))
  2475. (fp_circle (center 6.350013 3.429007) (end 6.549911 3.429007)
  2476. (stroke (width 0.4) (type solid)) (fill none) (layer "F.Fab") (tstamp 50412a0c-fc06-45de-9de2-3279063b8058))
  2477. (pad "1" smd rect (at 5.183388 3.400051 180) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  2478. (net 3 "+VDC") (pinfunction "VIN") (pintype "power_in") (tstamp bd361044-a9d5-4539-acff-180e3f84d7c0))
  2479. (pad "2" smd rect (at 5.183388 1.700025 180) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  2480. (net 14 "Net-(U16-OUT)") (pinfunction "OUT") (pintype "power_in") (tstamp 7a18125b-295f-48c4-b3a8-962f435333cc))
  2481. (pad "3" smd rect (at 5.183388 0 180) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  2482. (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp dcfab14d-d664-4bd7-ae76-aed49ff9055e))
  2483. (pad "4" smd rect (at 5.183388 -1.700025 180) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  2484. (net 12 "/PI/PI_PSU/Vout") (pinfunction "FB") (pintype "unspecified") (tstamp 7db626da-10a2-4fab-8e6a-53c09d72128c))
  2485. (pad "5" smd rect (at 5.183388 -3.400051 180) (size 3.358547 1.01999) (layers "F.Cu" "F.Paste" "F.Mask")
  2486. (net 1 "GND") (pinfunction "ON#/OFF") (pintype "unspecified") (tstamp 2582ae3d-26b2-44bf-8811-f295ae51911b))
  2487. (pad "6" smd rect (at -5.183388 0 180) (size 7.830556 10.431217) (layers "F.Cu" "F.Paste" "F.Mask")
  2488. (net 1 "GND") (pinfunction "TAB") (pintype "power_in") (tstamp ecaa0b96-bf0c-42b4-b464-42820503a589))
  2489. (model "jlc_lib/jlc_footprints/packages3d/TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR.step"
  2490. (offset (xyz -1.31800598 -2.796489158 0.01473199978))
  2491. (scale (xyz 1 1 1))
  2492. (rotate (xyz 0 0 -90))
  2493. )
  2494. )
  2495. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  2496. (tstamp 8a19ab5b-ade6-4a70-977e-41d808254161)
  2497. (at 134.5 108.802545 -90)
  2498. (descr "R0402 footprint")
  2499. (tags "R0402 footprint C279981")
  2500. (property "LCSC" "C279981")
  2501. (property "Resistance" "1kΩ")
  2502. (property "Sheetfile" "pi.kicad_sch")
  2503. (property "Sheetname" "PI")
  2504. (property "ki_keywords" "C279981")
  2505. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/b5dd87c9-3aed-41c3-b5b2-c346a4538b52")
  2506. (attr smd)
  2507. (fp_text reference "R11" (at 2.5 0 90) (layer "F.SilkS")
  2508. (effects (font (size 1 1) (thickness 0.15)))
  2509. (tstamp 7d8a6cf7-ae8d-4b51-950c-12ea23ef0a4b)
  2510. )
  2511. (fp_text value "1K" (at 2 0 90) (layer "F.Fab")
  2512. (effects (font (size 1 1) (thickness 0.15)))
  2513. (tstamp a350b375-c7b8-4517-adbd-2450720c5147)
  2514. )
  2515. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  2516. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ed24dc84-c84f-4716-9450-8d1a9f40ebe2))
  2517. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  2518. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4da8daa2-84f0-47c3-8403-0e9ea93e5e88))
  2519. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  2520. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 56411105-cf17-4b05-adb2-c2826d11abdb))
  2521. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  2522. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6c1d2144-d461-49a2-9fae-53811dcd6755))
  2523. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  2524. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5f511074-bcef-4167-9fea-3fb98964c265))
  2525. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  2526. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 123e9eb6-1858-46ad-9fd5-976779de00aa))
  2527. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  2528. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0ab09520-f3df-4afa-b500-b102612ff74c))
  2529. (pad "1" smd rect (at -0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2530. (net 52 "Net-(U10-RUN)") (pinfunction "1") (pintype "unspecified") (tstamp 60016079-1357-4599-9b9c-07c516cd334f))
  2531. (pad "2" smd rect (at 0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2532. (net 53 "Net-(R11-Pad2)") (pinfunction "2") (pintype "unspecified") (tstamp a7c0a1dd-bf46-485b-bf0d-e8bd65e26757))
  2533. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  2534. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2535. (scale (xyz 1 1 1))
  2536. (rotate (xyz 0 0 0))
  2537. )
  2538. )
  2539. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  2540. (tstamp 8ea98b80-72ea-4286-8b80-22417e62b5b0)
  2541. (at 131.567183 105.302545)
  2542. (descr "R0402 footprint")
  2543. (tags "R0402 footprint C279981")
  2544. (property "LCSC" "C279981")
  2545. (property "Resistance" "1kΩ")
  2546. (property "Sheetfile" "pi.kicad_sch")
  2547. (property "Sheetname" "PI")
  2548. (property "ki_keywords" "C279981")
  2549. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/66b274df-45b4-418b-b61d-22803085acef")
  2550. (attr smd)
  2551. (fp_text reference "R12" (at -2.567056 0) (layer "F.SilkS")
  2552. (effects (font (size 1 1) (thickness 0.15)))
  2553. (tstamp 1e635c0d-8717-4110-becd-9dd93be16d89)
  2554. )
  2555. (fp_text value "1K" (at -2.067183 0) (layer "F.Fab")
  2556. (effects (font (size 1 1) (thickness 0.15)))
  2557. (tstamp 88525733-fba3-4591-9a75-afe5ce954f2a)
  2558. )
  2559. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  2560. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1951eadc-8dc1-4976-a07b-cf75caaf0016))
  2561. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  2562. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3074c5dd-f130-4b94-b2a1-a653edd6704c))
  2563. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  2564. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a3ee9834-0e92-4b00-93d2-f21ec837f891))
  2565. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  2566. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 226abe06-f55d-481c-8e51-c3dff3bae646))
  2567. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  2568. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 86156e91-29b6-4826-b14b-db233d19412a))
  2569. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  2570. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 28af4587-c352-4131-b4a4-8843b7419761))
  2571. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  2572. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp b39b2cea-e0c9-4640-8af3-04f65d7a0969))
  2573. (pad "1" smd rect (at -0.432817 0) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2574. (net 7 "Net-(X1-OSC2)") (pinfunction "1") (pintype "unspecified") (tstamp c9a55b48-5f5f-4154-ba58-0d4f35b16f5d))
  2575. (pad "2" smd rect (at 0.432817 0) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2576. (net 54 "Net-(U10-XOUT)") (pinfunction "2") (pintype "unspecified") (tstamp f97695b8-0ac3-42a4-80e4-94d78fb91d2b))
  2577. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  2578. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2579. (scale (xyz 1 1 1))
  2580. (rotate (xyz 0 0 0))
  2581. )
  2582. )
  2583. (footprint "jlc_footprints:HDR-TH_6P-P2.54-V-F" (layer "F.Cu")
  2584. (tstamp 909f5551-d7ff-48d6-93d9-421af15baa43)
  2585. (at 101 100.310008 -90)
  2586. (descr "HDR-TH_6P-P2.54-V-F footprint")
  2587. (tags "HDR-TH_6P-P2.54-V-F footprint C40877")
  2588. (property "LCSC" "C40877")
  2589. (property "Sheetfile" "dispensy.kicad_sch")
  2590. (property "Sheetname" "")
  2591. (property "ki_keywords" "C40877")
  2592. (path "/e725c634-79d8-4c2e-b902-16ed4d482fb5")
  2593. (attr through_hole)
  2594. (fp_text reference "H3" (at 6.689992 -2.107412 -270) (layer "F.SilkS")
  2595. (effects (font (size 1 1) (thickness 0.15)))
  2596. (tstamp 9e33163b-5ad2-46d9-b479-856593b5c5bf)
  2597. )
  2598. (fp_text value "IO_B" (at 3.689992 -2 90) (layer "F.SilkS")
  2599. (effects (font (size 1 1) (thickness 0.15)))
  2600. (tstamp f4606f15-a856-41c9-8e83-072fd277ebde)
  2601. )
  2602. (fp_line (start -7.849987 -1.249987) (end 7.850013 -1.249987)
  2603. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 26ad81da-3c3c-4bd1-9a2a-e1c3e12796d2))
  2604. (fp_line (start -7.849987 -0.9) (end -7.849987 -1.249987)
  2605. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp d7df9243-37ef-4a4a-9a04-bf0f9d031e24))
  2606. (fp_line (start -7.849987 1.249987) (end -7.849987 -0.949987)
  2607. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 212ddf52-1b3e-4a9b-aa3a-0dac98ad6f81))
  2608. (fp_line (start 7.850013 -1.249987) (end 7.850013 1.249987)
  2609. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 13351136-4ad6-4965-b3fa-14f8368a5b9d))
  2610. (fp_line (start 7.850013 1.249987) (end -7.849987 1.249987)
  2611. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 65c38624-4677-4dea-9a7c-b08ed673837b))
  2612. (fp_circle (center -7.869952 1.249936) (end -7.83998 1.249936)
  2613. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0ceffadc-ef9b-4972-8f05-8494595d0cf4))
  2614. (fp_circle (center -6.649987 -1.899924) (end -6.350013 -1.899924)
  2615. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp bab09755-5b49-4aa7-8394-be0d6d466948))
  2616. (pad "1" thru_hole rect (at -6.350013 0 270) (size 1.8 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2617. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 1388cce4-fd8a-4b62-b8f3-ae59d9787e47))
  2618. (pad "2" thru_hole circle (at -3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2619. (net 23 "/PI/IO4") (pinfunction "2") (pintype "unspecified") (tstamp 4ae7a2f9-3fc0-4dd6-8d65-e22905bc0f71))
  2620. (pad "3" thru_hole circle (at -1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2621. (net 24 "/PI/IO5") (pinfunction "3") (pintype "unspecified") (tstamp aa69b3a3-535a-49d5-b9b7-a8508f67d41d))
  2622. (pad "4" thru_hole circle (at 1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2623. (net 25 "/PI/IO6") (pinfunction "4") (pintype "unspecified") (tstamp 0a0cadd1-d2f4-40d7-86b3-3054f28a8563))
  2624. (pad "5" thru_hole circle (at 3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2625. (net 26 "/PI/IO7") (pinfunction "5") (pintype "unspecified") (tstamp 9d6166d3-6644-4733-83bd-ddf69b6ae393))
  2626. (pad "6" thru_hole circle (at 6.350013 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  2627. (net 1 "GND") (pinfunction "6") (pintype "unspecified") (tstamp 43146901-f89c-4168-a524-c13dd764b86e))
  2628. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_6P-P2.54-V-F.step"
  2629. (offset (xyz -0.0000253999996185 0 -0.0001015999985))
  2630. (scale (xyz 1 1 1))
  2631. (rotate (xyz 0 0 0))
  2632. )
  2633. )
  2634. (footprint "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (layer "F.Cu")
  2635. (tstamp 95077a4d-f88c-41c3-a28f-36b8e6001782)
  2636. (at 131.5 110.802545 -90)
  2637. (descr "SW-SMD_L6.1-W3.6-LS6.6 footprint")
  2638. (tags "SW-SMD_L6.1-W3.6-LS6.6 footprint C520861")
  2639. (property "LCSC" "C520861")
  2640. (property "Sheetfile" "pi.kicad_sch")
  2641. (property "Sheetname" "PI")
  2642. (property "ki_keywords" "C520861")
  2643. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/8bba4e29-9413-407c-8af0-f3f9eeaf57f9")
  2644. (attr smd)
  2645. (fp_text reference "SW2" (at 2.5 -3.5 -180) (layer "F.SilkS")
  2646. (effects (font (size 1 1) (thickness 0.15)))
  2647. (tstamp cf16fbad-dd8a-4bbc-8d3b-9e360fb80630)
  2648. )
  2649. (fp_text value "RESET" (at 2.5 -3 -180) (layer "F.Fab")
  2650. (effects (font (size 1 1) (thickness 0.15)))
  2651. (tstamp 4758ee6d-7a91-4ec1-81e0-9673cd5cf061)
  2652. )
  2653. (fp_line (start -3.049987 -1.8) (end 3.050013 -1.8)
  2654. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 852000a9-208a-4b49-9de8-fdf515485d40))
  2655. (fp_line (start -3.049987 -0.666624) (end -3.049987 -1.8)
  2656. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6017b8b3-04e6-4fb2-ab23-fd9c109bb2fd))
  2657. (fp_line (start -3.049987 1.8) (end -3.049987 0.66665)
  2658. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f297428c-8052-4d70-a7f6-0df54e856132))
  2659. (fp_line (start -1.975006 -1.124968) (end -1.975006 1.125019)
  2660. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f172b82c-f5cb-418a-80df-6955935093b6))
  2661. (fp_line (start -1.975006 1.125019) (end 1.975006 1.125019)
  2662. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 94d0c179-a94e-44af-a761-6718b8a4a1e4))
  2663. (fp_line (start 1.975006 -1.124968) (end -1.975006 -1.124968)
  2664. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 664044c3-bdbe-4685-ae74-ad9dc1321712))
  2665. (fp_line (start 1.975006 1.125019) (end 1.975006 -1.124968)
  2666. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 04cbef1e-9116-4a53-9278-a1acf222a2aa))
  2667. (fp_line (start 3.050013 -1.8) (end 3.050013 -0.666624)
  2668. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 51796fda-5eef-40ad-ab39-07aa7f1e9745))
  2669. (fp_line (start 3.050013 0.66665) (end 3.050013 1.8)
  2670. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 347e7f39-839d-41d1-a5aa-2ad04b776a08))
  2671. (fp_line (start 3.050013 1.8) (end -3.049987 1.8)
  2672. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dfbe2496-99b7-4efc-929a-6fd46180dc97))
  2673. (fp_circle (center -3.299416 -1.8) (end -3.269418 -1.8)
  2674. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp a11d84df-3d9b-43df-81db-4722beb7d4d2))
  2675. (pad "1" smd rect (at -3.217424 0 270) (size 2 1) (layers "F.Cu" "F.Paste" "F.Mask")
  2676. (net 53 "Net-(R11-Pad2)") (pinfunction "1") (pintype "unspecified") (tstamp 73edeb58-8c56-4879-bc08-28746aaa0fab))
  2677. (pad "2" smd rect (at 3.217424 0 270) (size 2 1) (layers "F.Cu" "F.Paste" "F.Mask")
  2678. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 2e15a963-cbc9-42a1-b249-d038df8b5133))
  2679. (model "jlc_lib/jlc_footprints/packages3d/SW-SMD_L6.1-W3.6-LS6.6.step"
  2680. (offset (xyz 0 0 0))
  2681. (scale (xyz 1 1 1))
  2682. (rotate (xyz 0 0 0))
  2683. )
  2684. )
  2685. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  2686. (tstamp 965ed673-cef7-4c76-bd72-5c17cb663493)
  2687. (at 162.5 127)
  2688. (descr "R0402 footprint")
  2689. (tags "R0402 footprint C279981")
  2690. (property "LCSC" "C144787")
  2691. (property "Resistance" "1MΩ")
  2692. (property "Sheetfile" "pi.kicad_sch")
  2693. (property "Sheetname" "PI")
  2694. (property "ki_keywords" "C144787")
  2695. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/b3639e1c-dd62-4539-b3a6-bd6f18432e9d")
  2696. (attr smd)
  2697. (fp_text reference "R17" (at -0.5 -1.5) (layer "F.SilkS")
  2698. (effects (font (size 1 1) (thickness 0.15)))
  2699. (tstamp e55b8a49-f9cc-48d3-85db-af0a6392f1e1)
  2700. )
  2701. (fp_text value "1M" (at 0 -3) (layer "F.Fab")
  2702. (effects (font (size 1 1) (thickness 0.15)))
  2703. (tstamp 6e9fbab5-c05c-488c-a766-d2db45a86f28)
  2704. )
  2705. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  2706. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f4277718-b5cf-4993-9e2a-31774815d410))
  2707. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  2708. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 43c5d5f1-ea18-41eb-80e9-d453c075d9c3))
  2709. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  2710. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f7d43178-1cdb-4644-8612-68b475134d47))
  2711. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  2712. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp efea50f0-df55-4daa-ac78-e9439229829e))
  2713. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  2714. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d0ee1667-2a33-4dd1-83bf-613fe545a298))
  2715. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  2716. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 82183496-039f-4902-9174-df30fe28b1fd))
  2717. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  2718. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 36823dc8-fb4f-4297-8f9c-2d3d0570f4b4))
  2719. (pad "1" smd rect (at -0.432817 0) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2720. (net 61 "/PI/USBC.SHIELD") (pinfunction "1") (pintype "unspecified") (tstamp 7c0e65e5-e888-44cf-b1db-4b198a76d1d4))
  2721. (pad "2" smd rect (at 0.432817 0) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2722. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 4821c4f8-e456-4c96-9e9a-ba3e29be8031))
  2723. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  2724. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2725. (scale (xyz 1 1 1))
  2726. (rotate (xyz 0 0 0))
  2727. )
  2728. )
  2729. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  2730. (tstamp 986cb01c-c824-4385-a56c-f2dce42f6f99)
  2731. (at 157.5 95.302545 180)
  2732. (descr "R0402 footprint")
  2733. (tags "R0402 footprint C279981")
  2734. (property "LCSC" "C406733")
  2735. (property "Resistance" "10kΩ")
  2736. (property "Sheetfile" "pi.kicad_sch")
  2737. (property "Sheetname" "PI")
  2738. (property "ki_keywords" "C406733")
  2739. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/5470ee38-29da-45d0-b23b-0f13c14b1b64")
  2740. (attr smd)
  2741. (fp_text reference "R4" (at -2 0) (layer "F.SilkS")
  2742. (effects (font (size 1 1) (thickness 0.15)))
  2743. (tstamp 29eb8a9e-fe7e-44cd-84ef-7bea717f89fb)
  2744. )
  2745. (fp_text value "10K" (at -2.5 0) (layer "F.Fab")
  2746. (effects (font (size 1 1) (thickness 0.15)))
  2747. (tstamp 42819c49-f7c7-4db0-8dc0-86c1524dfbd4)
  2748. )
  2749. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  2750. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8524dcb3-a011-45db-8b2f-9c6296562f8e))
  2751. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  2752. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp db08ad17-2fb0-4c71-9a51-238e513ae663))
  2753. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  2754. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7e4c008c-7fc8-4f74-a40f-aca0af5f3163))
  2755. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  2756. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3cc68774-2ddb-4da6-9f10-0eddeae6cccf))
  2757. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  2758. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4535daa8-a3db-447a-b11b-26c878e08f07))
  2759. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  2760. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e8dd69fd-d651-4049-a36d-4f8244fa0fa3))
  2761. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  2762. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9ed5080d-9e06-4f61-a16b-583462d41e98))
  2763. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2764. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 84a274dc-2c4d-48f9-9dab-f072dc2964ec))
  2765. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2766. (net 46 "/PI/SPI_FLASH.SS") (pinfunction "2") (pintype "unspecified") (tstamp e3b11834-baa0-4ba1-8e45-d127106174b3))
  2767. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  2768. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2769. (scale (xyz 1 1 1))
  2770. (rotate (xyz 0 0 0))
  2771. )
  2772. )
  2773. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  2774. (tstamp 990c6efc-699b-4f6d-a8dd-88feb7582e80)
  2775. (at 169.5 127 180)
  2776. (descr "R0402 footprint")
  2777. (tags "R0402 footprint C279981")
  2778. (property "LCSC" "C409700")
  2779. (property "Resistance" "5.1kΩ")
  2780. (property "Sheetfile" "pi.kicad_sch")
  2781. (property "Sheetname" "PI")
  2782. (property "ki_keywords" "C409700")
  2783. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/639f0f24-de9d-490e-8c21-45805d608682")
  2784. (attr smd)
  2785. (fp_text reference "R15" (at 0 1.5) (layer "F.SilkS")
  2786. (effects (font (size 1 1) (thickness 0.15)))
  2787. (tstamp 806557a0-78c1-4607-8885-cb8632a9876c)
  2788. )
  2789. (fp_text value "5K1" (at 0 3) (layer "F.Fab")
  2790. (effects (font (size 1 1) (thickness 0.15)))
  2791. (tstamp ba15b69c-f190-46aa-9107-73795df5067c)
  2792. )
  2793. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  2794. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 49dc3eaf-80dd-4326-9cad-155f91bd5212))
  2795. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  2796. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ebc0e03a-954a-4f01-b976-b3eb4bba0156))
  2797. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  2798. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fd766955-47d5-4826-943e-8fa9121561aa))
  2799. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  2800. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 45379524-074d-4f3e-a48d-3ef908d014b2))
  2801. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  2802. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b4598e23-795c-4e60-b22e-587fa3545b59))
  2803. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  2804. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1e91eb73-b893-42d7-80ba-c39e9b54fe62))
  2805. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  2806. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 39dfe592-be97-4523-95a7-e664ddd938a0))
  2807. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2808. (net 59 "Net-(U15-CC2)") (pinfunction "1") (pintype "unspecified") (tstamp 66a73e76-11f7-4644-8120-000eb06f5843))
  2809. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2810. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 3778ff8e-7bfe-4026-9c37-96635f44444e))
  2811. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  2812. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2813. (scale (xyz 1 1 1))
  2814. (rotate (xyz 0 0 0))
  2815. )
  2816. )
  2817. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  2818. (tstamp a118d103-8fe1-470a-9dc4-4e3e1909654b)
  2819. (at 152 106.302545 -90)
  2820. (descr "C0402 footprint")
  2821. (tags "C0402 footprint C140675")
  2822. (property "Capacitance" "100nF")
  2823. (property "LCSC" "C105883")
  2824. (property "Sheetfile" "pi.kicad_sch")
  2825. (property "Sheetname" "PI")
  2826. (property "ki_keywords" "C105883")
  2827. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2127fd6e-15b4-48d8-b8ff-ca7af1144e4e")
  2828. (attr smd)
  2829. (fp_text reference "C20" (at 3 0 90) (layer "F.SilkS")
  2830. (effects (font (size 1 1) (thickness 0.15)))
  2831. (tstamp 5cecb9e0-9c80-4f67-b5d6-1652c7ac381b)
  2832. )
  2833. (fp_text value "100nF" (at 3.5 0 90) (layer "F.Fab")
  2834. (effects (font (size 1 1) (thickness 0.15)))
  2835. (tstamp 799aa434-12cc-44a4-ae9e-a0479debf833)
  2836. )
  2837. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  2838. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1fcfe15c-5ef2-4e68-9833-debc0a4d3d66))
  2839. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  2840. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a30c30d5-4377-4573-8910-5d001e73f095))
  2841. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  2842. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d30517aa-e888-4b51-9e93-d3913629fcbf))
  2843. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  2844. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c2c553f9-4fbb-4f0a-a5f3-db3c19c47ca4))
  2845. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  2846. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 45f62c0e-9762-4eea-80b2-de84ed74de51))
  2847. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  2848. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ce8192c7-679b-4ecf-8735-cfaf8292dc40))
  2849. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  2850. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 15f3fbcb-cb31-4a44-b067-04c3efcf24db))
  2851. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  2852. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 13aa363c-60c7-492b-a6e5-a6ccfb27f44b))
  2853. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  2854. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c2b23f4c-b496-4d50-ba10-99f52a50584a))
  2855. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  2856. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 10caccb0-60b8-487f-a4c0-e66925f4cd7d))
  2857. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  2858. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp ebccc119-f4d3-4f90-aa27-da830df9f1e7))
  2859. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2860. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp 727f0fc4-f6a3-4616-bfb8-5ef193e211e6))
  2861. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2862. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp b42c74dc-8c77-4b7f-96c3-f19a779abd33))
  2863. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  2864. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2865. (scale (xyz 1 1 1))
  2866. (rotate (xyz 0 0 0))
  2867. )
  2868. )
  2869. (footprint "jlc_footprints:SOIC-8_L5.3-W5.3-P1.27-LS8.0-BL" (layer "F.Cu")
  2870. (tstamp a32b76f2-4e26-46ac-bad2-da7089f72e86)
  2871. (at 153 98.302545 180)
  2872. (descr "SOIC-8_L5.3-W5.3-P1.27-LS8.0-BL footprint")
  2873. (tags "SOIC-8_L5.3-W5.3-P1.27-LS8.0-BL footprint C113767")
  2874. (property "LCSC" "C113767")
  2875. (property "Sheetfile" "pi.kicad_sch")
  2876. (property "Sheetname" "PI")
  2877. (property "ki_keywords" "C113767")
  2878. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2369fc07-1396-4abe-85df-bfb8cc1a2fdd")
  2879. (attr smd)
  2880. (fp_text reference "U8" (at -3.5 1 90) (layer "F.SilkS")
  2881. (effects (font (size 1 1) (thickness 0.15)))
  2882. (tstamp 54fe21da-4f60-46e9-b91f-81c0350b5433)
  2883. )
  2884. (fp_text value "W25Q128JVSIQ" (at 3.5 0 90) (layer "F.Fab")
  2885. (effects (font (size 1 1) (thickness 0.15)))
  2886. (tstamp 845b7a15-0f9a-4d5f-91ed-a754725d544c)
  2887. )
  2888. (fp_line (start -2.63871 -2.176403) (end 2.63871 -2.176403)
  2889. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b971f9d8-cd8a-436e-8790-a28212b7549c))
  2890. (fp_line (start -2.63871 2.176403) (end -2.63871 -2.176403)
  2891. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3bb7b0f2-c599-4828-99ee-b1424a15b75f))
  2892. (fp_line (start 2.63871 -2.176403) (end 2.63871 2.176403)
  2893. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 328fb867-db70-490c-a152-9cf9c6ac6469))
  2894. (fp_line (start 2.63871 2.176403) (end -2.63871 2.176403)
  2895. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f6b73b1c-bafe-4516-a8f4-f81fe758f3a4))
  2896. (fp_circle (center -2.672339 3.530099) (end -2.522225 3.530099)
  2897. (stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp ca9e63a0-e221-46a0-b97f-1c16b4f1392a))
  2898. (fp_circle (center -2.58509 3.920041) (end -2.555118 3.920041)
  2899. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp e1d56d81-d527-4ef9-810c-26eacf7d38c6))
  2900. (fp_circle (center -1.905004 1.423927) (end -1.75489 1.423927)
  2901. (stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp 02fa0c71-8aea-45f9-a02a-2f0cb09d20d0))
  2902. (fp_circle (center -1.905004 4.350013) (end -1.75489 4.350013)
  2903. (stroke (width 0.3) (type solid)) (fill none) (layer "F.Fab") (tstamp fa4c5e43-1db1-4027-b1d1-1d3f55c2de70))
  2904. (pad "1" smd oval (at -1.905004 3.530099 180) (size 0.629997 2.250013) (layers "F.Cu" "F.Paste" "F.Mask")
  2905. (net 46 "/PI/SPI_FLASH.SS") (pinfunction "CS#") (pintype "unspecified") (tstamp a9428f46-5651-4852-9be2-09ee4b3fb819))
  2906. (pad "2" smd oval (at -0.635001 3.530099 180) (size 0.629997 2.250013) (layers "F.Cu" "F.Paste" "F.Mask")
  2907. (net 65 "/PI/SPI_FLASH.SD1") (pinfunction "DO(IO1)") (pintype "unspecified") (tstamp 8b7b17b1-77fe-40c7-9f77-032b4477c58e))
  2908. (pad "3" smd oval (at 0.635001 3.530099 180) (size 0.629997 2.250013) (layers "F.Cu" "F.Paste" "F.Mask")
  2909. (net 66 "/PI/SPI_FLASH.SD2") (pinfunction "WP#(IO2)") (pintype "unspecified") (tstamp b99b4036-9982-48f1-9842-c0ad2f6d753b))
  2910. (pad "4" smd oval (at 1.905004 3.530099 180) (size 0.629997 2.250013) (layers "F.Cu" "F.Paste" "F.Mask")
  2911. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp 5f833f8b-ceee-486f-af15-6c8b36648ef3))
  2912. (pad "5" smd oval (at 1.905004 -3.530099 180) (size 0.629997 2.250013) (layers "F.Cu" "F.Paste" "F.Mask")
  2913. (net 67 "/PI/SPI_FLASH.SD0") (pinfunction "DI(IO0)") (pintype "unspecified") (tstamp d7b59e97-7aef-440e-b6fb-a8d665a01f55))
  2914. (pad "6" smd oval (at 0.635001 -3.530099 180) (size 0.629997 2.250013) (layers "F.Cu" "F.Paste" "F.Mask")
  2915. (net 68 "/PI/SPI_FLASH.SCLK") (pinfunction "CLK") (pintype "unspecified") (tstamp f0f16fe9-ba6b-4813-a5bc-46f6b13aedbd))
  2916. (pad "7" smd oval (at -0.635001 -3.530099 180) (size 0.629997 2.250013) (layers "F.Cu" "F.Paste" "F.Mask")
  2917. (net 69 "/PI/SPI_FLASH.SD3") (pinfunction "HOLD#orRESET#(IO3)") (pintype "unspecified") (tstamp 97f5521d-e169-41dc-bd0d-1b711524ee71))
  2918. (pad "8" smd oval (at -1.905004 -3.530099 180) (size 0.629997 2.250013) (layers "F.Cu" "F.Paste" "F.Mask")
  2919. (net 2 "+3.3V") (pinfunction "VCC") (pintype "unspecified") (tstamp f7b2caaf-5b58-4c82-b876-5e9598204db1))
  2920. (model "jlc_lib/jlc_footprints/packages3d/SOIC-8_L5.3-W5.3-P1.27-LS8.0-BL.step"
  2921. (offset (xyz -0.0000253999996185 0 0.06934199896))
  2922. (scale (xyz 1 1 1))
  2923. (rotate (xyz 0 0 0))
  2924. )
  2925. )
  2926. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  2927. (tstamp a43bd5f1-247f-4c4e-97be-e3b75abf4930)
  2928. (at 192.254966 106.407765 180)
  2929. (descr "C0402 footprint")
  2930. (tags "C0402 footprint C140675")
  2931. (property "Capacitance" "100pF")
  2932. (property "LCSC" "C106200")
  2933. (property "Sheetfile" "pi.kicad_sch")
  2934. (property "Sheetname" "PI")
  2935. (property "ki_keywords" "C106200")
  2936. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/b80dfb55-f604-4940-859f-4fcc16dd121a")
  2937. (attr smd)
  2938. (fp_text reference "C24" (at 0 -1.5) (layer "F.SilkS")
  2939. (effects (font (size 1 1) (thickness 0.15)))
  2940. (tstamp f8298896-0b4d-4e2d-af45-c013f6e4a22a)
  2941. )
  2942. (fp_text value "100pF" (at -3.5 -1) (layer "F.Fab")
  2943. (effects (font (size 1 1) (thickness 0.15)))
  2944. (tstamp a42a34e6-e32b-450b-b5fe-bc0b575364bf)
  2945. )
  2946. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  2947. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 21885d11-fc35-4af9-ad3c-f7b128ce0c9e))
  2948. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  2949. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 706b1f8c-a324-431c-959d-692f47c7a941))
  2950. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  2951. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 60c8fd2b-110a-41ee-b155-4079c1df1b39))
  2952. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  2953. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d0ade135-6b89-4eda-a32a-3ab1bce9067a))
  2954. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  2955. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bb5e7897-44c8-4b53-9f20-b2a16d398cbf))
  2956. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  2957. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4f6b6026-40e0-46d0-9f3a-a79843b9bd8b))
  2958. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  2959. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1c7a3793-17b2-4731-982e-a09dbc06ba3d))
  2960. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  2961. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6a14899b-01e1-4adb-8c78-30136cd096ec))
  2962. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  2963. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6597761c-4062-4c02-9bce-20cd27c72f72))
  2964. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  2965. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 99250eee-2692-46b9-8650-ef52abe294aa))
  2966. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  2967. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp ffebb3f2-4353-495a-b3f7-68a2b0eca742))
  2968. (pad "1" smd rect (at -0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2969. (net 9 "Net-(U14-CANH)") (pinfunction "1") (pintype "input") (tstamp 4963280a-3dca-460d-a3f5-59c0451d356d))
  2970. (pad "2" smd rect (at 0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  2971. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 94bc5f2e-dadf-48a1-b9bc-eedfb63decfe))
  2972. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  2973. (offset (xyz 0 0.0000253999996185 0.2499359962))
  2974. (scale (xyz 1 1 1))
  2975. (rotate (xyz 0 0 0))
  2976. )
  2977. )
  2978. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  2979. (tstamp a82da185-c340-4b38-a9da-8508388e758f)
  2980. (at 126.534798 80.503429 180)
  2981. (descr "R0402 footprint")
  2982. (tags "R0402 footprint C279981")
  2983. (property "LCSC" "C279981")
  2984. (property "Resistance" "1kΩ")
  2985. (property "Sheetfile" "pi.kicad_sch")
  2986. (property "Sheetname" "PI")
  2987. (property "ki_keywords" "C279981")
  2988. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/24fd92d9-ac0b-4330-8d68-132333ade300")
  2989. (attr smd)
  2990. (fp_text reference "R22" (at 0 -1.5) (layer "F.SilkS")
  2991. (effects (font (size 1 1) (thickness 0.15)))
  2992. (tstamp 18a32dcd-8cde-4fea-a543-88b29b16b640)
  2993. )
  2994. (fp_text value "1K" (at 0 1.24) (layer "F.Fab")
  2995. (effects (font (size 1 1) (thickness 0.15)))
  2996. (tstamp 4084179d-3854-41a7-87c4-3bcb9de1c4ec)
  2997. )
  2998. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  2999. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d6d09907-58b3-443d-b68d-d8511519fd8a))
  3000. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  3001. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d1414f35-6c2b-43d8-a82e-43b8ab262743))
  3002. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  3003. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e5fac7d7-7052-4380-8fa2-feed8e3553f3))
  3004. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  3005. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 98c91f2c-db06-4a86-93e9-990d33557843))
  3006. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  3007. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 08506002-ad8e-4ef8-9133-14ed6056f7bd))
  3008. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  3009. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 13f48f92-e572-4219-bf34-27c3dea94143))
  3010. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  3011. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 058a3223-7640-42ec-8ecc-d0ceefacb5da))
  3012. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3013. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 03710954-ba9e-4de0-9bca-2096f9fc14ac))
  3014. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3015. (net 90 "Net-(LED2-+)") (pinfunction "2") (pintype "unspecified") (tstamp 42d2c993-7ecd-4ed2-b2c6-9992a63d698f))
  3016. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  3017. (offset (xyz 0 0.0000253999996185 0.2499359962))
  3018. (scale (xyz 1 1 1))
  3019. (rotate (xyz 0 0 0))
  3020. )
  3021. )
  3022. (footprint "jlc_footprints:LED0603-RD" (layer "F.Cu")
  3023. (tstamp aaf6a0c1-4c71-4468-8d5d-2e5e94ca4ee0)
  3024. (at 123.101981 84.503429)
  3025. (descr "LED0603-RD footprint")
  3026. (tags "LED0603-RD footprint C84264")
  3027. (property "LCSC" "C84264")
  3028. (property "Sheetfile" "pi.kicad_sch")
  3029. (property "Sheetname" "PI")
  3030. (property "ki_keywords" "C84264")
  3031. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/7e5276e0-9017-433b-9d3a-bdd0fca72acc")
  3032. (attr smd)
  3033. (fp_text reference "LED1" (at 0 1.64755) (layer "F.SilkS")
  3034. (effects (font (size 1 1) (thickness 0.15)))
  3035. (tstamp fca02f81-2cd6-4975-aacb-9f406dce1816)
  3036. )
  3037. (fp_text value "FC-D1608HGK-572C" (at 0.32 -1.35245) (layer "F.Fab")
  3038. (effects (font (size 1 1) (thickness 0.15)))
  3039. (tstamp 3722761b-b341-47ee-9147-b774b1f2f6cd)
  3040. )
  3041. (fp_line (start -1.489611 -0.454331) (end -1.189662 -0.75428)
  3042. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 92bef06a-2b14-47bf-a9ad-99385fb5ff43))
  3043. (fp_line (start -1.489611 -0.354178) (end -1.489611 -0.454331)
  3044. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp b2da4539-84fd-42cb-9032-4d1ad017099a))
  3045. (fp_line (start -1.489611 -0.354178) (end -1.489611 0.345771)
  3046. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 62449186-ddd3-430e-9cdd-775c64022708))
  3047. (fp_line (start -1.489611 0.345771) (end -1.489611 0.445796)
  3048. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 8197c307-f2d5-40c4-a650-0a1e30793a27))
  3049. (fp_line (start -1.489611 0.445796) (end -1.189662 0.745847)
  3050. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 8693d2c8-5134-49fb-87f3-6169c99a79c6))
  3051. (fp_line (start -0.139548 -0.75428) (end -1.189662 -0.75428)
  3052. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp a274e394-9859-4419-9655-500f7d84fab6))
  3053. (fp_line (start -0.139548 0.745847) (end -1.189662 0.745847)
  3054. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 64355ec8-0dd0-45c2-988b-139f599d5473))
  3055. (fp_line (start 0.210465 0.32352) (end -0.119583 -0.006528)
  3056. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 9e71ec63-795c-46d3-b2fe-55064d281a66))
  3057. (fp_line (start 0.220422 -0.356515) (end 0.220422 -0.346533)
  3058. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 3455efee-b9fc-4153-b362-5ca295c78a5a))
  3059. (fp_line (start 0.220422 -0.356515) (end 0.220422 0.32352)
  3060. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 91f9ef97-d622-45b0-9623-7035e15acc91))
  3061. (fp_line (start 0.220422 -0.346533) (end -0.119583 -0.006528)
  3062. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 3bb9fa94-7703-4871-b4fb-0e21a375d2f9))
  3063. (fp_line (start 0.220422 -0.006528) (end -0.119583 -0.006528)
  3064. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp ea854aa3-7784-43b7-afa4-a38b4dbe268b))
  3065. (fp_line (start 0.220422 0.32352) (end 0.210465 0.32352)
  3066. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 1b200a4a-3a25-422b-a3f2-86b9f0a801d3))
  3067. (fp_line (start 0.240462 -0.756591) (end 1.390475 -0.756591)
  3068. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp f558fa22-d535-45ef-b3c4-ee4489aa3c61))
  3069. (fp_line (start 0.240462 0.743536) (end 1.390475 0.743536)
  3070. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 2de97f86-d71e-4b31-acf6-b7e549243630))
  3071. (fp_line (start 1.390475 -0.75649) (end 1.390475 0.723444)
  3072. (stroke (width 0.150013) (type solid)) (layer "F.SilkS") (tstamp 8ac0b642-858d-4254-8ce3-4db73c1774a4))
  3073. (fp_circle (center -0.799467 0.40348) (end -0.769495 0.40348)
  3074. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 16b781fd-9f9a-4bd1-be90-445f7a0441e5))
  3075. (pad "1" smd rect (at -0.799467 0.003429 90) (size 0.8 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  3076. (net 1 "GND") (pinfunction "-") (pintype "input") (tstamp ac177297-4043-4647-a266-d47584bacb0b))
  3077. (pad "2" smd rect (at 0.799467 -0.003429 90) (size 0.8 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
  3078. (net 89 "Net-(LED1-+)") (pinfunction "+") (pintype "input") (tstamp c401796c-1717-4e61-8467-a8e58882851d))
  3079. (model "jlc_lib/jlc_footprints/packages3d/LED0603-RD.step"
  3080. (offset (xyz 0 -0.0000253999996185 0.009905999851))
  3081. (scale (xyz 1 1 1))
  3082. (rotate (xyz 0 0 0))
  3083. )
  3084. )
  3085. (footprint "jlc_footprints:SMA_L4.4-W2.8-LS5.4-R-RD" (layer "F.Cu")
  3086. (tstamp b002127c-fce9-4931-8f5e-11e354b7dcaf)
  3087. (at 152 86)
  3088. (descr "SMA_L4.4-W2.8-LS5.4-R-RD footprint")
  3089. (tags "SMA_L4.4-W2.8-LS5.4-R-RD footprint C22452")
  3090. (property "LCSC" "C22452")
  3091. (property "Sheetfile" "pi.kicad_sch")
  3092. (property "Sheetname" "PI")
  3093. (property "ki_keywords" "C22452")
  3094. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/b40809f1-a5bc-41fb-9195-666eabc75070")
  3095. (attr smd)
  3096. (fp_text reference "U11" (at 0 -2.5) (layer "F.SilkS")
  3097. (effects (font (size 1 1) (thickness 0.15)))
  3098. (tstamp 72d43563-1dec-4cd0-a628-4222055cfb9b)
  3099. )
  3100. (fp_text value "SS54_C22452" (at 0 2.5) (layer "F.Fab")
  3101. (effects (font (size 1 1) (thickness 0.15)))
  3102. (tstamp f526c54f-8e3a-443c-bf12-1747a47bf162)
  3103. )
  3104. (fp_line (start -2.646203 -1.35621) (end 2.646203 -1.35621)
  3105. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3e539699-2f20-40ea-82ed-13b677eff38c))
  3106. (fp_line (start -2.646203 1.35621) (end 2.646203 1.35621)
  3107. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 719591eb-cf71-484d-a10c-a8c40f9d6d60))
  3108. (fp_line (start -1.269291 -1.35621) (end -1.269291 1.35621)
  3109. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 93685cea-dbc5-4e08-8ace-0d393652264e))
  3110. (fp_line (start 2.646203 -1.35621) (end 2.646203 -0.972695)
  3111. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 36da46e4-d326-4e54-83ea-eb75e499c93e))
  3112. (fp_line (start 2.646203 1.35621) (end 2.646203 0.972695)
  3113. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9ebd9d07-390e-4856-a1c2-3a3dbbca8e8e))
  3114. (fp_circle (center -2.800102 1.279909) (end -2.77013 1.279909)
  3115. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8c812c86-8e75-477f-9b3a-d3dd3e6e187a))
  3116. (pad "1" smd rect (at 2.503683 0) (size 2.06251 1.539014) (layers "F.Cu" "F.Paste" "F.Mask")
  3117. (net 88 "Net-(U11-A)") (pinfunction "A") (pintype "unspecified") (tstamp a97482aa-1dcc-4a9a-9f29-017b211a0453))
  3118. (pad "2" smd rect (at -2.503683 0) (size 2.06251 1.539014) (layers "F.Cu" "F.Paste" "F.Mask")
  3119. (net 5 "+5V") (pinfunction "K") (pintype "unspecified") (tstamp 21af7fda-13f1-48d0-bf3a-a1662748c064))
  3120. (model "jlc_lib/jlc_footprints/packages3d/SMA_L4.4-W2.8-LS5.4-R-RD.step"
  3121. (offset (xyz 0 0 0.1000759985))
  3122. (scale (xyz 1 1 1))
  3123. (rotate (xyz 0 0 0))
  3124. )
  3125. )
  3126. (footprint "jlc_footprints:F1812" (layer "F.Cu")
  3127. (tstamp b3da2ed1-55d7-437e-b29b-69edd55f8894)
  3128. (at 160 86 180)
  3129. (descr "F1812 footprint")
  3130. (tags "F1812 footprint C2982285")
  3131. (property "LCSC" "C2982285")
  3132. (property "Sheetfile" "pi.kicad_sch")
  3133. (property "Sheetname" "PI")
  3134. (property "ki_keywords" "C2982285")
  3135. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/5695bc5e-edd9-4c33-967c-89de28e6da41")
  3136. (attr smd)
  3137. (fp_text reference "F2" (at 0 -3) (layer "F.SilkS")
  3138. (effects (font (size 1 1) (thickness 0.15)))
  3139. (tstamp 1dfe25ad-996e-4296-a48a-603295197068)
  3140. )
  3141. (fp_text value "ASMD1812-350-16V" (at -0.5 3) (layer "F.Fab")
  3142. (effects (font (size 1 1) (thickness 0.15)))
  3143. (tstamp aee0644d-f799-48b3-a911-4952b116bb3c)
  3144. )
  3145. (fp_line (start -2.794006 -1.797765) (end -2.794006 1.758242)
  3146. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 1a90fe01-37a3-4d53-83f4-fffc99eaf2a5))
  3147. (fp_line (start -2.540005 -2.032004) (end -1.23495 -2.032004)
  3148. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 98201e62-2b7a-40be-b0c0-be33da29213e))
  3149. (fp_line (start -1.270003 2.032004) (end -2.540005 2.032004)
  3150. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6d8459d9-d903-401a-9d19-d4eb216e2aee))
  3151. (fp_line (start 1.270003 2.032004) (end 2.540005 2.032004)
  3152. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b7859376-7d39-4844-b8fa-88b8e469d954))
  3153. (fp_line (start 2.540005 -2.032004) (end 1.270003 -2.032004)
  3154. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9f3ac5f5-08f8-417f-a11a-f00e1f9287a6))
  3155. (fp_line (start 2.794006 -1.778004) (end 2.794006 1.778004)
  3156. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 34a0f461-0ca7-49b5-bb5e-9e59cb111879))
  3157. (fp_arc (start 0 0) (mid -0.317501 -0.317501) (end 0 -0.635002)
  3158. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 0a03077d-46e0-4068-a9ed-667d2528e3ca))
  3159. (fp_arc (start 0 0) (mid 0.317501 0.317501) (end 0 0.635002)
  3160. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 96991fc2-a65d-4543-ac07-01c11c93c000))
  3161. (fp_circle (center -2.275083 1.620015) (end -2.24511 1.620015)
  3162. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 21532cd4-fdc6-44b7-a4b0-342d4b8fdc87))
  3163. (pad "1" smd rect (at -1.853442 0 180) (size 1.40668 3.499213) (layers "F.Cu" "F.Paste" "F.Mask")
  3164. (net 12 "/PI/PI_PSU/Vout") (pinfunction "1") (pintype "unspecified") (tstamp c26a1414-99a4-4ae6-85b8-441391f4b968))
  3165. (pad "2" smd rect (at 1.853442 0 180) (size 1.40668 3.499213) (layers "F.Cu" "F.Paste" "F.Mask")
  3166. (net 88 "Net-(U11-A)") (pinfunction "2") (pintype "unspecified") (tstamp fe27450d-4403-4f3a-b7ca-a351da6994b4))
  3167. (model "jlc_lib/jlc_footprints/packages3d/F1812.step"
  3168. (offset (xyz 0 0 0))
  3169. (scale (xyz 1 1 1))
  3170. (rotate (xyz 0 0 0))
  3171. )
  3172. )
  3173. (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (layer "F.Cu")
  3174. (tstamp b4a2fb06-d4a0-4b00-a96d-261dab86d68a)
  3175. (at 213.5 132.5)
  3176. (descr "Mounting Hole 3.2mm, M3")
  3177. (tags "mounting hole 3.2mm m3")
  3178. (property "Sheetfile" "dispensy.kicad_sch")
  3179. (property "Sheetname" "")
  3180. (property "ki_description" "Mounting Hole without connection")
  3181. (property "ki_keywords" "mounting hole")
  3182. (path "/fcc00026-dae3-4fe3-818b-ea9f4ed733a4")
  3183. (attr exclude_from_pos_files)
  3184. (fp_text reference "H14" (at 0 -4.2) (layer "F.SilkS") hide
  3185. (effects (font (size 1 1) (thickness 0.15)))
  3186. (tstamp 85377462-9da3-4913-acd8-d57782917d4c)
  3187. )
  3188. (fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab") hide
  3189. (effects (font (size 1 1) (thickness 0.15)))
  3190. (tstamp 25ad55ff-4719-4a95-99d4-8c1e802bc2ba)
  3191. )
  3192. (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
  3193. (effects (font (size 1 1) (thickness 0.15)))
  3194. (tstamp 4be20e45-c842-4acf-9d3d-f1bd4fb9211e)
  3195. )
  3196. (fp_circle (center 0 0) (end 3.2 0)
  3197. (stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 5c59e2e9-aee4-439c-8b9c-6d0795ba9575))
  3198. (fp_circle (center 0 0) (end 3.45 0)
  3199. (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp d83f1f6e-cd7c-4cf2-86f9-fdf4a0ebd6db))
  3200. (pad "1" thru_hole circle (at 0 0) (size 3.6 3.6) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 08ae14ae-1987-47bf-a2c5-143bbb3f9b7e))
  3201. (pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "F.Cu" "F.Mask") (tstamp b2b4eb5e-1d23-48c3-b674-5e08a078594f))
  3202. (pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "B.Cu" "B.Mask") (tstamp 810070a3-c10a-4a7f-82dd-6a7b11d9891a))
  3203. )
  3204. (footprint "jlc_footprints:CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD" (layer "F.Cu")
  3205. (tstamp ba0deedc-0ed3-48ce-bfbb-d337598c97e9)
  3206. (at 113.990456 71.717646 -90)
  3207. (descr "CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD footprint")
  3208. (tags "CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD footprint C310843")
  3209. (property "Capacitance" "1000uF")
  3210. (property "LCSC" "C310843")
  3211. (property "Sheetfile" "psu_lm2576.kicad_sch")
  3212. (property "Sheetname" "EXT_PSU")
  3213. (property "ki_keywords" "C310843")
  3214. (path "/635c7f01-c861-45f9-bb15-e53673572e1d/c30613b2-05e8-4268-9e6b-caf9d6e976a9")
  3215. (attr smd)
  3216. (fp_text reference "C3" (at -2.5 6 90) (layer "F.SilkS")
  3217. (effects (font (size 1 1) (thickness 0.15)))
  3218. (tstamp 9c40f761-6d9d-48a3-8238-94639ed5f620)
  3219. )
  3220. (fp_text value "1000uF" (at 2.5 6 90) (layer "F.Fab")
  3221. (effects (font (size 1 1) (thickness 0.15)))
  3222. (tstamp 088b6d17-b93f-4d82-9f41-889e1796f302)
  3223. )
  3224. (fp_line (start -5.226238 -3.089992) (end -5.226238 -1.005131)
  3225. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 7bf37ce1-88e8-4e17-be41-9a4ec9c27832))
  3226. (fp_line (start -5.226238 1.005131) (end -5.226238 3.089992)
  3227. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 5c3b2e15-e18d-484e-b703-72c34b773801))
  3228. (fp_line (start -3.089992 -5.226238) (end -5.226238 -3.089992)
  3229. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c0f5206d-2d32-4be2-8c07-34423514a1d5))
  3230. (fp_line (start -3.089992 5.226238) (end -5.226238 3.089992)
  3231. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e54b757e-0b0f-40f2-adcc-5c964be9d43f))
  3232. (fp_line (start 5.226238 -5.226238) (end -3.089992 -5.226238)
  3233. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a7b1b2c4-b0f8-4404-b957-08f837efea53))
  3234. (fp_line (start 5.226238 -1.005131) (end 5.226238 -5.226238)
  3235. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 75ddade6-69cd-4c3f-b2b3-686e0d1d2fde))
  3236. (fp_line (start 5.226238 5.226238) (end -3.089992 5.226238)
  3237. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d21eff4d-eba1-4c38-8cbd-0bd93d36a42c))
  3238. (fp_line (start 5.226238 5.226238) (end 5.226238 1.005131)
  3239. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 918bc3a5-eec9-485d-b61d-c5cff11ac33c))
  3240. (fp_circle (center -5.650013 5.150013) (end -5.620015 5.150013)
  3241. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 09c83e5c-ea2d-4152-b4e9-263214be7145))
  3242. (pad "1" smd rect (at -4.499873 0 270) (size 4.5 1.650013) (layers "F.Cu" "F.Paste" "F.Mask")
  3243. (net 4 "/EXT_PSU/Vout") (pinfunction "1") (pintype "unspecified") (tstamp e786cabf-7a81-4770-b564-0ff520c49627))
  3244. (pad "2" smd rect (at 4.499873 0 270) (size 4.5 1.650013) (layers "F.Cu" "F.Paste" "F.Mask")
  3245. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 4abecd17-f772-46a8-87dc-f0005ad5a1f9))
  3246. (model "jlc_lib/jlc_footprints/packages3d/CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD.step"
  3247. (offset (xyz 0.0000253999996185 0 0.05003799925))
  3248. (scale (xyz 1 1 1))
  3249. (rotate (xyz 0 0 -180))
  3250. )
  3251. )
  3252. (footprint "jlc_footprints:CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD" (layer "F.Cu")
  3253. (tstamp baee0536-b3dd-4d6e-b650-50322ac13c66)
  3254. (at 169.190482 81.51762)
  3255. (descr "CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD footprint")
  3256. (tags "CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD footprint C310843")
  3257. (property "Capacitance" "1000uF")
  3258. (property "LCSC" "C310843")
  3259. (property "Sheetfile" "psu_lm2576.kicad_sch")
  3260. (property "Sheetname" "PI_PSU")
  3261. (property "ki_keywords" "C310843")
  3262. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876/c30613b2-05e8-4268-9e6b-caf9d6e976a9")
  3263. (attr smd)
  3264. (fp_text reference "C28" (at -2.5 6) (layer "F.SilkS")
  3265. (effects (font (size 1 1) (thickness 0.15)))
  3266. (tstamp 59fbc4e8-a601-4c10-a604-964cceb7404e)
  3267. )
  3268. (fp_text value "1000uF" (at 2.5 6) (layer "F.Fab")
  3269. (effects (font (size 1 1) (thickness 0.15)))
  3270. (tstamp ecea4e98-aaab-4dc0-bf07-e71f12e203e9)
  3271. )
  3272. (fp_line (start -5.226238 -3.089992) (end -5.226238 -1.005131)
  3273. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 1327ed30-47f9-48d4-a084-793180fb4e96))
  3274. (fp_line (start -5.226238 1.005131) (end -5.226238 3.089992)
  3275. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp b38280ee-7c12-47b4-bf68-1286e1b9ba57))
  3276. (fp_line (start -3.089992 -5.226238) (end -5.226238 -3.089992)
  3277. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d0d532db-9cf4-47c2-9f65-0b09330f173d))
  3278. (fp_line (start -3.089992 5.226238) (end -5.226238 3.089992)
  3279. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c558cb94-1b4b-46c1-9967-9276af5de857))
  3280. (fp_line (start 5.226238 -5.226238) (end -3.089992 -5.226238)
  3281. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f9dad78a-d766-4152-b3e5-f527361b5993))
  3282. (fp_line (start 5.226238 -1.005131) (end 5.226238 -5.226238)
  3283. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 4495e713-b95f-4b28-bf54-57a50373260a))
  3284. (fp_line (start 5.226238 5.226238) (end -3.089992 5.226238)
  3285. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8d501065-6d8c-4d95-8b92-c9737b329d1a))
  3286. (fp_line (start 5.226238 5.226238) (end 5.226238 1.005131)
  3287. (stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 791a695f-fb75-49c1-8422-86a3e1885511))
  3288. (fp_circle (center -5.650013 5.150013) (end -5.620015 5.150013)
  3289. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp bc4c1383-0966-4039-8a91-23895a5b93e5))
  3290. (pad "1" smd rect (at -4.499873 0) (size 4.5 1.650013) (layers "F.Cu" "F.Paste" "F.Mask")
  3291. (net 12 "/PI/PI_PSU/Vout") (pinfunction "1") (pintype "unspecified") (tstamp cf64bb95-b6ee-4e5c-9b2e-9be2f2a9f8b0))
  3292. (pad "2" smd rect (at 4.499873 0) (size 4.5 1.650013) (layers "F.Cu" "F.Paste" "F.Mask")
  3293. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp ab85cd89-39a8-459e-9f8b-1388e75a688d))
  3294. (model "jlc_lib/jlc_footprints/packages3d/CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD.step"
  3295. (offset (xyz 0.0000253999996185 0 0.05003799925))
  3296. (scale (xyz 1 1 1))
  3297. (rotate (xyz 0 0 -180))
  3298. )
  3299. )
  3300. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  3301. (tstamp bce9dc08-8676-4865-8669-752b89352e87)
  3302. (at 155 105.302545 -90)
  3303. (descr "C0402 footprint")
  3304. (tags "C0402 footprint C140675")
  3305. (property "Capacitance" "100nF")
  3306. (property "LCSC" "C105883")
  3307. (property "Sheetfile" "pi.kicad_sch")
  3308. (property "Sheetname" "PI")
  3309. (property "ki_keywords" "C105883")
  3310. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/c75edfc3-b572-4918-a4f8-9aa15a5ccc8b")
  3311. (attr smd)
  3312. (fp_text reference "C10" (at 3 0 90) (layer "F.SilkS")
  3313. (effects (font (size 1 1) (thickness 0.15)))
  3314. (tstamp cff859f7-9e19-48e5-9a31-0b3887147d99)
  3315. )
  3316. (fp_text value "100nF" (at 3.5 0 90) (layer "F.Fab")
  3317. (effects (font (size 1 1) (thickness 0.15)))
  3318. (tstamp b523b305-6226-40b8-8dc6-b71a322b8a70)
  3319. )
  3320. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  3321. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f17df807-b961-4a36-b3a7-46acb84f6a31))
  3322. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  3323. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a6768961-3461-4708-bb7c-469f9b6d6734))
  3324. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  3325. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6d8520c3-9197-4ff6-9d3f-a0ce726a2f2b))
  3326. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  3327. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b8bf903b-667d-4c2c-b92b-3f763234e59d))
  3328. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  3329. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4872b938-504c-4250-bb40-f1887e970fb5))
  3330. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  3331. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp aa7b9335-7a0f-4c3a-b7ac-ff6175e158f3))
  3332. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  3333. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 864a644e-9227-4629-875f-93a6c4f5457b))
  3334. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  3335. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 193e7446-1dc3-49af-8db0-6a39f3a89a08))
  3336. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  3337. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e88ea5f0-2cb3-4d5a-b0da-0e67ddfaeed4))
  3338. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  3339. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e69f6de2-99e2-4023-8c62-191f567f0b47))
  3340. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  3341. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp e831664d-78fb-4ae2-824c-c96052c60f39))
  3342. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3343. (net 8 "+1V1") (pinfunction "1") (pintype "input") (tstamp 27a11f2b-91c0-4c60-b7ae-1bc8f7d6aaee))
  3344. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3345. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 8c4973b0-8b22-4cbc-937e-85ae861d497f))
  3346. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  3347. (offset (xyz 0 0.0000253999996185 0.2499359962))
  3348. (scale (xyz 1 1 1))
  3349. (rotate (xyz 0 0 0))
  3350. )
  3351. )
  3352. (footprint "jlc_footprints:C0603" (layer "F.Cu")
  3353. (tstamp bda6c9a3-0646-4437-9d11-c0e5738c02b0)
  3354. (at 144.3349 78.549975)
  3355. (descr "C0603 footprint")
  3356. (tags "C0603 footprint C380316")
  3357. (property "Capacitance" "10uF")
  3358. (property "LCSC" "C380316")
  3359. (property "Sheetfile" "pi.kicad_sch")
  3360. (property "Sheetname" "PI")
  3361. (property "ki_keywords" "C380316")
  3362. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/f66a6184-fbcd-4fd4-b9ef-b4dc1e7ed816")
  3363. (attr smd)
  3364. (fp_text reference "C5" (at 2.5 0) (layer "F.SilkS")
  3365. (effects (font (size 1 1) (thickness 0.15)))
  3366. (tstamp 5b95e3b0-ea69-44a8-bb61-9a0b3775a104)
  3367. )
  3368. (fp_text value "10uF" (at 3.5 0) (layer "F.Fab")
  3369. (effects (font (size 1 1) (thickness 0.15)))
  3370. (tstamp 408727b5-9e40-4481-8d3f-097f552976df)
  3371. )
  3372. (fp_line (start -1.405461 -0.405613) (end -1.405461 0.394361)
  3373. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6f2a655d-2996-4c14-ad56-e5d80290ea4d))
  3374. (fp_line (start -0.295631 -0.715443) (end -1.095631 -0.715443)
  3375. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 20b8a93c-4585-46f0-a0f5-4a5378ad6e71))
  3376. (fp_line (start -0.295631 0.704166) (end -1.095631 0.704166)
  3377. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b1a3a33c-5d89-4cdb-9361-e70a55199e1a))
  3378. (fp_line (start 0.280264 -0.709627) (end 1.080239 -0.709627)
  3379. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 219fd5da-3e88-46b5-8b1a-05ac972156b0))
  3380. (fp_line (start 0.280264 0.710033) (end 1.080239 0.710033)
  3381. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 94e3fc36-1540-4a36-bbc5-bf4bda3052c0))
  3382. (fp_line (start 1.390018 -0.399771) (end 1.390018 0.400254)
  3383. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dee06bb6-bcfa-4fef-a7dd-f9ebed4b73e7))
  3384. (fp_arc (start -1.405512 -0.405613) (mid -1.314765 -0.624696) (end -1.095682 -0.715443)
  3385. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 52865f29-d3d0-4898-a6ce-f67774503f2c))
  3386. (fp_arc (start -1.095682 0.704216) (mid -1.314773 0.61346) (end -1.405511 0.394362)
  3387. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b3440bea-e30b-4570-8395-67203d6a1af3))
  3388. (fp_arc (start 1.080188 -0.709627) (mid 1.29928 -0.618871) (end 1.390018 -0.399772)
  3389. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3f4d5e6a-2887-4cc1-9cf1-a10063609491))
  3390. (fp_arc (start 1.390018 0.400203) (mid 1.299271 0.619286) (end 1.080188 0.710033)
  3391. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ba862602-ec14-44c7-976a-c218f7f75f88))
  3392. (fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
  3393. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 93b60644-626c-414d-90d8-ee6cb2eeddb3))
  3394. (pad "1" smd rect (at -0.700025 0) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
  3395. (net 5 "+5V") (pinfunction "1") (pintype "unspecified") (tstamp e4804b56-6ec8-4275-a3b8-88f29e81c419))
  3396. (pad "2" smd rect (at 0.700025 0) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
  3397. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 91f5d26f-e99f-483e-b37f-9f04cf86c90a))
  3398. (model "jlc_lib/jlc_footprints/packages3d/C0603.step"
  3399. (offset (xyz 0 0 0.400049994))
  3400. (scale (xyz 1 1 1))
  3401. (rotate (xyz 0 0 0))
  3402. )
  3403. )
  3404. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  3405. (tstamp be7bcc9c-35be-4d90-9b24-f5b06771d06c)
  3406. (at 145 97.802545 90)
  3407. (descr "C0402 footprint")
  3408. (tags "C0402 footprint C140675")
  3409. (property "Capacitance" "100nF")
  3410. (property "LCSC" "C105883")
  3411. (property "Sheetfile" "pi.kicad_sch")
  3412. (property "Sheetname" "PI")
  3413. (property "ki_keywords" "C105883")
  3414. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/fee20a58-c0c3-4e0d-8d83-10f7a6342ef0")
  3415. (attr smd)
  3416. (fp_text reference "C19" (at 2.954915 0 90) (layer "F.SilkS")
  3417. (effects (font (size 1 1) (thickness 0.15)))
  3418. (tstamp 91a09767-556a-4b94-853e-9da8375a949c)
  3419. )
  3420. (fp_text value "100nF" (at 3.454915 0 90) (layer "F.Fab")
  3421. (effects (font (size 1 1) (thickness 0.15)))
  3422. (tstamp 621578bf-c071-426b-9a47-f017b52a9b49)
  3423. )
  3424. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  3425. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7b7e5e66-97bf-43d2-bc3c-c0feb44f0dfa))
  3426. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  3427. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 092eceb5-088c-4f1a-b337-39a3a7c0d058))
  3428. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  3429. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2ebd71d0-dd32-4630-97ac-a09a995947c5))
  3430. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  3431. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3f3741e9-83ce-4260-a5e6-4e89d5d17410))
  3432. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  3433. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c6bb7032-c7a4-4d6a-8b26-8b07fe917010))
  3434. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  3435. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f4c213b4-c89d-40f5-b16d-8c000c2edfdf))
  3436. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  3437. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8f880f94-ad60-4e85-bbf3-1ce1f8ee6ecc))
  3438. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  3439. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a6bf6720-e46b-45cf-968d-4eaa8de67a10))
  3440. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  3441. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d1e917c2-d127-488b-b6f8-82cb0307fb6f))
  3442. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  3443. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c95a983d-4145-4809-b4fc-123cb4423790))
  3444. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  3445. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp b5e3743f-f8f7-415a-bff5-12f5cd18a394))
  3446. (pad "1" smd rect (at -0.545085 0 90) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3447. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp 56634a74-92ac-4b11-8236-ba5997a8daa5))
  3448. (pad "2" smd rect (at 0.545085 0 90) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3449. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 02fdf6c7-cffa-4622-b799-501e6f1f6d0f))
  3450. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  3451. (offset (xyz 0 0.0000253999996185 0.2499359962))
  3452. (scale (xyz 1 1 1))
  3453. (rotate (xyz 0 0 0))
  3454. )
  3455. )
  3456. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  3457. (tstamp c18147ca-4b4b-4f5d-a21e-7571c822148b)
  3458. (at 146 109.302545 -90)
  3459. (descr "C0402 footprint")
  3460. (tags "C0402 footprint C140675")
  3461. (property "Capacitance" "100nF")
  3462. (property "LCSC" "C105883")
  3463. (property "Sheetfile" "pi.kicad_sch")
  3464. (property "Sheetname" "PI")
  3465. (property "ki_keywords" "C105883")
  3466. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/df43b1ab-9652-4eac-8a24-70525b96a66f")
  3467. (attr smd)
  3468. (fp_text reference "C15" (at 3 0 90) (layer "F.SilkS")
  3469. (effects (font (size 1 1) (thickness 0.15)))
  3470. (tstamp cf1be2fc-9c1c-413d-81ac-281aef102104)
  3471. )
  3472. (fp_text value "100nF" (at 3.5 0 90) (layer "F.Fab")
  3473. (effects (font (size 1 1) (thickness 0.15)))
  3474. (tstamp d828b181-0c97-4aa0-a59d-164d7de5c0ee)
  3475. )
  3476. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  3477. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 200d90a8-0498-47bb-a49e-2c4e2ae694e8))
  3478. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  3479. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 668baf65-a1a4-45f7-94a0-b03c494a86c0))
  3480. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  3481. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 31a9ef4b-8e02-4063-b9ec-7552f1aa1cf5))
  3482. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  3483. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 63b5c304-cdca-4df4-8223-4b68a1f0a381))
  3484. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  3485. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 16043cae-377e-49bb-ad86-3f7420a18102))
  3486. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  3487. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 60ec0b9c-4699-456d-b954-ff47a9b4a598))
  3488. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  3489. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 311578fe-9d98-49c9-897c-a2ac53a4ab82))
  3490. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  3491. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2931e204-c4bd-46bd-9ec0-1fc402bb6fb1))
  3492. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  3493. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5cabd423-67f6-4d69-ab05-69165fcfd5dd))
  3494. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  3495. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e39f3449-7c30-4b92-a7d9-deeaf1e86120))
  3496. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  3497. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp e9ab5ae2-b5db-4d4d-aad5-0e08100c7fa5))
  3498. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3499. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp 5ec9dfa0-9212-4ab3-ac3d-94ef3172f3bf))
  3500. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3501. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 7d324378-4983-4205-b182-cd9a746537e8))
  3502. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  3503. (offset (xyz 0 0.0000253999996185 0.2499359962))
  3504. (scale (xyz 1 1 1))
  3505. (rotate (xyz 0 0 0))
  3506. )
  3507. )
  3508. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  3509. (tstamp c35efd1c-2b5c-44b9-a925-6102c87a4dcd)
  3510. (at 195.754966 91.974948 -90)
  3511. (descr "R0402 footprint")
  3512. (tags "R0402 footprint C279981")
  3513. (property "LCSC" "C144787")
  3514. (property "Resistance" "1MΩ")
  3515. (property "Sheetfile" "pi.kicad_sch")
  3516. (property "Sheetname" "PI")
  3517. (property "ki_keywords" "C144787")
  3518. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/f8e707f1-c5b6-4913-9bf7-1f64da5d6c26")
  3519. (attr smd)
  3520. (fp_text reference "R16" (at 0.932817 1.5 90) (layer "F.SilkS")
  3521. (effects (font (size 1 1) (thickness 0.15)))
  3522. (tstamp 0dab2d03-168f-49d8-b9cf-ef117ed1ac26)
  3523. )
  3524. (fp_text value "1M" (at 0 -1 90) (layer "F.Fab")
  3525. (effects (font (size 1 1) (thickness 0.15)))
  3526. (tstamp dba32d9f-322e-442c-b001-869935713b71)
  3527. )
  3528. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  3529. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1ff34c9d-bc58-419c-b58e-c4c30ffaf40d))
  3530. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  3531. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0e32adf1-60cf-441a-a166-28335a4094fe))
  3532. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  3533. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7a36cee6-40a9-4938-b6fc-19ba8b751acc))
  3534. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  3535. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0d498820-0ccc-4d8e-bacc-51c83e25ffc4))
  3536. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  3537. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7c4182d8-b233-4b6d-ac35-90eb535ae520))
  3538. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  3539. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fd0a107d-9d40-4dd8-99eb-4c9e576ac82e))
  3540. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  3541. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp bc5bd053-9ca9-4922-96ce-155636770f35))
  3542. (pad "1" smd rect (at -0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3543. (net 60 "Net-(R16-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp d1ce4089-3faf-474d-b2bd-b8d288186003))
  3544. (pad "2" smd rect (at 0.432817 0 270) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3545. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 60e92be5-2ee6-4e97-b877-c48c35830a08))
  3546. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  3547. (offset (xyz 0 0.0000253999996185 0.2499359962))
  3548. (scale (xyz 1 1 1))
  3549. (rotate (xyz 0 0 0))
  3550. )
  3551. )
  3552. (footprint "jlc_footprints:SMA_L4.4-W2.8-LS5.4-R-RD" (layer "F.Cu")
  3553. (tstamp c3c0b754-d909-4799-bdee-e7ddcd01ece7)
  3554. (at 169.5 121 -90)
  3555. (descr "SMA_L4.4-W2.8-LS5.4-R-RD footprint")
  3556. (tags "SMA_L4.4-W2.8-LS5.4-R-RD footprint C22452")
  3557. (property "LCSC" "C22452")
  3558. (property "Sheetfile" "pi.kicad_sch")
  3559. (property "Sheetname" "PI")
  3560. (property "ki_keywords" "C22452")
  3561. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/23637f3c-2b34-45dc-841e-2b6e42e34228")
  3562. (attr smd)
  3563. (fp_text reference "U12" (at 1 -2.5 90) (layer "F.SilkS")
  3564. (effects (font (size 1 1) (thickness 0.15)))
  3565. (tstamp 4bb1eb89-2196-4dd9-ae43-895e58471012)
  3566. )
  3567. (fp_text value "SS54_C22452" (at -0.5 -2.5 90) (layer "F.Fab")
  3568. (effects (font (size 1 1) (thickness 0.15)))
  3569. (tstamp 5e7d150e-fbb2-4470-9df1-14c826f54fe1)
  3570. )
  3571. (fp_line (start -2.646203 -1.35621) (end 2.646203 -1.35621)
  3572. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2287d07f-e130-402f-97ce-a494c546b2e6))
  3573. (fp_line (start -2.646203 1.35621) (end 2.646203 1.35621)
  3574. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d4a63751-3637-434f-a64c-30b347739ceb))
  3575. (fp_line (start -1.269291 -1.35621) (end -1.269291 1.35621)
  3576. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f4750c60-8fcf-4bea-956c-27bef0c005ac))
  3577. (fp_line (start 2.646203 -1.35621) (end 2.646203 -0.972695)
  3578. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 711d7ba2-8faf-47c2-855b-cdd467393d64))
  3579. (fp_line (start 2.646203 1.35621) (end 2.646203 0.972695)
  3580. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a5ace8f8-4003-41a0-a387-609e5284751b))
  3581. (fp_circle (center -2.800102 1.279909) (end -2.77013 1.279909)
  3582. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8d58d93d-54f0-4a75-a3e1-701aa4e1d43a))
  3583. (pad "1" smd rect (at 2.503683 0 270) (size 2.06251 1.539014) (layers "F.Cu" "F.Paste" "F.Mask")
  3584. (net 76 "/PI/USBC.VBUS") (pinfunction "A") (pintype "unspecified") (tstamp c6f5b133-9b2b-4366-8b3e-87c32cc7cfe6))
  3585. (pad "2" smd rect (at -2.503683 0 270) (size 2.06251 1.539014) (layers "F.Cu" "F.Paste" "F.Mask")
  3586. (net 5 "+5V") (pinfunction "K") (pintype "unspecified") (tstamp 9b897b80-c09c-4626-b814-40b7f8c8cf7c))
  3587. (model "jlc_lib/jlc_footprints/packages3d/SMA_L4.4-W2.8-LS5.4-R-RD.step"
  3588. (offset (xyz 0 0 0.1000759985))
  3589. (scale (xyz 1 1 1))
  3590. (rotate (xyz 0 0 0))
  3591. )
  3592. )
  3593. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  3594. (tstamp c6df80c7-754f-40d0-8544-00a3617d9e5d)
  3595. (at 157.5 93.802545 180)
  3596. (descr "R0402 footprint")
  3597. (tags "R0402 footprint C279981")
  3598. (property "LCSC" "C279981")
  3599. (property "Resistance" "1kΩ")
  3600. (property "Sheetfile" "pi.kicad_sch")
  3601. (property "Sheetname" "PI")
  3602. (property "ki_keywords" "C279981")
  3603. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/e862ae2b-40be-4a4a-af2f-6022e646172a")
  3604. (attr smd)
  3605. (fp_text reference "R5" (at -2 0) (layer "F.SilkS")
  3606. (effects (font (size 1 1) (thickness 0.15)))
  3607. (tstamp 2fb6a767-2ceb-4803-9aa4-693d04cccfdf)
  3608. )
  3609. (fp_text value "1K" (at -2 0) (layer "F.Fab")
  3610. (effects (font (size 1 1) (thickness 0.15)))
  3611. (tstamp 29e53132-cce4-4ed4-bcb2-139e599f4241)
  3612. )
  3613. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  3614. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6c8df7e9-416f-4c3b-adcc-90af7fe30900))
  3615. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  3616. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d43e2191-70b4-444e-b6cd-899eeb671a87))
  3617. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  3618. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c7b71973-3d70-4273-8059-eee19fa61d54))
  3619. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  3620. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a4acbfc3-a5f3-41a9-a8c2-86b0e2b4fd25))
  3621. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  3622. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 52eab204-89c7-4f79-a2fa-37e9414f5d35))
  3623. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  3624. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bcc10e97-1236-462d-a647-0589856553f1))
  3625. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  3626. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp ce4366d9-ff10-4155-bca9-0e587b5b9d6e))
  3627. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3628. (net 47 "Net-(R5-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp 4616ed99-295a-4ac0-b5df-a3cb9c942725))
  3629. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3630. (net 46 "/PI/SPI_FLASH.SS") (pinfunction "2") (pintype "unspecified") (tstamp b8d51949-dfcc-4049-b3ac-74c77a2458ca))
  3631. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  3632. (offset (xyz 0 0.0000253999996185 0.2499359962))
  3633. (scale (xyz 1 1 1))
  3634. (rotate (xyz 0 0 0))
  3635. )
  3636. )
  3637. (footprint "jlc_footprints:SW-SMD_SM_SKCR-16S" (layer "F.Cu")
  3638. (tstamp c77b85c6-599e-4622-b55c-78a46c55f49a)
  3639. (at 120.5 123.53813 90)
  3640. (descr "SW-SMD_SM_SKCR-16S footprint")
  3641. (tags "SW-SMD_SM_SKCR-16S footprint C2909114")
  3642. (property "LCSC" "C2909114")
  3643. (property "Sheetfile" "pi.kicad_sch")
  3644. (property "Sheetname" "PI")
  3645. (property "ki_keywords" "C2909114")
  3646. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/ec39e007-73e3-40f9-a9d3-255f58eab6aa")
  3647. (attr smd)
  3648. (fp_text reference "U6" (at 4.5 0) (layer "F.SilkS")
  3649. (effects (font (size 1 1) (thickness 0.15)))
  3650. (tstamp 417510d8-f545-4090-a3a1-4557c41554b6)
  3651. )
  3652. (fp_text value "SKCR-16S" (at -4.5 0) (layer "F.Fab")
  3653. (effects (font (size 1 1) (thickness 0.15)))
  3654. (tstamp 78be447c-2d0e-4760-a29b-8abe986bbef6)
  3655. )
  3656. (fp_line (start -3.7 -3.7) (end -3.271146 -3.7)
  3657. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9198ba3d-34d6-40af-ad1d-327bf9ca0a5d))
  3658. (fp_line (start -3.7 3.7) (end -3.7 -3.7)
  3659. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 801da477-de49-4051-8553-2efc63ae2c5a))
  3660. (fp_line (start -3.271146 3.7) (end -3.7 3.7)
  3661. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8b07f76d-cd89-49f8-a643-837e6d95f95d))
  3662. (fp_line (start -1.808865 -3.7) (end -0.73114 -3.7)
  3663. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 72969d56-9fc7-4f28-ba2c-20a471cf5cb3))
  3664. (fp_line (start -0.73114 3.7) (end -1.808865 3.7)
  3665. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 526e325d-cdf7-49ab-bbaf-026383bdf2b4))
  3666. (fp_line (start 0.73114 -3.7) (end 1.808865 -3.7)
  3667. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a98347ba-bda5-4a16-99db-0bcafc8a9afe))
  3668. (fp_line (start 1.4 -0.6) (end 3.1 -0.6)
  3669. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f6fbec69-5e09-44fb-b819-3b08fb776979))
  3670. (fp_line (start 1.4 0.4) (end 1.4 -0.3)
  3671. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp fe9de77d-08cf-4ef0-8680-8bd2c647039b))
  3672. (fp_line (start 1.808865 3.7) (end 0.73114 3.7)
  3673. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 94c6667d-ab6b-4b28-9769-b71bac7934ec))
  3674. (fp_line (start 3.1 -0.6) (end 3.1 0.4)
  3675. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 68069267-1f2b-42b6-888e-b988274966ca))
  3676. (fp_line (start 3.1 0.4) (end 1.4 0.4)
  3677. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 49f5c7f5-3e48-4834-9010-4c2d5b6aeeb4))
  3678. (fp_line (start 3.271146 -3.7) (end 3.7 -3.7)
  3679. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6527acdb-f4cd-419d-8049-0dece9c07c28))
  3680. (fp_line (start 3.7 -3.7) (end 3.7 3.7)
  3681. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6c02e34d-a88c-417a-9839-77baa144e707))
  3682. (fp_line (start 3.7 3.7) (end 3.271146 3.7)
  3683. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 26c5a3b3-8545-4bcd-83bc-d7672c5828b9))
  3684. (fp_circle (center 2.700025 -1.599949) (end 2.841504 -1.599949)
  3685. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8ad5b924-53ee-441a-8f07-648285d28dae))
  3686. (fp_circle (center 3.599949 -4.599949) (end 3.741427 -4.599949)
  3687. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0a548300-ae32-4641-8462-a6c8cafbcdef))
  3688. (fp_circle (center 3.7 -3.8) (end 3.729997 -3.8)
  3689. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 08aba31d-bb43-42c7-a4e0-72283f2a3942))
  3690. (fp_circle (center 2.6 -4.5) (end 2.8 -4.5)
  3691. (stroke (width 0.4) (type solid)) (fill none) (layer "F.Fab") (tstamp 975b40b3-46d6-4577-9806-a28155c3b851))
  3692. (pad "1" smd rect (at 2.540005 -3.750064 90) (size 1 3) (layers "F.Cu" "F.Paste" "F.Mask")
  3693. (net 51 "Net-(U9-D4)") (pinfunction "1") (pintype "unspecified") (tstamp 532b9597-941a-46d4-ae94-b627941d4e3e))
  3694. (pad "2" smd rect (at -2.540005 3.750064 90) (size 1 3) (layers "F.Cu" "F.Paste" "F.Mask")
  3695. (net 50 "Net-(U9-D5)") (pinfunction "2") (pintype "unspecified") (tstamp b073dd40-e1bc-40e2-a598-aa2c14ab599a))
  3696. (pad "4" smd rect (at -2.540005 -3.750064 90) (size 1 3) (layers "F.Cu" "F.Paste" "F.Mask")
  3697. (net 49 "Net-(U9-D6)") (pinfunction "4") (pintype "unspecified") (tstamp 71b1024a-2768-4d4c-9abc-b9853596fd94))
  3698. (pad "8" smd rect (at 2.540005 3.750064 90) (size 1 3) (layers "F.Cu" "F.Paste" "F.Mask")
  3699. (net 48 "Net-(U9-D7)") (pinfunction "8") (pintype "unspecified") (tstamp 4a2143a4-b175-494a-90d9-94a69462bf23))
  3700. (pad "C1" smd rect (at 0 -3.750064 90) (size 1 3) (layers "F.Cu" "F.Paste" "F.Mask")
  3701. (net 1 "GND") (pinfunction "C") (pintype "unspecified") (tstamp 16341985-0e05-4784-a2cc-163fd3b84559))
  3702. (pad "C2" smd rect (at 0 3.750064 90) (size 1 3) (layers "F.Cu" "F.Paste" "F.Mask")
  3703. (net 1 "GND") (pinfunction "C") (pintype "unspecified") (tstamp cd9a39c1-2cd0-4a97-b73b-f48327475774))
  3704. )
  3705. (footprint "jlc_footprints:C0603" (layer "F.Cu")
  3706. (tstamp c8f10787-ce23-472b-9b8c-f37b14938230)
  3707. (at 144.3349 81.049975)
  3708. (descr "C0603 footprint")
  3709. (tags "C0603 footprint C380316")
  3710. (property "Capacitance" "10uF")
  3711. (property "LCSC" "C380316")
  3712. (property "Sheetfile" "pi.kicad_sch")
  3713. (property "Sheetname" "PI")
  3714. (property "ki_keywords" "C380316")
  3715. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/4f113d41-acfa-4c78-b432-07a5673fdf18")
  3716. (attr smd)
  3717. (fp_text reference "C4" (at 2.5 0) (layer "F.SilkS")
  3718. (effects (font (size 1 1) (thickness 0.15)))
  3719. (tstamp 7a57d690-38e8-45fd-93fd-f263c9988945)
  3720. )
  3721. (fp_text value "10uF" (at 3.5 0) (layer "F.Fab")
  3722. (effects (font (size 1 1) (thickness 0.15)))
  3723. (tstamp 7d8095e1-3025-4849-aeba-48310e00a8d3)
  3724. )
  3725. (fp_line (start -1.405461 -0.405613) (end -1.405461 0.394361)
  3726. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8c9dbb97-5cd8-4c30-9e72-22071ae6b333))
  3727. (fp_line (start -0.295631 -0.715443) (end -1.095631 -0.715443)
  3728. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8df9882c-2cd7-4469-9069-b6d125c207cf))
  3729. (fp_line (start -0.295631 0.704166) (end -1.095631 0.704166)
  3730. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 701df518-28a7-4166-a377-fbf9ef829a87))
  3731. (fp_line (start 0.280264 -0.709627) (end 1.080239 -0.709627)
  3732. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5e8df6ab-ef5a-4216-af3f-d9add8762465))
  3733. (fp_line (start 0.280264 0.710033) (end 1.080239 0.710033)
  3734. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a09ba347-d781-4322-bc27-c02c33aa1909))
  3735. (fp_line (start 1.390018 -0.399771) (end 1.390018 0.400254)
  3736. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 19b815a4-4eae-4c24-9913-80e2fed5956e))
  3737. (fp_arc (start -1.405512 -0.405613) (mid -1.314765 -0.624696) (end -1.095682 -0.715443)
  3738. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 17d4fb88-45f4-4356-b46d-2aa8b9102b36))
  3739. (fp_arc (start -1.095682 0.704216) (mid -1.314773 0.61346) (end -1.405511 0.394362)
  3740. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp d5f0aec8-3c15-4839-bbad-d8b98cfda8e8))
  3741. (fp_arc (start 1.080188 -0.709627) (mid 1.29928 -0.618871) (end 1.390018 -0.399772)
  3742. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp befe2433-45c3-4784-af43-6ea5c330958b))
  3743. (fp_arc (start 1.390018 0.400203) (mid 1.299271 0.619286) (end 1.080188 0.710033)
  3744. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 76932f5f-a344-4d80-b6ee-e80e2314665b))
  3745. (fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
  3746. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 222c7e96-b53e-418f-8978-1e0b78a490e9))
  3747. (pad "1" smd rect (at -0.700025 0) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
  3748. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp bbfe5a85-9a33-4cee-a45e-a021829a809d))
  3749. (pad "2" smd rect (at 0.700025 0) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
  3750. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 748d0acf-c5df-45d9-8ae5-40d4efdda976))
  3751. (model "jlc_lib/jlc_footprints/packages3d/C0603.step"
  3752. (offset (xyz 0 0 0.400049994))
  3753. (scale (xyz 1 1 1))
  3754. (rotate (xyz 0 0 0))
  3755. )
  3756. )
  3757. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  3758. (tstamp cf68a06f-0974-42c6-ba9e-0094b754371c)
  3759. (at 187.254966 96.907765)
  3760. (descr "C0402 footprint")
  3761. (tags "C0402 footprint C140675")
  3762. (property "Capacitance" "4.7nF")
  3763. (property "LCSC" "C237221")
  3764. (property "Sheetfile" "pi.kicad_sch")
  3765. (property "Sheetname" "PI")
  3766. (property "ki_keywords" "C237221")
  3767. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/5e2fc691-aa6a-4e7a-aa4a-3989808a00fd")
  3768. (attr smd)
  3769. (fp_text reference "C25" (at 0 -1.5) (layer "F.SilkS")
  3770. (effects (font (size 1 1) (thickness 0.15)))
  3771. (tstamp fc95b3ca-09cd-462e-86a9-aca3fa808ca6)
  3772. )
  3773. (fp_text value "4.7nF" (at 0 1.5) (layer "F.Fab")
  3774. (effects (font (size 1 1) (thickness 0.15)))
  3775. (tstamp af8c460e-6721-4d0e-a0cc-04078db88a6d)
  3776. )
  3777. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  3778. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 39b6ce08-110f-4748-9b21-8baba687555e))
  3779. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  3780. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7d150b05-3d57-4256-9360-660610afb592))
  3781. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  3782. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 55ed7c66-6b1b-47ee-8f2f-552cc1a54b85))
  3783. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  3784. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 310cb475-fec8-42b9-8754-ff508e9e61a4))
  3785. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  3786. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 66b37299-d82d-4bd5-9157-377cf4ac1460))
  3787. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  3788. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 37968187-41cf-4939-85ad-485826dcca61))
  3789. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  3790. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 251015ac-44b4-4f91-b362-5569f4d7e3ba))
  3791. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  3792. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6a44f938-bfd5-47a2-bd01-9e2ec3444195))
  3793. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  3794. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4e8b5f2e-3397-43c5-a98e-ea237eae3859))
  3795. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  3796. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fb574003-a302-4441-a36f-8c6ac4ddceda))
  3797. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  3798. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 1a4ab050-731f-4ce0-8af7-51dbae0fc9bd))
  3799. (pad "1" smd rect (at -0.545085 0) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3800. (net 10 "Net-(C25-Pad1)") (pinfunction "1") (pintype "input") (tstamp 8f85c15c-16fa-456e-9dd4-9cbf2752393d))
  3801. (pad "2" smd rect (at 0.545085 0) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3802. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp d01c6e64-61b3-4c46-90bd-1c3a1308c006))
  3803. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  3804. (offset (xyz 0 0.0000253999996185 0.2499359962))
  3805. (scale (xyz 1 1 1))
  3806. (rotate (xyz 0 0 0))
  3807. )
  3808. )
  3809. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  3810. (tstamp d255177f-c8c1-4a75-8700-d32c5fc0a160)
  3811. (at 153.5 105.84763 -90)
  3812. (descr "C0402 footprint")
  3813. (tags "C0402 footprint C140675")
  3814. (property "Capacitance" "100nF")
  3815. (property "LCSC" "C105883")
  3816. (property "Sheetfile" "pi.kicad_sch")
  3817. (property "Sheetname" "PI")
  3818. (property "ki_keywords" "C105883")
  3819. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/1abc0895-58ad-46bc-b099-8456e2088c2b")
  3820. (attr smd)
  3821. (fp_text reference "C14" (at 2.954915 0 90) (layer "F.SilkS")
  3822. (effects (font (size 1 1) (thickness 0.15)))
  3823. (tstamp d6bc7d38-7e12-4824-bbf6-0d2080f04ee9)
  3824. )
  3825. (fp_text value "100nF" (at 3.454915 0 90) (layer "F.Fab")
  3826. (effects (font (size 1 1) (thickness 0.15)))
  3827. (tstamp 1e5a1b2b-4127-49b7-8165-4c479636de15)
  3828. )
  3829. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  3830. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f05d875c-570c-4b1d-ada2-3f85fc32d0af))
  3831. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  3832. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp eb522037-e1fc-45e2-b247-b46fa225615d))
  3833. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  3834. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a96c64ed-4f13-43d2-a096-2ac6a756fd66))
  3835. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  3836. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f7a8a630-5b9c-4a15-9ee8-65e85bc89b6b))
  3837. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  3838. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1a02e417-ccf7-4e1b-aa35-7c0d1d057fcc))
  3839. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  3840. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 57f9d22a-29c9-4845-afea-6997a00a404c))
  3841. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  3842. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9e5ad9a7-4f02-4b05-b480-508e403e5f3d))
  3843. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  3844. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7d3a42fd-18c1-4be4-bdf1-1840be67d25d))
  3845. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  3846. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 575c560d-bca0-40e8-bef1-54ef115ee198))
  3847. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  3848. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3c8c2bee-a435-4a53-97c3-85f3e6f61186))
  3849. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  3850. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 93c43408-33ad-4634-9e5e-8283d10d8c9f))
  3851. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3852. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp 25cf4e9a-daa9-4d6e-a080-2ef548cca5e9))
  3853. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  3854. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 6eac392d-a4ae-4f13-bee3-d82ed707176b))
  3855. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  3856. (offset (xyz 0 0.0000253999996185 0.2499359962))
  3857. (scale (xyz 1 1 1))
  3858. (rotate (xyz 0 0 0))
  3859. )
  3860. )
  3861. (footprint "jlc_footprints:R1206" (layer "F.Cu")
  3862. (tstamp d2ff94d7-3344-45dd-bfcb-104f090f8535)
  3863. (at 183.754966 103.407765 180)
  3864. (descr "R1206 footprint")
  3865. (tags "R1206 footprint C144481")
  3866. (property "LCSC" "C144481")
  3867. (property "Resistance" "60.4Ω")
  3868. (property "Sheetfile" "pi.kicad_sch")
  3869. (property "Sheetname" "PI")
  3870. (property "ki_keywords" "C144481")
  3871. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/f2bc3b53-7c0c-4829-b6e9-4523829f31c9")
  3872. (attr smd)
  3873. (fp_text reference "R18" (at 0 -2) (layer "F.SilkS")
  3874. (effects (font (size 1 1) (thickness 0.15)))
  3875. (tstamp 8ec3fff1-6ba1-4eb7-baf1-6dc46e847c5b)
  3876. )
  3877. (fp_text value "60R4" (at 3 -0.5 90) (layer "F.Fab")
  3878. (effects (font (size 1 1) (thickness 0.15)))
  3879. (tstamp 867a4dd2-72cc-4add-a269-d67a2fe555f0)
  3880. )
  3881. (fp_line (start -2.311125 -1.079096) (end -0.951207 -1.079096)
  3882. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ac535cef-dac1-4b12-99a6-d682bc9921be))
  3883. (fp_line (start -2.311125 1.079096) (end -2.311125 -1.079096)
  3884. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp dfd9340d-1150-45ce-97b2-ce74c2c29e1c))
  3885. (fp_line (start -0.951207 1.079096) (end -2.311125 1.079096)
  3886. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 629d28a0-334b-4a94-b74c-e2dc891b1006))
  3887. (fp_line (start 0.951207 1.079096) (end 2.311125 1.079096)
  3888. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 14da2e59-0e3f-44d0-aacc-02d50a0037e4))
  3889. (fp_line (start 2.311125 -1.079096) (end 0.951207 -1.079096)
  3890. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5646761a-de83-449c-9784-a9067bfce3af))
  3891. (fp_line (start 2.311125 1.079096) (end 2.311125 -1.079096)
  3892. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c009646f-ad26-4caf-89fc-3c95a64d1cc9))
  3893. (fp_circle (center -1.549911 0.787402) (end -1.519939 0.787402)
  3894. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7ac9ee97-ddc7-410b-8c61-a338b9042daa))
  3895. (pad "1" smd rect (at -1.478791 0 180) (size 1.207518 1.701016) (layers "F.Cu" "F.Paste" "F.Mask")
  3896. (net 41 "Net-(H9-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp 51029a9c-6430-4c35-81ac-84f52863e615))
  3897. (pad "2" smd rect (at 1.478791 0 180) (size 1.207518 1.701016) (layers "F.Cu" "F.Paste" "F.Mask")
  3898. (net 10 "Net-(C25-Pad1)") (pinfunction "2") (pintype "unspecified") (tstamp c032a8d8-1e85-4af1-96bc-c1b42b48e74d))
  3899. (model "jlc_lib/jlc_footprints/packages3d/R1206.step"
  3900. (offset (xyz 0 0 0))
  3901. (scale (xyz 1 1 1))
  3902. (rotate (xyz 0 0 0))
  3903. )
  3904. )
  3905. (footprint "jlc_footprints:USB-A-TH_USB-302-T" (layer "F.Cu")
  3906. (tstamp d512e717-13ff-4e1e-b415-9e816ba0587c)
  3907. (at 104.581769 64.217646 -90)
  3908. (descr "USB-A-TH_USB-302-T footprint")
  3909. (tags "USB-A-TH_USB-302-T footprint C386740")
  3910. (property "LCSC" "C386740")
  3911. (property "Sheetfile" "dispensy.kicad_sch")
  3912. (property "Sheetname" "")
  3913. (property "ki_keywords" "C386740")
  3914. (path "/52a21062-c4e0-4e3b-95dd-576fd2e0785a")
  3915. (attr through_hole)
  3916. (fp_text reference "U2" (at -6 -2.908687 90) (layer "F.SilkS")
  3917. (effects (font (size 1 1) (thickness 0.15)))
  3918. (tstamp 03ebf350-2e9f-4169-8be4-981830f41c30)
  3919. )
  3920. (fp_text value "USB-A" (at 7.782354 8.081769 -180) (layer "F.Fab")
  3921. (effects (font (size 1 1) (thickness 0.15)))
  3922. (tstamp f1eecdca-c08e-4f39-bdb1-1a449644b65b)
  3923. )
  3924. (fp_line (start -7.226314 11.854966) (end -6.261113 11.854966)
  3925. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f64e382a-eecc-411b-8389-bf5bd8dc9c2b))
  3926. (fp_line (start -7.226314 12.210592) (end -6.591313 12.210592)
  3927. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4942f8ed-fba3-4655-ace1-bdeff62b864d))
  3928. (fp_line (start -7.223774 12.210592) (end -7.226314 11.854966)
  3929. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 303e3426-c32e-424d-b268-569ed09bf8c0))
  3930. (fp_line (start -7.000025 -1.920447) (end -4.36157 -1.920447)
  3931. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp adc51199-e2cb-421d-9e10-aceea628bd8d))
  3932. (fp_line (start -7.000025 -0.391034) (end -7.000025 -1.920447)
  3933. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 709b8e72-1367-40f5-b5b3-0f27be5b4ccf))
  3934. (fp_line (start -7.000025 11.679578) (end -7.000025 3.100965)
  3935. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2235ce4d-87a6-47fa-a4a2-8efdc74a2254))
  3936. (fp_line (start -6.261113 11.854966) (end -5.905512 12.210592)
  3937. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 38b3710e-9c52-48ab-b3c4-9a50597307e9))
  3938. (fp_line (start -5.905512 12.210592) (end 5.753137 12.210592)
  3939. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 938ebf4b-1d67-44cb-a7c1-415f22f35fd0))
  3940. (fp_line (start -5.651511 5.301727) (end -5.168885 11.397739)
  3941. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 61de576d-4664-4eed-bc7b-1e319a9c3943))
  3942. (fp_line (start -5.200025 -1.920447) (end -5.200025 2.779553)
  3943. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c2129c7d-322e-4eb6-9480-6eca6b025aa1))
  3944. (fp_line (start -5.200025 2.779553) (end -2.1 2.779553)
  3945. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 095f01ae-f60f-47f5-b751-2ca70096858d))
  3946. (fp_line (start -5.168885 11.397739) (end -2.781306 11.397739)
  3947. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 366abbeb-dd96-4021-bd86-a3babb315bc0))
  3948. (fp_line (start -5.041885 5.301727) (end -5.651511 5.301727)
  3949. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp cab21be6-865e-4650-9cac-1d7b99adbc31))
  3950. (fp_line (start -4.584735 9.721361) (end -5.041885 5.301727)
  3951. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4c1f25e6-63e1-4a66-8129-21d8a28a657e))
  3952. (fp_line (start -4.483109 10.584963) (end -4.584735 9.721361)
  3953. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1c099499-8468-41a9-8f1a-bd936ac88099))
  3954. (fp_line (start -3.304572 10.584963) (end -4.483109 10.584963)
  3955. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 272795d0-625c-4e52-9c46-25fe66052ff6))
  3956. (fp_line (start -3.230886 9.990627) (end -3.304572 10.584963)
  3957. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 79c40cf5-a32c-4e88-9e01-d4b5b414c799))
  3958. (fp_line (start -2.857506 5.352578) (end -3.230886 9.990627)
  3959. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp cd830683-d964-402c-a639-7c795d9fce69))
  3960. (fp_line (start -2.781306 11.397739) (end -2.247879 5.352578)
  3961. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a1e449dd-8fb1-4e14-8c43-668c83f2ac53))
  3962. (fp_line (start -2.638176 -1.920447) (end -1.861697 -1.920447)
  3963. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ca0fe58a-d0bd-4fcf-9b59-cf3ef0cd5933))
  3964. (fp_line (start -2.247879 5.352578) (end -2.857506 5.352578)
  3965. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3cc2e453-4ca5-4968-9dbe-3b8b51b80a95))
  3966. (fp_line (start -2.1 2.779553) (end -2.1 4.779553)
  3967. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5b6cecec-4eea-4384-91ae-74a5281173ef))
  3968. (fp_line (start -2.1 4.779553) (end 2 4.779553)
  3969. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ed401472-028c-4ced-b1d3-c236ce83801b))
  3970. (fp_line (start -0.138303 -1.920447) (end 0.138303 -1.920447)
  3971. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a5b3922e-5ee6-4781-ac1a-f03fe2efc874))
  3972. (fp_line (start -0.012725 9.467361) (end -0.012725 12.210592)
  3973. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a62e3676-ed25-4e6b-9dbe-392e7d08e12a))
  3974. (fp_line (start 0.0127 5.225578) (end 0.0127 7.892583)
  3975. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 1de9236b-fef0-4074-b446-a9da0eee613a))
  3976. (fp_line (start 0.0127 5.406604) (end 0.0127 4.779553)
  3977. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 85420b8e-72d7-4bbd-a30e-bb418d6b12da))
  3978. (fp_line (start 0.0127 7.892583) (end 0.114275 7.994158)
  3979. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 403106ea-d146-4921-960d-c80125b8ff68))
  3980. (fp_line (start 0.0635 9.391161) (end -0.012725 9.467361)
  3981. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4e7a2447-2dae-4233-8e40-4a6cce4b50bb))
  3982. (fp_line (start 0.114275 7.994158) (end 1.028702 7.994158)
  3983. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c88921c4-2c08-4a91-8333-cb9d4dd9537d))
  3984. (fp_line (start 1.003277 9.391161) (end 0.0635 9.391161)
  3985. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 23caa365-b4a5-468b-b921-dec4fc23ec62))
  3986. (fp_line (start 1.028702 7.994158) (end 1.028702 9.365735)
  3987. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a4822429-af33-43d2-bac2-efd0c82a0410))
  3988. (fp_line (start 1.028702 9.365735) (end 1.003277 9.391161)
  3989. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2c72eff3-19ee-4d9c-af09-3071a2e3e866))
  3990. (fp_line (start 1.861697 -1.920447) (end 2.63843 -1.920447)
  3991. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp aeeca719-b37f-4abd-b929-9d5fd4269d83))
  3992. (fp_line (start 2 2.779553) (end 5.400025 2.779553)
  3993. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2b3643a1-951f-4ad2-9eff-b76c4b77884b))
  3994. (fp_line (start 2 4.779553) (end 2 2.779553)
  3995. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6b02443d-e40c-4ce8-b175-15c2d40202fd))
  3996. (fp_line (start 2.222504 5.377953) (end 2.705131 11.473965)
  3997. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 55639c57-af94-45ca-8443-48e8e5a30b6e))
  3998. (fp_line (start 2.705131 11.473965) (end 5.09271 11.473965)
  3999. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f624dfc7-6437-43bd-9e15-0acbb6b83bac))
  4000. (fp_line (start 2.832131 5.377953) (end 2.222504 5.377953)
  4001. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9f519c14-b7a3-4f82-8f56-b592e3ab17eb))
  4002. (fp_line (start 3.289281 9.797587) (end 2.832131 5.377953)
  4003. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f2857e0f-324c-4b03-8d43-900a2bb12acc))
  4004. (fp_line (start 3.390907 10.661163) (end 3.289281 9.797587)
  4005. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9c29ecc7-3623-4472-a3ba-b28b658451e8))
  4006. (fp_line (start 4.361824 -1.920447) (end 7.000025 -1.920447)
  4007. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4c6eeac7-5135-4f23-8ebc-822994ac5b30))
  4008. (fp_line (start 4.569444 10.661163) (end 3.390907 10.661163)
  4009. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4f7b2de3-b48b-4138-b4f6-755dd56ce674))
  4010. (fp_line (start 4.643129 10.066777) (end 4.569444 10.661163)
  4011. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 849e7bb3-fed5-45f5-a844-bcdfef1fa919))
  4012. (fp_line (start 5.01651 5.428727) (end 4.643129 10.066777)
  4013. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 15fba3c4-f99e-4b3e-b0bc-874d45c2bb3b))
  4014. (fp_line (start 5.09271 11.473965) (end 5.626137 5.428727)
  4015. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp df797487-a3a5-4ae4-93ad-dac82fcf5d81))
  4016. (fp_line (start 5.400025 2.779553) (end 5.400025 -1.920447)
  4017. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 25315a1f-499b-4074-9f41-fb363efe1bc1))
  4018. (fp_line (start 5.626137 5.428727) (end 5.01651 5.428727)
  4019. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2aa73da5-ecad-42dd-aa49-f7625162fa96))
  4020. (fp_line (start 5.753137 12.210592) (end 6.083287 11.880366)
  4021. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2ba0d6ba-250f-4e16-97e1-9f31f4846235))
  4022. (fp_line (start 6.083287 11.880366) (end 7.27714 11.880366)
  4023. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0a5698b7-6b1c-4d79-b658-3b49244251b9))
  4024. (fp_line (start 7.000025 -1.920447) (end 7.000025 -0.391034)
  4025. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 718101ac-181e-4dd8-9179-ea0bf8345439))
  4026. (fp_line (start 7.000025 3.100965) (end 7.000025 11.880366)
  4027. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2bf764e4-2e2b-4e49-9761-d50bad43dde8))
  4028. (fp_line (start 7.27714 11.880366) (end 7.27714 12.210592)
  4029. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 33e3af92-a66d-4749-acb6-6c9e631e4246))
  4030. (fp_line (start 7.27714 12.210592) (end 6.616713 12.210592)
  4031. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 0e83dbd0-d32d-4937-b09e-5d92738d9bb9))
  4032. (fp_circle (center -7.037338 -1.880493) (end -7.007366 -1.880493)
  4033. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2f4d46a7-e520-4470-9eae-e5753b7efb07))
  4034. (fp_circle (center -4.494793 -1.537846) (end -4.294895 -1.537846)
  4035. (stroke (width 0.4) (type solid)) (fill none) (layer "F.Fab") (tstamp 2016fc16-2cc1-470d-b56a-a1f196d40023))
  4036. (pad "1" thru_hole circle (at -3.499873 -1.354966 270) (size 1.6 1.6) (drill 1.100025) (layers "*.Cu" "*.Mask")
  4037. (net 87 "Net-(U2-VCC)") (pinfunction "VCC") (pintype "unspecified") (tstamp 64f6cf36-cbd9-4ec3-8517-9d67be79a13e))
  4038. (pad "2" thru_hole circle (at -1 -1.354966 270) (size 1.6 1.6) (drill 1.100025) (layers "*.Cu" "*.Mask")
  4039. (net 63 "Net-(U2-D+)") (pinfunction "D-") (pintype "unspecified") (tstamp 468666c5-6111-456e-b77f-20457223ff60))
  4040. (pad "3" thru_hole circle (at 1 -1.354966 270) (size 1.6 1.6) (drill 1.100025) (layers "*.Cu" "*.Mask")
  4041. (net 63 "Net-(U2-D+)") (pinfunction "D+") (pintype "unspecified") (tstamp fd49a871-2ceb-4ae7-8625-c3f5540d7fbd))
  4042. (pad "4" thru_hole circle (at 3.500127 -1.354966 270) (size 1.6 1.6) (drill 1.100025) (layers "*.Cu" "*.Mask")
  4043. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp 7ddc3655-cc7a-40cc-9628-2f78c4958fbe))
  4044. (pad "5" thru_hole oval (at -6.569977 1.354966) (size 3.2 1.8) (drill oval 2.499873 1.199898) (layers "*.Cu" "*.Mask")
  4045. (net 45 "Net-(U2-SH1)") (pinfunction "SH1") (pintype "unspecified") (tstamp 8cbeaedf-998a-41f0-93d6-5526a1334f46))
  4046. (pad "6" thru_hole oval (at 6.569977 1.354966 180) (size 3.2 1.8) (drill oval 2.499873 1.199898) (layers "*.Cu" "*.Mask")
  4047. (net 45 "Net-(U2-SH1)") (pinfunction "SH2") (pintype "unspecified") (tstamp 75d94973-f8ce-42d8-abee-640388097a1a))
  4048. (model "jlc_lib/jlc_footprints/packages3d/USB-A-TH_USB-302-T.step"
  4049. (offset (xyz 0.01269999981 -2.701797959 0.00530859992))
  4050. (scale (xyz 1 1 1))
  4051. (rotate (xyz 0 0 0))
  4052. )
  4053. )
  4054. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  4055. (tstamp d795366c-e051-4c72-bd0b-c3cc97ad1e4a)
  4056. (at 140 118.34763 90)
  4057. (descr "C0402 footprint")
  4058. (tags "C0402 footprint C140675")
  4059. (property "Capacitance" "100nF")
  4060. (property "LCSC" "C105883")
  4061. (property "Sheetfile" "pi.kicad_sch")
  4062. (property "Sheetname" "PI")
  4063. (property "ki_keywords" "C105883")
  4064. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/ebe859d8-f43a-4e14-a9f6-ee656668a282")
  4065. (attr smd)
  4066. (fp_text reference "C6" (at -2.454915 0 90) (layer "F.SilkS")
  4067. (effects (font (size 1 1) (thickness 0.15)))
  4068. (tstamp 5adf1ccb-b1dd-47c0-89c9-38752c92afac)
  4069. )
  4070. (fp_text value "100nF" (at -3.454915 0 90) (layer "F.Fab")
  4071. (effects (font (size 1 1) (thickness 0.15)))
  4072. (tstamp 7bd16bc1-0eb5-414b-ac7f-af3cb3544d9c)
  4073. )
  4074. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  4075. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f41ea338-9657-462f-812a-14eb5be5cd87))
  4076. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  4077. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d373287b-646f-4647-845d-7c1d94cb4119))
  4078. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  4079. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c37c8dc1-915d-4398-9279-95dcb8bc1acb))
  4080. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  4081. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4fc7cb3a-8df5-4790-9a85-e81361fd17e3))
  4082. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  4083. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9943163f-bb4b-45ef-a711-2b51f9522ae6))
  4084. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  4085. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4195da89-94b2-43e8-ab09-802d364552e8))
  4086. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  4087. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5d08b52d-3265-449e-885f-315d3e8a731f))
  4088. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  4089. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c8888ab8-5410-4318-bae0-ba0368ce3c2a))
  4090. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  4091. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d7a5efd0-fcf0-435a-9993-44b5723dcb9e))
  4092. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  4093. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 11dd7256-f29e-415f-8e36-8d4ef645a6b4))
  4094. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  4095. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2961638f-8f28-47a0-9836-76b1d5c51cc3))
  4096. (pad "1" smd rect (at -0.545085 0 90) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4097. (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 1c5d5dd1-c554-43c9-bf22-702f544ba93d))
  4098. (pad "2" smd rect (at 0.545085 0 90) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4099. (net 2 "+3.3V") (pinfunction "2") (pintype "input") (tstamp f4d864ba-3e5e-4bc5-996f-7b49c1fa6c45))
  4100. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  4101. (offset (xyz 0 0.0000253999996185 0.2499359962))
  4102. (scale (xyz 1 1 1))
  4103. (rotate (xyz 0 0 0))
  4104. )
  4105. )
  4106. (footprint "jlc_footprints:SOIC-16_L9.9-W3.9-P1.27-LS6.0-BL" (layer "F.Cu")
  4107. (tstamp d7c3722b-2198-47bf-9ffc-d668d1a3aaea)
  4108. (at 135 122.302545 -90)
  4109. (descr "SOIC-16_L9.9-W3.9-P1.27-LS6.0-BL footprint")
  4110. (tags "SOIC-16_L9.9-W3.9-P1.27-LS6.0-BL footprint C5613")
  4111. (property "LCSC" "C5613")
  4112. (property "Sheetfile" "pi.kicad_sch")
  4113. (property "Sheetname" "PI")
  4114. (property "ki_keywords" "C5613")
  4115. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/b98c941e-1c6c-4910-99f5-faa2ce2e67c8")
  4116. (attr smd)
  4117. (fp_text reference "U9" (at -5.764415 0.175006) (layer "F.SilkS")
  4118. (effects (font (size 1 1) (thickness 0.15)))
  4119. (tstamp 873f48ac-80df-42cb-890a-a0e62bee79ea)
  4120. )
  4121. (fp_text value "74HC165D,653" (at -0.264415 0 90) (layer "F.Fab")
  4122. (effects (font (size 1 1) (thickness 0.15)))
  4123. (tstamp 5cba7187-b882-4fc6-9d90-96eaf5746cf7)
  4124. )
  4125. (fp_line (start -5.026213 -1.521412) (end 5.026213 -1.521412)
  4126. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 289f0c87-d8af-4431-92ce-7601ec09f968))
  4127. (fp_line (start -5.026213 1.521412) (end -5.026213 -1.521412)
  4128. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1bf0e20f-a833-429e-83d8-d9334d8646e1))
  4129. (fp_line (start 5.026213 -1.521412) (end 5.026213 1.521412)
  4130. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 168f55b2-1336-4dbf-9f26-f981fc969a87))
  4131. (fp_line (start 5.026213 1.521412) (end -5.026213 1.521412)
  4132. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0000c8b4-1ad1-4475-8611-3d08de68e1c5))
  4133. (fp_circle (center -5.20701 2.667005) (end -5.056896 2.667005)
  4134. (stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8fbdaf5f-c0a2-4e3f-aaae-4cca292d85fa))
  4135. (fp_circle (center -4.949962 3) (end -4.91999 3)
  4136. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8c164c40-c349-4d29-a416-fdf6233fb168))
  4137. (fp_circle (center -4.445009 0.769114) (end -4.294895 0.769114)
  4138. (stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp a44a1223-0bce-4586-b0d2-d585e57b1973))
  4139. (fp_circle (center -4.445009 3.400051) (end -4.195072 3.400051)
  4140. (stroke (width 0.5) (type solid)) (fill none) (layer "F.Fab") (tstamp 812e6b5d-27a9-4b0f-9408-960e5817f75e))
  4141. (pad "1" smd oval (at -4.445009 2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4142. (net 70 "/PI/SR_Load") (pinfunction "PL#") (pintype "unspecified") (tstamp 3409ec25-3204-48df-a2e4-ccab4c2959e5))
  4143. (pad "2" smd oval (at -3.175006 2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4144. (net 71 "/PI/SR_Clock") (pinfunction "CP") (pintype "unspecified") (tstamp f220858f-748e-4692-8b39-211c482b6a4a))
  4145. (pad "3" smd oval (at -1.905004 2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4146. (net 51 "Net-(U9-D4)") (pinfunction "D4") (pintype "unspecified") (tstamp 7d966f6b-d7d8-4d3e-93f1-796cd28a72f2))
  4147. (pad "4" smd oval (at -0.635001 2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4148. (net 50 "Net-(U9-D5)") (pinfunction "D5") (pintype "unspecified") (tstamp 3654b958-bd16-4bc3-aaa7-535152208586))
  4149. (pad "5" smd oval (at 0.635001 2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4150. (net 49 "Net-(U9-D6)") (pinfunction "D6") (pintype "unspecified") (tstamp a3539dac-f20c-496f-b985-c9a1d8cd0b4f))
  4151. (pad "6" smd oval (at 1.905004 2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4152. (net 48 "Net-(U9-D7)") (pinfunction "D7") (pintype "unspecified") (tstamp d94e10f9-69f9-47e5-8a6e-07a8718e1cb4))
  4153. (pad "7" smd oval (at 3.175006 2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4154. (net 72 "unconnected-(U9-Q7#-Pad7)") (pinfunction "Q7#") (pintype "unspecified+no_connect") (tstamp 685fc8f2-afec-4ee0-aca0-3d4ca737fea2))
  4155. (pad "8" smd oval (at 4.445009 2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4156. (net 1 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp ff3e932c-d56d-46a7-a778-0cb1383b3f35))
  4157. (pad "9" smd oval (at 4.445009 -2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4158. (net 73 "/PI/SR_Data") (pinfunction "Q7") (pintype "unspecified") (tstamp bfebd4f7-e0d3-425f-b666-f43de905abde))
  4159. (pad "10" smd oval (at 3.175006 -2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4160. (net 1 "GND") (pinfunction "DS") (pintype "unspecified") (tstamp 8076c334-5719-447e-897b-2dbabcf5a136))
  4161. (pad "11" smd oval (at 1.905004 -2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4162. (net 1 "GND") (pinfunction "D0") (pintype "unspecified") (tstamp 4336c50a-d396-4ff1-95ec-ad940898b076))
  4163. (pad "12" smd oval (at 0.635001 -2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4164. (net 1 "GND") (pinfunction "D1") (pintype "unspecified") (tstamp 97ff2439-032a-4c7f-a065-1a5f4ad7d038))
  4165. (pad "13" smd oval (at -0.635001 -2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4166. (net 1 "GND") (pinfunction "D2") (pintype "unspecified") (tstamp dea2e269-10f3-4b86-99b8-64624d3684b9))
  4167. (pad "14" smd oval (at -1.905004 -2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4168. (net 1 "GND") (pinfunction "D3") (pintype "unspecified") (tstamp 2f70f6eb-0194-4951-8dc1-def6f254f599))
  4169. (pad "15" smd oval (at -3.175006 -2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4170. (net 1 "GND") (pinfunction "CE#") (pintype "unspecified") (tstamp dbe658f1-5ddd-4bb0-bef0-70766637e806))
  4171. (pad "16" smd oval (at -4.445009 -2.735585 270) (size 0.602007 1.970993) (layers "F.Cu" "F.Paste" "F.Mask")
  4172. (net 2 "+3.3V") (pinfunction "VCC") (pintype "unspecified") (tstamp ffa5adcc-5778-4446-bd56-fc50dc580821))
  4173. (model "jlc_lib/jlc_footprints/packages3d/SOIC-16_L9.9-W3.9-P1.27-LS6.0-BL.step"
  4174. (offset (xyz 0 0 0))
  4175. (scale (xyz 1 1 1))
  4176. (rotate (xyz 0 0 0))
  4177. )
  4178. )
  4179. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  4180. (tstamp d888098e-a44c-44ce-9436-ed81a412a0bc)
  4181. (at 197.5 109.845 180)
  4182. (descr "R0402 footprint")
  4183. (tags "R0402 footprint C279981")
  4184. (property "LCSC" "C406733")
  4185. (property "Resistance" "10kΩ")
  4186. (property "Sheetfile" "dispensy.kicad_sch")
  4187. (property "Sheetname" "")
  4188. (property "ki_keywords" "C406733")
  4189. (path "/62175efd-56d0-4f3f-bf21-32d55d3238a3")
  4190. (attr smd)
  4191. (fp_text reference "R2" (at 0 1.25) (layer "F.SilkS")
  4192. (effects (font (size 1 1) (thickness 0.15)))
  4193. (tstamp bf691b9b-09ab-471b-809b-7cc3fcaebc5b)
  4194. )
  4195. (fp_text value "10K" (at 0 1.25) (layer "F.Fab")
  4196. (effects (font (size 1 1) (thickness 0.15)))
  4197. (tstamp 0d8842e4-4dc6-43df-b35a-20c2c6b6e81b)
  4198. )
  4199. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  4200. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 646edc88-366f-4430-9465-5898efe7668f))
  4201. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  4202. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7c8096c6-4c72-4a81-8f26-40a10618e56d))
  4203. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  4204. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0dd58094-ded9-434c-a52b-712d2acbc639))
  4205. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  4206. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4ffa13bb-b2b2-4114-b6e9-adf831836381))
  4207. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  4208. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 536e1311-db20-4709-8f03-c84f97c267a6))
  4209. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  4210. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2413553b-45bd-46e2-9a1a-b0f1e3feec93))
  4211. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  4212. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 39fe26e3-756c-41b5-b0a4-92e82719b08b))
  4213. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4214. (net 44 "/PI/I2C_SDA") (pinfunction "1") (pintype "unspecified") (tstamp 2565748d-def8-4a8e-b822-cac7bb7c4b59))
  4215. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4216. (net 2 "+3.3V") (pinfunction "2") (pintype "unspecified") (tstamp 42a975eb-257c-4484-bba2-36221c96961b))
  4217. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  4218. (offset (xyz 0 0.0000253999996185 0.2499359962))
  4219. (scale (xyz 1 1 1))
  4220. (rotate (xyz 0 0 0))
  4221. )
  4222. )
  4223. (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (layer "F.Cu")
  4224. (tstamp da297019-4cda-40fa-ba69-b91439b2aec9)
  4225. (at 98.5 132.5)
  4226. (descr "Mounting Hole 3.2mm, M3")
  4227. (tags "mounting hole 3.2mm m3")
  4228. (property "Sheetfile" "dispensy.kicad_sch")
  4229. (property "Sheetname" "")
  4230. (property "ki_description" "Mounting Hole without connection")
  4231. (property "ki_keywords" "mounting hole")
  4232. (path "/482ef8f8-535d-4e59-9160-1934137298b2")
  4233. (attr exclude_from_pos_files)
  4234. (fp_text reference "H13" (at 0 -4.2) (layer "F.SilkS") hide
  4235. (effects (font (size 1 1) (thickness 0.15)))
  4236. (tstamp 56b17134-b2f8-4aa9-a240-a20ff419e883)
  4237. )
  4238. (fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab") hide
  4239. (effects (font (size 1 1) (thickness 0.15)))
  4240. (tstamp 9fb6b9fd-330f-4e6b-abec-675ebff0ca17)
  4241. )
  4242. (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
  4243. (effects (font (size 1 1) (thickness 0.15)))
  4244. (tstamp dab8917f-f5d3-4087-b231-a317fd27cf14)
  4245. )
  4246. (fp_circle (center 0 0) (end 3.2 0)
  4247. (stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 7a395faa-060c-4087-bc18-a9d2778bb1d6))
  4248. (fp_circle (center 0 0) (end 3.45 0)
  4249. (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ea6394dc-2a54-4ace-9130-61d76f4e778d))
  4250. (pad "1" thru_hole circle (at 0 0) (size 3.6 3.6) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp f9b3dd44-d1aa-450a-bb9d-1f6d2f66c56e))
  4251. (pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "F.Cu" "F.Mask") (tstamp 3e6e58f5-d419-4679-96e8-aa9b91124ea9))
  4252. (pad "1" connect circle (at 0 0) (size 6.4 6.4) (layers "B.Cu" "B.Mask") (tstamp 76031ae7-312d-4513-bc4e-75e901ce1b29))
  4253. )
  4254. (footprint "jlc_footprints:SOD-123_L2.8-W1.8-LS3.7-RD" (layer "F.Cu")
  4255. (tstamp dc808327-0050-441c-866c-ed8616fc8dd1)
  4256. (at 134.490456 73.217646 -90)
  4257. (descr "SOD-123_L2.8-W1.8-LS3.7-RD footprint")
  4258. (tags "SOD-123_L2.8-W1.8-LS3.7-RD footprint C475721")
  4259. (property "LCSC" "C475721")
  4260. (property "Sheetfile" "psu_lm2576.kicad_sch")
  4261. (property "Sheetname" "EXT_PSU")
  4262. (property "ki_keywords" "C475721")
  4263. (path "/635c7f01-c861-45f9-bb15-e53673572e1d/20dd6577-8636-444a-97ff-a0d42be2ea02")
  4264. (attr smd)
  4265. (fp_text reference "D1" (at 0 -2 90) (layer "F.SilkS")
  4266. (effects (font (size 1 1) (thickness 0.15)))
  4267. (tstamp 5d757381-4a70-47df-8cb6-cdf038c7a28d)
  4268. )
  4269. (fp_text value "MBR340F" (at 0 2 90) (layer "F.Fab")
  4270. (effects (font (size 1 1) (thickness 0.15)))
  4271. (tstamp c2aeef76-1d7f-495d-83f1-68b94ff2e51b)
  4272. )
  4273. (fp_line (start -1.58001 -0.866193) (end -1.406172 -0.866193)
  4274. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 28490350-8610-4188-b340-4c82b830eba0))
  4275. (fp_line (start -1.58001 -0.755144) (end -1.58001 -0.866193)
  4276. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 93c5b9d8-ef3b-45ef-8f81-25b28517fadd))
  4277. (fp_line (start -1.58001 -0.755144) (end -1.406172 -0.755144)
  4278. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp d11cdd66-3f0f-4d35-92c0-f6ab34990d51))
  4279. (fp_line (start -1.58001 0.755144) (end -1.406172 0.755144)
  4280. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp b4ddf0b1-4e20-487c-8ec6-1d0f2a22e0c4))
  4281. (fp_line (start -1.58001 0.866193) (end -1.58001 0.755144)
  4282. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp f02eb983-3f77-4d7f-9355-8150f32fa357))
  4283. (fp_line (start -1.406172 -0.866193) (end -1.406172 -0.755144)
  4284. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 24b8fa40-65d6-4706-84f6-464b0a4449d1))
  4285. (fp_line (start -1.406172 -0.866193) (end 1.406172 -0.866193)
  4286. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1d886045-6baf-4c1c-b6fb-e45b545df440))
  4287. (fp_line (start -1.406172 0.755144) (end -1.406172 0.866193)
  4288. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 13d801b2-ebf1-4e7e-acb5-1db2035b725f))
  4289. (fp_line (start -1.406172 0.866193) (end -1.58001 0.866193)
  4290. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp a1078e8f-dc7f-47c9-921b-8c9f40e5216c))
  4291. (fp_line (start -1.406172 0.866193) (end 1.406172 0.866193)
  4292. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f5f39eb5-910d-4070-85a3-dc6d580ab00b))
  4293. (fp_line (start -0.970003 -0.866193) (end -0.970003 0.866193)
  4294. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a38c5d0d-8a67-4c86-83ca-af7b9dc1e1be))
  4295. (fp_line (start -0.827127 -0.866193) (end -0.827127 0.866193)
  4296. (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 004810f3-f88c-4d79-b6ae-a0e1469143c3))
  4297. (fp_line (start 1.406172 -0.866193) (end 1.406172 -0.698197)
  4298. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4527f951-3a39-483c-838a-f302fe913518))
  4299. (fp_line (start 1.406172 0.866193) (end 1.406172 0.698197)
  4300. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2b78b3fc-cbe2-427e-9fd8-a458d26d9db5))
  4301. (fp_circle (center -1.850394 0.899924) (end -1.820422 0.899924)
  4302. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp a9e5af9e-17bf-4dfb-b722-e48572f90384))
  4303. (pad "1" smd rect (at -1.692405 0 270) (size 0.950013 1.150013) (layers "F.Cu" "F.Paste" "F.Mask")
  4304. (net 13 "Net-(U3-OUT)") (pinfunction "1") (pintype "unspecified") (tstamp d8819e85-aeeb-4bb8-b7d4-413f581fd2ec))
  4305. (pad "2" smd rect (at 1.692405 0 270) (size 0.950013 1.150013) (layers "F.Cu" "F.Paste" "F.Mask")
  4306. (net 1 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 157801f4-8df8-4825-b780-7a4ffc603ffb))
  4307. (model "jlc_lib/jlc_footprints/packages3d/SOD-123_L2.8-W1.8-LS3.7-RD.step"
  4308. (offset (xyz 0 0 0.5499099917))
  4309. (scale (xyz 1 1 1))
  4310. (rotate (xyz 0 0 0))
  4311. )
  4312. )
  4313. (footprint "jlc_footprints:IND-SMD_L11.5-W10.0_YSPI1050" (layer "F.Cu")
  4314. (tstamp de323693-892f-4c27-8256-9484c1a5b3d9)
  4315. (at 152.190482 71.51762 -90)
  4316. (descr "IND-SMD_L11.5-W10.0_YSPI1050 footprint")
  4317. (tags "IND-SMD_L11.5-W10.0_YSPI1050 footprint C497903")
  4318. (property "Inductance" "100uH")
  4319. (property "LCSC" "C497903")
  4320. (property "Sheetfile" "psu_lm2576.kicad_sch")
  4321. (property "Sheetname" "PI_PSU")
  4322. (property "ki_keywords" "C497903")
  4323. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876/ed82bf06-16a6-400c-a38e-7f8b455b7995")
  4324. (attr smd)
  4325. (fp_text reference "U17" (at -4 6 90) (layer "F.SilkS")
  4326. (effects (font (size 1 1) (thickness 0.15)))
  4327. (tstamp 67d32620-0d1d-4b85-843f-de9d13241fb9)
  4328. )
  4329. (fp_text value "100uH" (at 2.5 6 90) (layer "F.Fab")
  4330. (effects (font (size 1 1) (thickness 0.15)))
  4331. (tstamp c4795cd7-be4d-4bde-8178-469f9577a163)
  4332. )
  4333. (fp_line (start -5.08001 -5.08001) (end 5.08001 -5.08001)
  4334. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a37b5a5a-baf6-45ad-a47b-c600b493ecac))
  4335. (fp_line (start -5.08001 -1.778004) (end -5.08001 -5.08001)
  4336. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp d0294954-dc3f-47a5-a8c4-fcc43fe89095))
  4337. (fp_line (start -5.08001 5.08001) (end -5.08001 1.778004)
  4338. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp edc874bb-a3fa-4cda-94dd-442b4c2f738c))
  4339. (fp_line (start 5.08001 -5.08001) (end 5.08001 -1.778004)
  4340. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8b32922b-c895-47e9-815b-de4974ce341f))
  4341. (fp_line (start 5.08001 1.778004) (end 5.08001 5.08001)
  4342. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e4f1451f-62ef-415b-af83-a2b8f29fadc1))
  4343. (fp_line (start 5.08001 5.08001) (end -5.08001 5.08001)
  4344. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8c08090b-2298-4177-b94a-8965e3de8040))
  4345. (fp_circle (center -5.750064 5) (end -5.720091 5)
  4346. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp e51cf93b-2228-4628-8417-18e6ff429ffe))
  4347. (pad "1" smd rect (at -5.150114 0 270) (size 3.5 3.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4348. (net 14 "Net-(U16-OUT)") (pinfunction "1") (pintype "unspecified") (tstamp f68d1d58-2730-428e-bfc2-b31ca4c4c4ec))
  4349. (pad "2" smd rect (at 5.150114 0 270) (size 3.5 3.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4350. (net 12 "/PI/PI_PSU/Vout") (pinfunction "2") (pintype "unspecified") (tstamp e03a7091-36b1-49b1-9489-e90dbbbf3588))
  4351. (model "jlc_lib/jlc_footprints/packages3d/IND-SMD_L11.5-W10.0_YSPI1050.step"
  4352. (offset (xyz 0 0 0))
  4353. (scale (xyz 1 1 1))
  4354. (rotate (xyz 0 0 0))
  4355. )
  4356. )
  4357. (footprint "jlc_footprints:LQFN-56_L7.0-W7.0-P0.4-EP" (layer "F.Cu")
  4358. (tstamp df2aa58e-2392-442d-a240-91ecfbf1a173)
  4359. (at 142.499873 104.302545 -90)
  4360. (descr "LQFN-56_L7.0-W7.0-P0.4-EP footprint")
  4361. (tags "LQFN-56_L7.0-W7.0-P0.4-EP footprint C2040")
  4362. (property "LCSC" "C2040")
  4363. (property "Sheetfile" "pi.kicad_sch")
  4364. (property "Sheetname" "PI")
  4365. (property "ki_keywords" "C2040")
  4366. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/c3312700-c7b6-4bfc-893e-e69a5c7e6fe1")
  4367. (attr smd)
  4368. (fp_text reference "U10" (at 0 -5 90) (layer "F.SilkS")
  4369. (effects (font (size 1 1) (thickness 0.15)))
  4370. (tstamp 6bfc0ea2-f10a-4895-aa1d-0afd8d1e5b79)
  4371. )
  4372. (fp_text value "RP2040" (at 0 5 90) (layer "F.Fab")
  4373. (effects (font (size 1 1) (thickness 0.15)))
  4374. (tstamp cb3610dd-bc33-43b2-a113-130b28983a26)
  4375. )
  4376. (fp_line (start -3.500076 -3.500025) (end -2.931191 -3.500025)
  4377. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ce6d88f8-e917-40a4-8545-8739eb3a02ab))
  4378. (fp_line (start -3.500076 -2.931191) (end -3.500076 -3.500025)
  4379. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 28d8508c-c9bf-4eb9-bfd6-afc7486fca84))
  4380. (fp_line (start -3.500076 -2.931191) (end -2.931191 -3.500025)
  4381. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 52ce61ad-a4e7-4bc9-bd2b-d9188ff72367))
  4382. (fp_line (start -3.500076 3.499924) (end -3.500076 2.93109)
  4383. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5b1a2ba1-8843-4e6c-a994-384d2497b326))
  4384. (fp_line (start -3.400051 3.499924) (end -3.500076 3.499924)
  4385. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 903d150f-21bb-422a-a1e0-17b30e7d5f8e))
  4386. (fp_line (start -3.240996 -3.500025) (end -3.240996 -3.403175)
  4387. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5c1dd099-f445-4bf7-bbe9-38b98c5c0fce))
  4388. (fp_line (start -3.240996 -3.403175) (end -3.500076 -3.144094)
  4389. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 81a08b23-cc8b-4e9a-a16f-01b742243717))
  4390. (fp_line (start -2.931191 3.499924) (end -3.400051 3.499924)
  4391. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 71081341-8116-49f1-938e-c6a408ed4f10))
  4392. (fp_line (start 2.93109 -3.500025) (end 3.499924 -3.500025)
  4393. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3afcae5e-c23e-40d3-b7ad-76beb1d524cc))
  4394. (fp_line (start 3.499924 -3.500025) (end 3.499924 -2.931191)
  4395. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f79e9937-a7ad-4494-ba48-f1c415eecf0a))
  4396. (fp_line (start 3.499924 2.93109) (end 3.499924 3.499924)
  4397. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 990d5e78-33ad-4a0b-afad-040224f91594))
  4398. (fp_line (start 3.499924 3.499924) (end 2.93109 3.499924)
  4399. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f8181ddf-6522-4cf1-93cf-a85b6aa6487a))
  4400. (fp_circle (center -4 -3.700152) (end -3.873 -3.700152)
  4401. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0c887bdb-2897-4799-bf4a-fc6fe6d2e650))
  4402. (fp_circle (center -3.500127 -3.5) (end -3.470155 -3.5)
  4403. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 29f6681e-cdae-4c16-ab5d-49e83663afeb))
  4404. (fp_circle (center -3.899924 -2.600076) (end -3.772924 -2.600076)
  4405. (stroke (width 0.254) (type solid)) (fill none) (layer "F.Fab") (tstamp 7ec1be5e-2044-4714-9850-aa11d959d99a))
  4406. (pad "1" smd rect (at -3.550165 -2.600076 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4407. (net 2 "+3.3V") (pinfunction "IOVDD") (pintype "bidirectional") (tstamp f61ed516-5554-4b5e-a2ba-a8c134e9275e))
  4408. (pad "2" smd rect (at -3.550165 -2.200025 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4409. (net 19 "/PI/IO0") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 4837974f-f9f2-41c5-9e62-7b5d80b03b1f))
  4410. (pad "3" smd rect (at -3.550165 -1.799975 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4411. (net 20 "/PI/IO1") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 1b31772a-7eff-4b04-a798-67d0cbccc311))
  4412. (pad "4" smd rect (at -3.550165 -1.399924 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4413. (net 21 "/PI/IO2") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp ba43df42-ec93-476e-8dd0-94613e854bfa))
  4414. (pad "5" smd rect (at -3.550165 -1.000127 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4415. (net 22 "/PI/IO3") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp 556b2498-e923-4de8-9e67-c2db4fa98884))
  4416. (pad "6" smd rect (at -3.550165 -0.600076 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4417. (net 23 "/PI/IO4") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 7f97a925-13d1-4ef1-a301-560ba4964898))
  4418. (pad "7" smd rect (at -3.550165 -0.200025 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4419. (net 24 "/PI/IO5") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 8569a22e-f889-4038-b0a9-21723200af65))
  4420. (pad "8" smd rect (at -3.550165 0.200025 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4421. (net 25 "/PI/IO6") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp 8b614fc4-cd80-489b-9c30-df9f1a43abf8))
  4422. (pad "9" smd rect (at -3.550165 0.600076 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4423. (net 26 "/PI/IO7") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp d8092c77-6c14-4038-8c60-235d844f9153))
  4424. (pad "10" smd rect (at -3.550165 0.999873 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4425. (net 2 "+3.3V") (pinfunction "IOVDD") (pintype "bidirectional") (tstamp 68a05ca9-df66-44ed-9cce-df3c3bd556cb))
  4426. (pad "11" smd rect (at -3.550165 1.399924 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4427. (net 27 "/PI/IO8") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 0f163409-aaca-4b07-ae5a-4dcf552594a5))
  4428. (pad "12" smd rect (at -3.550165 1.799975 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4429. (net 28 "/PI/IO9") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp ad29795b-6bcf-49d9-9911-a3084da0d07e))
  4430. (pad "13" smd rect (at -3.550165 2.200025 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4431. (net 29 "/PI/IO10") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp f194358d-9ed4-499f-870a-19943d7ac67c))
  4432. (pad "14" smd rect (at -3.550165 2.600076 270) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4433. (net 30 "/PI/IO11") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp 62b9dd33-6f68-4815-89b5-72e9e30d2bba))
  4434. (pad "15" smd rect (at -2.599949 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4435. (net 31 "/PI/IO12") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 310ecd05-efb7-4e04-9658-116d95e79a0d))
  4436. (pad "16" smd rect (at -2.200152 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4437. (net 32 "/PI/IO13") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 53dc9590-cc70-4a54-bb34-6312b2d6eb68))
  4438. (pad "17" smd rect (at -1.800102 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4439. (net 44 "/PI/I2C_SDA") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp e673f36b-1914-4e07-a9d5-6124d1e0999f))
  4440. (pad "18" smd rect (at -1.400051 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4441. (net 43 "/PI/I2C_SCL") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 5b1335a7-c1bb-40c8-972b-b032a82c0f7e))
  4442. (pad "19" smd rect (at -1 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4443. (net 1 "GND") (pinfunction "TESTEN") (pintype "unspecified") (tstamp 8a6f9f8d-21b6-4c3e-ad66-2b5f31d3681b))
  4444. (pad "20" smd rect (at -0.599949 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4445. (net 6 "Net-(U10-XIN)") (pinfunction "XIN") (pintype "input") (tstamp a06cff66-b3c8-4040-b11f-289d94e634fd))
  4446. (pad "21" smd rect (at -0.200152 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4447. (net 54 "Net-(U10-XOUT)") (pinfunction "XOUT") (pintype "unspecified") (tstamp 796274e5-ca3d-4b6d-84e8-c767df138ff7))
  4448. (pad "22" smd rect (at 0.199898 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4449. (net 2 "+3.3V") (pinfunction "IOVDD") (pintype "bidirectional") (tstamp 7015dc1d-695a-48a3-94eb-d7428ef63ade))
  4450. (pad "23" smd rect (at 0.599949 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4451. (net 8 "+1V1") (pinfunction "DVDD") (pintype "bidirectional") (tstamp 1762af55-0a6b-44c0-8202-bac4e373e070))
  4452. (pad "24" smd rect (at 1 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4453. (net 35 "/PI/Debug_Clock") (pinfunction "SWCLK") (pintype "output") (tstamp 7807211d-7e10-4ae3-b2a6-8db5f0d5d35f))
  4454. (pad "25" smd rect (at 1.400051 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4455. (net 36 "/PI/Debug_Data") (pinfunction "SWD") (pintype "bidirectional") (tstamp cd2d2b40-3af2-449c-894d-887de649f9aa))
  4456. (pad "26" smd rect (at 1.799848 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4457. (net 52 "Net-(U10-RUN)") (pinfunction "RUN") (pintype "input") (tstamp 1fdebf3e-dfe4-4827-9d07-59404c6e51fd))
  4458. (pad "27" smd rect (at 2.199898 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4459. (net 37 "/PI/Debug_Tx") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 93764219-1e37-4470-badc-003cf24d406c))
  4460. (pad "28" smd rect (at 2.599949 3.550038) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4461. (net 38 "/PI/Debug_Rx") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 75dcd65f-ed94-4bcc-8730-bf030757094d))
  4462. (pad "29" smd rect (at 3.550165 2.600076 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4463. (net 33 "/PI/IO14") (pinfunction "GPIO18") (pintype "bidirectional") (tstamp 18d3ec88-bf1a-4d62-8899-efd2375702a7))
  4464. (pad "30" smd rect (at 3.550165 2.200025 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4465. (net 34 "/PI/IO15") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp aa85db37-19d0-478e-8419-bea5a567a0bf))
  4466. (pad "31" smd rect (at 3.550165 1.799975 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4467. (net 70 "/PI/SR_Load") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp d66bc442-db51-4d2f-a3d0-7915f88d8e0c))
  4468. (pad "32" smd rect (at 3.550165 1.399924 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4469. (net 71 "/PI/SR_Clock") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp 5f65439e-d3c0-4f07-9995-176d524d3b33))
  4470. (pad "33" smd rect (at 3.550165 0.999873 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4471. (net 2 "+3.3V") (pinfunction "IOVDD") (pintype "bidirectional") (tstamp ae9157fe-fb9a-4ad7-b249-8c01584db875))
  4472. (pad "34" smd rect (at 3.550165 0.600076 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4473. (net 73 "/PI/SR_Data") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp cdbdd2a2-7fb7-42a1-b5bb-032c7fcdfa83))
  4474. (pad "35" smd rect (at 3.550165 0.200025 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4475. (net 64 "/PI/LED_Din") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp 0a736099-5a98-4ddb-902b-d76185e2b764))
  4476. (pad "36" smd rect (at 3.550165 -0.200025 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4477. (net 74 "Net-(U10-GPIO24)") (pinfunction "GPIO24") (pintype "bidirectional") (tstamp ed76d5d3-a6c7-428b-871d-32a6ba642aa0))
  4478. (pad "37" smd rect (at 3.550165 -0.600076 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4479. (net 75 "Net-(U10-GPIO25)") (pinfunction "GPIO25") (pintype "bidirectional") (tstamp 5d4e59eb-694c-4480-876a-d51391af3102))
  4480. (pad "38" smd rect (at 3.550165 -1.000127 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4481. (net 15 "/PI/ADC0") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp 2c88b695-546e-4539-a107-40dec689885b))
  4482. (pad "39" smd rect (at 3.550165 -1.399924 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4483. (net 16 "/PI/ADC1") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp 1d724f91-74eb-4e32-ab52-86f0261a218e))
  4484. (pad "40" smd rect (at 3.550165 -1.799975 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4485. (net 17 "/PI/ADC2") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp 3e52ed1f-a0e6-4148-bebb-2f5343051a5f))
  4486. (pad "41" smd rect (at 3.550165 -2.200025 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4487. (net 18 "/PI/ADC3") (pinfunction "GPIO29_ADC3") (pintype "bidirectional") (tstamp c8895e3d-a359-487e-8642-b9d418f24e85))
  4488. (pad "42" smd rect (at 3.550165 -2.600076 90) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4489. (net 2 "+3.3V") (pinfunction "IOVDD") (pintype "bidirectional") (tstamp 7267aa34-851f-44f3-8483-5eb0fc5cfca5))
  4490. (pad "43" smd rect (at 2.599949 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4491. (net 2 "+3.3V") (pinfunction "ADC_AVDD") (pintype "bidirectional") (tstamp 06d860fd-34d6-4839-a647-ca8b64f344e9))
  4492. (pad "44" smd rect (at 2.199898 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4493. (net 2 "+3.3V") (pinfunction "VREG_IN") (pintype "bidirectional") (tstamp 249e6f17-da30-4bb1-a38d-4176587166ba))
  4494. (pad "45" smd rect (at 1.799848 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4495. (net 8 "+1V1") (pinfunction "VREG_VOUT") (pintype "bidirectional") (tstamp 1760ad7e-93b3-4ddf-b3d0-c8ff86e6e0eb))
  4496. (pad "46" smd rect (at 1.400051 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4497. (net 58 "Net-(U10-USB_DM)") (pinfunction "USB_DM") (pintype "bidirectional") (tstamp 813a7a8f-be68-4f90-8313-61283926b20b))
  4498. (pad "47" smd rect (at 1 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4499. (net 56 "Net-(U10-USB_DP)") (pinfunction "USB_DP") (pintype "bidirectional") (tstamp 7f168245-e767-4041-a85b-13a85acb13ac))
  4500. (pad "48" smd rect (at 0.599949 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4501. (net 2 "+3.3V") (pinfunction "USB_VDD") (pintype "bidirectional") (tstamp 0c5d0a76-58f4-4703-ae33-00b8ddefd4e1))
  4502. (pad "49" smd rect (at 0.199898 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4503. (net 2 "+3.3V") (pinfunction "IOVDD") (pintype "bidirectional") (tstamp 60351f2d-9b7b-44a0-972b-bcdf8183fb87))
  4504. (pad "50" smd rect (at -0.200152 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4505. (net 8 "+1V1") (pinfunction "DVDD") (pintype "bidirectional") (tstamp fc786c2b-5b45-444f-9470-c4646213cb1f))
  4506. (pad "51" smd rect (at -0.599949 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4507. (net 69 "/PI/SPI_FLASH.SD3") (pinfunction "QSPI_SD3") (pintype "bidirectional") (tstamp f19aae76-25a0-448e-8a37-e9468feaf739))
  4508. (pad "52" smd rect (at -1 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4509. (net 68 "/PI/SPI_FLASH.SCLK") (pinfunction "QSPI_SCLK") (pintype "output") (tstamp e8a4f8f0-d7f0-4f7c-9811-2f9011760319))
  4510. (pad "53" smd rect (at -1.400051 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4511. (net 67 "/PI/SPI_FLASH.SD0") (pinfunction "QSPI_SD0") (pintype "bidirectional") (tstamp 96f932e9-595a-478b-bdcf-50a21158b1e2))
  4512. (pad "54" smd rect (at -1.800102 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4513. (net 66 "/PI/SPI_FLASH.SD2") (pinfunction "QSPI_SD2") (pintype "bidirectional") (tstamp b2468cd7-3003-4dca-8aff-074fc9c188f0))
  4514. (pad "55" smd rect (at -2.200152 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4515. (net 65 "/PI/SPI_FLASH.SD1") (pinfunction "QSPI_SD1") (pintype "bidirectional") (tstamp 609934b9-cde3-4b8e-a254-170a99c0cedc))
  4516. (pad "56" smd rect (at -2.599949 -3.550038 180) (size 1.1 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4517. (net 46 "/PI/SPI_FLASH.SS") (pinfunction "QSPI_SS") (pintype "bidirectional") (tstamp 30bd3408-aaf6-48ff-956f-2ee7e3742692))
  4518. (pad "57" smd rect (at 0 -0.000127 270) (size 3.1 3.1) (layers "F.Cu" "F.Paste" "F.Mask")
  4519. (net 1 "GND") (pinfunction "GND") (pintype "bidirectional") (tstamp 68879ba5-7ec5-4ee1-ac45-5901be058bcd))
  4520. (model "jlc_lib/jlc_footprints/packages3d/LQFN-56_L7.0-W7.0-P0.4-EP.step"
  4521. (offset (xyz -0.0000253999996185 0 0.0200659997))
  4522. (scale (xyz 1 1 1))
  4523. (rotate (xyz 0 0 0))
  4524. )
  4525. )
  4526. (footprint "jlc_footprints:HDR-TH_6P-P2.54-V-F" (layer "F.Cu")
  4527. (tstamp e41d7e1f-dc01-4183-899a-9fd464625c65)
  4528. (at 96 117.310008 -90)
  4529. (descr "HDR-TH_6P-P2.54-V-F footprint")
  4530. (tags "HDR-TH_6P-P2.54-V-F footprint C40877")
  4531. (property "LCSC" "C40877")
  4532. (property "Sheetfile" "dispensy.kicad_sch")
  4533. (property "Sheetname" "")
  4534. (property "ki_keywords" "C40877")
  4535. (path "/6f616117-1018-439f-a8f1-7eb4c151a637")
  4536. (attr through_hole)
  4537. (fp_text reference "H5" (at 6.689992 -2 90) (layer "F.SilkS")
  4538. (effects (font (size 1 1) (thickness 0.15)))
  4539. (tstamp ffc77d6e-53dc-4694-b8f9-8549a6a36595)
  4540. )
  4541. (fp_text value "IO_D" (at 3.689992 -2 90) (layer "F.SilkS")
  4542. (effects (font (size 1 1) (thickness 0.15)))
  4543. (tstamp c245cc7e-bded-4023-951e-5f0d7f0c1c8b)
  4544. )
  4545. (fp_line (start -7.849987 -1.249987) (end 7.850013 -1.249987)
  4546. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 862e4702-35bb-4632-8b50-21d7fd32adc1))
  4547. (fp_line (start -7.849987 -0.9) (end -7.849987 -1.249987)
  4548. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a5c8d87c-a46a-4282-a443-d70b8ebf239f))
  4549. (fp_line (start -7.849987 1.249987) (end -7.849987 -0.949987)
  4550. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp faee88d9-7f87-41f0-a8f2-537de6ad98aa))
  4551. (fp_line (start 7.850013 -1.249987) (end 7.850013 1.249987)
  4552. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp aa0d1c8d-e0b9-42fa-9d18-655b084a7ccd))
  4553. (fp_line (start 7.850013 1.249987) (end -7.849987 1.249987)
  4554. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 557d0036-79c2-4765-aee7-2ea93d392d92))
  4555. (fp_circle (center -7.869952 1.249936) (end -7.83998 1.249936)
  4556. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6556bed7-7a8a-4034-9447-6f887be37485))
  4557. (fp_circle (center -6.649987 -1.899924) (end -6.350013 -1.899924)
  4558. (stroke (width 0.254) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5c529118-9df8-4a9d-8d3f-edfa481a1c61))
  4559. (pad "1" thru_hole rect (at -6.350013 0 270) (size 1.8 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  4560. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 6aadacc8-47b7-40b0-837e-3fd20ad5bfd3))
  4561. (pad "2" thru_hole circle (at -3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  4562. (net 31 "/PI/IO12") (pinfunction "2") (pintype "unspecified") (tstamp ca0da9fd-7c70-4d0a-ac95-6cbdbe040ac2))
  4563. (pad "3" thru_hole circle (at -1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  4564. (net 32 "/PI/IO13") (pinfunction "3") (pintype "unspecified") (tstamp 405297c5-49e9-4eeb-85c6-992003f1259d))
  4565. (pad "4" thru_hole circle (at 1.270003 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  4566. (net 33 "/PI/IO14") (pinfunction "4") (pintype "unspecified") (tstamp a2cbf5ca-fbff-492d-b679-da4e35e54f88))
  4567. (pad "5" thru_hole circle (at 3.810008 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  4568. (net 34 "/PI/IO15") (pinfunction "5") (pintype "unspecified") (tstamp 53ebddf7-f9c3-4032-8c5a-c9fe922ab4a3))
  4569. (pad "6" thru_hole circle (at 6.350013 0 270) (size 1.6 1.6) (drill 1.020015) (layers "*.Cu" "*.Mask")
  4570. (net 1 "GND") (pinfunction "6") (pintype "unspecified") (tstamp b2b8ff64-40ce-440b-8530-ca47511eb187))
  4571. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_6P-P2.54-V-F.step"
  4572. (offset (xyz -0.0000253999996185 0 -0.0001015999985))
  4573. (scale (xyz 1 1 1))
  4574. (rotate (xyz 0 0 0))
  4575. )
  4576. )
  4577. (footprint "jlc_footprints:IND-SMD_L11.5-W10.0_YSPI1050" (layer "F.Cu")
  4578. (tstamp e5f37511-104b-4acf-823f-7006200d5c6c)
  4579. (at 123.990456 54.717646 180)
  4580. (descr "IND-SMD_L11.5-W10.0_YSPI1050 footprint")
  4581. (tags "IND-SMD_L11.5-W10.0_YSPI1050 footprint C497903")
  4582. (property "Inductance" "100uH")
  4583. (property "LCSC" "C497903")
  4584. (property "Sheetfile" "psu_lm2576.kicad_sch")
  4585. (property "Sheetname" "EXT_PSU")
  4586. (property "ki_keywords" "C497903")
  4587. (path "/635c7f01-c861-45f9-bb15-e53673572e1d/ed82bf06-16a6-400c-a38e-7f8b455b7995")
  4588. (attr smd)
  4589. (fp_text reference "U4" (at -4 6) (layer "F.SilkS")
  4590. (effects (font (size 1 1) (thickness 0.15)))
  4591. (tstamp fb6dc906-c6a1-4078-bc3b-cadefecdcdc2)
  4592. )
  4593. (fp_text value "100uH" (at 2.5 6) (layer "F.Fab")
  4594. (effects (font (size 1 1) (thickness 0.15)))
  4595. (tstamp 51326556-e484-4e76-96c3-e42c27a46a28)
  4596. )
  4597. (fp_line (start -5.08001 -5.08001) (end 5.08001 -5.08001)
  4598. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 5d0c411e-30ea-4819-af3f-df178a7960c2))
  4599. (fp_line (start -5.08001 -1.778004) (end -5.08001 -5.08001)
  4600. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c1ad08f3-29aa-45a3-854f-50844b71097d))
  4601. (fp_line (start -5.08001 5.08001) (end -5.08001 1.778004)
  4602. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 83e91cd9-f454-412a-99db-2f8d068e89a0))
  4603. (fp_line (start 5.08001 -5.08001) (end 5.08001 -1.778004)
  4604. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp d0da1115-7162-4527-bc9f-372f846aa846))
  4605. (fp_line (start 5.08001 1.778004) (end 5.08001 5.08001)
  4606. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 34ea073e-1456-4032-a468-585a6a660c1c))
  4607. (fp_line (start 5.08001 5.08001) (end -5.08001 5.08001)
  4608. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 027f5937-9247-43b7-a914-74198ba10ed8))
  4609. (fp_circle (center -5.750064 5) (end -5.720091 5)
  4610. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp a1cd53e4-5111-4623-99ec-cd910fac5fc0))
  4611. (pad "1" smd rect (at -5.150114 0 180) (size 3.5 3.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4612. (net 13 "Net-(U3-OUT)") (pinfunction "1") (pintype "unspecified") (tstamp 27f3d44f-a00e-42f7-8240-9d0d4fa2e1ae))
  4613. (pad "2" smd rect (at 5.150114 0 180) (size 3.5 3.2) (layers "F.Cu" "F.Paste" "F.Mask")
  4614. (net 4 "/EXT_PSU/Vout") (pinfunction "2") (pintype "unspecified") (tstamp 96ad82de-9ca3-4f93-bf8f-4df14a16a953))
  4615. (model "jlc_lib/jlc_footprints/packages3d/IND-SMD_L11.5-W10.0_YSPI1050.step"
  4616. (offset (xyz 0 0 0))
  4617. (scale (xyz 1 1 1))
  4618. (rotate (xyz 0 0 0))
  4619. )
  4620. )
  4621. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  4622. (tstamp ea4ff122-a6b5-43af-a572-845a80fb3285)
  4623. (at 123 129.03813)
  4624. (descr "R0402 footprint")
  4625. (tags "R0402 footprint C279981")
  4626. (property "LCSC" "C406733")
  4627. (property "Resistance" "10kΩ")
  4628. (property "Sheetfile" "pi.kicad_sch")
  4629. (property "Sheetname" "PI")
  4630. (property "ki_keywords" "C406733")
  4631. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/1f88c24d-4e12-425e-b52d-1845f39089f0")
  4632. (attr smd)
  4633. (fp_text reference "R8" (at 0 1.5) (layer "F.SilkS")
  4634. (effects (font (size 1 1) (thickness 0.15)))
  4635. (tstamp 6864fdd8-6cd9-4a9b-9fd7-5a6685e722f7)
  4636. )
  4637. (fp_text value "10K" (at -2.5 0) (layer "F.Fab")
  4638. (effects (font (size 1 1) (thickness 0.15)))
  4639. (tstamp cfc645fb-d97c-436a-b7ad-7d3594e05e9a)
  4640. )
  4641. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  4642. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d8cc0bba-b2db-428f-8398-a4320f2f735c))
  4643. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  4644. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2fbfb310-32d4-4ba2-abae-c1dda6f606fe))
  4645. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  4646. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8801a712-dacc-44ec-8a9f-52aadd464870))
  4647. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  4648. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a04f5157-6e70-46b7-9d2f-fe4d3483b17c))
  4649. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  4650. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp df96428e-e1bd-48dd-8ba8-e0a3d22a6801))
  4651. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  4652. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0be0350b-bda6-4466-a15a-b3cab728ce81))
  4653. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  4654. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp a701d18e-73ee-4eac-a032-e112d2254533))
  4655. (pad "1" smd rect (at -0.432817 0) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4656. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 1f501557-415d-40ac-9602-b41c7bed2156))
  4657. (pad "2" smd rect (at 0.432817 0) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4658. (net 50 "Net-(U9-D5)") (pinfunction "2") (pintype "unspecified") (tstamp e15600c5-72b9-4974-83e8-dd8b78485484))
  4659. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  4660. (offset (xyz 0 0.0000253999996185 0.2499359962))
  4661. (scale (xyz 1 1 1))
  4662. (rotate (xyz 0 0 0))
  4663. )
  4664. )
  4665. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  4666. (tstamp eb8d2d95-f0e2-4394-8be8-9b2826f04033)
  4667. (at 126.534798 84.503429 180)
  4668. (descr "R0402 footprint")
  4669. (tags "R0402 footprint C279981")
  4670. (property "LCSC" "C279981")
  4671. (property "Resistance" "1kΩ")
  4672. (property "Sheetfile" "pi.kicad_sch")
  4673. (property "Sheetname" "PI")
  4674. (property "ki_keywords" "C279981")
  4675. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/4b084f69-7b35-4d95-a86c-bf62cb3cceec")
  4676. (attr smd)
  4677. (fp_text reference "R21" (at 0.067183 -1.5) (layer "F.SilkS")
  4678. (effects (font (size 1 1) (thickness 0.15)))
  4679. (tstamp f8923b3e-b572-4c86-8b07-ac28f18658b4)
  4680. )
  4681. (fp_text value "1K" (at 0.067183 1.27245) (layer "F.Fab")
  4682. (effects (font (size 1 1) (thickness 0.15)))
  4683. (tstamp 318251d4-2bdf-4148-814e-c40cba69c4c4)
  4684. )
  4685. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  4686. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d066f951-6474-4fdb-be75-a5a0f0925511))
  4687. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  4688. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a36fea35-17b6-4242-8995-3fc3f23333fe))
  4689. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  4690. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a9352e0d-ae38-4112-9d5c-472757dea0a8))
  4691. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  4692. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7fb77048-445b-45ab-a140-583b58e90a15))
  4693. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  4694. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5dd9c441-5879-4423-9449-00076748ddb6))
  4695. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  4696. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp f31253de-e496-4a69-b402-125b0d9ce185))
  4697. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  4698. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp d9e6f83e-62de-4f66-921c-222e2cc9de48))
  4699. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4700. (net 5 "+5V") (pinfunction "1") (pintype "unspecified") (tstamp 2a6a0af5-4570-48c3-ad27-9cc09bfa40ea))
  4701. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4702. (net 89 "Net-(LED1-+)") (pinfunction "2") (pintype "unspecified") (tstamp 803f4f37-48cb-4d47-8a7c-7e94548d5874))
  4703. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  4704. (offset (xyz 0 0.0000253999996185 0.2499359962))
  4705. (scale (xyz 1 1 1))
  4706. (rotate (xyz 0 0 0))
  4707. )
  4708. )
  4709. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  4710. (tstamp ebba7d43-4907-4077-ad4f-ed7fa4b8e5ea)
  4711. (at 134 99.302545 -90)
  4712. (descr "C0402 footprint")
  4713. (tags "C0402 footprint C140675")
  4714. (property "Capacitance" "27pF")
  4715. (property "LCSC" "C140675")
  4716. (property "Sheetfile" "pi.kicad_sch")
  4717. (property "Sheetname" "PI")
  4718. (property "ki_keywords" "C140675")
  4719. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/0f09d6fd-e80c-4b36-a8e2-fcf341aa19eb")
  4720. (attr smd)
  4721. (fp_text reference "C8" (at -0.5 -1.5 90) (layer "F.SilkS")
  4722. (effects (font (size 1 1) (thickness 0.15)))
  4723. (tstamp 3176b585-0732-4bd6-8b9f-92472b22852e)
  4724. )
  4725. (fp_text value "27p" (at -0.5 -1.500127 -90) (layer "F.Fab")
  4726. (effects (font (size 1 1) (thickness 0.15)))
  4727. (tstamp 1c3c7954-1403-4567-a7ae-361a8ca68444)
  4728. )
  4729. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  4730. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 706de9bd-3a5e-4c7b-852a-391982cb7451))
  4731. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  4732. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3430acf1-667c-43a2-b557-fb7637576ba7))
  4733. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  4734. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0b30c950-0982-4b8b-8413-3e27b0fc1a0d))
  4735. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  4736. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9646f3d4-a52d-486f-8fa0-8ba9f84077e1))
  4737. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  4738. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2034d53c-e2e5-4bac-ad44-50586d49378c))
  4739. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  4740. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 30fa92ce-1dc1-4e5e-a6b5-212fbab767a2))
  4741. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  4742. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp c3e0f950-e824-4a00-b351-d21328b3c38d))
  4743. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  4744. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a4a39462-787e-47c4-bd2c-b28f82d7dc09))
  4745. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  4746. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 2da06f42-6f94-4d98-af0b-a769b8e9b294))
  4747. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  4748. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3fb629ec-cc4e-4419-911b-ded4b06482df))
  4749. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  4750. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 195336b0-92d0-451e-85f4-cb7c881f9770))
  4751. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4752. (net 1 "GND") (pinfunction "1") (pintype "unspecified") (tstamp 055c3ffe-47f2-434a-b734-890f644938d2))
  4753. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4754. (net 6 "Net-(U10-XIN)") (pinfunction "2") (pintype "unspecified") (tstamp 551fea3a-6ae3-4873-a334-829aa16c3c1a))
  4755. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  4756. (offset (xyz 0 0.0000253999996185 0.2499359962))
  4757. (scale (xyz 1 1 1))
  4758. (rotate (xyz 0 0 0))
  4759. )
  4760. )
  4761. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  4762. (tstamp f0145972-7870-44e4-bea2-dfc21f8d9cd8)
  4763. (at 118.035541 62.717646 180)
  4764. (descr "C0402 footprint")
  4765. (tags "C0402 footprint C140675")
  4766. (property "Capacitance" "100nF")
  4767. (property "LCSC" "C105883")
  4768. (property "Sheetfile" "psu_lm2576.kicad_sch")
  4769. (property "Sheetname" "EXT_PSU")
  4770. (property "ki_keywords" "C105883")
  4771. (path "/635c7f01-c861-45f9-bb15-e53673572e1d/f822b994-be54-4161-9c2e-759add250e25")
  4772. (attr smd)
  4773. (fp_text reference "C29" (at 0 -1.5) (layer "F.SilkS")
  4774. (effects (font (size 1 1) (thickness 0.15)))
  4775. (tstamp 33bf17d3-3568-4341-b22b-a4f379617d86)
  4776. )
  4777. (fp_text value "100nF" (at 0 1.5) (layer "F.Fab")
  4778. (effects (font (size 1 1) (thickness 0.15)))
  4779. (tstamp 7ac030d6-dddd-4bc4-b6f7-e423a6d6e5de)
  4780. )
  4781. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  4782. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp cafdacc4-97c6-43ac-bac3-c88ca332bb24))
  4783. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  4784. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp df9603de-68c6-46b4-a43a-cb7b2e7deb24))
  4785. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  4786. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 34f3ddf2-a9a1-4a25-ac4e-7fe9be5e1398))
  4787. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  4788. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 61f11b5c-3e7c-427d-970e-08b6ec036e02))
  4789. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  4790. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a1d2ce22-de35-4e29-a2e2-87547ed7e256))
  4791. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  4792. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a927bd9c-0c8b-447c-8d3a-176a845b3f7f))
  4793. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  4794. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d2048f31-34c3-4f10-bf4d-4dd4a7771e46))
  4795. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  4796. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 273c0819-0cbc-4b73-844a-0cee92427e9b))
  4797. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  4798. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 08d822af-a452-4473-800e-aafe77ea4dcf))
  4799. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  4800. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 53733b7d-a966-4281-93d3-626e616c0d42))
  4801. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  4802. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp e1ef4480-f859-4956-9c85-88846c9f73af))
  4803. (pad "1" smd rect (at -0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4804. (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 4906d0be-2462-4e94-9864-9dc4ef52eead))
  4805. (pad "2" smd rect (at 0.545085 0 180) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4806. (net 4 "/EXT_PSU/Vout") (pinfunction "2") (pintype "input") (tstamp 27a8a29e-9154-4f79-a1a2-d5e872fe5864))
  4807. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  4808. (offset (xyz 0 0.0000253999996185 0.2499359962))
  4809. (scale (xyz 1 1 1))
  4810. (rotate (xyz 0 0 0))
  4811. )
  4812. )
  4813. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  4814. (tstamp f06e8b69-d51d-4146-8e89-2b982de9fb10)
  4815. (at 118 118.53813 180)
  4816. (descr "R0402 footprint")
  4817. (tags "R0402 footprint C279981")
  4818. (property "LCSC" "C406733")
  4819. (property "Resistance" "10kΩ")
  4820. (property "Sheetfile" "pi.kicad_sch")
  4821. (property "Sheetname" "PI")
  4822. (property "ki_keywords" "C406733")
  4823. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/e5898efb-8e13-4086-ae15-9e228e926772")
  4824. (attr smd)
  4825. (fp_text reference "R9" (at 0 1.5) (layer "F.SilkS")
  4826. (effects (font (size 1 1) (thickness 0.15)))
  4827. (tstamp 9cb5adb5-5da3-4227-b86f-9f43341f7760)
  4828. )
  4829. (fp_text value "10K" (at 2.5 0) (layer "F.Fab")
  4830. (effects (font (size 1 1) (thickness 0.15)))
  4831. (tstamp 933faa44-98de-4193-9684-a3c05a93391c)
  4832. )
  4833. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  4834. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1c4bb6b9-b028-4353-a9e2-010e017188c5))
  4835. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  4836. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp df90350a-a880-4f32-82de-ab8a2d0cf734))
  4837. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  4838. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp cfd575ed-7e5e-427a-a28c-abb5d1bf5534))
  4839. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  4840. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp dcde484d-8f8a-4b76-b26c-9476f8d680ef))
  4841. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  4842. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 30f15461-6879-4dab-a22d-247272b12842))
  4843. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  4844. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8ed89e35-aa6f-40b2-9128-92441e7f4552))
  4845. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  4846. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 22842922-7db3-4332-91be-f45e0cc554ad))
  4847. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4848. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp ca69d99f-9618-4e71-bb43-d492ffcaefee))
  4849. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4850. (net 51 "Net-(U9-D4)") (pinfunction "2") (pintype "unspecified") (tstamp deee0ca1-77d6-48ac-bb6c-609256edad58))
  4851. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  4852. (offset (xyz 0 0.0000253999996185 0.2499359962))
  4853. (scale (xyz 1 1 1))
  4854. (rotate (xyz 0 0 0))
  4855. )
  4856. )
  4857. (footprint "extern:SSD1306_0.96_Oled" (layer "F.Cu")
  4858. (tstamp f0f7b99a-31f7-4f49-ba79-f40e94852c8b)
  4859. (at 181.095 137)
  4860. (property "Sheetfile" "dispensy.kicad_sch")
  4861. (property "Sheetname" "")
  4862. (property "ki_description" "OLED 0.96 128x64 I2C")
  4863. (property "ki_keywords" "oled")
  4864. (path "/2ae5702b-de7e-4727-aba1-09aa8e03487a")
  4865. (attr through_hole)
  4866. (fp_text reference "OLED1" (at 13 -17 unlocked) (layer "F.SilkS")
  4867. (effects (font (size 1 1) (thickness 0.15)))
  4868. (tstamp ffaecb30-bce4-4870-806d-f52371c5bf6d)
  4869. )
  4870. (fp_text value "SSD1306" (at 13 -15 unlocked) (layer "F.Fab")
  4871. (effects (font (size 1 1) (thickness 0.15)))
  4872. (tstamp b1046979-fcf6-4005-af3b-f9bc3204f4be)
  4873. )
  4874. (fp_text user "${REFERENCE}" (at 13 -12.5 unlocked) (layer "F.Fab")
  4875. (effects (font (size 1 1) (thickness 0.15)))
  4876. (tstamp 381f7eb3-93ff-4424-ab3a-cc46d6b2bc6e)
  4877. )
  4878. (fp_line (start 0 -26) (end 0 0)
  4879. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c97c7a58-223b-4ab1-95fa-b53c3c9ca7cd))
  4880. (fp_line (start 0 0) (end 6 0)
  4881. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27779b3f-8ecb-486a-b5d0-a48e89100188))
  4882. (fp_line (start 0.63 -21.43) (end 0.63 -4.53)
  4883. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 555112be-a92b-44ed-a798-149fe3c8927f))
  4884. (fp_line (start 0.63 -4.53) (end 25.33 -4.53)
  4885. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8540838b-a36d-4df6-a300-be7c06fa8069))
  4886. (fp_line (start 2.13 -19.95) (end 2.13 -9.09)
  4887. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3f2d796-b4e3-48d5-8470-8e11ede4cc98))
  4888. (fp_line (start 2.13 -9.09) (end 23.87 -9.09)
  4889. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e2f04c1-57e3-4fb5-b754-5b34fb0e605c))
  4890. (fp_line (start 6 -2) (end 20 -2)
  4891. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a8ce7b9-815c-4bf5-8321-a5f990645f32))
  4892. (fp_line (start 6 0) (end 6 -2)
  4893. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7dfbf5a1-2297-429e-8262-1634036700d6))
  4894. (fp_line (start 20 -2) (end 20 0)
  4895. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7db02387-5587-4283-bbdf-490c68a54883))
  4896. (fp_line (start 20 0) (end 26 0)
  4897. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30e6b72f-4c67-4cc2-9d82-7a0b4cb2bbe6))
  4898. (fp_line (start 23.87 -19.95) (end 2.13 -19.95)
  4899. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22a4002f-5ec6-4a2e-b5a5-452da33f580f))
  4900. (fp_line (start 23.87 -9.09) (end 23.87 -19.95)
  4901. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5259c29-31f0-4b6c-8c01-e88faa437880))
  4902. (fp_line (start 25.33 -21.43) (end 0.63 -21.43)
  4903. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a3b6075-e6df-4780-957f-5c5317d5c3c6))
  4904. (fp_line (start 25.33 -4.53) (end 25.33 -21.43)
  4905. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fa5d98c-1568-4688-8ded-123b446ea8ba))
  4906. (fp_line (start 26 -26) (end 0 -26)
  4907. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6df7601-5d86-4ab7-a779-a05534fc782d))
  4908. (fp_line (start 26 0) (end 26 -26)
  4909. (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90b1b5a6-9b74-4344-8602-7252caa11b00))
  4910. (fp_line (start 0 -26) (end 0 0)
  4911. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 734e1efa-e916-4663-b3f8-e83c3df90f5b))
  4912. (fp_line (start 0 0) (end 6 0)
  4913. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0f28687-3b8a-4327-85cf-ee1e4285fdb8))
  4914. (fp_line (start 6 -2) (end 20 -2)
  4915. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51564568-d73b-45fd-b766-338aca707bc4))
  4916. (fp_line (start 6 0) (end 6 -2)
  4917. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 696f6615-8ea5-4b92-b28d-ac5d28e58472))
  4918. (fp_line (start 20 -2) (end 20 0)
  4919. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20874d0a-7ea0-4374-b41b-d15fa1f65314))
  4920. (fp_line (start 20 0) (end 26 0)
  4921. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53e24c60-b862-450b-af31-dd9f79a452d5))
  4922. (fp_line (start 26 -26) (end 0 -26)
  4923. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74f821fc-8144-4dba-8614-e013ca48c4f0))
  4924. (fp_line (start 26 0) (end 26 -26)
  4925. (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86ee82e4-7414-4611-90f5-71dbc69b522b))
  4926. (pad "" np_thru_hole circle (at 2 -24) (size 3 3) (drill 2.5) (layers "F&B.Cu" "*.Mask") (tstamp f863c1da-27b9-4b8c-a09f-188bd712d330))
  4927. (pad "" np_thru_hole circle (at 2 -2) (size 3 3) (drill 2.5) (layers "F&B.Cu" "*.Mask") (tstamp b875afc1-8b0c-48d9-835b-10eae9c70623))
  4928. (pad "" np_thru_hole circle (at 24 -24) (size 3 3) (drill 2.5) (layers "F&B.Cu" "*.Mask") (tstamp b147d4a6-aeff-4948-b70c-f12afefd6875))
  4929. (pad "" np_thru_hole circle (at 24 -2) (size 3 3) (drill 2.5) (layers "F&B.Cu" "*.Mask") (tstamp 6277c3a2-1f5d-4ed0-86b7-ef436572fac8))
  4930. (pad "1" thru_hole circle (at 9.19 -24.5) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4931. (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 876ae3dc-e900-4c5a-ab0c-817e02d1a68a))
  4932. (pad "2" thru_hole circle (at 11.73 -24.5) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4933. (net 2 "+3.3V") (pinfunction "VCC") (pintype "power_in") (tstamp 66779d7d-2252-4d52-b2a1-4c37e80eaf3a))
  4934. (pad "3" thru_hole circle (at 14.27 -24.5) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4935. (net 43 "/PI/I2C_SCL") (pinfunction "SCL") (pintype "input") (tstamp 4aab380a-2965-4b55-994c-5098e9160457))
  4936. (pad "4" thru_hole circle (at 16.81 -24.5) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
  4937. (net 44 "/PI/I2C_SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp 541cb6ad-9135-4035-99d8-b7f724fb36e2))
  4938. )
  4939. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  4940. (tstamp f46d09aa-3271-4a50-8d4d-2429b5319e34)
  4941. (at 191.754966 82.407765)
  4942. (descr "C0402 footprint")
  4943. (tags "C0402 footprint C140675")
  4944. (property "Capacitance" "100nF")
  4945. (property "LCSC" "C105883")
  4946. (property "Sheetfile" "pi.kicad_sch")
  4947. (property "Sheetname" "PI")
  4948. (property "ki_keywords" "C105883")
  4949. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/f38ce15d-f49c-4e8a-afb1-f7a741332b4e")
  4950. (attr smd)
  4951. (fp_text reference "C22" (at 0 -1.5) (layer "F.SilkS")
  4952. (effects (font (size 1 1) (thickness 0.15)))
  4953. (tstamp f9c005a9-bac6-474c-a437-f2451fd1a7ce)
  4954. )
  4955. (fp_text value "100nF" (at 0 1.5) (layer "F.Fab")
  4956. (effects (font (size 1 1) (thickness 0.15)))
  4957. (tstamp 2d4dc05a-146f-4e01-bdc9-e8a0567b18c0)
  4958. )
  4959. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  4960. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d942e920-a5e5-44bd-af15-2f28837a7a13))
  4961. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  4962. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 054867a7-2565-4a39-96fe-d7c1892cb15f))
  4963. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  4964. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 79ac85b8-5f37-4be7-be13-78aa3e4d894d))
  4965. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  4966. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e4a6013e-bf87-4004-b634-3ff29bea478b))
  4967. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  4968. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 890b92e6-2679-49fc-a981-37948e6e81f3))
  4969. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  4970. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 58fb3b0e-1bc5-4558-a49a-9efe22d62594))
  4971. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  4972. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5941e760-2cb6-4921-876b-6c849dab285f))
  4973. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  4974. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4c2aa27f-af62-4a81-af7e-17c6264ce5ed))
  4975. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  4976. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b86bceed-e482-48fc-a50c-c9eea3013f55))
  4977. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  4978. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 296fc3f5-ed52-4ec5-968f-33347ccc1b04))
  4979. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  4980. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 99278cfe-9291-4d36-8f21-8354eb4c6cba))
  4981. (pad "1" smd rect (at -0.545085 0) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4982. (net 5 "+5V") (pinfunction "1") (pintype "input") (tstamp d6b6a83f-e73d-4b17-a871-d3b010aeb63a))
  4983. (pad "2" smd rect (at 0.545085 0) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  4984. (net 2 "+3.3V") (pinfunction "2") (pintype "input") (tstamp 42a59a60-1718-4bb8-87c5-cd8e10c4f344))
  4985. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  4986. (offset (xyz 0 0.0000253999996185 0.2499359962))
  4987. (scale (xyz 1 1 1))
  4988. (rotate (xyz 0 0 0))
  4989. )
  4990. )
  4991. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  4992. (tstamp f4dda71c-2cbf-4fd7-abac-2675701cc551)
  4993. (at 134 106 -90)
  4994. (descr "C0402 footprint")
  4995. (tags "C0402 footprint C140675")
  4996. (property "Capacitance" "100nF")
  4997. (property "LCSC" "C105883")
  4998. (property "Sheetfile" "pi.kicad_sch")
  4999. (property "Sheetname" "PI")
  5000. (property "ki_keywords" "C105883")
  5001. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/90c47d46-be6b-4bfe-8b50-88b3977e63af")
  5002. (attr smd)
  5003. (fp_text reference "C17" (at -2.5 0 90) (layer "F.SilkS")
  5004. (effects (font (size 1 1) (thickness 0.15)))
  5005. (tstamp 2565b6fb-b2c2-4d07-81ef-2ff09001a958)
  5006. )
  5007. (fp_text value "100nF" (at -3.5 0 90) (layer "F.Fab")
  5008. (effects (font (size 1 1) (thickness 0.15)))
  5009. (tstamp 66c19394-85b4-4a24-b5f7-9639752b3267)
  5010. )
  5011. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  5012. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 05edf94a-792a-49ea-9638-db5e85f4ba2f))
  5013. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  5014. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9229e4f5-eeb8-4feb-b1e5-077af790eab1))
  5015. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  5016. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b1cdf090-8f28-4660-af66-7c078c0c4a68))
  5017. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  5018. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 493d7353-adf2-423a-95a8-a4ab1fd1c18c))
  5019. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  5020. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 5e82fb26-2831-483a-8a72-ebb1edb540ca))
  5021. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  5022. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4134f2ae-7fe2-414e-b25e-fe18b5e31a60))
  5023. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  5024. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8833afad-88bf-45d3-81ba-f714e844f704))
  5025. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  5026. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp af01eecd-e5e0-46dd-bd52-8e73f00c8b9e))
  5027. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  5028. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 856bfeae-4bc9-43fd-bf08-c98999ef8834))
  5029. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  5030. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b82d2c1b-8c10-4ded-a96f-a6a0102e6a42))
  5031. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  5032. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 3df9a5c4-d47e-4dea-9974-7d99583f0166))
  5033. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  5034. (net 2 "+3.3V") (pinfunction "1") (pintype "input") (tstamp 83d8bf19-bbad-438f-bf56-32b213e4c5c4))
  5035. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  5036. (net 1 "GND") (pinfunction "2") (pintype "input") (tstamp 244f03d4-5c65-41ab-93b5-389fb2dca180))
  5037. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  5038. (offset (xyz 0 0.0000253999996185 0.2499359962))
  5039. (scale (xyz 1 1 1))
  5040. (rotate (xyz 0 0 0))
  5041. )
  5042. )
  5043. (footprint "jlc_footprints:HDR-TH_2P-P2.54-V-M-1" (layer "F.Cu")
  5044. (tstamp f6bd4d29-7e35-4ed8-aa7d-6a5d95b2aa7a)
  5045. (at 192.254966 99.907765)
  5046. (descr "HDR-TH_2P-P2.54-V-M-1 footprint")
  5047. (tags "HDR-TH_2P-P2.54-V-M-1 footprint C234182")
  5048. (property "LCSC" "C234182")
  5049. (property "Sheetfile" "pi.kicad_sch")
  5050. (property "Sheetname" "PI")
  5051. (property "ki_keywords" "C234182")
  5052. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/f67d4426-aab3-481b-90af-41afe371b705")
  5053. (attr through_hole)
  5054. (fp_text reference "H10" (at -3.5 0 90) (layer "F.SilkS")
  5055. (effects (font (size 1 1) (thickness 0.15)))
  5056. (tstamp df0aa5e8-6642-47bf-9338-81f71304b12a)
  5057. )
  5058. (fp_text value "T_CL" (at 3 -2 180) (layer "F.Fab")
  5059. (effects (font (size 1 1) (thickness 0.15)))
  5060. (tstamp cd05b7e0-be47-4549-b85f-a0b1ce2dabac)
  5061. )
  5062. (fp_line (start -2.540005 -1.270003) (end -2.540005 1.270003)
  5063. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp bddaa99d-dd30-4df2-9a26-35f3260e733c))
  5064. (fp_line (start -2.540005 1.270003) (end 2.540005 1.270003)
  5065. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6d99c83d-0af2-444a-bf8d-155b45df5cd6))
  5066. (fp_line (start 2.540005 -1.270003) (end -2.540005 -1.270003)
  5067. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4127eb8d-d91f-428a-9335-3c34d3f93bd0))
  5068. (fp_line (start 2.540005 1.270003) (end 2.540005 -1.270003)
  5069. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 73f8a41c-9241-4593-b135-05dfa0810989))
  5070. (fp_circle (center -2.540005 1.270003) (end -2.510033 1.270003)
  5071. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp de896fd1-fe40-4e41-a1b6-09a52b409934))
  5072. (pad "1" thru_hole rect (at -1.270003 0) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
  5073. (net 42 "Net-(H10-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp f54809e2-826f-4619-b816-3a5fd6ac5bb7))
  5074. (pad "2" thru_hole circle (at 1.270003 0) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
  5075. (net 11 "Net-(U14-CANL)") (pinfunction "2") (pintype "unspecified") (tstamp 837ac546-ab61-4795-81da-9adbef46fe36))
  5076. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_2P-P2.54-V-M-1.step"
  5077. (offset (xyz 0.5000243925 0 0))
  5078. (scale (xyz 1 1 1))
  5079. (rotate (xyz 0 0 0))
  5080. )
  5081. )
  5082. (footprint "jlc_footprints:R0402" (layer "F.Cu")
  5083. (tstamp f6da0607-832a-4a16-babf-e493270ce0e0)
  5084. (at 117.567183 129.03813 180)
  5085. (descr "R0402 footprint")
  5086. (tags "R0402 footprint C279981")
  5087. (property "LCSC" "C406733")
  5088. (property "Resistance" "10kΩ")
  5089. (property "Sheetfile" "pi.kicad_sch")
  5090. (property "Sheetname" "PI")
  5091. (property "ki_keywords" "C406733")
  5092. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/e954d82d-efac-499d-8bc6-68fefa89cda0")
  5093. (attr smd)
  5094. (fp_text reference "R7" (at 0 -1.5) (layer "F.SilkS")
  5095. (effects (font (size 1 1) (thickness 0.15)))
  5096. (tstamp 5b151387-7a66-4545-a37b-0dd811a536ed)
  5097. )
  5098. (fp_text value "10K" (at 2.5 0) (layer "F.Fab")
  5099. (effects (font (size 1 1) (thickness 0.15)))
  5100. (tstamp c077ec64-a8cc-47dd-a857-5d096342307c)
  5101. )
  5102. (fp_line (start -0.944247 -0.498603) (end -0.226213 -0.498603)
  5103. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d024aae0-ebcc-4415-83e0-72bba2ab139f))
  5104. (fp_line (start -0.944247 0.498603) (end -0.944247 -0.498603)
  5105. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 296392cd-8ca0-4ae8-873a-ff0beadc7289))
  5106. (fp_line (start -0.226213 0.498603) (end -0.944247 0.498603)
  5107. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a55eed7f-578c-411b-94de-ac9461e51d50))
  5108. (fp_line (start 0.226213 0.498603) (end 0.944247 0.498603)
  5109. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 18079cf4-741e-4773-9e87-15c5933c239d))
  5110. (fp_line (start 0.944247 -0.498603) (end 0.226213 -0.498603)
  5111. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b9ff1152-5446-4fe8-a3c5-c5332e9f1568))
  5112. (fp_line (start 0.944247 0.498603) (end 0.944247 -0.498603)
  5113. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp d91a8dac-4387-4c5e-9ff0-89d3f42f2888))
  5114. (fp_circle (center -0.5 0.249987) (end -0.470003 0.249987)
  5115. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7955f463-8db8-4d8d-9acc-04fc54c9b775))
  5116. (pad "1" smd rect (at -0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  5117. (net 2 "+3.3V") (pinfunction "1") (pintype "unspecified") (tstamp 51b2f487-7da1-4729-bd36-5cddc0f0db6d))
  5118. (pad "2" smd rect (at 0.432817 0 180) (size 0.565659 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  5119. (net 49 "Net-(U9-D6)") (pinfunction "2") (pintype "unspecified") (tstamp a2ea0bc8-1aa1-49d1-b9b0-e4d36472e162))
  5120. (model "jlc_lib/jlc_footprints/packages3d/R0402.step"
  5121. (offset (xyz 0 0.0000253999996185 0.2499359962))
  5122. (scale (xyz 1 1 1))
  5123. (rotate (xyz 0 0 0))
  5124. )
  5125. )
  5126. (footprint "jlc_footprints:HDR-TH_2P-P2.54-V-M-1" (layer "F.Cu")
  5127. (tstamp fc902e44-8aa7-4366-8326-347149afb950)
  5128. (at 192.254966 103.407765)
  5129. (descr "HDR-TH_2P-P2.54-V-M-1 footprint")
  5130. (tags "HDR-TH_2P-P2.54-V-M-1 footprint C234182")
  5131. (property "LCSC" "C234182")
  5132. (property "Sheetfile" "pi.kicad_sch")
  5133. (property "Sheetname" "PI")
  5134. (property "ki_keywords" "C234182")
  5135. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/742d30ec-c66b-46c7-94d1-b523cfdae756")
  5136. (attr through_hole)
  5137. (fp_text reference "H9" (at -3.5 0.5 90) (layer "F.SilkS")
  5138. (effects (font (size 1 1) (thickness 0.15)))
  5139. (tstamp bbba1d9a-8918-4beb-bf7b-b6e1c207f97c)
  5140. )
  5141. (fp_text value "T_CH" (at 3 2 180) (layer "F.Fab")
  5142. (effects (font (size 1 1) (thickness 0.15)))
  5143. (tstamp b1abd19d-0332-4bea-b37b-e6b2f6ef9b97)
  5144. )
  5145. (fp_line (start -2.540005 -1.270003) (end -2.540005 1.270003)
  5146. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8b608150-7421-4fcb-b722-a88c1c7d20c4))
  5147. (fp_line (start -2.540005 1.270003) (end 2.540005 1.270003)
  5148. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b8299294-718a-4f43-8846-58d3fc8fc351))
  5149. (fp_line (start 2.540005 -1.270003) (end -2.540005 -1.270003)
  5150. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp efb6cb25-e868-4b50-b1e5-2b22ff5d6a9d))
  5151. (fp_line (start 2.540005 1.270003) (end 2.540005 -1.270003)
  5152. (stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 24eb3c9c-ddc0-4b1f-87ab-55e1777202fe))
  5153. (fp_circle (center -2.540005 1.270003) (end -2.510033 1.270003)
  5154. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 4aa8b08f-30a8-41e6-bed7-a8715a29118d))
  5155. (pad "1" thru_hole rect (at -1.270003 0) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
  5156. (net 41 "Net-(H9-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp 6addba75-d03c-4876-b488-c6b75f342ca5))
  5157. (pad "2" thru_hole circle (at 1.270003 0) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
  5158. (net 9 "Net-(U14-CANH)") (pinfunction "2") (pintype "unspecified") (tstamp 5b14efa7-41c9-4704-8784-a76efc43b26a))
  5159. (model "jlc_lib/jlc_footprints/packages3d/HDR-TH_2P-P2.54-V-M-1.step"
  5160. (offset (xyz 0.5000243925 0 0))
  5161. (scale (xyz 1 1 1))
  5162. (rotate (xyz 0 0 0))
  5163. )
  5164. )
  5165. (footprint "jlc_footprints:C0402" (layer "F.Cu")
  5166. (tstamp fdb7eab8-feb8-4e38-b2d1-2e66f4a2e783)
  5167. (at 160.190482 77.472535 -90)
  5168. (descr "C0402 footprint")
  5169. (tags "C0402 footprint C140675")
  5170. (property "Capacitance" "100nF")
  5171. (property "LCSC" "C105883")
  5172. (property "Sheetfile" "psu_lm2576.kicad_sch")
  5173. (property "Sheetname" "PI_PSU")
  5174. (property "ki_keywords" "C105883")
  5175. (path "/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876/f822b994-be54-4161-9c2e-759add250e25")
  5176. (attr smd)
  5177. (fp_text reference "C30" (at 0 -1.5 90) (layer "F.SilkS")
  5178. (effects (font (size 1 1) (thickness 0.15)))
  5179. (tstamp 86e248f1-d8f8-4439-ab81-5a4ba04e92c7)
  5180. )
  5181. (fp_text value "100nF" (at 0 1.5 90) (layer "F.Fab")
  5182. (effects (font (size 1 1) (thickness 0.15)))
  5183. (tstamp a254bebc-1ee8-4592-9ffa-2ec6ba4807ce)
  5184. )
  5185. (fp_line (start -1.168707 0.346203) (end -1.168707 -0.346203)
  5186. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 75cb9c21-405d-45c8-bc96-ad3953bf72f5))
  5187. (fp_line (start -1.016307 -0.498603) (end -0.226213 -0.498603)
  5188. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a1612c53-1394-4601-8257-ee74f98e7e97))
  5189. (fp_line (start -0.226213 0.498603) (end -1.016307 0.498603)
  5190. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6ff00b69-1fb4-4573-be24-c70946996544))
  5191. (fp_line (start 0.226213 0.498603) (end 1.016307 0.498603)
  5192. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp fc15f67f-46b1-4ed5-8b9b-352215df39da))
  5193. (fp_line (start 1.016307 -0.498603) (end 0.226213 -0.498603)
  5194. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 8a5b91d2-b27d-485d-9e88-dee5aa934fb3))
  5195. (fp_line (start 1.168707 0.346203) (end 1.168707 -0.346203)
  5196. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a71b400f-6fee-4fde-83f2-93050bf82298))
  5197. (fp_arc (start -1.168707 -0.346203) (mid -1.12407 -0.453966) (end -1.016307 -0.498603)
  5198. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 23df5511-b586-431f-b16d-9097c00a1bf2))
  5199. (fp_arc (start -1.016307 0.498603) (mid -1.12407 0.453966) (end -1.168707 0.346203)
  5200. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9f4979a2-3163-4a6a-a3a7-86ff15ae9eab))
  5201. (fp_arc (start 1.016307 -0.498603) (mid 1.12407 -0.453966) (end 1.168707 -0.346203)
  5202. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0ff49d9d-b65e-4d39-af37-226acb6d677c))
  5203. (fp_arc (start 1.168707 0.346203) (mid 1.12407 0.453966) (end 1.016307 0.498603)
  5204. (stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 40049dde-8bb5-46e6-9cee-22cd3c352775))
  5205. (fp_circle (center -0.5 0.250013) (end -0.470003 0.250013)
  5206. (stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp f4eb78ca-a59f-4d9f-b834-5f5b45cf5e07))
  5207. (pad "1" smd rect (at -0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  5208. (net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 81e649ac-a488-4edd-98b3-4d2d2177da31))
  5209. (pad "2" smd rect (at 0.545085 0 270) (size 0.790094 0.540005) (layers "F.Cu" "F.Paste" "F.Mask")
  5210. (net 12 "/PI/PI_PSU/Vout") (pinfunction "2") (pintype "input") (tstamp cc7d23e5-9eae-4ffa-885a-ab36a031dcc0))
  5211. (model "jlc_lib/jlc_footprints/packages3d/C0402.step"
  5212. (offset (xyz 0 0.0000253999996185 0.2499359962))
  5213. (scale (xyz 1 1 1))
  5214. (rotate (xyz 0 0 0))
  5215. )
  5216. )
  5217. (gr_rect (start 93.490456 47.717646) (end 218.490456 137.717646)
  5218. (stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 15e6e131-2cf8-4c48-8043-060e8410f502))
  5219. (gr_text "BOOTSEL" (at 161.5 95.302545 -90) (layer "F.SilkS") (tstamp 04210cd4-cf06-4dfb-ac55-ab36c46e7bf9)
  5220. (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  5221. )
  5222. (gr_text "Power In" (at 181.324632 67.799974) (layer "F.SilkS") (tstamp 0ad47cc0-e75b-46e5-8f5a-079b976dbac3)
  5223. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5224. )
  5225. (gr_text "-" (at 176.689992 65) (layer "F.SilkS") (tstamp 0c3ba889-e0c6-498f-8280-8d1cead46da0)
  5226. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5227. )
  5228. (gr_text "Termination" (at 194 107) (layer "F.SilkS") (tstamp 29eb60e4-bbe6-4c54-814f-ac6e6454f475)
  5229. (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  5230. )
  5231. (gr_text "+" (at 192.689992 65) (layer "F.SilkS") (tstamp 41030b9e-c538-4ad4-9cee-52dd50a5baa2)
  5232. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5233. )
  5234. (gr_text "RasPi\nPower" (at 93.990456 76.217646) (layer "F.SilkS") (tstamp 4c3a9cda-dbea-447c-8f49-bc30acf9f89a)
  5235. (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  5236. )
  5237. (gr_text "-" (at 101.5 86) (layer "F.SilkS") (tstamp 720a8001-101c-4a83-9718-bcaf816f8598)
  5238. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5239. )
  5240. (gr_text "HW-ID" (at 125 131.802545) (layer "F.SilkS") (tstamp 798599ca-9374-49d9-a097-ca8d900c591a)
  5241. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5242. )
  5243. (gr_text "Prog." (at 173 126 -90) (layer "F.SilkS") (tstamp 7db7913b-a21a-47df-8a21-8851db4b6b62)
  5244. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5245. )
  5246. (gr_text "+" (at 200.689992 65) (layer "F.SilkS") (tstamp 8d4354c9-ada9-4079-b24f-d5fb1fa2c7cd)
  5247. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5248. )
  5249. (gr_text "RESET" (at 129 114.302545 90) (layer "F.SilkS") (tstamp 9051a4e0-5c33-4d91-a834-3229cf604cc7)
  5250. (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  5251. )
  5252. (gr_text "CAN DC\nPower" (at 188.254966 76.407765) (layer "F.SilkS") (tstamp ac463bc5-664e-4ffd-a59d-a49908c05166)
  5253. (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  5254. )
  5255. (gr_text "3.3V" (at 116.101981 81.503429) (layer "F.SilkS") (tstamp afd0d65d-562c-47c5-8258-35154dff9a81)
  5256. (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  5257. )
  5258. (gr_text "5V" (at 118.101981 85.503429) (layer "F.SilkS") (tstamp b1d248f7-3edf-420f-a7a8-5986e86f1465)
  5259. (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  5260. )
  5261. (gr_text "+" (at 101.5 81) (layer "F.SilkS") (tstamp d0206814-274a-4a2b-9198-ec15d5b2b991)
  5262. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5263. )
  5264. (gr_text "5V_E" (at 115.601981 89.503429) (layer "F.SilkS") (tstamp fd698769-11df-45fd-bf77-9ff9dfa2a3f6)
  5265. (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  5266. )
  5267. (gr_text "-" (at 185.189992 65) (layer "F.SilkS") (tstamp fe3959eb-6669-4f9c-b0cd-c922a345c3d6)
  5268. (effects (font (size 3 3) (thickness 0.5) bold) (justify left bottom))
  5269. )
  5270. (dimension (type aligned) (layer "Dwgs.User") (tstamp 905f6c72-66fd-4821-97a0-aa08be0b25b4)
  5271. (pts (xy 93.490456 137.717646) (xy 93.490456 47.717646))
  5272. (height -8.490456)
  5273. (gr_text "90.0000 mm" (at 83.2 92.717646 90) (layer "Dwgs.User") (tstamp 905f6c72-66fd-4821-97a0-aa08be0b25b4)
  5274. (effects (font (size 1.5 1.5) (thickness 0.3)))
  5275. )
  5276. (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
  5277. (style (thickness 0.2) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
  5278. )
  5279. (dimension (type aligned) (layer "Dwgs.User") (tstamp 93de21a6-7622-4c4d-916a-f57de1d2cffb)
  5280. (pts (xy 93.490456 47.717646) (xy 218.490456 47.717646))
  5281. (height -7.717646)
  5282. (gr_text "125.0000 mm" (at 155.990456 38.2) (layer "Dwgs.User") (tstamp 93de21a6-7622-4c4d-916a-f57de1d2cffb)
  5283. (effects (font (size 1.5 1.5) (thickness 0.3)))
  5284. )
  5285. (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
  5286. (style (thickness 0.2) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
  5287. )
  5288. (dimension (type aligned) (layer "Dwgs.User") (tstamp c36280f1-1c15-43a4-9e6e-63b04a457477)
  5289. (pts (xy 98.5 51.717646) (xy 213.5 51.717646))
  5290. (height -7.217646)
  5291. (gr_text "115.0000 mm" (at 156 42.7) (layer "Dwgs.User") (tstamp c36280f1-1c15-43a4-9e6e-63b04a457477)
  5292. (effects (font (size 1.5 1.5) (thickness 0.3)))
  5293. )
  5294. (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
  5295. (style (thickness 0.2) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
  5296. )
  5297. (dimension (type aligned) (layer "Dwgs.User") (tstamp d9c5e147-6e8b-4570-8c25-d47a49e71c39)
  5298. (pts (xy 98.5 132.5) (xy 98.5 52.5))
  5299. (height -8.5)
  5300. (gr_text "80.0000 mm" (at 88.2 92.5 90) (layer "Dwgs.User") (tstamp d9c5e147-6e8b-4570-8c25-d47a49e71c39)
  5301. (effects (font (size 1.5 1.5) (thickness 0.3)))
  5302. )
  5303. (format (prefix "") (suffix "") (units 3) (units_format 1) (precision 4))
  5304. (style (thickness 0.2) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
  5305. )
  5306. (segment (start 134.490456 74.910051) (end 127.682861 74.910051) (width 2) (layer "F.Cu") (net 1) (tstamp 0476c499-6be0-4864-9ed4-7537cd8dabfc))
  5307. (segment (start 148.545085 108.34763) (end 149 107.892715) (width 0.2) (layer "F.Cu") (net 1) (tstamp 059e351f-6da3-447a-a055-e65ff9af2086))
  5308. (segment (start 148.150114 118.149987) (end 150 119.999873) (width 1) (layer "F.Cu") (net 1) (tstamp 05fa999d-951b-44d2-9820-2255b3a33b43))
  5309. (segment (start 107.717773 67.717773) (end 110.5 70.5) (width 2) (layer "F.Cu") (net 1) (tstamp 06782ac5-252e-489c-8ba2-4dd4af19524b))
  5310. (segment (start 137.735585 122.937546) (end 137.735585 121.667544) (width 0.5) (layer "F.Cu") (net 1) (tstamp 09a0f235-1e70-4cf4-ae76-5283190d9bbe))
  5311. (segment (start 145.034925 78.549975) (end 145.034925 73.034925) (width 1) (layer "F.Cu") (net 1) (tstamp 09eb6e63-9041-4875-a4d3-2cb742c8dc12))
  5312. (segment (start 152 106.84763) (end 153.045085 106.84763) (width 0.2) (layer "F.Cu") (net 1) (tstamp 0e506b26-11f7-472d-aeb0-964323347a13))
  5313. (segment (start 125.990456 62.85087) (end 125.990456 73.217646) (width 1) (layer "F.Cu") (net 1) (tstamp 10e17728-1303-494f-8b44-7d0b954fcca2))
  5314. (segment (start 162.932817 127) (end 163.5 127) (width 0.5) (layer "F.Cu") (net 1) (tstamp 11bcc458-16f5-42af-abfa-f9d1fdeba724))
  5315. (segment (start 169.5 127.570002) (end 169.067183 127.137185) (width 0.2) (layer "F.Cu") (net 1) (tstamp 11cda231-d3b6-48f9-8d4d-81f5c9033c80))
  5316. (segment (start 191.709881 96.907765) (end 191.709881 94.532733) (width 0.5) (layer "F.Cu") (net 1) (tstamp 132df0a2-5bc5-48ca-9d57-2f419dda86db))
  5317. (segment (start 136.990456 74.509544) (end 136.589949 74.910051) (width 2) (layer "F.Cu") (net 1) (tstamp 177a164b-5fd5-4134-a887-25047cf987d9))
  5318. (segment (start 127 121.03813) (end 127 122.03813) (width 0.5) (layer "F.Cu") (net 1) (tstamp 1960d43a-c1ff-4826-bd1c-2e9541a9dfcb))
  5319. (segment (start 150 135.459995) (end 150.540005 136) (width 1) (layer "F.Cu") (net 1) (tstamp 1ecbfbc2-861b-40a0-b0d4-48c9177150e9))
  5320. (segment (start 172.382887 67.825215) (end 170.690482 69.51762) (width 1) (layer "F.Cu") (net 1) (tstamp 1f2c6f2b-915c-4a12-aeec-b11805ed4747))
  5321. (segment (start 173.690355 81.51762) (end 173.690355 72.517493) (width 2) (layer "F.Cu") (net 1) (tstamp 20470e50-c8d9-4b24-a301-e08b3704a603))
  5322. (segment (start 105.936735 67.717773) (end 107.717773 67.717773) (width 2) (layer "F.Cu") (net 1) (tstamp 28973f27-b700-4322-9e32-bba6e03f4abe))
  5323. (segment (start 110.5 72.727063) (end 113.990456 76.217519) (width 2) (layer "F.Cu") (net 1) (tstamp 295b0d73-286d-4a9f-86f5-b9e7a6fc3dbd))
  5324. (segment (start 156 98.802545) (end 156.5 99.302545) (width 0.2) (layer "F.Cu") (net 1) (tstamp 2a73518c-ce15-4505-9b8a-38b5772cb062))
  5325. (segment (start 151.5 107.34763) (end 152 106.84763) (width 0.2) (layer "F.Cu") (net 1) (tstamp 2b984c46-2006-4093-9588-7ea14ec8e7d1))
  5326. (segment (start 187.625096 98.01762) (end 187.800051 97.842665) (width 0.5) (layer "F.Cu") (net 1) (tstamp 2bcc06cd-0ec9-466e-bbe0-d01353c90876))
  5327. (segment (start 184.125096 98.01762) (end 187.625096 98.01762) (width 0.5) (layer "F.Cu") (net 1) (tstamp 2be0c149-df69-48e0-a85e-19da2c2b55d0))
  5328. (segment (start 179.569977 66.930023) (end 176.98238 69.51762) (width 2) (layer "F.Cu") (net 1) (tstamp 2f19edcc-3b38-48e8-9876-5594977e841d))
  5329. (segment (start 136.990456 73.009544) (end 136.990456 65.217519) (width 1) (layer "F.Cu") (net 1) (tstamp 32596ad9-5eea-4807-80f2-896c4cd13753))
  5330. (segment (start 151.5 98.802545) (end 156 98.802545) (width 0.2) (layer "F.Cu") (net 1) (tstamp 32fbe443-e4d1-422a-9c3b-aecfbea1e182))
  5331. (segment (start 136.589949 74.910051) (end 134.490456 74.910051) (width 2) (layer "F.Cu") (net 1) (tstamp 355cd5bf-b745-4fcb-a2b2-ab8deec76fd9))
  5332. (segment (start 202.625458 93.217646) (end 204.754966 91.088138) (width 0.5) (layer "F.Cu") (net 1) (tstamp 35a26436-7f9e-4646-ad04-d0feb0d0c419))
  5333. (segment (start 122.990583 76.217519) (end 125.990456 73.217646) (width 1) (layer "F.Cu") (net 1) (tstamp 35db06be-b5e8-4eb6-9ce4-de03d5f9a448))
  5334. (segment (start 133.59017 97.302545) (end 134 97.712375) (width 0.2) (layer "F.Cu") (net 1) (tstamp 360144e7-f461-49aa-ac05-6d9f1f9d42e6))
  5335. (segment (start 190.214961 93.36776) (end 191.334849 94.487648) (width 0.5) (layer "F.Cu") (net 1) (tstamp 3b8f207c-9d2a-4ee1-8e98-fa436b277439))
  5336. (segment (start 167.290431 72.917671) (end 170.690482 69.51762) (width 1) (layer "F.Cu") (net 1) (tstamp 3e400eeb-d1da-4d04-91c6-843c9e5a6604))
  5337. (segment (start 137.735585 124.207549) (end 137.735585 122.937546) (width 0.5) (layer "F.Cu") (net 1) (tstamp 3f9e59dd-d317-4beb-8b27-da3414053538))
  5338. (segment (start 163.5 130.090043) (end 163.5 131.33998) (width 0.2) (layer "F.Cu") (net 1) (tstamp 407ae003-6360-4caa-be7d-89f83d7e1ee8))
  5339. (segment (start 183.625096 98.51762) (end 184.125096 98.01762) (width 0.5) (layer "F.Cu") (net 1) (tstamp 40c508c4-74cf-4bbd-a2c1-855a2bb22e6f))
  5340. (segment (start 169.5 131.33998) (end 169.600076 131.440056) (width 0.2) (layer "F.Cu") (net 1) (tstamp 410d872b-86d7-4dde-985b-fb1d2a0065f3))
  5341. (segment (start 172.382887 61.01762) (end 172.382887 67.825215) (width 1) (layer "F.Cu") (net 1) (tstamp 41bd9362-5686-4a4c-91cf-e075b3ff4a7f))
  5342. (segment (start 169.067183 127.137185) (end 169.067183 127) (width 0.2) (layer "F.Cu") (net 1) (tstamp 42a90dd7-5d78-412b-bc57-5f80e8f9696c))
  5343. (segment (start 122.302514 84.506858) (end 122.302514 88.510287) (width 0.5) (layer "F.Cu") (net 1) (tstamp 46dd5a06-213d-4e75-b813-d6b7336cfd69))
  5344. (segment (start 185.87949 106.407765) (end 183.625096 104.153371) (width 0.5) (layer "F.Cu") (net 1) (tstamp 46e6e6df-af65-431f-94d3-1bc77fdd0ea6))
  5345. (segment (start 103.490456 74.217646) (end 104.260458 74.217646) (width 0.5) (layer "F.Cu") (net 1) (tstamp 47e31e9c-ab86-4bfd-b3c0-f3f2e830e62b))
  5346. (segment (start 145.034925 73.034925) (end 145 73) (width 1) (layer "F.Cu") (net 1) (tstamp 496c57d3-493b-4aac-90ef-97dcbd3ac195))
  5347. (segment (start 139.765176 119.127539) (end 140 118.892715) (width 0.5) (layer "F.Cu") (net 1) (tstamp 4c57679c-3eae-46ef-8394-c6b433b268fb))
  5348. (segment (start 136.990456 73.009544) (end 139.240456 73.009544) (width 2) (layer "F.Cu") (net 1) (tstamp 4dea75e8-0b0a-47e0-8072-958cf6ef1e40))
  5349. (segment (start 154.454915 106.392715) (end 155 105.84763) (width 0.2) (layer "F.Cu") (net 1) (tstamp 4e582140-327a-4a62-8f72-b4a8b351a162))
  5350. (segment (start 146 109.84763) (end 146.954915 109.84763) (width 0.2) (layer "F.Cu") (net 1) (tstamp 4f7b7cdd-ae3e-43fd-933d-4e4fe8a7e15e))
  5351. (segment (start 153.045085 106.84763) (end 153.5 106.392715) (width 0.2) (layer "F.Cu") (net 1) (tstamp 506655a3-8ba8-4812-9f2e-1ca79157a298))
  5352. (segment (start 145.034925 78.549975) (end 145.034925 81.049975) (width 1) (layer "F.Cu") (net 1) (tstamp 50a28e9d-19b7-45f0-a7e5-602fd5831586))
  5353. (segment (start 163.5 127) (end 164.567183 127) (width 0.5) (layer "F.Cu") (net 1) (tstamp 50a9a989-d099-4632-829d-ff116de43127))
  5354. (segment (start 147.5 108.34763) (end 148.545085 108.34763) (width 0.2) (layer "F.Cu") (net 1) (tstamp 531bf980-6a02-451e-b3fd-ec02de955654))
  5355. (segment (start 127.682861 74.910051) (end 125.990456 73.217646) (width 1) (layer "F.Cu") (net 1) (tstamp 53e376c8-d2e4-4689-ab5c-c553cefe5aad))
  5356. (segment (start 195.754966 92.407765) (end 195.754966 94.487648) (width 0.5) (layer "F.Cu") (net 1) (tstamp 54161521-f77c-40ff-b21d-6d1d01310a02))
  5357. (segment (start 147.5 109.302545) (end 147.5 108.34763) (width 0.2) (layer "F.Cu") (net 1) (tstamp 566a3b79-abbd-4ed1-bb0a-81dfdeb9752d))
  5358. (segment (start 162.690355 58.51762) (end 169.882887 58.51762) (width 1) (layer "F.Cu") (net 1) (tstamp 56b0079b-4ec9-449b-98e7-e02c0c9eac95))
  5359. (segment (start 138.949835 103.302545) (end 141.5 103.302545) (width 0.2) (layer "F.Cu") (net 1) (tstamp 56e62dc4-f20b-4f09-8907-08271c6103b0))
  5360. (segment (start 137.735585 125.477551) (end 137.735585 124.207549) (width 0.5) (layer "F.Cu") (net 1) (tstamp 571633a9-bf79-435a-bb50-3e3e5efbae8e))
  5361. (segment (start 134.61557 126.747554) (end 132.264415 126.747554) (width 0.5) (layer "F.Cu") (net 1) (tstamp 59b589f0-cd19-4302-8c3b-ef73dc0ed23e))
  5362. (segment (start 110.5 70.5) (end 110.5 72.727063) (width 2) (layer "F.Cu") (net 1) (tstamp 61a5c979-222c-421a-8036-523845f7385b))
  5363. (segment (start 163.5 130.090043) (end 163.5 127) (width 0.2) (layer "F.Cu") (net 1) (tstamp 61d54dad-abb8-43e4-866e-65871385ec96))
  5364. (segment (start 145.034925 82.499975) (end 145.034925 81.049975) (width 1) (layer "F.Cu") (net 1) (tstamp 645c20ab-ab53-4981-b6c8-f95f6e4bc230))
  5365. (segment (start 146.954915 109.84763) (end 147.5 109.302545) (width 0.2) (layer "F.Cu") (net 1) (tstamp 65908d69-b516-4d06-8fcd-1ff49b068000))
  5366. (segment (start 187.189992 57.5) (end 179.569977 57.5) (width 2) (layer "F.Cu") (net 1) (tstamp 6646e877-22e8-40e6-88d3-3afd3128fe87))
  5367. (segment (start 160.323706 69.51762) (end 170.690482 69.51762) (width 1) (layer "F.Cu") (net 1) (tstamp 66f2ed49-acdd-404b-b606-811dc49c6781))
  5368. (segment (start 188.944958 84.097757) (end 188.209881 83.36268) (width 0.5) (layer "F.Cu") (net 1) (tstamp 689694dc-50c2-4ea0-94e3-f8d8682a29e2))
  5369. (segment (start 127 122.03813) (end 125.5 123.53813) (width 0.5) (layer "F.Cu") (net 1) (tstamp 68c20e38-1b87-4985-9d34-a41103ccb01c))
  5370. (segment (start 122.590405 62.85087) (end 122.590405 69.817595) (width 1) (layer "F.Cu") (net 1) (tstamp 6a2e3fe9-b234-4326-b69d-667117254170))
  5371. (segment (start 151.094996 98.397541) (end 151.5 98.802545) (width 0.2) (layer "F.Cu") (net 1) (tstamp 6a971c05-8663-4150-919a-fb8974579ab6))
  5372. (segment (start 173.690355 72.517493) (end 170.690482 69.51762) (width 1) (layer "F.Cu") (net 1) (tstamp 6b9d6ce6-b8c7-44ae-a263-1622046c2d24))
  5373. (segment (start 190.214961 89.36776) (end 188.944958 88.097757) (width 0.5) (layer "F.Cu") (net 1) (tstamp 6d138af2-72d8-4632-bea4-0b679e0dedff))
  5374. (segment (start 187.800051 97.842665) (end 187.800051 96.907765) (width 0.5) (layer "F.Cu") (net 1) (tstamp 6d163ffd-a9ad-4184-bcbb-0dacf12f11c7))
  5375. (segment (start 104.260458 74.217646) (end 105.936735 72.541369) (width 0.5) (layer "F.Cu") (net 1) (tstamp 6d30fdea-f6d4-4e65-beb3-e9115815a60e))
  5376. (segment (start 156.5 99.302545) (end 156.5 100.712375) (width 0.2) (layer "F.Cu") (net 1) (tstamp 6dbe2777-e3ab-422b-a041-91d5cd670dc8))
  5377. (segment (start 191.329819 109.82738) (end 191.329819 111.455181) (width 0.2) (layer "F.Cu") (net 1) (tstamp 6f17646d-c4bc-420e-9825-76f422cdad97))
  5378. (segment (start 135.5 106.545085) (end 134 106.545085) (width 0.2) (layer "F.Cu") (net 1) (tstamp 71e8c185-df59-4f87-8a91-723c4f64ef47))
  5379. (segment (start 136.990456 73.009544) (end 136.990456 74.509544) (width 2) (layer "F.Cu") (net 1) (tstamp 73d9ee77-5e04-4211-bef6-56b6d7e50ea7))
  5380. (segment (start 163.5 131.33998) (end 163.399924 131.440056) (width 0.2) (layer "F.Cu") (net 1) (tstamp 74cbd8f8-2179-419a-b34d-128e73f0c239))
  5381. (segment (start 169.5 130.090043) (end 169.5 131.33998) (width 0.2) (layer "F.Cu") (net 1) (tstamp 75613fab-af8a-41cc-8edb-9b57e7bf6e86))
  5382. (segment (start 137.735585 125.477551) (end 135.885573 125.477551) (width 0.5) (layer "F.Cu") (net 1) (tstamp 76d97492-22a9-4b90-8e6d-e11cda09effc))
  5383. (segment (start 183.625096 104.153371) (end 183.625096 98.51762) (width 0.5) (layer "F.Cu") (net 1) (tstamp 7796cd33-6ea6-4eb7-a63d-f37c6047001c))
  5384. (segment (start 169.5 130.090043) (end 169.5 127.570002) (width 0.2) (layer "F.Cu") (net 1) (tstamp 85d779d6-2510-4a73-9833-be122e90b992))
  5385. (segment (start 113.990456 76.217519) (end 122.990583 76.217519) (width 2) (layer "F.Cu") (net 1) (tstamp 86da27ab-ba37-424d-81f7-3301b13aa15c))
  5386. (segment (start 137.735585 119.127539) (end 137.735585 120.397541) (width 0.5) (layer "F.Cu") (net 1) (tstamp 904b9ba9-ba83-4232-a82b-21480d8fa35a))
  5387. (segment (start 137.735585 119.127539) (end 139.765176 119.127539) (width 0.5) (layer "F.Cu") (net 1) (tstamp 937b66bb-9e57-4a35-a0e5-1d0c8e310770))
  5388. (segment (start 204.754966 86.457136) (end 202.625458 84.327628) (width 0.5) (layer "F.Cu") (net 1) (tstamp 959c5bbe-5120-443e-9b0f-4c28a58bfe6a))
  5389. (segment (start 150.5 107.34763) (end 151.5 107.34763) (width 0.2) (layer "F.Cu") (net 1) (tstamp 95fd35a9-b469-43fc-b10a-6b95cf8557b5))
  5390. (segment (start 144.484925 83.049975) (end 145.034925 82.499975) (width 1) (layer "F.Cu") (net 1) (tstamp 96ccca2f-155a-4631-a616-af5634652dfd))
  5391. (segment (start 176.98238 69.51762) (end 170.690482 69.51762) (width 2) (layer "F.Cu") (net 1) (tstamp 99492ea2-3c98-40ba-b053-e87a12837f96))
  5392. (segment (start 188.944958 88.097757) (end 188.944958 85.70266) (width 0.5) (layer "F.Cu") (net 1) (tstamp 9a3e818e-0afc-4039-bd95-b73d2fd4d022))
  5393. (segment (start 191.709881 106.407765) (end 185.87949 106.407765) (width 0.5) (layer "F.Cu") (net 1) (tstamp 9f08f922-cfa4-4e5a-be10-3e2ff268a29d))
  5394. (segment (start 122.590405 69.817595) (end 125.990456 73.217646) (width 1) (layer "F.Cu") (net 1) (tstamp a0912b39-0c24-4699-848c-645c4bb05b2b))
  5395. (segment (start 130.709424 126.747554) (end 130 126.03813) (width 0.5) (layer "F.Cu") (net 1) (tstamp a6adfc67-1996-4342-ac84-6499a35f4893))
  5396. (segment (start 150 119.999873) (end 150 135.459995) (width 1) (layer "F.Cu") (net 1) (tstamp a8477a0f-1121-4069-a655-18d0d758b7e3))
  5397. (segment (start 179.569977 57.5) (end 179.569977 66.930023) (width 2) (layer "F.Cu") (net 1) (tstamp aaa0a95a-7116-48de-8edf-ca4f2c9e8a36))
  5398. (segment (start 191.329819 111.455181) (end 190.285 112.5) (width 0.2) (layer "F.Cu") (net 1) (tstamp acbdcb73-bfbe-4713-acca-fca880fb2da0))
  5399. (segment (start 122.369697 80.506858) (end 122.369697 84.439675) (width 0.5) (layer "F.Cu") (net 1) (tstamp b0489509-3c6d-49ff-ac8f-ef533d757234))
  5400. (segment (start 191.754966 94.487648) (end 195.754966 94.487648) (width 0.5) (layer "F.Cu") (net 1) (tstamp b671b03c-58fd-4886-b992-66103167c0d5))
  5401. (segment (start 204.754966 91.088138) (end 204.754966 86.457136) (width 0.5) (layer "F.Cu") (net 1) (tstamp b7f2fd22-b4a8-4cba-8d64-2fab933d9837))
  5402. (segment (start 118.580626 62.717646) (end 122.457181 62.717646) (width 0.5) (layer "F.Cu") (net 1) (tstamp bb252ea9-c9cc-4e7b-b3dd-02e2b9a6440f))
  5403. (segment (start 151.094996 94.772446) (end 151.094996 98.397541) (width 0.2) (layer "F.Cu") (net 1) (tstamp bc0262ce-d223-4efc-b5bb-164c14b00680))
  5404. (segment (start 188.209881 82.407765) (end 188.209881 83.36268) (width 0.5) (layer "F.Cu") (net 1) (tstamp c0377afc-1e74-40f4-8c29-c69785012040))
  5405. (segment (start 125.5 123.53813) (end 124.250064 123.53813) (width 0.5) (layer "F.Cu") (net 1) (tstamp c0fbbc5c-ee01-4566-aa8e-ffe05ffe8672))
  5406. (segment (start 160.190482 73.050895) (end 160.323706 72.917671) (width 0.5) (layer "F.Cu") (net 1) (tstamp cabad83c-bbef-4bc8-a3ce-e04d5f86109e))
  5407. (segment (start 160.323706 72.917671) (end 167.290431 72.917671) (width 1) (layer "F.Cu") (net 1) (tstamp d3147a99-b72b-4fb8-90ba-3c60a671d897))
  5408. (segment (start 188.944958 85.70266) (end 188.944958 84.097757) (width 0.5) (layer "F.Cu") (net 1) (tstamp d31b670c-12c4-4140-8e5c-ca7de89b01dc))
  5409. (segment (start 141.5 103.302545) (end 142.5 104.302545) (width 0.2) (layer "F.Cu") (net 1) (tstamp d9c821ca-f6be-4b89-842c-fa6803190350))
  5410. (segment (start 134 97.712375) (end 134 98.75746) (width 0.2) (layer "F.Cu") (net 1) (tstamp dab36f48-cf08-4448-af9c-1ee79a724850))
  5411. (segment (start 122.369697 84.439675) (end 122.302514 84.506858) (width 0.5) (layer "F.Cu") (net 1) (tstamp dc13d1a4-c9f4-4243-b03f-33126976a589))
  5412. (segment (start 139.25 73) (end 145 73) (width 2) (layer "F.Cu") (net 1) (tstamp dc59ef43-f1be-43db-b549-718eebe5948e))
  5413. (segment (start 116.749936 123.53813) (end 124.250064 123.53813) (width 0.5) (layer "F.Cu") (net 1) (tstamp dfcd251f-b1c2-4ee0-8266-7723b9efbfbd))
  5414. (segment (start 132.264415 126.747554) (end 130.709424 126.747554) (width 0.5) (layer "F.Cu") (net 1) (tstamp e01e66d9-516b-40ea-b48a-206f3dbfb6a0))
  5415. (segment (start 122.369697 80.506858) (end 122.369697 76.838405) (width 0.5) (layer "F.Cu") (net 1) (tstamp e0267959-cc63-4695-b32b-7bf58e99a678))
  5416. (segment (start 195.754966 94.487648) (end 200.085452 94.487648) (width 0.5) (layer "F.Cu") (net 1) (tstamp e0ddaa0e-666c-49aa-8c9a-29a1c3c7cc1a))
  5417. (segment (start 169.882887 58.51762) (end 172.382887 61.01762) (width 1) (layer "F.Cu") (net 1) (tstamp e21f02eb-f0c2-4bcc-b0e3-9f6c3aa15ded))
  5418. (segment (start 191.334849 94.487648) (end 191.754966 94.487648) (width 0.5) (layer "F.Cu") (net 1) (tstamp e4189df3-6f6b-4ccc-8db8-a18f908ddb57))
  5419. (segment (start 140.8349 83.049975) (end 144.484925 83.049975) (width 1) (layer "F.Cu") (net 1) (tstamp e424fad0-dab9-4ad3-ae5e-1cb9a146dc8a))
  5420. (segment (start 139.240456 73.009544) (end 139.25 73) (width 1) (layer "F.Cu") (net 1) (tstamp e4d34631-1e8e-41bf-a88a-db88dd9d2cb7))
  5421. (segment (start 135.885573 125.477551) (end 134.61557 126.747554) (width 0.5) (layer "F.Cu") (net 1) (tstamp e8789ff5-ed19-4ab3-9df0-0d8a1f8ffcf6))
  5422. (segment (start 160.190482 76.92745) (end 160.190482 73.050895) (width 0.5) (layer "F.Cu") (net 1) (tstamp ed1a40aa-08ef-463f-a3f2-f611b4e2c613))
  5423. (segment (start 191.709881 96.907765) (end 187.800051 96.907765) (width 0.5) (layer "F.Cu") (net 1) (tstamp ed754fbb-7b59-44ca-91e5-17b21c536e91))
  5424. (segment (start 122.457181 62.717646) (end 122.590405 62.85087) (width 0.5) (layer "F.Cu") (net 1) (tstamp eec46cde-83e1-4b1d-ad33-e70e3fe14d98))
  5425. (segment (start 122.369697 76.838405) (end 125.990456 73.217646) (width 0.5) (layer "F.Cu") (net 1) (tstamp f2937910-c9ed-4a78-aebb-665ca77cfc12))
  5426. (segment (start 149.954915 107.892715) (end 150.5 107.34763) (width 0.2) (layer "F.Cu") (net 1) (tstamp f2b7a5ce-a6bb-4397-959b-1a2f6b7a0b59))
  5427. (segment (start 153.5 106.392715) (end 154.454915 106.392715) (width 0.2) (layer "F.Cu") (net 1) (tstamp f62c416c-9618-4b00-9f28-e8bc93467cbe))
  5428. (segment (start 190.214961 91.11287) (end 190.214961 89.36776) (width 0.5) (layer "F.Cu") (net 1) (tstamp f98220d1-89c9-4e27-8e7f-5786b0c1ec2f))
  5429. (segment (start 190.214961 91.11287) (end 190.214961 93.36776) (width 0.5) (layer "F.Cu") (net 1) (tstamp fa3083ac-787e-41dc-96b1-67042785afe6))
  5430. (segment (start 105.936735 72.541369) (end 105.936735 67.717773) (width 0.5) (layer "F.Cu") (net 1) (tstamp fad2f401-d16c-4d0d-b5a0-fe742f81dde7))
  5431. (segment (start 191.709881 94.532733) (end 191.754966 94.487648) (width 0.5) (layer "F.Cu") (net 1) (tstamp fb8966ef-7f93-4c0e-afcb-de8a5da9f134))
  5432. (segment (start 137.735585 121.667544) (end 137.735585 120.397541) (width 0.5) (layer "F.Cu") (net 1) (tstamp fdfbf296-678b-4137-90e5-8023e7d2fa43))
  5433. (segment (start 149 107.892715) (end 149.954915 107.892715) (width 0.2) (layer "F.Cu") (net 1) (tstamp fe611577-3c0d-42d4-a673-04be4567d73b))
  5434. (via (at 140.75 73) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 1) (tstamp 0bf959ad-ec1e-4e30-a94b-c737956bdf45))
  5435. (via (at 130 126.03813) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 1) (tstamp 4f6e5aaa-292d-4954-a37d-38642dcb5821))
  5436. (via (at 142 73) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 1) (tstamp 8431933a-a9ac-4046-810f-5bd1726810ae))
  5437. (via (at 139.25 73) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 1) (tstamp 9a3b722b-fb9b-4e58-99bb-02e55f18bae4))
  5438. (via (at 145 73) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 1) (tstamp a9563bb6-b1be-405a-8325-6ee7e994c473))
  5439. (via (at 127 121.03813) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 1) (tstamp cc34046b-cc44-402b-ba57-832676179a22))
  5440. (via (at 143.25 73) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 1) (tstamp f2989b4a-46cf-4c8f-9a07-f6c6d50052a6))
  5441. (segment (start 204.254966 94.847154) (end 202.625458 93.217646) (width 0.5) (layer "B.Cu") (net 1) (tstamp 02fb4c24-4b8a-4761-8346-a58a9e188621))
  5442. (segment (start 145 73) (end 166.588087 73) (width 2) (layer "B.Cu") (net 1) (tstamp 0c198e60-2745-4bcf-9259-55d75b477fec))
  5443. (segment (start 96 106.660021) (end 101 106.660021) (width 1) (layer "B.Cu") (net 1) (tstamp 0c97e4e2-7d5c-4c92-aad0-1d43e8509fb0))
  5444. (segment (start 207.189992 65.5) (end 202.625458 70.064534) (width 1) (layer "B.Cu") (net 1) (tstamp 0fc75fd6-df96-43cd-a8d0-9cf6fbe0d04b))
  5445. (segment (start 201.355454 93.217646) (end 200.085452 94.487648) (width 0.5) (layer "B.Cu") (net 1) (tstamp 130c9009-43a8-4d91-a291-f2c64ee6a670))
  5446. (segment (start 101.282227 67.717773) (end 99.5 69.5) (width 2) (layer "B.Cu") (net 1) (tstamp 194c3bf1-6276-42bc-936a-235e9b4bccb1))
  5447. (segment (start 143.5 73) (end 145 73) (width 2) (layer "B.Cu") (net 1) (tstamp 21657abe-dd10-42df-8ecc-9c8e67978fc5))
  5448. (segment (start 127 122.03813) (end 127 121.03813) (width 0.5) (layer "B.Cu") (net 1) (tstamp 25ff5764-b9a0-4d23-b14f-f9edb98e5daa))
  5449. (segment (start 204.254966 96.668148) (end 204.254966 94.847154) (width 0.5) (layer "B.Cu") (net 1) (tstamp 269c1dfa-7a92-449c-b35f-f84670609595))
  5450. (segment (start 130 125.03813) (end 127 122.03813) (width 0.5) (layer "B.Cu") (net 1) (tstamp 33f78129-bc4f-48b8-a983-deb1d960741a))
  5451. (segment (start 202.625458 93.217646) (end 201.355454 93.217646) (width 0.5) (layer "B.Cu") (net 1) (tstamp 36623974-bbb8-4aa3-93e8-63dcb8c5447d))
  5452. (segment (start 187.189992 57.5) (end 191.189992 53.5) (width 1) (layer "B.Cu") (net 1) (tstamp 3aa5d7d9-8513-47e0-a8d1-d9819aedcc97))
  5453. (segment (start 179.569977 60.01811) (end 179.569977 57.5) (width 2) (layer "B.Cu") (net 1) (tstamp 4d9e0998-0014-43b5-ac1b-8d3249741256))
  5454. (segment (start 139.25 73) (end 140.75 73) (width 2) (layer "B.Cu") (net 1) (tstamp 57f3b153-d8e1-4bd6-9b46-25d85bb19fb8))
  5455. (segment (start 202.625458 84.327628) (end 203.835103 84.327628) (width 0.5) (layer "B.Cu") (net 1) (tstamp 697e1257-4cc8-41fc-9dfa-c56c6515b051))
  5456. (segment (start 99.5 81.5) (end 96.5 84.5) (width 2) (layer "B.Cu") (net 1) (tstamp 6c56d224-6cc6-413e-b93c-ed35ea83a9bb))
  5457. (segment (start 201.355454 79.247618) (end 200.085452 80.51762) (width 0.5) (layer "B.Cu") (net 1) (tstamp 7572bc98-8c61-4ea4-b5e4-02af9ca972ba))
  5458. (segment (start 205.189992 53.5) (end 207.189992 55.5) (width 1) (layer "B.Cu") (net 1) (tstamp 831a9f4b-bea6-4c55-ba79-0176d8e0aaa6))
  5459. (segment (start 130 126.03813) (end 130 125.03813) (width 0.5) (layer "B.Cu") (net 1) (tstamp 874ba79a-f3dd-4031-906c-6150ac13326c))
  5460. (segment (start 204.254966 80.877126) (end 202.625458 79.247618) (width 0.5) (layer "B.Cu") (net 1) (tstamp 98bf0c29-06d6-4b64-9e74-b034f525c0a5))
  5461. (segment (start 203.835103 84.327628) (end 204.254966 83.907765) (width 0.5) (layer "B.Cu") (net 1) (tstamp 9bfd202c-8455-42eb-a56c-b4b5946096c7))
  5462. (segment (start 143 73) (end 143.5 73) (width 2) (layer "B.Cu") (net 1) (tstamp 9e0bb983-bb46-499e-8ecc-3b3ca2679f72))
  5463. (segment (start 202.625458 70.064534) (end 202.625458 79.247618) (width 1) (layer "B.Cu") (net 1) (tstamp a2063ad9-85b5-4cc2-892a-76f3cbbdee10))
  5464. (segment (start 99.5 69.5) (end 99.5 81.5) (width 2) (layer "B.Cu") (net 1) (tstamp c368f8e2-b1de-46b8-8ccd-de4e068cf47a))
  5465. (segment (start 191.189992 53.5) (end 205.189992 53.5) (width 1) (layer "B.Cu") (net 1) (tstamp c7288e33-8fb1-4c52-9dc9-c3d95b9f4851))
  5466. (segment (start 142 73) (end 142.25 73) (width 2) (layer "B.Cu") (net 1) (tstamp ca088371-d925-4f58-a8cf-ed1e87ab58fc))
  5467. (segment (start 202.625458 98.297656) (end 204.254966 96.668148) (width 0.5) (layer "B.Cu") (net 1) (tstamp dc10986f-f576-474a-af60-7e55e7c71f2a))
  5468. (segment (start 142.25 73) (end 143.25 73) (width 2) (layer "B.Cu") (net 1) (tstamp dcb77fec-c2ac-4aaa-81b3-4c3833efdd6b))
  5469. (segment (start 166.588087 73) (end 179.569977 60.01811) (width 2) (layer "B.Cu") (net 1) (tstamp e7aaea04-15d6-4be8-9c96-63e83647636a))
  5470. (segment (start 141 73) (end 142 73) (width 2) (layer "B.Cu") (net 1) (tstamp e8722ed8-d36c-4109-98d6-adb628c9320f))
  5471. (segment (start 202.625458 79.247618) (end 201.355454 79.247618) (width 0.5) (layer "B.Cu") (net 1) (tstamp edd8acd2-26fe-400c-be1e-cb08c12e0dec))
  5472. (segment (start 101 106.660021) (end 106 106.660021) (width 1) (layer "B.Cu") (net 1) (tstamp f132140d-3b60-49ef-b28c-40aa24898bb6))
  5473. (segment (start 101.282227 67.717773) (end 105.936735 67.717773) (width 2) (layer "B.Cu") (net 1) (tstamp f44da2ce-6059-4f76-9d38-80e70421d16e))
  5474. (segment (start 143.25 73) (end 143.75 73) (width 2) (layer "B.Cu") (net 1) (tstamp f61cdfb2-a469-4b4a-a583-6c17daba1399))
  5475. (segment (start 204.254966 83.907765) (end 204.254966 80.877126) (width 0.5) (layer "B.Cu") (net 1) (tstamp f6532634-b10a-4425-9b5b-2de9d973e0f7))
  5476. (segment (start 207.189992 55.5) (end 207.189992 65.5) (width 1) (layer "B.Cu") (net 1) (tstamp fe95022f-fade-4d2c-a4d4-22f6082c3cd4))
  5477. (segment (start 146.049911 106.902494) (end 147.145034 106.902494) (width 0.2) (layer "F.Cu") (net 2) (tstamp 021510f0-369e-40e6-8077-9144ff5617d2))
  5478. (segment (start 137.735585 117.857536) (end 139.945009 117.857536) (width 0.5) (layer "F.Cu") (net 2) (tstamp 1621a257-7ebf-405b-bb7f-6bc5cf197b27))
  5479. (segment (start 157 101.802545) (end 157.5 101.302545) (width 0.2) (layer "F.Cu") (net 2) (tstamp 1a87d2ed-c99b-4dcd-911a-404d42b41ed6))
  5480. (segment (start 192.419989 112.094989) (end 192.825 112.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp 1df2dc11-4b8c-4c93-b78f-59579f585fb1))
  5481. (segment (start 196.5 109) (end 195 109) (width 0.2) (layer "F.Cu") (net 2) (tstamp 27589c15-1fff-439c-a403-7ad3aad0b7be))
  5482. (segment (start 145.099949 98.447579) (end 145 98.34763) (width 0.2) (layer "F.Cu") (net 2) (tstamp 2c045e1d-9c2c-4916-9416-64391975a3a9))
  5483. (segment (start 148.699898 106.502443) (end 149 106.802545) (width 0.2) (layer "F.Cu") (net 2) (tstamp 30b94f12-2b67-4007-84bc-b7a7bd8df2a0))
  5484. (segment (start 134.918529 80.503429) (end 135.1651 80.75) (width 0.5) (layer "F.Cu") (net 2) (tstamp 349e42a7-c489-4341-a29f-bbf69e4a1499))
  5485. (segment (start 152.699898 104.502443) (end 153.5 105.302545) (width 0.2) (layer "F.Cu") (net 2) (tstamp 39914976-2c64-4c2b-824e-bdd3dec22780))
  5486. (segment (start 137.735585 116.448721) (end 137.324994 116.03813) (width 0.5) (layer "F.Cu") (net 2) (tstamp 3ca84f46-8ccf-49cc-8be4-cf2770097cf0))
  5487. (segment (start 154.905004 101.832644) (end 156.469901 101.832644) (width 0.2) (layer "F.Cu") (net 2) (tstamp 40b5b391-b0dc-4a0a-844c-b16daf37b0d4))
  5488. (segment (start 194.442087 109.152913) (end 194.442087 109.82738) (width 0.2) (layer "F.Cu") (net 2) (tstamp 412bfeb8-c4f3-4a1d-9718-31ca204e39e4))
  5489. (segment (start 122.567183 129.03813) (end 120.5 129.03813) (width 0.5) (layer "F.Cu") (net 2) (tstamp 41c0c27e-ac04-4bcc-b6b6-ddf1850f3bb7))
  5490. (segment (start 141.5 107.85271) (end 141.5 110.25746) (width 0.2) (layer "F.Cu") (net 2) (tstamp 4546af5a-1819-4207-bc36-cd1bc606da3e))
  5491. (segment (start 143.3349 80.75) (end 143.634875 81.049975) (width 1) (layer "F.Cu") (net 2) (tstamp 4bdbff0a-ba04-4281-b3c3-35131a06c9a2))
  5492. (segment (start 138.949835 104.502443) (end 134.952472 104.502443) (width 0.2) (layer "F.Cu") (net 2) (tstamp 4d2b93bd-7b65-4d2f-9f83-d37a20107a73))
  5493. (segment (start 126.967615 80.503429) (end 134.918529 80.503429) (width 0.5) (layer "F.Cu") (net 2) (tstamp 4de65008-c6de-4ad0-b4b1-681949366ec1))
  5494. (segment (start 192.754966 82.86268) (end 192.300051 82.407765) (width 0.5) (layer "F.Cu") (net 2) (tstamp 505eb327-b50d-42c8-a16d-50ec5dd910c8))
  5495. (segment (start 192.754966 85.70266) (end 192.754966 82.86268) (width 0.5) (layer "F.Cu") (net 2) (tstamp 52946851-8a7a-46f1-928c-51c71e46a829))
  5496. (segment (start 147.954915 106.802545) (end 147.5 107.25746) (width 0.2) (layer "F.Cu") (net 2) (tstamp 551af170-2639-4baf-84ef-234f5fbcbd01))
  5497. (segment (start 195 109) (end 194.442087 109.557913) (width 0.2) (layer "F.Cu") (net 2) (tstamp 55925d01-48b1-42df-baf4-27e44a1286e5))
  5498. (segment (start 156.5 101.802545) (end 157 101.802545) (width 0.2) (layer "F.Cu") (net 2) (tstamp 5b80cf59-be4e-40f3-9ef1-b5801cf86b36))
  5499. (segment (start 156.469901 101.832644) (end 156.5 101.802545) (width 0.2) (layer "F.Cu") (net 2) (tstamp 6b62c811-2fcd-4a46-83c5-2c5f4b75fe45))
  5500. (segment (start 120.5 129.03813) (end 118 129.03813) (width 0.5) (layer "F.Cu") (net 2) (tstamp 6b667dc0-3df0-4a21-acd3-10336df57445))
  5501. (segment (start 153.5 105.302545) (end 152.454915 105.302545) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7672c16a-b5d2-44a3-9742-26fe36d9c3de))
  5502. (segment (start 145.099949 108.402494) (end 145.454915 108.75746) (width 0.2) (layer "F.Cu") (net 2) (tstamp 79e09417-92f9-4e73-b904-c7401a10cd19))
  5503. (segment (start 149 106.802545) (end 147.954915 106.802545) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7c1d4126-726c-4dca-a256-24eac4aee4e9))
  5504. (segment (start 140.8349 80.75) (end 143.3349 80.75) (width 1) (layer "F.Cu") (net 2) (tstamp 7d78ece6-e6ab-4f6c-bf8e-ace5e7cb6814))
  5505. (segment (start 146.049911 104.502443) (end 152.699898 104.502443) (width 0.2) (layer "F.Cu") (net 2) (tstamp 7df7469f-87bc-4af2-bbf5-96198e564536))
  5506. (segment (start 145.099949 107.85271) (end 145.099949 108.402494) (width 0.2) (layer "F.Cu") (net 2) (tstamp 839c6c02-52f6-4cbc-85f8-e97b4d7eb19b))
  5507. (segment (start 157.5 101.302545) (end 157.5 96.302545) (width 0.2) (layer "F.Cu") (net 2) (tstamp 89af8414-1768-4b00-8b7a-056b490eacc2))
  5508. (segment (start 120.5 128.03813) (end 120.5 129.03813) (width 0.5) (layer "F.Cu") (net 2) (tstamp 8abf7177-1d72-4c49-b030-ae63047cb833))
  5509. (segment (start 197.067183 109.845) (end 197.067183 109.162183) (width 0.2) (layer "F.Cu") (net 2) (tstamp 8c6b492a-7616-4f43-b319-7b6285bad810))
  5510. (segment (start 134.952472 104.502443) (end 134 105.454915) (width 0.2) (layer "F.Cu") (net 2) (tstamp 8c6cf238-56a7-4698-8def-9430393053bb))
  5511. (segment (start 192.419989 109.82738) (end 192.419989 112.094989) (width 0.2) (layer "F.Cu") (net 2) (tstamp 99164c11-45cf-4aee-a2c1-1bff3a24a173))
  5512. (segment (start 140.8349 80.75) (end 135.1651 80.75) (width 1) (layer "F.Cu") (net 2) (tstamp a0256f68-ca75-45e6-9d7d-1dfe3ccb9b17))
  5513. (segment (start 194.442087 109.82738) (end 192.419989 109.82738) (width 0.2) (layer "F.Cu") (net 2) (tstamp af2bb12c-febe-40fc-9bea-6a2f63cc2dfd))
  5514. (segment (start 152.454915 105.302545) (end 152 105.75746) (width 0.2) (layer "F.Cu") (net 2) (tstamp b7272faa-fc78-48e1-9401-be6ca67ebdcf))
  5515. (segment (start 120.5 118.53813) (end 120.5 119.53813) (width 0.5) (layer "F.Cu") (net 2) (tstamp bd6f3adc-6d50-47a8-9816-95c47e4d7082))
  5516. (segment (start 139.945009 117.857536) (end 140 117.802545) (width 0.5) (layer "F.Cu") (net 2) (tstamp bda718c0-9db8-41b9-98d0-74bb06b0c6c3))
  5517. (segment (start 146.049911 104.902494) (end 151.145034 104.902494) (width 0.2) (layer "F.Cu") (net 2) (tstamp bff22050-e64f-4b55-835b-a0017aa26962))
  5518. (segment (start 120.5 118.53813) (end 118.432817 118.53813) (width 0.5) (layer "F.Cu") (net 2) (tstamp c332e11c-cf63-4658-89ac-4176b33c279d))
  5519. (segment (start 145.454915 108.75746) (end 146 108.75746) (width 0.2) (layer "F.Cu") (net 2) (tstamp c8ec600e-3c6c-437d-aaad-3b06284e0535))
  5520. (segment (start 147.145034 106.902494) (end 147.5 107.25746) (width 0.2) (layer "F.Cu") (net 2) (tstamp ce830cf9-4fb5-48b9-b511-a572b55593c1))
  5521. (segment (start 137.735585 117.857536) (end 137.735585 116.448721) (width 0.5) (layer "F.Cu") (net 2) (tstamp d9a4d2d6-38d9-4a9a-9209-0457b7edae8e))
  5522. (segment (start 145.099949 100.75238) (end 145.099949 98.447579) (width 0.2) (layer "F.Cu") (net 2) (tstamp dcb2a2e4-860e-42e3-9b0c-182979a889b8))
  5523. (segment (start 157.932817 95.869728) (end 157.932817 95.302545) (width 0.2) (layer "F.Cu") (net 2) (tstamp dcdc1c2c-2bdc-4744-acbc-678b4ec9b22c))
  5524. (segment (start 146.049911 106.502443) (end 148.699898 106.502443) (width 0.2) (layer "F.Cu") (net 2) (tstamp dcf9afcc-3eb3-402d-861e-7cf951d4f1b6))
  5525. (segment (start 122.567183 118.53813) (end 120.5 118.53813) (width 0.5) (layer "F.Cu") (net 2) (tstamp dd95da9e-ffc9-47f0-8e08-092904425325))
  5526. (segment (start 197.067183 109.567183) (end 196.5 109) (width 0.2) (layer "F.Cu") (net 2) (tstamp e073e51b-2acd-4b5b-bb26-1fcacad39a3c))
  5527. (segment (start 141.5 100.75238) (end 141.5 98.34763) (width 0.2) (layer "F.Cu") (net 2) (tstamp e7d672dc-3b83-494e-9484-ee0200244e8c))
  5528. (segment (start 157.5 96.302545) (end 157.932817 95.869728) (width 0.2) (layer "F.Cu") (net 2) (tstamp ea0424e6-7525-4788-86fa-2046e718817c))
  5529. (segment (start 151.145034 104.902494) (end 152 105.75746) (width 0.2) (layer "F.Cu") (net 2) (tstamp ed81aeff-f4c4-4eb8-bdd5-44be54f2a151))
  5530. (via (at 120.5 119.53813) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 2) (tstamp 04650a72-af40-4871-8b13-98fc2478545c))
  5531. (via (at 120.5 128.03813) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 2) (tstamp 9c66d0d6-b208-4b79-83b3-7b9591634b71))
  5532. (via (at 137.324994 116.03813) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 2) (tstamp ac624511-1f44-4013-8632-17c2ae5f01cc))
  5533. (segment (start 125.5 119.53813) (end 120.5 119.53813) (width 0.5) (layer "B.Cu") (net 2) (tstamp 153fdccb-9371-4dbf-a4a5-13d66106353c))
  5534. (segment (start 129 116.03813) (end 125.5 119.53813) (width 0.5) (layer "B.Cu") (net 2) (tstamp 1e34b1d2-fa34-4145-8c40-46349ae8e435))
  5535. (segment (start 96 93.959995) (end 101 93.959995) (width 1) (layer "B.Cu") (net 2) (tstamp 6cc5e710-d1bb-477e-83cd-d5af1b1cd5f6))
  5536. (segment (start 96 110.959995) (end 101 110.959995) (width 1) (layer "B.Cu") (net 2) (tstamp 77f48377-8efb-40ac-ae39-9e991b374378))
  5537. (segment (start 129 116.03813) (end 137.324994 116.03813) (width 0.5) (layer "B.Cu") (net 2) (tstamp 7a2e5793-5da6-4d7d-ba4f-7193e48ef5c8))
  5538. (segment (start 120.5 119.53813) (end 120.5 128.03813) (width 0.5) (layer "B.Cu") (net 2) (tstamp 93afd204-21d4-44d6-b8ca-552ec6877b97))
  5539. (segment (start 101 93.959995) (end 106 93.959995) (width 1) (layer "B.Cu") (net 2) (tstamp c1f09191-0bc5-4487-b3ac-85a8b9deedd1))
  5540. (segment (start 106 110.959995) (end 101 110.959995) (width 1) (layer "B.Cu") (net 2) (tstamp cbf5c4c8-e958-4c59-84ad-aca6e7692f47))
  5541. (segment (start 132.990329 56.217773) (end 136.990456 56.217773) (width 1) (layer "F.Cu") (net 3) (tstamp 01103a43-a51b-400e-a60f-15e90fa7aae8))
  5542. (segment (start 160.323706 66.117569) (end 157.290431 66.117569) (width 1) (layer "F.Cu") (net 3) (tstamp 393ae705-c61d-409c-9481-661ee25d2499))
  5543. (segment (start 141.490583 51.717646) (end 136.990456 56.217773) (width 2) (layer "F.Cu") (net 3) (tstamp 3a3c3b2a-9c9e-4309-b663-1ef00f4a699a))
  5544. (segment (start 153.490456 51.717646) (end 189.027654 51.717646) (width 2) (layer "F.Cu") (net 3) (tstamp 484b18b5-7022-472e-97dd-08ff832b2f1f))
  5545. (segment (start 157.290431 66.117569) (end 153.690609 62.517747) (width 1) (layer "F.Cu") (net 3) (tstamp 641be021-9039-4c96-8168-6fbd1ed9421b))
  5546. (segment (start 129.390507 62.85087) (end 129.390507 59.817595) (width 1) (layer "F.Cu") (net 3) (tstamp 81bf5e85-7da4-4d45-aa84-accf128f8fd6))
  5547. (segment (start 153.690609 51.917799) (end 153.690609 58.51762) (width 2) (layer "F.Cu") (net 3) (tstamp 92949463-01f8-4891-b73b-dd0fcad96160))
  5548. (segment (start 153.690609 62.517747) (end 153.690609 58.51762) (width 1) (layer "F.Cu") (net 3) (tstamp 9400f138-59b7-4c85-9ac8-d0bb89cae5ca))
  5549. (segment (start 153.490456 51.717646) (end 141.490583 51.717646) (width 2) (layer "F.Cu") (net 3) (tstamp bb98a94f-cfb1-47ac-96e5-307739d3aa84))
  5550. (segment (start 153.490456 51.717646) (end 153.690609 51.917799) (width 2) (layer "F.Cu") (net 3) (tstamp c543489b-cfb1-4bbd-a8af-03a6446b88cc))
  5551. (segment (start 189.027654 51.717646) (end 194.810008 57.5) (width 2) (layer "F.Cu") (net 3) (tstamp d3c30489-0610-4d31-bb27-587286b87533))
  5552. (segment (start 129.390507 59.817595) (end 132.990329 56.217773) (width 1) (layer "F.Cu") (net 3) (tstamp edbe76c3-3cd5-4ffe-86aa-f0d5fc86a11e))
  5553. (segment (start 194.810008 57.5) (end 202.430023 57.5) (width 2) (layer "F.Cu") (net 3) (tstamp fd54a197-dd22-47cc-b3cb-898f31b6aa21))
  5554. (segment (start 190.484963 61.825045) (end 194.810008 57.5) (width 2) (layer "B.Cu") (net 3) (tstamp 19546241-a797-4e29-bfdf-7d2c1fa8ef1d))
  5555. (segment (start 190.484963 77.907765) (end 190.484963 61.825045) (width 2) (layer "B.Cu") (net 3) (tstamp 5665df70-b8cb-47ef-9534-7504b65b50dd))
  5556. (segment (start 113.990456 62.717646) (end 113.990456 60.717646) (width 1) (layer "F.Cu") (net 4) (tstamp 0b29d02c-af59-4703-91ba-d89c35429341))
  5557. (segment (start 124.290431 62.85087) (end 124.290431 60.167735) (width 1) (layer "F.Cu") (net 4) (tstamp 299459a0-1038-4110-8303-e6dfb57dc65a))
  5558. (segment (start 112.5 58.077076) (end 113.990456 59.567532) (width 1) (layer "F.Cu") (net 4) (tstamp 47f92f13-46c9-4f81-830f-94801f9333d9))
  5559. (segment (start 112.5 53.5) (end 112.5 58.077076) (width 1) (layer "F.Cu") (net 4) (tstamp 51dd4903-94ee-427d-843d-82a1d1e11529))
  5560. (segment (start 124.290431 60.167735) (end 118.840342 54.717646) (width 1) (layer "F.Cu") (net 4) (tstamp 63e71313-4839-4b1e-8f23-de0e40a26e2f))
  5561. (segment (start 113.990456 59.567532) (end 118.840342 54.717646) (width 1) (layer "F.Cu") (net 4) (tstamp 6bdf9515-0fdf-4368-8f19-f5aee306797d))
  5562. (segment (start 113.990456 60.717646) (end 113.990456 59.567532) (width 1) (layer "F.Cu") (net 4) (tstamp a3c24ce3-a9c4-429b-9788-1902a43035fb))
  5563. (segment (start 113.990329 60.717773) (end 113.990456 60.717646) (width 1) (layer "F.Cu") (net 4) (tstamp b4ef042b-1a00-48b7-8be6-154daa44ac8f))
  5564. (segment (start 113.990456 67.217773) (end 113.990456 62.717646) (width 1) (layer "F.Cu") (net 4) (tstamp bdb61f6b-8ee5-4cb5-b18e-dbe4943d96ee))
  5565. (segment (start 117.490456 62.717646) (end 113.990456 62.717646) (width 0.5) (layer "F.Cu") (net 4) (tstamp ecb5a991-9968-4ffa-b3f6-0ed15db913fc))
  5566. (segment (start 144.849886 122.850013) (end 144.849886 135.389891) (width 1) (layer "F.Cu") (net 5) (tstamp 02191bd0-687b-4e83-8838-bff011f23186))
  5567. (segment (start 191.754966 80.907765) (end 194.254966 80.907765) (width 0.5) (layer "F.Cu") (net 5) (tstamp 05e8152a-bf15-4bb7-afb2-6a9c21ae8cce))
  5568. (segment (start 191.484963 89.177768) (end 194.984963 89.177768) (width 0.5) (layer "F.Cu") (net 5) (tstamp 094f99fe-8c13-4794-ace2-12d6929bf582))
  5569. (segment (start 145 120.5) (end 146.5 120.5) (width 1) (layer "F.Cu") (net 5) (tstamp 0b3eab90-1bbe-41a4-8dee-b8d11a201ea0))
  5570. (segment (start 189.300051 82.407765) (end 191.209881 82.407765) (width 0.5) (layer "F.Cu") (net 5) (tstamp 105ad40e-a3fb-44f7-baf4-46003f8d4524))
  5571. (segment (start 194.754966 81.407765) (end 194.754966 82.907765) (width 0.5) (layer "F.Cu") (net 5) (tstamp 12f6bc02-c65d-48a5-b140-b107b95f9e58))
  5572. (segment (start 143.534925 78.450025) (end 143.634875 78.549975) (width 1) (layer "F.Cu") (net 5) (tstamp 21adc06f-a72e-4374-b8f1-877ca5980bc0))
  5573. (segment (start 144.849886 135.389891) (end 145.459995 136) (width 1) (layer "F.Cu") (net 5) (tstamp 23d975bf-04c0-4933-93d3-5cae65f7e3a5))
  5574. (segment (start 168 119.996317) (end 169.5 118.496317) (width 1) (layer "F.Cu") (net 5) (tstamp 27066da5-de6e-475c-93dc-ec8dc48a0f04))
  5575. (segment (start 194.984963 89.177768) (end 195.754966 88.407765) (width 0.5) (layer "F.Cu") (net 5) (tstamp 29c360c7-8e1f-42dd-9578-9f0cf7dbedfd))
  5576. (segment (start 146.5 120.5) (end 148 120.5) (width 1) (layer "F.Cu") (net 5) (tstamp 3de17531-5517-4d17-b80b-03938d7983ac))
  5577. (segment (start 144.849886 120.650114) (end 145 120.5) (width 1) (layer "F.Cu") (net 5) (tstamp 4d8523e9-ba0a-4809-ae30-97ce914b64fc))
  5578. (segment (start 168 120.5) (end 168 119.996317) (width 1) (layer "F.Cu") (net 5) (tstamp 4f9a02e4-05cb-48f6-ae15-162320a65982))
  5579. (segment (start 140.8349 78.450025) (end 143.534925 78.450025) (width 1) (layer "F.Cu") (net 5) (tstamp 74a64e4d-0f16-425c-8e9a-cefc33f0eef4))
  5580. (segment (start 191.209881 81.45285) (end 191.754966 80.907765) (width 0.5) (layer "F.Cu") (net 5) (tstamp 76812ba4-010b-4fc7-9737-6a8a7c8c7448))
  5581. (segment (start 191.209881 82.407765) (end 191.209881 81.45285) (width 0.5) (layer "F.Cu") (net 5) (tstamp 7d1634d7-a74a-4fd2-abdd-58e3f7e67d41))
  5582. (segment (start 169.5 120.5) (end 168 120.5) (width 1) (layer "F.Cu") (net 5) (tstamp 8851fdc6-2f36-4ee1-8f21-ed21d6f2ac3b))
  5583. (segment (start 191.484963 91.11287) (end 191.484963 89.177768) (width 0.5) (layer "F.Cu") (net 5) (tstamp aa28a6b1-53bc-4f08-8bf2-0356dfa389f4))
  5584. (segment (start 146.5 121.199899) (end 144.849886 122.850013) (width 1) (layer "F.Cu") (net 5) (tstamp ab7bdd59-d4fb-4234-9dc8-d7c89d04ab3e))
  5585. (segment (start 171 119.996317) (end 169.5 118.496317) (width 1) (layer "F.Cu") (net 5) (tstamp b06c4c80-af7c-4ffe-ae5a-27103abd7b26))
  5586. (segment (start 169.5 118.496317) (end 169.5 120.5) (width 1) (layer "F.Cu") (net 5) (tstamp c8160d03-dd08-4a42-b69c-328bc20f555a))
  5587. (segment (start 144.849886 122.850013) (end 144.849886 120.650114) (width 1) (layer "F.Cu") (net 5) (tstamp d6a36b7b-17b8-4e68-a47a-f381d6ffa443))
  5588. (segment (start 194.254966 80.907765) (end 194.754966 81.407765) (width 0.5) (layer "F.Cu") (net 5) (tstamp dcf1262f-04f4-45ab-a0a6-856360d03806))
  5589. (segment (start 171 120.5) (end 171 119.996317) (width 1) (layer "F.Cu") (net 5) (tstamp e01b3bd7-a4c2-40b3-9cd9-78a8da9b7dac))
  5590. (segment (start 169.5 120.5) (end 171 120.5) (width 1) (layer "F.Cu") (net 5) (tstamp f65ceb8c-889b-4569-b3ca-0e0912872b84))
  5591. (segment (start 146.5 120.5) (end 146.5 121.199899) (width 1) (layer "F.Cu") (net 5) (tstamp f87e2060-4602-47ae-9aa9-b868d8a18b0c))
  5592. (via (at 146.5 120.5) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp 01101af3-0b22-4d48-be8a-9b27b0656853))
  5593. (via (at 195.754966 88.407765) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp 21fe17d4-a4a1-43d1-a8c4-1c29dbdb894e))
  5594. (via (at 194.754966 82.907765) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp 460c05e4-7f56-4b98-af78-3bb1b2635f24))
  5595. (via (at 171 120.5) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp 5c05bd24-469a-4596-a8cb-354691559dc0))
  5596. (via (at 148 120.5) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp 739e8623-2aa3-498e-b3fe-0cc1695d3aa5))
  5597. (via (at 145 120.5) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp 877beec3-bf00-46da-a31f-d8531f0c34a8))
  5598. (via (at 169.5 120.5) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp b62e2cb8-50cd-4ff8-8d9e-ff63928c6e84))
  5599. (via (at 168 120.5) (size 1) (drill 0.5) (layers "F.Cu" "B.Cu") (net 5) (tstamp d586d7e5-5905-4c6a-9046-abdb1bdb7c5c))
  5600. (segment (start 195.754966 88.407765) (end 195.754966 83.907765) (width 0.5) (layer "B.Cu") (net 5) (tstamp 2ab2cd30-b27e-4403-9a7f-d1c966c75c00))
  5601. (segment (start 195.754966 83.907765) (end 194.754966 82.907765) (width 0.5) (layer "B.Cu") (net 5) (tstamp 5a959fa8-bdaa-42f6-bc30-4a34630efec8))
  5602. (segment (start 148 120.5) (end 168 120.5) (width 1) (layer "B.Cu") (net 5) (tstamp 77b39802-c897-4e9e-ba2f-58faed23d44e))
  5603. (segment (start 148 120.5) (end 145 120.5) (width 1) (layer "B.Cu") (net 5) (tstamp c22a6713-90dd-4c91-ad19-d792d56b9e43))
  5604. (segment (start 168 120.5) (end 171 120.5) (width 1) (layer "B.Cu") (net 5) (tstamp e5cfd64f-2154-40b1-ad3e-024182264528))
  5605. (segment (start 133.5 101.302545) (end 134 100.802545) (width 0.2) (layer "F.Cu") (net 6) (tstamp 8564aa38-be50-4c83-a88c-c2bf2d2728f2))
  5606. (segment (start 131.950089 103.702596) (end 131.5 103.252507) (width 0.2) (layer "F.Cu") (net 6) (tstamp a306e55a-b189-4936-9a75-819f2e2cf184))
  5607. (segment (start 138.949835 103.702596) (end 131.950089 103.702596) (width 0.2) (layer "F.Cu") (net 6) (tstamp ad0bb5e5-8ffa-4a03-a230-c8f7e87f4018))
  5608. (segment (start 131.5 101.802545) (end 132 101.302545) (width 0.2) (layer "F.Cu") (net 6) (tstamp b1b880d1-e96d-4178-876f-f7fd07229492))
  5609. (segment (start 134 100.802545) (end 134 99.84763) (width 0.2) (layer "F.Cu") (net 6) (tstamp b9413cbc-168b-40fb-bb22-59f988b26226))
  5610. (segment (start 131.5 103.252507) (end 131.5 101.802545) (width 0.2) (layer "F.Cu") (net 6) (tstamp d5197aa0-39c4-4636-81cc-18ca77ca1d25))
  5611. (segment (start 132 101.302545) (end 133.5 101.302545) (width 0.2) (layer "F.Cu") (net 6) (tstamp e84ba81d-8f54-4192-a8fb-429cd2b8721f))
  5612. (segment (start 130 105.302545) (end 129.5 104.802545) (width 0.2) (layer "F.Cu") (net 7) (tstamp 2e382748-f6b9-474b-bcd6-e8c98f3993d0))
  5613. (segment (start 129.5 99.802545) (end 129.949962 99.352583) (width 0.2) (layer "F.Cu") (net 7) (tstamp 7161f594-dcaa-424e-a60f-4d1a7a59dce2))
  5614. (segment (start 129.5 104.802545) (end 129.5 99.802545) (width 0.2) (layer "F.Cu") (net 7) (tstamp ac9ad746-e51a-4665-8bf7-c56e810ea261))
  5615. (segment (start 131.134366 105.302545) (end 130 105.302545) (width 0.2) (layer "F.Cu") (net 7) (tstamp bb5a271f-6fa6-44fc-a20f-51cd29111811))
  5616. (segment (start 132.5 97.302545) (end 131.5 98.302545) (width 0.2) (layer "F.Cu") (net 7) (tstamp ce221184-9bfd-42da-99b6-f48a24138935))
  5617. (segment (start 131.5 98.302545) (end 131.5 99.352583) (width 0.2) (layer "F.Cu") (net 7) (tstamp ebde3286-5a0b-40fd-8daa-47a9325e1bf9))
  5618. (segment (start 129.949962 99.352583) (end 131.5 99.352583) (width 0.2) (layer "F.Cu") (net 7) (tstamp f862070c-cc80-46a6-b833-6a498ef7a5c9))
  5619. (segment (start 136.052421 104.902494) (end 135.5 105.454915) (width 0.2) (layer "F.Cu") (net 8) (tstamp 09b727bd-91a8-4ce0-96fa-ebc943838686))
  5620. (segment (start 146.049911 104.102393) (end 154.344933 104.102393) (width 0.2) (layer "F.Cu") (net 8) (tstamp 51dae6fc-8e20-4932-9ab7-f858a3c35bc7))
  5621. (segment (start 150.344933 106.102393) (end 150.5 106.25746) (width 0.2) (layer "F.Cu") (net 8) (tstamp 5b45c74a-2679-4025-9846-fcd35c21ac15))
  5622. (segment (start 138.949835 104.902494) (end 136.052421 104.902494) (width 0.2) (layer "F.Cu") (net 8) (tstamp 72999ef2-67ed-4033-8126-e2666407de82))
  5623. (segment (start 146.049911 106.102393) (end 150.344933 106.102393) (width 0.2) (layer "F.Cu") (net 8) (tstamp e25cd891-367d-4e33-8df1-4c454ddd9d30))
  5624. (segment (start 154.344933 104.102393) (end 155 104.75746) (width 0.2) (layer "F.Cu") (net 8) (tstamp f24453bd-0990-4e41-924a-8fbb14fa3421))
  5625. (segment (start 193.524969 103.407765) (end 200.055354 103.407765) (width 0.5) (layer "F.Cu") (net 9) (tstamp 0978c5b7-fa9d-45e5-9452-fb419e95eb43))
  5626. (segment (start 191.649162 87.827768) (end 190.214961 86.393567) (width 0.5) (layer "F.Cu") (net 9) (tstamp 433f4cc4-4df5-499a-9e13-38b8739a0f2d))
  5627. (segment (start 194.795098 86.867633) (end 193.834963 87.827768) (width 0.5) (layer "F.Cu") (net 9) (tstamp 66d9e9b1-9412-4756-9e57-5b58e22e88b6))
  5628. (segment (start 193.834963 87.827768) (end 191.649162 87.827768) (width 0.5) (layer "F.Cu") (net 9) (tstamp 760a9f51-e2d7-4638-9539-ddded1991daf))
  5629. (segment (start 200.055354 103.407765) (end 202.625458 100.837661) (width 0.5) (layer "F.Cu") (net 9) (tstamp 7994dcce-eb30-4886-a0a2-dab8aaee273f))
  5630. (segment (start 202.625458 86.867633) (end 194.795098 86.867633) (width 0.5) (layer "F.Cu") (net 9) (tstamp 9d452ed7-67d1-4094-afe1-85ca4f630cfc))
  5631. (segment (start 190.214961 86.393567) (end 190.214961 85.70266) (width 0.5) (layer "F.Cu") (net 9) (tstamp a92eb24f-b660-4033-a90c-ce565378acc2))
  5632. (segment (start 192.800051 106.407765) (end 192.800051 104.132683) (width 0.5) (layer "F.Cu") (net 9) (tstamp b86cb643-e816-446f-a396-132cd800cf3f))
  5633. (segment (start 192.800051 104.132683) (end 193.524969 103.407765) (width 0.5) (layer "F.Cu") (net 9) (tstamp dae5075c-5f7a-4713-9092-17421992be62))
  5634. (segment (start 205.254966 98.208153) (end 202.625458 100.837661) (width 0.5) (layer "B.Cu") (net 9) (tstamp 13c408b8-c15f-41bd-ab89-d8c6090db152))
  5635. (segment (start 202.625458 86.867633) (end 205.254966 89.497141) (width 0.5) (layer "B.Cu") (net 9) (tstamp 4ff05a59-fa4f-422e-bcd9-fefdcd33c081))
  5636. (segment (start 205.254966 89.497141) (end 205.254966 98.208153) (width 0.5) (layer "B.Cu") (net 9) (tstamp c7053581-e5ee-4c33-90ad-28862baa6d72))
  5637. (segment (start 182.276175 97.886556) (end 182.276175 99.907765) (width 0.5) (layer "F.Cu") (net 10) (tstamp 34115733-204f-44f9-b471-8f9ff87c38f2))
  5638. (segment (start 182.276175 103.407765) (end 182.276175 99.907765) (width 0.5) (layer "F.Cu") (net 10) (tstamp 61d0d6f2-ead2-475a-9fda-a3a3be848da7))
  5639. (segment (start 183.254966 96.907765) (end 182.276175 97.886556) (width 0.5) (layer "F.Cu") (net 10) (tstamp 9066b484-dad2-4731-a362-24857b9af352))
  5640. (segment (start 186.709881 96.907765) (end 183.254966 96.907765) (width 0.5) (layer "F.Cu") (net 10) (tstamp b1bebbe7-d7c7-4db8-b9a7-d0d5f2569b8e))
  5641. (segment (start 193.534963 87.127768) (end 191.974969 87.127768) (width 0.5) (layer "F.Cu") (net 11) (tstamp 0ec81814-a8ac-43f5-b008-430306141b1a))
  5642. (segment (start 193.524969 99.907765) (end 193.524969 97.632683) (width 0.5) (layer "F.Cu") (net 11) (tstamp 1b0aa739-1f57-4ff0-ace8-f265e05b70ac))
  5643. (segment (start 199.745345 99.907765) (end 200.085452 99.567658) (width 0.5) (layer "F.Cu") (net 11) (tstamp 529951a3-9f4b-4466-8c47-2f04b840a3f6))
  5644. (segment (start 191.974969 87.127768) (end 191.484963 86.637762) (width 0.5) (layer "F.Cu") (net 11) (tstamp 6bfaf997-cc7a-4a42-857a-ba5c6bc9b871))
  5645. (segment (start 200.085452 85.59763) (end 195.065101 85.59763) (width 0.5) (layer "F.Cu") (net 11) (tstamp 6c7f8af1-c949-4a81-8c55-544750cc5cca))
  5646. (segment (start 191.484963 86.637762) (end 191.484963 85.70266) (width 0.5) (layer "F.Cu") (net 11) (tstamp 8e080dc7-f4c1-4dc1-97ca-2827f9b5f03d))
  5647. (segment (start 195.065101 85.59763) (end 193.534963 87.127768) (width 0.5) (layer "F.Cu") (net 11) (tstamp 9bcaca00-66d4-4721-a180-4c2616e0caad))
  5648. (segment (start 193.524969 99.907765) (end 199.745345 99.907765) (width 0.5) (layer "F.Cu") (net 11) (tstamp d577da1f-59a1-4078-b407-41161e301f5a))
  5649. (segment (start 193.524969 97.632683) (end 192.800051 96.907765) (width 0.5) (layer "F.Cu") (net 11) (tstamp f0109ee5-6a1b-4174-9d86-d69e7943c79f))
  5650. (segment (start 204.444831 85.59763) (end 206.254966 87.407765) (width 0.5) (layer "B.Cu") (net 11) (tstamp 108b9340-4042-4ffd-9fba-e66d5964349c))
  5651. (segment (start 206.254966 87.407765) (end 206.254966 99.407765) (width 0.5) (layer "B.Cu") (net 11) (tstamp 1fa3d7f3-209f-428e-9c3b-e0dfd913aa61))
  5652. (segment (start 203.738069 101.924662) (end 201.771863 101.924662) (width 0.5) (layer "B.Cu") (net 11) (tstamp 334d6ddd-5fc4-4fc2-9c2e-aefcc279b758))
  5653. (segment (start 201.771863 101.924662) (end 200.085452 100.238251) (width 0.5) (layer "B.Cu") (net 11) (tstamp 71411a76-7c1c-41f7-8020-776c8f6a7730))
  5654. (segment (start 200.085452 85.59763) (end 204.444831 85.59763) (width 0.5) (layer "B.Cu") (net 11) (tstamp cf0251cc-cc81-4e75-976b-81f798446d5b))
  5655. (segment (start 200.085452 100.238251) (end 200.085452 99.567658) (width 0.5) (layer "B.Cu") (net 11) (tstamp d067db76-d21d-431a-9ccc-6ed311d28af0))
  5656. (segment (start 206.254966 99.407765) (end 203.738069 101.924662) (width 0.5) (layer "B.Cu") (net 11) (tstamp fb070ce8-0fa2-49ef-a95e-0d8c6c856d06))
  5657. (segment (start 160.323706 71.217645) (end 157.640571 71.217645) (width 1) (layer "F.Cu") (net 12) (tstamp 1e7c5f07-e687-4ae6-adc8-33e9d57b139e))
  5658. (segment (start 157.040368 81.51762) (end 152.190482 76.667734) (width 1) (layer "F.Cu") (net 12) (tstamp 2d585de2-e950-4056-a56f-e17bf32b80f7))
  5659. (segment (start 161.625096 81.51762) (end 160.190482 81.51762) (width 1) (layer "F.Cu") (net 12) (tstamp 59a979ef-6686-4689-b0a4-f93833fdaf1a))
  5660. (segment (start 160.190482 78.01762) (end 160.190482 81.51762) (width 0.5) (layer "F.Cu") (net 12) (tstamp 69fef9a8-d259-4104-b19d-4a674be8536a))
  5661. (segment (start 160.190482 81.51762) (end 157.040368 81.51762) (width 1) (layer "F.Cu") (net 12) (tstamp 75fd5dc2-cb52-4f8c-a808-5ba4f9a54978))
  5662. (segment (start 164.690609 81.51762) (end 161.625096 81.51762) (width 1) (layer "F.Cu") (net 12) (tstamp 7b01bd52-0432-40c5-a805-2392fbe2f9d2))
  5663. (segment (start 164.690609 84.809391) (end 163.5 86) (width 1.5) (layer "F.Cu") (net 12) (tstamp 7e6a6aec-dd0a-408f-af81-f10b7ef8efd6))
  5664. (segment (start 164.690609 81.51762) (end 164.690609 84.809391) (width 1.5) (layer "F.Cu") (net 12) (tstamp 842db410-c6fd-4cdc-8611-24c432d693dc))
  5665. (segment (start 157.640571 71.217645) (end 152.190482 76.667734) (width 1) (layer "F.Cu") (net 12) (tstamp 923767e2-888b-4bc8-9173-5b29671eebb0))
  5666. (segment (start 161.628779 81.521303) (end 161.625096 81.51762) (width 1) (layer "F.Cu") (net 12) (tstamp c15af30f-e628-45f1-8260-783937d6b3ca))
  5667. (segment (start 163.5 86) (end 161.853442 86) (width 1.5) (layer "F.Cu") (net 12) (tstamp f0a5e8c0-504a-4e63-866b-781da88cb234))
  5668. (segment (start 127.690481 62.85087) (end 127.690481 65.917671) (width 1) (layer "F.Cu") (net 13) (tstamp 3a834090-5d4f-462b-a949-eecf45208e73))
  5669. (segment (start 127.690481 62.85087) (end 127.690481 56.167735) (width 1) (layer "F.Cu") (net 13) (tstamp 3ae5415e-daaf-4962-9f45-e3696df49479))
  5670. (segment (start 134.490456 69.217646) (end 134.490456 71.525241) (width 1) (layer "F.Cu") (net 13) (tstamp 7e471b38-c285-4866-b9f6-63cafc8ea6f4))
  5671. (segment (start 132.490456 67.217646) (end 134.490456 69.217646) (width 1) (layer "F.Cu") (net 13) (tstamp 7f26b360-6da9-4b33-bb26-09837661f4b2))
  5672. (segment (start 128.990456 67.217646) (end 132.490456 67.217646) (width 1) (layer "F.Cu") (net 13) (tstamp 97f3dd74-70d9-4500-8d71-a8a5bd1654fa))
  5673. (segment (start 127.690481 56.167735) (end 129.14057 54.717646) (width 1) (layer "F.Cu") (net 13) (tstamp de4d37b5-bffa-4b55-bd9e-75028b0c6ece))
  5674. (segment (start 127.690481 65.917671) (end 128.990456 67.217646) (width 1) (layer "F.Cu") (net 13) (tstamp f16c78f5-df90-4293-829b-38f92962ce75))
  5675. (segment (start 164.690482 66.51762) (end 164.690482 63.01762) (width 1) (layer "F.Cu") (net 14) (tstamp 248b0871-4611-45ce-a5de-da7c1cc21bbb))
  5676. (segment (start 153.640571 67.817595) (end 152.190482 66.367506) (width 1) (layer "F.Cu") (net 14) (tstamp 538f23f4-e665-46bc-b09d-2775318db3e9))
  5677. (segment (start 163.390507 67.817595) (end 164.690482 66.51762) (width 1) (layer "F.Cu") (net 14) (tstamp 638cfc59-2575-476c-8d14-74f1e88c55d2))
  5678. (segment (start 160.323706 67.817595) (end 163.390507 67.817595) (width 1) (layer "F.Cu") (net 14) (tstamp c1d8a1f9-df4f-4c8d-a9f8-e58aa79ee591))
  5679. (segment (start 164.690482 63.01762) (end 166.690482 61.01762) (width 1) (layer "F.Cu") (net 14) (tstamp c3740558-3dbd-464f-a04a-9bff4fdb32ac))
  5680. (segment (start 166.690482 61.01762) (end 168.998077 61.01762) (width 1) (layer "F.Cu") (net 14) (tstamp c61cb25c-829c-4086-86ba-1f1e29e05bff))
  5681. (segment (start 160.323706 67.817595) (end 153.640571 67.817595) (width 1) (layer "F.Cu") (net 14) (tstamp e4267c16-6ad9-4825-82cc-19ca413b36ba))
  5682. (segment (start 137.2 105.734315) (end 137.2 107) (width 0.2) (layer "F.Cu") (net 35) (tstamp 131becef-4266-409a-bc71-4fd00410f724))
  5683. (segment (start 137.631769 105.302545) (end 137.2 105.734315) (width 0.2) (layer "F.Cu") (net 35) (tstamp 526e8e3a-5c03-4f4d-ac5f-a25250677457))
  5684. (segment (start 138.949835 105.302545) (end 137.631769 105.302545) (width 0.2) (layer "F.Cu") (net 35) (tstamp 5bc0bd12-c164-4a5d-bed6-54ae07357f65))
  5685. (segment (start 137.797455 105.702545) (end 137.6 105.9) (width 0.2) (layer "F.Cu") (net 36) (tstamp 254f3f54-ed73-4f7c-aea4-83cde62c808c))
  5686. (segment (start 138.949835 105.702596) (end 138.949784 105.702545) (width 0.2) (layer "F.Cu") (net 36) (tstamp 4027e309-1189-4bcf-ab8a-a2e165f10c57))
  5687. (segment (start 137.6 105.9) (end 137.6 107.5) (width 0.2) (layer "F.Cu") (net 36) (tstamp 4d0a7493-db94-4c0c-a3cb-154396870f17))
  5688. (segment (start 138.949784 105.702545) (end 137.797455 105.702545) (width 0.2) (layer "F.Cu") (net 36) (tstamp 7869f464-ddf1-4607-a514-745805f737ce))
  5689. (segment (start 138.949835 106.502443) (end 138.099886 106.502443) (width 0.2) (layer "F.Cu") (net 37) (tstamp a354bd19-d8e6-4151-8e91-1c39b2985ef4))
  5690. (segment (start 138 106.602329) (end 138 108) (width 0.2) (layer "F.Cu") (net 37) (tstamp f21e0451-096b-49ee-801f-3e7d8319764d))
  5691. (segment (start 138.099886 106.502443) (end 138 106.602329) (width 0.2) (layer "F.Cu") (net 37) (tstamp fe3582ea-d3a1-40c7-af8a-21f3c29f71af))
  5692. (segment (start 138.4 107.452329) (end 138.4 107.6) (width 0.2) (layer "F.Cu") (net 38) (tstamp 194ce21d-2f2a-4b64-bd66-e6c200aed4c2))
  5693. (segment (start 138.949835 106.902494) (end 138.4 107.452329) (width 0.2) (layer "F.Cu") (net 38) (tstamp 2b56ca6e-d627-4b74-b328-81b3db3e5812))
  5694. (segment (start 148.150114 135.849886) (end 148 136) (width 1) (layer "F.Cu") (net 39) (tstamp 0b449977-62bd-47e3-8e5d-8fb37d622f04))
  5695. (segment (start 148.150114 122.850013) (end 148.150114 135.849886) (width 1) (layer "F.Cu") (net 39) (tstamp 107f5259-3902-4819-acd4-d22996fa4ab5))
  5696. (segment (start 206.254966 85.417131) (end 202.625458 81.787623) (width 0.5) (layer "F.Cu") (net 40) (tstamp 0f40b271-2d68-4789-8f8a-2ab80ffc4f8c))
  5697. (segment (start 206.254966 93.407765) (end 206.254966 85.417131) (width 0.5) (layer "F.Cu") (net 40) (tstamp 10ed1ad3-696d-4737-bbe8-fc9ade9fcda8))
  5698. (segment (start 200.085452 77.977615) (end 193.094819 77.977615) (width 0.5) (layer "F.Cu") (net 40) (tstamp 265c200e-a17b-4f14-8877-5f7ba30db542))
  5699. (segment (start 202.625458 95.757651) (end 203.90508 95.757651) (width 0.5) (layer "F.Cu") (net 40) (tstamp 2e4d091d-2a5d-4bcc-a1f1-e235c752ff80))
  5700. (segment (start 203.90508 95.757651) (end 206.254966 93.407765) (width 0.5) (layer "F.Cu") (net 40) (tstamp 4129dd21-a398-4b66-8eef-f6d207ef21f8))
  5701. (segment (start 193.094819 77.977615) (end 193.024969 77.907765) (width 0.5) (layer "F.Cu") (net 40) (tstamp 90be17d4-5658-4273-a745-542ba728a1d6))
  5702. (segment (start 202.625458 95.757651) (end 201.355454 95.757651) (width 0.5) (layer "B.Cu") (net 40) (tstamp 0513d3c8-6c51-4489-94dd-721bb964d5eb))
  5703. (segment (start 200.085452 83.057625) (end 198.754966 81.727139) (width 0.5) (layer "B.Cu") (net 40) (tstamp 379fd6c3-79ad-447b-80ca-82597786a82f))
  5704. (segment (start 202.625458 81.787623) (end 201.355454 81.787623) (width 0.5) (layer "B.Cu") (net 40) (tstamp 43adac49-b595-44fb-8ca4-06b92a5c181a))
  5705. (segment (start 198.754966 93.278129) (end 200.085452 91.947643) (width 0.5) (layer "B.Cu") (net 40) (tstamp 6372b899-c82e-4780-9f64-f0e5812e69da))
  5706. (segment (start 201.355454 81.787623) (end 200.085452 83.057625) (width 0.5) (layer "B.Cu") (net 40) (tstamp 6e74f3ad-f5a0-4d2e-b9d1-87ebabfe62dc))
  5707. (segment (start 201.355454 95.757651) (end 200.085452 97.027653) (width 0.5) (layer "B.Cu") (net 40) (tstamp 89b33ce0-4a91-4529-8955-2ec164b099ac))
  5708. (segment (start 198.754966 79.308101) (end 200.085452 77.977615) (width 0.5) (layer "B.Cu") (net 40) (tstamp b950babd-3af1-439b-95aa-622a155c70b1))
  5709. (segment (start 198.754966 95.697167) (end 198.754966 93.278129) (width 0.5) (layer "B.Cu") (net 40) (tstamp bc73beb2-65da-4195-9b0d-0129e6fb20c3))
  5710. (segment (start 200.085452 97.027653) (end 198.754966 95.697167) (width 0.5) (layer "B.Cu") (net 40) (tstamp d3183bf5-dfe0-40a5-94bc-77558cad1c15))
  5711. (segment (start 198.754966 81.727139) (end 198.754966 79.308101) (width 0.5) (layer "B.Cu") (net 40) (tstamp fb204334-49c5-4f33-91c0-3981055dbc6d))
  5712. (segment (start 190.984963 103.407765) (end 185.233757 103.407765) (width 0.5) (layer "F.Cu") (net 41) (tstamp c4e0cfaf-37cf-4db8-8e22-2d9e5512f521))
  5713. (segment (start 190.984963 99.907765) (end 185.233757 99.907765) (width 0.5) (layer "F.Cu") (net 42) (tstamp 43231ff8-f66c-4cfa-bd91-4637529e4b2c))
  5714. (segment (start 195.307721 109.82738) (end 195.307721 112.442721) (width 0.2) (layer "F.Cu") (net 43) (tstamp 5a4d0be8-a01e-47ec-b68e-278ebc39a705))
  5715. (segment (start 195.307721 112.442721) (end 195.365 112.5) (width 0.2) (layer "F.Cu") (net 43) (tstamp 6bc899c2-fc55-4e34-959a-a14b748891ed))
  5716. (segment (start 197.905 112.5) (end 197.905 109.872817) (width 0.2) (layer "F.Cu") (net 44) (tstamp c1eeb0ad-e69d-40f7-804b-f3245aa2ba20))
  5717. (segment (start 197.905 109.872817) (end 197.932817 109.845) (width 0.2) (layer "F.Cu") (net 44) (tstamp eb851dd8-569f-4e15-b5bf-413bdb854049))
  5718. (segment (start 103.490456 73.352012) (end 103.490456 71.051276) (width 0.5) (layer "F.Cu") (net 45) (tstamp 4ae865a2-4be5-4adf-b37a-b0c72beb683d))
  5719. (segment (start 103.490456 71.051276) (end 103.226803 70.787623) (width 0.5) (layer "F.Cu") (net 45) (tstamp 93c8082f-15d3-43ac-94af-f371eb28e4d8))
  5720. (segment (start 103.226803 57.647669) (end 103.226803 70.787623) (width 1) (layer "F.Cu") (net 45) (tstamp bc547d1e-027f-4b18-b619-e41c66050d1a))
  5721. (segment (start 154.905004 94.772446) (end 156.537084 94.772446) (width 0.2) (layer "F.Cu") (net 46) (tstamp 0658b72e-61f4-4b37-b2c4-c2bab6fa8b66))
  5722. (segment (start 149.2 101.471173) (end 149.2 92.971173) (width 0.2) (layer "F.Cu") (net 46) (tstamp 08344781-0f1b-4eb1-b3c2-77e53e6f2503))
  5723. (segment (start 152.830112 92.002545) (end 154.905004 94.077437) (width 0.2) (layer "F.Cu") (net 46) (tstamp 17e15513-d244-4796-8508-cfad25b61299))
  5724. (segment (start 149.2 92.971173) (end 150.16863 92.002545) (width 0.2) (layer "F.Cu") (net 46) (tstamp 30764a87-1b2e-4645-a4a1-0463a1f3b6b3))
  5725. (segment (start 154.905004 94.077437) (end 154.905004 94.772446) (width 0.2) (layer "F.Cu") (net 46) (tstamp 35188cea-9d22-4633-8bb8-02e74a053d91))
  5726. (segment (start 148.968577 101.702596) (end 149.2 101.471173) (width 0.2) (layer "F.Cu") (net 46) (tstamp 95575ec4-d8ff-4458-a57b-fc04b9193964))
  5727. (segment (start 157.067183 93.802545) (end 157.067183 94.242347) (width 0.2) (layer "F.Cu") (net 46) (tstamp 96c8215e-aab8-40ea-9c26-51ac2fe782de))
  5728. (segment (start 146.049911 101.702596) (end 148.968577 101.702596) (width 0.2) (layer "F.Cu") (net 46) (tstamp aadb60e4-2de7-4f05-953f-188b01a4b420))
  5729. (segment (start 156.537084 94.772446) (end 157.067183 95.302545) (width 0.2) (layer "F.Cu") (net 46) (tstamp b5b621cc-1bcd-4f34-9d9b-57f9b2cda8bf))
  5730. (segment (start 157.067183 94.242347) (end 156.537084 94.772446) (width 0.2) (layer "F.Cu") (net 46) (tstamp ce6b08c4-0495-432d-9bbb-63e3862ac665))
  5731. (segment (start 150.16863 92.002545) (end 152.830112 92.002545) (width 0.2) (layer "F.Cu") (net 46) (tstamp ec4fc4b5-81f4-445e-90c3-ac815c7f8ca3))
  5732. (segment (start 159 93.802545) (end 157.932817 93.802545) (width 0.2) (layer "F.Cu") (net 47) (tstamp 856b53a3-85ea-40ab-8db5-5ba9826ac3c2))
  5733. (segment (start 159.5 97.085121) (end 159.5 94.302545) (width 0.2) (layer "F.Cu") (net 47) (tstamp b8884162-b16e-4179-ad16-89a861903038))
  5734. (segment (start 159.5 94.302545) (end 159 93.802545) (width 0.2) (layer "F.Cu") (net 47) (tstamp eb1cbaf5-4982-4df2-8e1c-acc6ed8a9eea))
  5735. (segment (start 129 126.53813) (end 129 124.53813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 0945598e-a92f-4a85-b51c-02f5a2c85b9c))
  5736. (segment (start 114.75 122.28813) (end 114.5 122.53813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 219f37f7-2167-422b-a857-2cfe59577fa3))
  5737. (segment (start 114.5 127.03813) (end 116 128.53813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 4e630132-7e2e-4332-9fe7-e435a06a8cf4))
  5738. (segment (start 121.25 122.28813) (end 114.75 122.28813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 5ee8e2ed-284a-4c16-8dc7-658de4acafdd))
  5739. (segment (start 122.540005 120.998125) (end 121.25 122.28813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 6152b282-c91c-48fd-a9b9-db497ce01fb0))
  5740. (segment (start 116 128.53813) (end 116 130.03813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 7e80031f-75f0-42c9-81bf-6829d17ce459))
  5741. (segment (start 117.5 131.53813) (end 124 131.53813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 8abf510c-e4b8-4f79-abe9-0ed7d24e8f35))
  5742. (segment (start 124.250064 119.355377) (end 123.432817 118.53813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 90474459-4b72-45a1-b719-959fff7b1732))
  5743. (segment (start 124 131.53813) (end 129 126.53813) (width 0.5) (layer "F.Cu") (net 48) (tstamp 9fe9d78a-3ba0-4595-959b-51929742bcc3))
  5744. (segment (start 116 130.03813) (end 117.5 131.53813) (width 0.5) (layer "F.Cu") (net 48) (tstamp b4aa120d-95f6-4f38-a67a-7aa0dd2aaf17))
  5745. (segment (start 129 124.53813) (end 129.330581 124.207549) (width 0.5) (layer "F.Cu") (net 48) (tstamp c1f9c6f3-b326-4096-97bb-eadebe0c81d6))
  5746. (segment (start 124.250064 120.998125) (end 122.540005 120.998125) (width 0.5) (layer "F.Cu") (net 48) (tstamp d0c19754-a76c-448b-94aa-f356817a4552))
  5747. (segment (start 129.330581 124.207549) (end 132.264415 124.207549) (width 0.5) (layer "F.Cu") (net 48) (tstamp d8c63e00-06d6-4a4e-9458-fa66e2b701d9))
  5748. (segment (start 114.5 122.53813) (end 114.5 127.03813) (width 0.5) (layer "F.Cu") (net 48) (tstamp e4e300b9-1854-4726-934a-36a0e0e8c68d))
  5749. (segment (start 124.250064 120.998125) (end 124.250064 119.355377) (width 0.5) (layer "F.Cu") (net 48) (tstamp ecd7e9c6-2aa4-4353-96f4-4c76bb5e9536))
  5750. (segment (start 129.100584 122.937546) (end 128 124.03813) (width 0.5) (layer "F.Cu") (net 49) (tstamp 07787e14-92b1-4922-89d9-37a55487c86f))
  5751. (segment (start 128 124.03813) (end 128 126.03813) (width 0.5) (layer "F.Cu") (net 49) (tstamp 195ad4dd-ae38-459d-9b71-be21d62c0df7))
  5752. (segment (start 128 126.03813) (end 123.5 130.53813) (width 0.5) (layer "F.Cu") (net 49) (tstamp 3149bae8-f334-468c-b6a3-5bd37909b70d))
  5753. (segment (start 116.749936 126.078135) (end 116.749936 128.6537) (width 0.5) (layer "F.Cu") (net 49) (tstamp 4aceed92-9dd8-43d0-bd7b-2e3012169fae))
  5754. (segment (start 129.100584 122.937546) (end 132.264415 122.937546) (width 0.5) (layer "F.Cu") (net 49) (tstamp 5950cb22-c825-4139-9224-985bb953d2d4))
  5755. (segment (start 117.134366 129.808132) (end 117.134366 129.03813) (width 0.5) (layer "F.Cu") (net 49) (tstamp 8a993000-4f73-46d9-ac4e-3f0129a1a672))
  5756. (segment (start 123.5 130.53813) (end 117.864364 130.53813) (width 0.5) (layer "F.Cu") (net 49) (tstamp ab7e481e-1772-4298-a7ee-8f621f53d16c))
  5757. (segment (start 116.749936 128.6537) (end 117.134366 129.03813) (width 0.5) (layer "F.Cu") (net 49) (tstamp f4085d75-045c-495e-aa43-1ce8f2908dc0))
  5758. (segment (start 117.864364 130.53813) (end 117.134366 129.808132) (width 0.5) (layer "F.Cu") (net 49) (tstamp fbee8d47-3a0a-4f71-b72f-45ee9af2489e))
  5759. (segment (start 126.459995 126.078135) (end 124.250064 126.078135) (width 0.5) (layer "F.Cu") (net 50) (tstamp 5fa124fc-2c54-45b6-9cc8-dbd4d645ddb6))
  5760. (segment (start 127 125.53813) (end 126.459995 126.078135) (width 0.5) (layer "F.Cu") (net 50) (tstamp 607d03a7-6f04-4a4d-9744-85d347ee6d1b))
  5761. (segment (start 124.250064 126.078135) (end 124.250064 128.220883) (width 0.5) (layer "F.Cu") (net 50) (tstamp 7b04b749-1fd8-49d9-b943-3fa6a54562bf))
  5762. (segment (start 124.250064 128.220883) (end 123.432817 129.03813) (width 0.5) (layer "F.Cu") (net 50) (tstamp 8ca226d0-459a-4242-89d6-eeaf343efb38))
  5763. (segment (start 128.870586 121.667544) (end 132.264415 121.667544) (width 0.5) (layer "F.Cu") (net 50) (tstamp b69c51be-1fe9-41c4-8413-922c9813e6d7))
  5764. (segment (start 127 123.53813) (end 127 125.53813) (width 0.5) (layer "F.Cu") (net 50) (tstamp f2c323fb-e21a-4082-b0b2-57ac31d61172))
  5765. (segment (start 128.870586 121.667544) (end 127 123.53813) (width 0.5) (layer "F.Cu") (net 50) (tstamp f8106d3e-9246-42df-981c-b3cfb3d7a8b0))
  5766. (segment (start 116.749936 120.998125) (end 116.749936 119.355377) (width 0.5) (layer "F.Cu") (net 51) (tstamp 4ad6a3b2-2585-492d-bb7f-ba2168539713))
  5767. (segment (start 117.567183 117.950933) (end 117.567183 118.53813) (width 0.5) (layer "F.Cu") (net 51) (tstamp 705e07d2-ee26-45a8-b27b-a8f8d0e56bad))
  5768. (segment (start 126.279998 117.818128) (end 117.699988 117.818128) (width 0.5) (layer "F.Cu") (net 51) (tstamp 7bf05128-52c5-4713-81e9-0ddc31d1e6e0))
  5769. (segment (start 116.749936 119.355377) (end 117.567183 118.53813) (width 0.5) (layer "F.Cu") (net 51) (tstamp b06d5680-8fd2-4f86-aed1-2c0b17cf94f3))
  5770. (segment (start 117.699988 117.818128) (end 117.567183 117.950933) (width 0.5) (layer "F.Cu") (net 51) (tstamp bb94b629-a327-4f63-a1a3-01f88db78223))
  5771. (segment (start 128.859411 120.397541) (end 126.279998 117.818128) (width 0.5) (layer "F.Cu") (net 51) (tstamp cc1fc7d2-eadf-4a6c-a56a-c6a179f995e0))
  5772. (segment (start 132.264415 120.397541) (end 128.859411 120.397541) (width 0.5) (layer "F.Cu") (net 51) (tstamp f093f195-3cdd-4fbe-9a8e-1f52f9546e29))
  5773. (segment (start 136 108.369728) (end 134.5 108.369728) (width 0.2) (layer "F.Cu") (net 52) (tstamp 0481e86a-351f-4eb7-be88-36c96c8c6012))
  5774. (segment (start 136.5 107.869728) (end 136 108.369728) (width 0.2) (layer "F.Cu") (net 52) (tstamp 1887ca72-92ce-4338-957f-ba8bd2aaab6e))
  5775. (segment (start 136.5 106) (end 136.5 107.869728) (width 0.2) (layer "F.Cu") (net 52) (tstamp 5a9f7e81-089d-440b-b7e9-373c78a3bd3d))
  5776. (segment (start 138.949835 106.102393) (end 139.897607 106.102393) (width 0.2) (layer "F.Cu") (net 52) (tstamp ac9e6d9d-6d4a-4a53-84e0-a5e439a17cde))
  5777. (segment (start 139.897607 106.102393) (end 140 106) (width 0.2) (layer "F.Cu") (net 52) (tstamp b30d0d2b-16cc-491e-8fb8-a02a7515a279))
  5778. (via (at 140 106) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 52) (tstamp 53dcc61a-9957-4bb3-8620-db5b1ec6bed2))
  5779. (via (at 136.5 106) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 52) (tstamp 79681d4a-effb-4b11-8797-7dd36c7aed90))
  5780. (segment (start 140 106) (end 136.5 106) (width 0.2) (layer "B.Cu") (net 52) (tstamp cd411eef-0354-43de-9b27-3813107bb068))
  5781. (segment (start 134.5 109.235362) (end 131.932817 109.235362) (width 0.2) (layer "F.Cu") (net 53) (tstamp 3f193e43-ddf7-4b29-af63-c5d899d3e843))
  5782. (segment (start 131.5 108.802545) (end 131.5 107.585121) (width 0.2) (layer "F.Cu") (net 53) (tstamp d88c04f1-93ed-4035-84b5-6047cc8e5642))
  5783. (segment (start 131.932817 109.235362) (end 131.5 108.802545) (width 0.2) (layer "F.Cu") (net 53) (tstamp e78240d2-8044-4d0f-b3cd-8f5b7d8d150d))
  5784. (segment (start 133.700152 104.102393) (end 132.5 105.302545) (width 0.2) (layer "F.Cu") (net 54) (tstamp 2cac239e-2022-4703-a8c2-38692cf75fe1))
  5785. (segment (start 132.5 105.302545) (end 132 105.302545) (width 0.2) (layer "F.Cu") (net 54) (tstamp 804ee25a-45fc-4ca3-b5a8-11e151405e65))
  5786. (segment (start 138.949835 104.102393) (end 133.700152 104.102393) (width 0.2) (layer "F.Cu") (net 54) (tstamp 81414d79-13be-4a9d-b100-10707c526598))
  5787. (segment (start 166.300127 124.732944) (end 165.5 123.932817) (width 0.2) (layer "F.Cu") (net 55) (tstamp 21a0dcdd-0893-4b71-9e93-9998461d7a06))
  5788. (segment (start 166.300127 128.5) (end 166.000127 128.8) (width 0.2) (layer "F.Cu") (net 55) (tstamp 9663cc96-c43c-4689-b6b5-1cfed9c1fb54))
  5789. (segment (start 166.000127 128.8) (end 166.000127 130.090043) (width 0.2) (layer "F.Cu") (net 55) (tstamp b0b634dd-0023-4cc9-aabb-3fdb6e2f2a48))
  5790. (segment (start 166.749936 132.750064) (end 166 133.5) (width 0.2) (layer "F.Cu") (net 55) (tstamp d54699f6-b1b8-487f-a8a4-ffabe11bb5c8))
  5791. (segment (start 166.300127 128.5) (end 166.300127 124.732944) (width 0.2) (layer "F.Cu") (net 55) (tstamp de048e72-6aef-42e3-acd4-e97857f84f0b))
  5792. (segment (start 166.749936 131.440056) (end 166.749936 132.750064) (width 0.2) (layer "F.Cu") (net 55) (tstamp f4c03103-372c-4614-8388-ab8202e40801))
  5793. (via (at 166 133.5) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 55) (tstamp 3f6eaf29-9b68-4803-837d-04a14f35bd42))
  5794. (via (at 166.300127 128.5) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 55) (tstamp a2cb320a-f1f5-4b72-b9aa-39e54f19349c))
  5795. (segment (start 166 133.5) (end 166 128.800127) (width 0.2) (layer "B.Cu") (net 55) (tstamp 82ebc54e-8664-429a-8dbb-c79220fa25e1))
  5796. (segment (start 166 128.800127) (end 166.300127 128.5) (width 0.2) (layer "B.Cu") (net 55) (tstamp e49a1c22-5c39-46c2-98ea-f8acf97cc1e6))
  5797. (segment (start 147.850051 105.302545) (end 148 105.452494) (width 0.2) (layer "F.Cu") (net 56) (tstamp 19217872-ddb8-4782-8461-970a5c57620f))
  5798. (segment (start 165.5 116.5) (end 165.5 123.067183) (width 0.2) (layer "F.Cu") (net 56) (tstamp 3d0cf17c-4dd8-4be8-9552-50a5a1e49d2d))
  5799. (segment (start 146.049911 105.302545) (end 147.850051 105.302545) (width 0.2) (layer "F.Cu") (net 56) (tstamp 48e93df6-4c25-4852-aec2-f9c850187f7e))
  5800. (via (at 148 105.452494) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 56) (tstamp 1cc3f963-1ba9-47ab-8793-58dd2093feff))
  5801. (via (at 167.5 105.802545) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 56) (tstamp eee70802-ae0d-41ed-b2c6-558523fc430c))
  5802. (segment (start 148 105.452494) (end 167.149949 105.452494) (width 0.2) (layer "B.Cu") (net 56) (tstamp 979fd032-a761-4e5a-a528-39deecc1915c))
  5803. (segment (start 167.149949 105.452494) (end 167.5 105.802545) (width 0.2) (layer "B.Cu") (net 56) (tstamp 9d8fd621-107d-4ca0-9b9e-d35c647bc21f))
  5804. (segment (start 167.000127 123.932944) (end 167 123.932817) (width 0.2) (layer "F.Cu") (net 57) (tstamp 5d606390-8b79-4eec-85f8-ebca9ca8016e))
  5805. (segment (start 167.000127 130.090043) (end 167.000127 123.932944) (width 0.2) (layer "F.Cu") (net 57) (tstamp b50955f5-306a-477b-b746-8571d9eefe23))
  5806. (segment (start 167.000127 130.090043) (end 166.250064 130.840106) (width 0.2) (layer "F.Cu") (net 57) (tstamp c07f4da1-5156-494e-9de4-f8cb813d54e5))
  5807. (segment (start 166.250064 130.840106) (end 166.250064 131.440056) (width 0.2) (layer "F.Cu") (net 57) (tstamp ecfd8cef-ef9d-4c87-ae85-18839dc640e0))
  5808. (segment (start 146.049911 105.702596) (end 145.199962 105.702596) (width 0.2) (layer "F.Cu") (net 58) (tstamp 5360f462-85e4-4f97-8a43-bbc5c96cf478))
  5809. (segment (start 145 105.502634) (end 145 105.302545) (width 0.2) (layer "F.Cu") (net 58) (tstamp 73a265f6-b532-46cf-9b35-3354ee8a6ce2))
  5810. (segment (start 167 117) (end 167 123.067183) (width 0.2) (layer "F.Cu") (net 58) (tstamp bdb06c0c-7852-4d99-8c8d-be482153594c))
  5811. (segment (start 145.199962 105.702596) (end 145 105.502634) (width 0.2) (layer "F.Cu") (net 58) (tstamp feaf23d9-1e0c-4e02-babd-ad7231822fe1))
  5812. (via (at 167.5 104.802545) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 58) (tstamp 495fb76a-892d-4355-8f03-36511f9cac30))
  5813. (via (at 145 105.302545) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 58) (tstamp 8ef7e2f9-e573-4e5d-b81d-a1afa0e7ec74))
  5814. (segment (start 145.5 104.802545) (end 167.5 104.802545) (width 0.2) (layer "B.Cu") (net 58) (tstamp bef251ed-4b26-4ebb-8059-958e6e3f4d80))
  5815. (segment (start 145 105.302545) (end 145.5 104.802545) (width 0.2) (layer "B.Cu") (net 58) (tstamp fc4039fe-8292-40e6-94c5-aefa5a3cfcb8))
  5816. (segment (start 167.5 133) (end 170.5 133) (width 0.2) (layer "F.Cu") (net 59) (tstamp 000d8845-d298-45a7-a24d-13845f727003))
  5817. (segment (start 167.250064 132.750064) (end 167.5 133) (width 0.2) (layer "F.Cu") (net 59) (tstamp 21c3fad1-fad0-425e-a5ae-7c2ac144b3f0))
  5818. (segment (start 171.5 128.5) (end 170.5 128.5) (width 0.2) (layer "F.Cu") (net 59) (tstamp 2fd8e996-b36e-4e82-badf-2e0cf9e95b7e))
  5819. (segment (start 167.250064 131.440056) (end 167.250064 132.750064) (width 0.2) (layer "F.Cu") (net 59) (tstamp 6563210f-c5c4-44f6-92d0-151167e577e3))
  5820. (segment (start 170.5 128.5) (end 169.932817 127.932817) (width 0.2) (layer "F.Cu") (net 59) (tstamp 7b6b70d4-bb20-43b3-a576-14ae73dff7b0))
  5821. (segment (start 172 131.5) (end 172 129) (width 0.2) (layer "F.Cu") (net 59) (tstamp 96919582-3eef-4ccd-9e7f-50000b1379e5))
  5822. (segment (start 172 129) (end 171.5 128.5) (width 0.2) (layer "F.Cu") (net 59) (tstamp a7f992a8-276c-4628-9a91-a7e529f64390))
  5823. (segment (start 170.5 133) (end 172 131.5) (width 0.2) (layer "F.Cu") (net 59) (tstamp af5cb3b1-590f-43cd-ad70-9abfe2340365))
  5824. (segment (start 169.932817 127.932817) (end 169.932817 127) (width 0.2) (layer "F.Cu") (net 59) (tstamp c227b9d9-2079-4f83-b8d3-9ea1465f8cf2))
  5825. (segment (start 196.599931 91.542131) (end 198.73544 89.406622) (width 0.5) (layer "F.Cu") (net 60) (tstamp 23161b47-531c-4567-96e9-c8b7cfe1bb8f))
  5826. (segment (start 195.754966 91.542131) (end 196.599931 91.542131) (width 0.5) (layer "F.Cu") (net 60) (tstamp 38f75eb4-9921-48fd-b154-8545ef7872f7))
  5827. (segment (start 197.754966 101.407765) (end 197.754966 90.387096) (width 0.5) (layer "B.Cu") (net 60) (tstamp 0cd76423-9901-47f2-b7ab-eb652a38024a))
  5828. (segment (start 213.545473 73.972789) (end 213.545473 104.842741) (width 0.5) (layer "B.Cu") (net 60) (tstamp 54433410-cfb3-48b3-8cda-25382bdfe93c))
  5829. (segment (start 197.754966 90.387096) (end 198.73544 89.406622) (width 0.5) (layer "B.Cu") (net 60) (tstamp 5cf89de1-4dbf-4840-8d48-7b6d264a239e))
  5830. (segment (start 201.189942 104.842741) (end 197.754966 101.407765) (width 0.5) (layer "B.Cu") (net 60) (tstamp 6902fbd0-2672-4163-a8bc-c874e683d86d))
  5831. (segment (start 213.545473 104.842741) (end 201.189942 104.842741) (width 0.5) (layer "B.Cu") (net 60) (tstamp ba21bf03-59c0-48b9-afba-0296ce2db4c4))
  5832. (segment (start 162.067183 130.437262) (end 162.179959 130.550038) (width 0.5) (layer "F.Cu") (net 61) (tstamp 3ab3fa10-bcff-4a1d-acb3-187d70c0a7f9))
  5833. (segment (start 162.067183 127) (end 162.067183 130.437262) (width 0.5) (layer "F.Cu") (net 61) (tstamp 493d2427-01f5-4d60-999e-e88d36749a37))
  5834. (segment (start 170.820041 135.909957) (end 162.179959 135.909957) (width 0.5) (layer "B.Cu") (net 61) (tstamp 0337ee6d-2b35-418a-ab41-0798d70b0f90))
  5835. (segment (start 162.179959 130.550038) (end 162.179959 135.909957) (width 0.5) (layer "B.Cu") (net 61) (tstamp 17ee6d0a-1bb3-4283-ace0-9add60609b72))
  5836. (segment (start 170.820041 130.550038) (end 170.820041 135.909957) (width 0.5) (layer "B.Cu") (net 61) (tstamp db21c32c-f747-4072-895a-eb85bc2d613f))
  5837. (segment (start 165.5 130.090043) (end 165.5 127.067183) (width 0.25) (layer "F.Cu") (net 62) (tstamp 261de951-bb05-4cd6-9bc9-eddb44569852))
  5838. (segment (start 165.5 127.067183) (end 165.432817 127) (width 0.2) (layer "F.Cu") (net 62) (tstamp 81cdfdbb-2959-46fb-b760-7664b695396e))
  5839. (segment (start 105.936735 63.217646) (end 105.936735 65.217646) (width 1) (layer "F.Cu") (net 63) (tstamp b7fc7600-d659-44ca-a862-2280f4923ddd))
  5840. (segment (start 142.299848 108.602393) (end 143 109.302546) (width 0.2) (layer "F.Cu") (net 64) (tstamp 427172ca-8439-4a25-b51f-35abdc68ea7d))
  5841. (segment (start 143 114.5) (end 144.849886 116.349886) (width 0.2) (layer "F.Cu") (net 64) (tstamp 5877e89b-366b-425a-a0f3-b1978e326256))
  5842. (segment (start 142.299848 107.85271) (end 142.299848 108.602393) (width 0.2) (layer "F.Cu") (net 64) (tstamp 5c4d6be4-aeb5-4484-80d2-4b7b8b512de1))
  5843. (segment (start 144.849886 116.349886) (end 144.849886 118.149987) (width 0.2) (layer "F.Cu") (net 64) (tstamp 643e4841-9492-4ca5-8761-13d0b7a4f9ad))
  5844. (segment (start 143 109.302546) (end 143 114.5) (width 0.2) (layer "F.Cu") (net 64) (tstamp a8276209-51a0-4d5f-8f96-ef34bdd2ec58))
  5845. (segment (start 149.6 101.636859) (end 149.6 93.136859) (width 0.2) (layer "F.Cu") (net 65) (tstamp 2cb2e7d4-fd00-48b9-af7e-6e2e0ec6f332))
  5846. (segment (start 150.334315 92.402545) (end 152.165686 92.402545) (width 0.2) (layer "F.Cu") (net 65) (tstamp 51b58426-3b8c-4578-8541-0460e5fd685a))
  5847. (segment (start 146.049961 102.102443) (end 149.134416 102.102443) (width 0.2) (layer "F.Cu") (net 65) (tstamp 70647214-fd04-42a5-8d7d-ba9681a7d7ae))
  5848. (segment (start 153.700152 94.707295) (end 153.635001 94.772446) (width 0.2) (layer "F.Cu") (net 65) (tstamp 95a79e5b-abb8-409d-93c8-7913700464b8))
  5849. (segment (start 146.049911 102.102393) (end 146.049961 102.102443) (width 0.2) (layer "F.Cu") (net 65) (tstamp a0bac9a4-be7e-42a0-8e34-46a5c434ccde))
  5850. (segment (start 149.134416 102.102443) (end 149.6 101.636859) (width 0.2) (layer "F.Cu") (net 65) (tstamp b3319856-add3-4eae-9b0c-8da498bd2522))
  5851. (segment (start 152.165686 92.402545) (end 153.635001 93.87186) (width 0.2) (layer "F.Cu") (net 65) (tstamp be2f7bae-c555-46ed-8228-2dc6805f7a6c))
  5852. (segment (start 153.635001 93.87186) (end 153.635001 94.772446) (width 0.2) (layer "F.Cu") (net 65) (tstamp dba17ad6-2e16-431c-be11-791bc449bac9))
  5853. (segment (start 149.6 93.136859) (end 150.334315 92.402545) (width 0.2) (layer "F.Cu") (net 65) (tstamp ec477c23-2c89-412e-a198-b6e01cf9a0a8))
  5854. (segment (start 150 93.302545) (end 150.5 92.802545) (width 0.2) (layer "F.Cu") (net 66) (tstamp 1ce025c5-1012-4ffc-bf96-2522ca8772ad))
  5855. (segment (start 150 101.802545) (end 150 93.302545) (width 0.2) (layer "F.Cu") (net 66) (tstamp 3107b943-5d51-47d1-85a3-14675c2ad77e))
  5856. (segment (start 152 92.802545) (end 152.364999 93.167544) (width 0.2) (layer "F.Cu") (net 66) (tstamp 37c46cbe-5ed2-41a7-a0f8-abc2ee227bde))
  5857. (segment (start 146.049911 102.502443) (end 149.300102 102.502443) (width 0.2) (layer "F.Cu") (net 66) (tstamp 4b27114a-e5b5-425e-a5a7-d421614b258c))
  5858. (segment (start 152.364999 93.167544) (end 152.364999 94.772446) (width 0.2) (layer "F.Cu") (net 66) (tstamp c946f76a-8bf7-4f62-b133-29aeaa159916))
  5859. (segment (start 150.5 92.802545) (end 152 92.802545) (width 0.2) (layer "F.Cu") (net 66) (tstamp df754a41-9f0d-4021-b3a4-5c2bcc2e6c4b))
  5860. (segment (start 149.300102 102.502443) (end 150 101.802545) (width 0.2) (layer "F.Cu") (net 66) (tstamp f3397a37-85e1-49d3-af7b-7c92e43fd8bc))
  5861. (segment (start 150.025146 102.902494) (end 151.094996 101.832644) (width 0.2) (layer "F.Cu") (net 67) (tstamp 3bb1c17b-ae2c-4470-b70f-a0098ed98416))
  5862. (segment (start 146.049911 102.902494) (end 150.025146 102.902494) (width 0.2) (layer "F.Cu") (net 67) (tstamp 48d0028d-a10b-4ddb-8cf2-72843777a1a4))
  5863. (segment (start 151.304843 103.302545) (end 152.364999 102.242389) (width 0.2) (layer "F.Cu") (net 68) (tstamp 02c1697c-f73f-4349-acc9-121deefc9303))
  5864. (segment (start 146.049911 103.302545) (end 151.304843 103.302545) (width 0.2) (layer "F.Cu") (net 68) (tstamp 123a0174-a689-4480-a9fc-0c59e595d989))
  5865. (segment (start 152.364999 102.242389) (end 152.364999 101.832644) (width 0.2) (layer "F.Cu") (net 68) (tstamp 668a0fa5-e9c2-4099-b85d-f36b80b3f4f2))
  5866. (segment (start 153.635001 102.527653) (end 153.635001 101.832644) (width 0.2) (layer "F.Cu") (net 69) (tstamp 2aa9736b-59b2-4f15-a6f4-27bdec195ec9))
  5867. (segment (start 152.460058 103.702596) (end 153.635001 102.527653) (width 0.2) (layer "F.Cu") (net 69) (tstamp 94c7443a-d699-468f-9b64-917704196e2d))
  5868. (segment (start 146.049911 103.702596) (end 152.460058 103.702596) (width 0.2) (layer "F.Cu") (net 69) (tstamp a93d5b56-1cf5-4765-9a83-40db5b508d69))
  5869. (segment (start 140.699898 109.036961) (end 140.1 109.63686) (width 0.2) (layer "F.Cu") (net 70) (tstamp 0c4af192-a076-4c3f-b141-72cbcabdc0fd))
  5870. (segment (start 140.1 111.136859) (end 133.379323 117.857536) (width 0.2) (layer "F.Cu") (net 70) (tstamp 34c01ee0-a386-41bc-ab99-0548089f1254))
  5871. (segment (start 133.379323 117.857536) (end 132.264415 117.857536) (width 0.2) (layer "F.Cu") (net 70) (tstamp 9b801daf-a0a8-42ae-80ac-f4e1368e59fa))
  5872. (segment (start 140.699898 107.85271) (end 140.699898 109.036961) (width 0.2) (layer "F.Cu") (net 70) (tstamp b1de5118-433b-4e7e-9874-a9deca671d94))
  5873. (segment (start 140.1 109.63686) (end 140.1 111.136859) (width 0.2) (layer "F.Cu") (net 70) (tstamp b87f8cb7-108b-46ee-85af-20f9392f24fb))
  5874. (segment (start 140.5 109.802545) (end 140.5 111.302545) (width 0.2) (layer "F.Cu") (net 71) (tstamp 23912c8f-c222-43e8-9b54-3b84f1d75718))
  5875. (segment (start 132.675006 119.127539) (end 132.264415 119.127539) (width 0.2) (layer "F.Cu") (net 71) (tstamp 596397f7-b042-4cf1-a5a8-8ace2e3fd56d))
  5876. (segment (start 141.099949 109.202596) (end 140.5 109.802545) (width 0.2) (layer "F.Cu") (net 71) (tstamp 5b6e3ddf-9880-4b62-acc7-3f749282c3a1))
  5877. (segment (start 140.5 111.302545) (end 132.675006 119.127539) (width 0.2) (layer "F.Cu") (net 71) (tstamp 702ff54e-84f8-4b83-9048-d4c807be7b6b))
  5878. (segment (start 141.099949 107.85271) (end 141.099949 109.202596) (width 0.2) (layer "F.Cu") (net 71) (tstamp f7297dd9-a6b7-4843-aa4b-bb47439d3ef7))
  5879. (segment (start 142.5 113.302545) (end 142.5 109.368231) (width 0.2) (layer "F.Cu") (net 73) (tstamp 0f9de025-b88c-44a5-acc5-887ab084649f))
  5880. (segment (start 139.554991 126.747554) (end 141.5 124.802545) (width 0.2) (layer "F.Cu") (net 73) (tstamp 7066fb2b-9026-407d-9ee6-4faf32e6ea9e))
  5881. (segment (start 141.5 124.802545) (end 141.5 114.302545) (width 0.2) (layer "F.Cu") (net 73) (tstamp 948379db-335c-429e-952e-f9ec211e26da))
  5882. (segment (start 142.5 109.368231) (end 141.899797 108.768028) (width 0.2) (layer "F.Cu") (net 73) (tstamp 9d0de3ad-f7f9-481c-9b2f-3316a2e705ac))
  5883. (segment (start 141.899797 108.768028) (end 141.899797 107.85271) (width 0.2) (layer "F.Cu") (net 73) (tstamp a39f2205-7fd5-4f53-bbbf-73532738320e))
  5884. (segment (start 141.5 114.302545) (end 142.5 113.302545) (width 0.2) (layer "F.Cu") (net 73) (tstamp d508b27d-5f82-413c-bfe0-3ca578dbdfca))
  5885. (segment (start 137.735585 126.747554) (end 139.554991 126.747554) (width 0.2) (layer "F.Cu") (net 73) (tstamp f7adc3cb-2d5a-447c-b233-9b1272607947))
  5886. (segment (start 142.699898 107.002443) (end 142.5 106.802545) (width 0.2) (layer "F.Cu") (net 74) (tstamp 36b695c3-049a-4fc6-8732-3b936fdfbbb9))
  5887. (segment (start 142.699898 107.85271) (end 142.699898 107.002443) (width 0.2) (layer "F.Cu") (net 74) (tstamp f0e854a1-0a20-4da3-9f77-006211e2a2c7))
  5888. (via (at 142.5 106.802545) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 74) (tstamp f7d44f3a-95bf-442a-ae2d-97ea962e79ee))
  5889. (segment (start 142.5 106.802545) (end 142.5 96.302545) (width 0.2) (layer "B.Cu") (net 74) (tstamp 510d1db6-b9ee-4da8-b5e8-6ad504c3ad15))
  5890. (segment (start 143.099949 107.85271) (end 143.099949 106.900051) (width 0.2) (layer "F.Cu") (net 75) (tstamp 5793a7ec-3368-4170-adeb-4d23e9b16bd9))
  5891. (segment (start 143.099949 106.900051) (end 143.208033 106.791967) (width 0.2) (layer "F.Cu") (net 75) (tstamp ce8ba2ee-eba2-4dc0-9c9e-5cbd6cac6678))
  5892. (via (at 143.208033 106.791967) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 75) (tstamp 102fe939-e06e-436a-b9e8-9b04705423a5))
  5893. (segment (start 143.5 106.5) (end 143.5 96.302545) (width 0.2) (layer "B.Cu") (net 75) (tstamp 67f4c7de-5ab9-4622-b586-4a541f79338b))
  5894. (segment (start 143.208033 106.791967) (end 143.5 106.5) (width 0.2) (layer "B.Cu") (net 75) (tstamp b4315ea1-139d-49aa-a042-4e5596bd71e4))
  5895. (segment (start 165.250064 130.990107) (end 165.000127 130.74017) (width 0.2) (layer "F.Cu") (net 76) (tstamp 252f33d7-ed94-40bb-b962-ec88e58d136d))
  5896. (segment (start 165.000127 129.000127) (end 165.000127 130.090043) (width 0.2) (layer "F.Cu") (net 76) (tstamp 431d33ab-393a-4b6e-9a0b-c69aec0bf294))
  5897. (segment (start 168 128) (end 168.5 128.5) (width 0.2) (layer "F.Cu") (net 76) (tstamp 48a307d4-dd92-4cec-bad7-dcfff2b13116))
  5898. (segment (start 168.000127 129.500127) (end 167.5 129) (width 0.2) (layer "F.Cu") (net 76) (tstamp 4e77b38d-9011-46c7-b085-982b74bcb2df))
  5899. (segment (start 164.5 128.5) (end 165.000127 129.000127) (width 0.2) (layer "F.Cu") (net 76) (tstamp 512037f5-d604-4908-80f6-5bd10d9818b9))
  5900. (segment (start 168 125.003683) (end 168 128) (width 0.2) (layer "F.Cu") (net 76) (tstamp 5799686f-2d3a-4d46-9e37-609511b9c62b))
  5901. (segment (start 168.000127 130.090043) (end 168.000127 130.690043) (width 0.2) (layer "F.Cu") (net 76) (tstamp 8fbb967d-6396-435f-b231-ea798452dfd7))
  5902. (segment (start 165.250064 131.440056) (end 165.250064 130.990107) (width 0.2) (layer "F.Cu") (net 76) (tstamp b056ec1e-45ff-40fa-a9ab-fd60f3835e23))
  5903. (segment (start 167.5 129) (end 167.5 128.5) (width 0.2) (layer "F.Cu") (net 76) (tstamp b5acd599-e6b4-4db9-bc8b-4b020921c31d))
  5904. (segment (start 169.5 123.503683) (end 168 125.003683) (width 0.2) (layer "F.Cu") (net 76) (tstamp c5a86399-ca02-4cc8-82af-b325ed15e911))
  5905. (segment (start 168.000127 130.690043) (end 167.749936 130.940234) (width 0.2) (layer "F.Cu") (net 76) (tstamp c9728792-bec5-4b97-b487-535b5174c6a9))
  5906. (segment (start 165.000127 130.74017) (end 165.000127 130.090043) (width 0.2) (layer "F.Cu") (net 76) (tstamp e5808bec-90fc-4818-8106-d9c6501ac8f0))
  5907. (segment (start 167.749936 130.940234) (end 167.749936 131.440056) (width 0.2) (layer "F.Cu") (net 76) (tstamp f762cb49-9074-4f7a-b7be-923afb2c4275))
  5908. (segment (start 167.5 128.5) (end 168.5 128.5) (width 0.2) (layer "F.Cu") (net 76) (tstamp f91c136b-b86e-4215-8919-f90fcc3662cc))
  5909. (segment (start 168.000127 130.090043) (end 168.000127 129.500127) (width 0.2) (layer "F.Cu") (net 76) (tstamp f975f32a-24e8-4c97-8b09-78a5619d7c7d))
  5910. (via (at 164.5 128.5) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 76) (tstamp dc6389b1-34f9-4958-a2b8-f556d5787300))
  5911. (via (at 168.5 128.5) (size 0.5) (drill 0.2) (layers "F.Cu" "B.Cu") (net 76) (tstamp fb8177a2-88c9-45c2-a5cf-5242dc6710e8))
  5912. (segment (start 166 127) (end 164.5 128.5) (width 0.2) (layer "B.Cu") (net 76) (tstamp 27279cc9-0730-453f-a20f-725f62d2422c))
  5913. (segment (start 168.5 128.5) (end 167 127) (width 0.2) (layer "B.Cu") (net 76) (tstamp 7640ba9d-c837-4484-9bc8-3c5a317109a2))
  5914. (segment (start 167 127) (end 166 127) (width 0.2) (layer "B.Cu") (net 76) (tstamp 86a48c55-b3c9-44c0-a908-24fe5b289754))
  5915. (segment (start 127.034798 87.736856) (end 126.297942 87) (width 0.5) (layer "F.Cu") (net 87) (tstamp 1afbdafb-8629-4103-a905-af057cb45870))
  5916. (segment (start 108.793116 57.861392) (end 105.936735 60.717773) (width 1) (layer "F.Cu") (net 87) (tstamp 77ec1b2e-02de-426f-963b-1ec2d6c2196b))
  5917. (segment (start 126.297942 87) (end 125.5 87) (width 0.5) (layer "F.Cu") (net 87) (tstamp b26717d7-facd-44d8-94cd-87055db531c5))
  5918. (segment (start 127.034798 88.506858) (end 127.034798 87.736856) (width 0.5) (layer "F.Cu") (net 87) (tstamp c6622013-a27b-409f-8390-4bb1ec6ec7b1))
  5919. (segment (start 108.793116 53.5) (end 108.793116 57.861392) (width 1) (layer "F.Cu") (net 87) (tstamp c7765f91-6b95-45ce-9b43-e82592619616))
  5920. (via (at 125.5 87) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 87) (tstamp 093965f4-59c1-4194-bf64-6bed67472693))
  5921. (segment (start 94.5 81.5) (end 96.5 79.5) (width 0.5) (layer "B.Cu") (net 87) (tstamp 2c4232fa-c707-4556-a109-9132c9140090))
  5922. (segment (start 96.5 79.5) (end 96.5 64.5) (width 2) (layer "B.Cu") (net 87) (tstamp 460285a1-442f-46b5-a967-7ca4b37b82cf))
  5923. (segment (start 95 87) (end 94.5 86.5) (width 0.5) (layer "B.Cu") (net 87) (tstamp 4c7357b3-8901-461a-8b66-777a9442f38b))
  5924. (segment (start 94.5 86.5) (end 94.5 81.5) (width 0.5) (layer "B.Cu") (net 87) (tstamp 5349de73-9c34-4e29-9307-d707fbbe16e0))
  5925. (segment (start 96.5 64.5) (end 100.282227 60.717773) (width 2) (layer "B.Cu") (net 87) (tstamp 81ee3566-d3cc-4b47-a43c-154b04e68f80))
  5926. (segment (start 100.282227 60.717773) (end 105.936735 60.717773) (width 2) (layer "B.Cu") (net 87) (tstamp a209c617-4bda-4b01-93d4-682bd9ae7303))
  5927. (segment (start 125.5 87) (end 95 87) (width 0.5) (layer "B.Cu") (net 87) (tstamp dd67e0a9-0b7a-4542-9e61-8ee0b1d5db41))
  5928. (segment (start 154.503683 86) (end 158.146558 86) (width 1.5) (layer "F.Cu") (net 88) (tstamp 5e514b9a-ec75-483b-a58f-940d5ee1788b))
  5929. (segment (start 123.901448 84.5) (end 126.098552 84.5) (width 0.5) (layer "F.Cu") (net 89) (tstamp 1b4d15c4-38dc-46b3-a430-8b3086bb2779))
  5930. (segment (start 126.098552 84.5) (end 126.101981 84.503429) (width 0.5) (layer "F.Cu") (net 89) (tstamp cd575c38-3e2b-4c2a-92e8-a19541b55b54))
  5931. (segment (start 123.97206 80.503429) (end 123.968631 80.5) (width 0.5) (layer "F.Cu") (net 90) (tstamp 9ed144f9-9f02-4f30-a0c3-44dbcdf7b283))
  5932. (segment (start 126.101981 80.503429) (end 123.97206 80.503429) (width 0.5) (layer "F.Cu") (net 90) (tstamp c72e3ce4-3917-4ab5-9c53-ea02e594e22e))
  5933. (segment (start 126.169164 88.506858) (end 123.904877 88.506858) (width 0.5) (layer "F.Cu") (net 91) (tstamp 90b71bc9-e213-42c5-8e31-d637e01af551))
  5934. (segment (start 123.904877 88.506858) (end 123.901448 88.503429) (width 0.5) (layer "F.Cu") (net 91) (tstamp f77a9758-fc51-4f32-8015-386f9092986e))
  5935. )