Power.kicad_sch 207 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 68f7174d-ce7a-41b4-89f8-dd7e3ded57a1)
  3. (paper "A4")
  4. (title_block
  5. (title "Greaseweazle F7 Lighting, USB PD")
  6. (date "2022-04-04")
  7. (rev "1.03")
  8. (company "SweProj.com")
  9. )
  10. (lib_symbols
  11. (symbol "Connector:Conn_01x04_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  12. (property "Reference" "J" (id 0) (at 0 5.08 0)
  13. (effects (font (size 1.27 1.27)))
  14. )
  15. (property "Value" "Conn_01x04_Male" (id 1) (at 0 -7.62 0)
  16. (effects (font (size 1.27 1.27)))
  17. )
  18. (property "Footprint" "" (id 2) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "Datasheet" "~" (id 3) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (symbol "Conn_01x04_Male_1_1"
  34. (polyline
  35. (pts
  36. (xy 1.27 -5.08)
  37. (xy 0.8636 -5.08)
  38. )
  39. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  40. (fill (type none))
  41. )
  42. (polyline
  43. (pts
  44. (xy 1.27 -2.54)
  45. (xy 0.8636 -2.54)
  46. )
  47. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  48. (fill (type none))
  49. )
  50. (polyline
  51. (pts
  52. (xy 1.27 0)
  53. (xy 0.8636 0)
  54. )
  55. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  56. (fill (type none))
  57. )
  58. (polyline
  59. (pts
  60. (xy 1.27 2.54)
  61. (xy 0.8636 2.54)
  62. )
  63. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  64. (fill (type none))
  65. )
  66. (rectangle (start 0.8636 -4.953) (end 0 -5.207)
  67. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  68. (fill (type outline))
  69. )
  70. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  71. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  72. (fill (type outline))
  73. )
  74. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  75. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  76. (fill (type outline))
  77. )
  78. (rectangle (start 0.8636 2.667) (end 0 2.413)
  79. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  80. (fill (type outline))
  81. )
  82. (pin passive line (at 5.08 2.54 180) (length 3.81)
  83. (name "Pin_1" (effects (font (size 1.27 1.27))))
  84. (number "1" (effects (font (size 1.27 1.27))))
  85. )
  86. (pin passive line (at 5.08 0 180) (length 3.81)
  87. (name "Pin_2" (effects (font (size 1.27 1.27))))
  88. (number "2" (effects (font (size 1.27 1.27))))
  89. )
  90. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  91. (name "Pin_3" (effects (font (size 1.27 1.27))))
  92. (number "3" (effects (font (size 1.27 1.27))))
  93. )
  94. (pin passive line (at 5.08 -5.08 180) (length 3.81)
  95. (name "Pin_4" (effects (font (size 1.27 1.27))))
  96. (number "4" (effects (font (size 1.27 1.27))))
  97. )
  98. )
  99. )
  100. (symbol "Device:CP_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  101. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  102. (effects (font (size 1.27 1.27)) (justify left))
  103. )
  104. (property "Value" "Device_CP_Small" (id 1) (at 0.254 -2.032 0)
  105. (effects (font (size 1.27 1.27)) (justify left))
  106. )
  107. (property "Footprint" "" (id 2) (at 0 0 0)
  108. (effects (font (size 1.27 1.27)) hide)
  109. )
  110. (property "Datasheet" "" (id 3) (at 0 0 0)
  111. (effects (font (size 1.27 1.27)) hide)
  112. )
  113. (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0)
  114. (effects (font (size 1.27 1.27)) hide)
  115. )
  116. (symbol "CP_Small_0_1"
  117. (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
  118. (stroke (width 0) (type default) (color 0 0 0 0))
  119. (fill (type outline))
  120. )
  121. (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
  122. (stroke (width 0) (type default) (color 0 0 0 0))
  123. (fill (type none))
  124. )
  125. (polyline
  126. (pts
  127. (xy -1.27 1.524)
  128. (xy -0.762 1.524)
  129. )
  130. (stroke (width 0) (type default) (color 0 0 0 0))
  131. (fill (type none))
  132. )
  133. (polyline
  134. (pts
  135. (xy -1.016 1.27)
  136. (xy -1.016 1.778)
  137. )
  138. (stroke (width 0) (type default) (color 0 0 0 0))
  139. (fill (type none))
  140. )
  141. )
  142. (symbol "CP_Small_1_1"
  143. (pin passive line (at 0 2.54 270) (length 1.8542)
  144. (name "~" (effects (font (size 1.27 1.27))))
  145. (number "1" (effects (font (size 1.27 1.27))))
  146. )
  147. (pin passive line (at 0 -2.54 90) (length 1.8542)
  148. (name "~" (effects (font (size 1.27 1.27))))
  149. (number "2" (effects (font (size 1.27 1.27))))
  150. )
  151. )
  152. )
  153. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  154. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  155. (effects (font (size 1.27 1.27)) (justify left))
  156. )
  157. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  158. (effects (font (size 1.27 1.27)) (justify left))
  159. )
  160. (property "Footprint" "" (id 2) (at 0 0 0)
  161. (effects (font (size 1.27 1.27)) hide)
  162. )
  163. (property "Datasheet" "~" (id 3) (at 0 0 0)
  164. (effects (font (size 1.27 1.27)) hide)
  165. )
  166. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  167. (effects (font (size 1.27 1.27)) hide)
  168. )
  169. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  170. (effects (font (size 1.27 1.27)) hide)
  171. )
  172. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  173. (effects (font (size 1.27 1.27)) hide)
  174. )
  175. (symbol "C_Small_0_1"
  176. (polyline
  177. (pts
  178. (xy -1.524 -0.508)
  179. (xy 1.524 -0.508)
  180. )
  181. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  182. (fill (type none))
  183. )
  184. (polyline
  185. (pts
  186. (xy -1.524 0.508)
  187. (xy 1.524 0.508)
  188. )
  189. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  190. (fill (type none))
  191. )
  192. )
  193. (symbol "C_Small_1_1"
  194. (pin passive line (at 0 2.54 270) (length 2.032)
  195. (name "~" (effects (font (size 1.27 1.27))))
  196. (number "1" (effects (font (size 1.27 1.27))))
  197. )
  198. (pin passive line (at 0 -2.54 90) (length 2.032)
  199. (name "~" (effects (font (size 1.27 1.27))))
  200. (number "2" (effects (font (size 1.27 1.27))))
  201. )
  202. )
  203. )
  204. (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  205. (property "Reference" "D" (id 0) (at 0 2.54 0)
  206. (effects (font (size 1.27 1.27)))
  207. )
  208. (property "Value" "D_Schottky" (id 1) (at 0 -2.54 0)
  209. (effects (font (size 1.27 1.27)))
  210. )
  211. (property "Footprint" "" (id 2) (at 0 0 0)
  212. (effects (font (size 1.27 1.27)) hide)
  213. )
  214. (property "Datasheet" "~" (id 3) (at 0 0 0)
  215. (effects (font (size 1.27 1.27)) hide)
  216. )
  217. (property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0)
  218. (effects (font (size 1.27 1.27)) hide)
  219. )
  220. (property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
  221. (effects (font (size 1.27 1.27)) hide)
  222. )
  223. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
  224. (effects (font (size 1.27 1.27)) hide)
  225. )
  226. (symbol "D_Schottky_0_1"
  227. (polyline
  228. (pts
  229. (xy 1.27 0)
  230. (xy -1.27 0)
  231. )
  232. (stroke (width 0) (type default) (color 0 0 0 0))
  233. (fill (type none))
  234. )
  235. (polyline
  236. (pts
  237. (xy 1.27 1.27)
  238. (xy 1.27 -1.27)
  239. (xy -1.27 0)
  240. (xy 1.27 1.27)
  241. )
  242. (stroke (width 0.254) (type default) (color 0 0 0 0))
  243. (fill (type none))
  244. )
  245. (polyline
  246. (pts
  247. (xy -1.905 0.635)
  248. (xy -1.905 1.27)
  249. (xy -1.27 1.27)
  250. (xy -1.27 -1.27)
  251. (xy -0.635 -1.27)
  252. (xy -0.635 -0.635)
  253. )
  254. (stroke (width 0.254) (type default) (color 0 0 0 0))
  255. (fill (type none))
  256. )
  257. )
  258. (symbol "D_Schottky_1_1"
  259. (pin passive line (at -3.81 0 0) (length 2.54)
  260. (name "K" (effects (font (size 1.27 1.27))))
  261. (number "1" (effects (font (size 1.27 1.27))))
  262. )
  263. (pin passive line (at 3.81 0 180) (length 2.54)
  264. (name "A" (effects (font (size 1.27 1.27))))
  265. (number "2" (effects (font (size 1.27 1.27))))
  266. )
  267. )
  268. )
  269. (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  270. (property "Reference" "L" (id 0) (at -1.27 0 90)
  271. (effects (font (size 1.27 1.27)))
  272. )
  273. (property "Value" "L" (id 1) (at 1.905 0 90)
  274. (effects (font (size 1.27 1.27)))
  275. )
  276. (property "Footprint" "" (id 2) (at 0 0 0)
  277. (effects (font (size 1.27 1.27)) hide)
  278. )
  279. (property "Datasheet" "~" (id 3) (at 0 0 0)
  280. (effects (font (size 1.27 1.27)) hide)
  281. )
  282. (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
  283. (effects (font (size 1.27 1.27)) hide)
  284. )
  285. (property "ki_description" "Inductor" (id 5) (at 0 0 0)
  286. (effects (font (size 1.27 1.27)) hide)
  287. )
  288. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
  289. (effects (font (size 1.27 1.27)) hide)
  290. )
  291. (symbol "L_0_1"
  292. (arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
  293. (stroke (width 0) (type default) (color 0 0 0 0))
  294. (fill (type none))
  295. )
  296. (arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
  297. (stroke (width 0) (type default) (color 0 0 0 0))
  298. (fill (type none))
  299. )
  300. (arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
  301. (stroke (width 0) (type default) (color 0 0 0 0))
  302. (fill (type none))
  303. )
  304. (arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
  305. (stroke (width 0) (type default) (color 0 0 0 0))
  306. (fill (type none))
  307. )
  308. )
  309. (symbol "L_1_1"
  310. (pin passive line (at 0 3.81 270) (length 1.27)
  311. (name "1" (effects (font (size 1.27 1.27))))
  312. (number "1" (effects (font (size 1.27 1.27))))
  313. )
  314. (pin passive line (at 0 -3.81 90) (length 1.27)
  315. (name "2" (effects (font (size 1.27 1.27))))
  316. (number "2" (effects (font (size 1.27 1.27))))
  317. )
  318. )
  319. )
  320. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  321. (property "Reference" "D" (id 0) (at 0 2.54 0)
  322. (effects (font (size 1.27 1.27)))
  323. )
  324. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  325. (effects (font (size 1.27 1.27)))
  326. )
  327. (property "Footprint" "" (id 2) (at 0 0 0)
  328. (effects (font (size 1.27 1.27)) hide)
  329. )
  330. (property "Datasheet" "~" (id 3) (at 0 0 0)
  331. (effects (font (size 1.27 1.27)) hide)
  332. )
  333. (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
  334. (effects (font (size 1.27 1.27)) hide)
  335. )
  336. (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
  337. (effects (font (size 1.27 1.27)) hide)
  338. )
  339. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  340. (effects (font (size 1.27 1.27)) hide)
  341. )
  342. (symbol "LED_0_1"
  343. (polyline
  344. (pts
  345. (xy -1.27 -1.27)
  346. (xy -1.27 1.27)
  347. )
  348. (stroke (width 0.254) (type default) (color 0 0 0 0))
  349. (fill (type none))
  350. )
  351. (polyline
  352. (pts
  353. (xy -1.27 0)
  354. (xy 1.27 0)
  355. )
  356. (stroke (width 0) (type default) (color 0 0 0 0))
  357. (fill (type none))
  358. )
  359. (polyline
  360. (pts
  361. (xy 1.27 -1.27)
  362. (xy 1.27 1.27)
  363. (xy -1.27 0)
  364. (xy 1.27 -1.27)
  365. )
  366. (stroke (width 0.254) (type default) (color 0 0 0 0))
  367. (fill (type none))
  368. )
  369. (polyline
  370. (pts
  371. (xy -3.048 -0.762)
  372. (xy -4.572 -2.286)
  373. (xy -3.81 -2.286)
  374. (xy -4.572 -2.286)
  375. (xy -4.572 -1.524)
  376. )
  377. (stroke (width 0) (type default) (color 0 0 0 0))
  378. (fill (type none))
  379. )
  380. (polyline
  381. (pts
  382. (xy -1.778 -0.762)
  383. (xy -3.302 -2.286)
  384. (xy -2.54 -2.286)
  385. (xy -3.302 -2.286)
  386. (xy -3.302 -1.524)
  387. )
  388. (stroke (width 0) (type default) (color 0 0 0 0))
  389. (fill (type none))
  390. )
  391. )
  392. (symbol "LED_1_1"
  393. (pin passive line (at -3.81 0 0) (length 2.54)
  394. (name "K" (effects (font (size 1.27 1.27))))
  395. (number "1" (effects (font (size 1.27 1.27))))
  396. )
  397. (pin passive line (at 3.81 0 180) (length 2.54)
  398. (name "A" (effects (font (size 1.27 1.27))))
  399. (number "2" (effects (font (size 1.27 1.27))))
  400. )
  401. )
  402. )
  403. (symbol "Device:Polyfuse_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  404. (property "Reference" "F" (id 0) (at -1.905 0 90)
  405. (effects (font (size 1.27 1.27)))
  406. )
  407. (property "Value" "Polyfuse_Small" (id 1) (at 1.905 0 90)
  408. (effects (font (size 1.27 1.27)))
  409. )
  410. (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
  411. (effects (font (size 1.27 1.27)) (justify left) hide)
  412. )
  413. (property "Datasheet" "~" (id 3) (at 0 0 0)
  414. (effects (font (size 1.27 1.27)) hide)
  415. )
  416. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
  417. (effects (font (size 1.27 1.27)) hide)
  418. )
  419. (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient, small symbol" (id 5) (at 0 0 0)
  420. (effects (font (size 1.27 1.27)) hide)
  421. )
  422. (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
  423. (effects (font (size 1.27 1.27)) hide)
  424. )
  425. (symbol "Polyfuse_Small_0_1"
  426. (rectangle (start -0.508 1.27) (end 0.508 -1.27)
  427. (stroke (width 0) (type default) (color 0 0 0 0))
  428. (fill (type none))
  429. )
  430. (polyline
  431. (pts
  432. (xy 0 2.54)
  433. (xy 0 -2.54)
  434. )
  435. (stroke (width 0) (type default) (color 0 0 0 0))
  436. (fill (type none))
  437. )
  438. (polyline
  439. (pts
  440. (xy -1.016 1.27)
  441. (xy -1.016 0.762)
  442. (xy 1.016 -0.762)
  443. (xy 1.016 -1.27)
  444. )
  445. (stroke (width 0) (type default) (color 0 0 0 0))
  446. (fill (type none))
  447. )
  448. )
  449. (symbol "Polyfuse_Small_1_1"
  450. (pin passive line (at 0 2.54 270) (length 0.635)
  451. (name "~" (effects (font (size 1.27 1.27))))
  452. (number "1" (effects (font (size 1.27 1.27))))
  453. )
  454. (pin passive line (at 0 -2.54 90) (length 0.635)
  455. (name "~" (effects (font (size 1.27 1.27))))
  456. (number "2" (effects (font (size 1.27 1.27))))
  457. )
  458. )
  459. )
  460. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  461. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  462. (effects (font (size 1.27 1.27)) (justify left))
  463. )
  464. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  465. (effects (font (size 1.27 1.27)) (justify left))
  466. )
  467. (property "Footprint" "" (id 2) (at 0 0 0)
  468. (effects (font (size 1.27 1.27)) hide)
  469. )
  470. (property "Datasheet" "~" (id 3) (at 0 0 0)
  471. (effects (font (size 1.27 1.27)) hide)
  472. )
  473. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  474. (effects (font (size 1.27 1.27)) hide)
  475. )
  476. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  477. (effects (font (size 1.27 1.27)) hide)
  478. )
  479. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  480. (effects (font (size 1.27 1.27)) hide)
  481. )
  482. (symbol "R_Small_0_1"
  483. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  484. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  485. (fill (type none))
  486. )
  487. )
  488. (symbol "R_Small_1_1"
  489. (pin passive line (at 0 2.54 270) (length 0.762)
  490. (name "~" (effects (font (size 1.27 1.27))))
  491. (number "1" (effects (font (size 1.27 1.27))))
  492. )
  493. (pin passive line (at 0 -2.54 90) (length 0.762)
  494. (name "~" (effects (font (size 1.27 1.27))))
  495. (number "2" (effects (font (size 1.27 1.27))))
  496. )
  497. )
  498. )
  499. (symbol "Greaseweazle:STM32F730Z8T6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  500. (property "Reference" "U" (id 0) (at 0 5.08 0)
  501. (effects (font (size 1.27 1.27)) (justify left))
  502. )
  503. (property "Value" "STM32F730Z8T6" (id 1) (at 0 7.62 0)
  504. (effects (font (size 1.27 1.27)) (justify left))
  505. )
  506. (property "Footprint" "sm6uax:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 0 10.16 0)
  507. (effects (font (size 1.27 1.27)) (justify left) hide)
  508. )
  509. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (id 3) (at 0 12.7 0)
  510. (effects (font (size 1.27 1.27)) (justify left) hide)
  511. )
  512. (property "ki_locked" "" (id 4) (at 0 0 0)
  513. (effects (font (size 1.27 1.27)))
  514. )
  515. (property "ki_description" "STM32F730Z8T6" (id 5) (at 0 0 0)
  516. (effects (font (size 1.27 1.27)) hide)
  517. )
  518. (symbol "STM32F730Z8T6_1_1"
  519. (rectangle (start 5.08 2.54) (end 45.72 -71.12)
  520. (stroke (width 0) (type default) (color 0 0 0 0))
  521. (fill (type background))
  522. )
  523. (pin power_in line (at 2.54 -40.64 0) (length 2.54)
  524. (name "VCAP_2" (effects (font (size 1.016 1.016))))
  525. (number "106" (effects (font (size 1.016 1.016))))
  526. )
  527. (pin power_in line (at 48.26 -60.96 180) (length 2.54)
  528. (name "VSS" (effects (font (size 1.016 1.016))))
  529. (number "107" (effects (font (size 1.016 1.016))))
  530. )
  531. (pin power_in line (at 2.54 -17.78 0) (length 2.54)
  532. (name "VDD" (effects (font (size 1.016 1.016))))
  533. (number "108" (effects (font (size 1.016 1.016))))
  534. )
  535. (pin power_in line (at 48.26 -63.5 180) (length 2.54)
  536. (name "VSS" (effects (font (size 1.016 1.016))))
  537. (number "120" (effects (font (size 1.016 1.016))))
  538. )
  539. (pin power_in line (at 2.54 -30.48 0) (length 2.54)
  540. (name "VDDSDMMC" (effects (font (size 1.016 1.016))))
  541. (number "121" (effects (font (size 1.016 1.016))))
  542. )
  543. (pin power_in line (at 48.26 -66.04 180) (length 2.54)
  544. (name "VSS" (effects (font (size 1.016 1.016))))
  545. (number "130" (effects (font (size 1.016 1.016))))
  546. )
  547. (pin power_in line (at 2.54 -20.32 0) (length 2.54)
  548. (name "VDD" (effects (font (size 1.016 1.016))))
  549. (number "131" (effects (font (size 1.016 1.016))))
  550. )
  551. (pin passive line (at 2.54 -58.42 0) (length 2.54)
  552. (name "BOOT0" (effects (font (size 1.016 1.016))))
  553. (number "138" (effects (font (size 1.016 1.016))))
  554. )
  555. (pin power_in line (at 2.54 -63.5 0) (length 2.54)
  556. (name "PDR_ON" (effects (font (size 1.016 1.016))))
  557. (number "143" (effects (font (size 1.016 1.016))))
  558. )
  559. (pin power_in line (at 2.54 -22.86 0) (length 2.54)
  560. (name "VDD" (effects (font (size 1.016 1.016))))
  561. (number "144" (effects (font (size 1.016 1.016))))
  562. )
  563. (pin power_in line (at 48.26 -45.72 180) (length 2.54)
  564. (name "VSS" (effects (font (size 1.016 1.016))))
  565. (number "16" (effects (font (size 1.016 1.016))))
  566. )
  567. (pin power_in line (at 2.54 0 0) (length 2.54)
  568. (name "VDD" (effects (font (size 1.016 1.016))))
  569. (number "17" (effects (font (size 1.016 1.016))))
  570. )
  571. (pin input line (at 2.54 -68.58 0) (length 2.54)
  572. (name "~{RST}" (effects (font (size 1.016 1.016))))
  573. (number "25" (effects (font (size 1.016 1.016))))
  574. )
  575. (pin power_in line (at 2.54 -2.54 0) (length 2.54)
  576. (name "VDD" (effects (font (size 1.016 1.016))))
  577. (number "30" (effects (font (size 1.016 1.016))))
  578. )
  579. (pin power_in line (at 48.26 -68.58 180) (length 2.54)
  580. (name "VSSA" (effects (font (size 1.016 1.016))))
  581. (number "31" (effects (font (size 1.016 1.016))))
  582. )
  583. (pin power_in line (at 2.54 -48.26 0) (length 2.54)
  584. (name "VREF+" (effects (font (size 1.016 1.016))))
  585. (number "32" (effects (font (size 1.016 1.016))))
  586. )
  587. (pin power_in line (at 2.54 -27.94 0) (length 2.54)
  588. (name "VDDA" (effects (font (size 1.016 1.016))))
  589. (number "33" (effects (font (size 1.016 1.016))))
  590. )
  591. (pin power_in line (at 48.26 -48.26 180) (length 2.54)
  592. (name "VSS" (effects (font (size 1.016 1.016))))
  593. (number "38" (effects (font (size 1.016 1.016))))
  594. )
  595. (pin power_in line (at 2.54 -5.08 0) (length 2.54)
  596. (name "VDD" (effects (font (size 1.016 1.016))))
  597. (number "39" (effects (font (size 1.016 1.016))))
  598. )
  599. (pin power_in line (at 48.26 -50.8 180) (length 2.54)
  600. (name "VSS" (effects (font (size 1.016 1.016))))
  601. (number "51" (effects (font (size 1.016 1.016))))
  602. )
  603. (pin power_in line (at 2.54 -7.62 0) (length 2.54)
  604. (name "VDD" (effects (font (size 1.016 1.016))))
  605. (number "52" (effects (font (size 1.016 1.016))))
  606. )
  607. (pin power_in line (at 2.54 -45.72 0) (length 2.54)
  608. (name "VBAT" (effects (font (size 1.016 1.016))))
  609. (number "6" (effects (font (size 1.016 1.016))))
  610. )
  611. (pin power_in line (at 48.26 -53.34 180) (length 2.54)
  612. (name "VSS" (effects (font (size 1.016 1.016))))
  613. (number "61" (effects (font (size 1.016 1.016))))
  614. )
  615. (pin power_in line (at 2.54 -10.16 0) (length 2.54)
  616. (name "VDD" (effects (font (size 1.016 1.016))))
  617. (number "62" (effects (font (size 1.016 1.016))))
  618. )
  619. (pin power_in line (at 2.54 -38.1 0) (length 2.54)
  620. (name "VCAP_1" (effects (font (size 1.016 1.016))))
  621. (number "71" (effects (font (size 1.016 1.016))))
  622. )
  623. (pin power_in line (at 2.54 -12.7 0) (length 2.54)
  624. (name "VDD" (effects (font (size 1.016 1.016))))
  625. (number "72" (effects (font (size 1.016 1.016))))
  626. )
  627. (pin power_in line (at 2.54 -53.34 0) (length 2.54)
  628. (name "OTG_HS_REXT" (effects (font (size 1.016 1.016))))
  629. (number "75" (effects (font (size 1.016 1.016))))
  630. )
  631. (pin passive line (at 2.54 -25.4 0) (length 2.54)
  632. (name "VDD12OTGHS" (effects (font (size 1.016 1.016))))
  633. (number "76" (effects (font (size 1.016 1.016))))
  634. )
  635. (pin power_in line (at 48.26 -55.88 180) (length 2.54)
  636. (name "VSS" (effects (font (size 1.016 1.016))))
  637. (number "85" (effects (font (size 1.016 1.016))))
  638. )
  639. (pin power_in line (at 2.54 -15.24 0) (length 2.54)
  640. (name "VDD" (effects (font (size 1.016 1.016))))
  641. (number "86" (effects (font (size 1.016 1.016))))
  642. )
  643. (pin power_in line (at 48.26 -58.42 180) (length 2.54)
  644. (name "VSS" (effects (font (size 1.016 1.016))))
  645. (number "94" (effects (font (size 1.016 1.016))))
  646. )
  647. (pin power_in line (at 2.54 -33.02 0) (length 2.54)
  648. (name "VDDUSB" (effects (font (size 1.016 1.016))))
  649. (number "95" (effects (font (size 1.016 1.016))))
  650. )
  651. )
  652. (symbol "STM32F730Z8T6_2_1"
  653. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  654. (stroke (width 0) (type default) (color 0 0 0 0))
  655. (fill (type background))
  656. )
  657. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  658. (name "PA8" (effects (font (size 1.016 1.016))))
  659. (number "100" (effects (font (size 1.016 1.016))))
  660. )
  661. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  662. (name "PA9" (effects (font (size 1.016 1.016))))
  663. (number "101" (effects (font (size 1.016 1.016))))
  664. )
  665. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  666. (name "PA10" (effects (font (size 1.016 1.016))))
  667. (number "102" (effects (font (size 1.016 1.016))))
  668. )
  669. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  670. (name "PA11" (effects (font (size 1.016 1.016))))
  671. (number "103" (effects (font (size 1.016 1.016))))
  672. )
  673. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  674. (name "PA12" (effects (font (size 1.016 1.016))))
  675. (number "104" (effects (font (size 1.016 1.016))))
  676. )
  677. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  678. (name "PA13" (effects (font (size 1.016 1.016))))
  679. (number "105" (effects (font (size 1.016 1.016))))
  680. )
  681. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  682. (name "PA14" (effects (font (size 1.016 1.016))))
  683. (number "109" (effects (font (size 1.016 1.016))))
  684. )
  685. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  686. (name "PA15" (effects (font (size 1.016 1.016))))
  687. (number "110" (effects (font (size 1.016 1.016))))
  688. )
  689. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  690. (name "PC10" (effects (font (size 1.016 1.016))))
  691. (number "111" (effects (font (size 1.016 1.016))))
  692. )
  693. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  694. (name "PC11" (effects (font (size 1.016 1.016))))
  695. (number "112" (effects (font (size 1.016 1.016))))
  696. )
  697. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  698. (name "PC12" (effects (font (size 1.016 1.016))))
  699. (number "113" (effects (font (size 1.016 1.016))))
  700. )
  701. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  702. (name "PD0" (effects (font (size 1.016 1.016))))
  703. (number "114" (effects (font (size 1.016 1.016))))
  704. )
  705. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  706. (name "PD1" (effects (font (size 1.016 1.016))))
  707. (number "115" (effects (font (size 1.016 1.016))))
  708. )
  709. (pin bidirectional line (at 25.4 -48.26 180) (length 2.54)
  710. (name "PD2" (effects (font (size 1.016 1.016))))
  711. (number "116" (effects (font (size 1.016 1.016))))
  712. )
  713. (pin bidirectional line (at 25.4 -50.8 180) (length 2.54)
  714. (name "PD3" (effects (font (size 1.016 1.016))))
  715. (number "117" (effects (font (size 1.016 1.016))))
  716. )
  717. (pin bidirectional line (at 25.4 -53.34 180) (length 2.54)
  718. (name "PD4" (effects (font (size 1.016 1.016))))
  719. (number "118" (effects (font (size 1.016 1.016))))
  720. )
  721. (pin bidirectional line (at 25.4 -55.88 180) (length 2.54)
  722. (name "PD5" (effects (font (size 1.016 1.016))))
  723. (number "119" (effects (font (size 1.016 1.016))))
  724. )
  725. (pin bidirectional line (at 25.4 -58.42 180) (length 2.54)
  726. (name "PD6" (effects (font (size 1.016 1.016))))
  727. (number "122" (effects (font (size 1.016 1.016))))
  728. )
  729. (pin bidirectional line (at 25.4 -60.96 180) (length 2.54)
  730. (name "PD7" (effects (font (size 1.016 1.016))))
  731. (number "123" (effects (font (size 1.016 1.016))))
  732. )
  733. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  734. (name "PB3" (effects (font (size 1.016 1.016))))
  735. (number "133" (effects (font (size 1.016 1.016))))
  736. )
  737. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  738. (name "PB4" (effects (font (size 1.016 1.016))))
  739. (number "134" (effects (font (size 1.016 1.016))))
  740. )
  741. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  742. (name "PB5" (effects (font (size 1.016 1.016))))
  743. (number "135" (effects (font (size 1.016 1.016))))
  744. )
  745. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  746. (name "PB6" (effects (font (size 1.016 1.016))))
  747. (number "136" (effects (font (size 1.016 1.016))))
  748. )
  749. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  750. (name "PB7" (effects (font (size 1.016 1.016))))
  751. (number "137" (effects (font (size 1.016 1.016))))
  752. )
  753. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  754. (name "PB8" (effects (font (size 1.016 1.016))))
  755. (number "139" (effects (font (size 1.016 1.016))))
  756. )
  757. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  758. (name "PB9" (effects (font (size 1.016 1.016))))
  759. (number "140" (effects (font (size 1.016 1.016))))
  760. )
  761. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  762. (name "PC0" (effects (font (size 1.016 1.016))))
  763. (number "26" (effects (font (size 1.016 1.016))))
  764. )
  765. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  766. (name "PC1" (effects (font (size 1.016 1.016))))
  767. (number "27" (effects (font (size 1.016 1.016))))
  768. )
  769. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  770. (name "PC2" (effects (font (size 1.016 1.016))))
  771. (number "28" (effects (font (size 1.016 1.016))))
  772. )
  773. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  774. (name "PC3" (effects (font (size 1.016 1.016))))
  775. (number "29" (effects (font (size 1.016 1.016))))
  776. )
  777. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  778. (name "PA0" (effects (font (size 1.016 1.016))))
  779. (number "34" (effects (font (size 1.016 1.016))))
  780. )
  781. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  782. (name "PA1" (effects (font (size 1.016 1.016))))
  783. (number "35" (effects (font (size 1.016 1.016))))
  784. )
  785. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  786. (name "PA2" (effects (font (size 1.016 1.016))))
  787. (number "36" (effects (font (size 1.016 1.016))))
  788. )
  789. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  790. (name "PA3" (effects (font (size 1.016 1.016))))
  791. (number "37" (effects (font (size 1.016 1.016))))
  792. )
  793. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  794. (name "PA4" (effects (font (size 1.016 1.016))))
  795. (number "40" (effects (font (size 1.016 1.016))))
  796. )
  797. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  798. (name "PA5" (effects (font (size 1.016 1.016))))
  799. (number "41" (effects (font (size 1.016 1.016))))
  800. )
  801. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  802. (name "PA6" (effects (font (size 1.016 1.016))))
  803. (number "42" (effects (font (size 1.016 1.016))))
  804. )
  805. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  806. (name "PA7" (effects (font (size 1.016 1.016))))
  807. (number "43" (effects (font (size 1.016 1.016))))
  808. )
  809. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  810. (name "PC4" (effects (font (size 1.016 1.016))))
  811. (number "44" (effects (font (size 1.016 1.016))))
  812. )
  813. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  814. (name "PC5" (effects (font (size 1.016 1.016))))
  815. (number "45" (effects (font (size 1.016 1.016))))
  816. )
  817. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  818. (name "PB0" (effects (font (size 1.016 1.016))))
  819. (number "46" (effects (font (size 1.016 1.016))))
  820. )
  821. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  822. (name "PB1" (effects (font (size 1.016 1.016))))
  823. (number "47" (effects (font (size 1.016 1.016))))
  824. )
  825. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  826. (name "PB2" (effects (font (size 1.016 1.016))))
  827. (number "48" (effects (font (size 1.016 1.016))))
  828. )
  829. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  830. (name "PB10" (effects (font (size 1.016 1.016))))
  831. (number "69" (effects (font (size 1.016 1.016))))
  832. )
  833. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  834. (name "PC13" (effects (font (size 1.016 1.016))))
  835. (number "7" (effects (font (size 1.016 1.016))))
  836. )
  837. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  838. (name "PB11" (effects (font (size 1.016 1.016))))
  839. (number "70" (effects (font (size 1.016 1.016))))
  840. )
  841. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  842. (name "PB12" (effects (font (size 1.016 1.016))))
  843. (number "73" (effects (font (size 1.016 1.016))))
  844. )
  845. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  846. (name "PB13" (effects (font (size 1.016 1.016))))
  847. (number "74" (effects (font (size 1.016 1.016))))
  848. )
  849. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  850. (name "PB14" (effects (font (size 1.016 1.016))))
  851. (number "77" (effects (font (size 1.016 1.016))))
  852. )
  853. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  854. (name "PB15" (effects (font (size 1.016 1.016))))
  855. (number "78" (effects (font (size 1.016 1.016))))
  856. )
  857. (pin bidirectional line (at 25.4 -63.5 180) (length 2.54)
  858. (name "PD8" (effects (font (size 1.016 1.016))))
  859. (number "79" (effects (font (size 1.016 1.016))))
  860. )
  861. (pin bidirectional line (at 25.4 -35.56 180) (length 2.54)
  862. (name "PC14" (effects (font (size 1.016 1.016))))
  863. (number "8" (effects (font (size 1.016 1.016))))
  864. )
  865. (pin bidirectional line (at 25.4 -66.04 180) (length 2.54)
  866. (name "PD9" (effects (font (size 1.016 1.016))))
  867. (number "80" (effects (font (size 1.016 1.016))))
  868. )
  869. (pin bidirectional line (at 25.4 -68.58 180) (length 2.54)
  870. (name "PD10" (effects (font (size 1.016 1.016))))
  871. (number "81" (effects (font (size 1.016 1.016))))
  872. )
  873. (pin bidirectional line (at 25.4 -71.12 180) (length 2.54)
  874. (name "PD11" (effects (font (size 1.016 1.016))))
  875. (number "82" (effects (font (size 1.016 1.016))))
  876. )
  877. (pin bidirectional line (at 25.4 -73.66 180) (length 2.54)
  878. (name "PD12" (effects (font (size 1.016 1.016))))
  879. (number "83" (effects (font (size 1.016 1.016))))
  880. )
  881. (pin bidirectional line (at 25.4 -76.2 180) (length 2.54)
  882. (name "PD13" (effects (font (size 1.016 1.016))))
  883. (number "84" (effects (font (size 1.016 1.016))))
  884. )
  885. (pin bidirectional line (at 25.4 -78.74 180) (length 2.54)
  886. (name "PD14" (effects (font (size 1.016 1.016))))
  887. (number "87" (effects (font (size 1.016 1.016))))
  888. )
  889. (pin bidirectional line (at 25.4 -81.28 180) (length 2.54)
  890. (name "PD15" (effects (font (size 1.016 1.016))))
  891. (number "88" (effects (font (size 1.016 1.016))))
  892. )
  893. (pin bidirectional line (at 25.4 -38.1 180) (length 2.54)
  894. (name "PC15" (effects (font (size 1.016 1.016))))
  895. (number "9" (effects (font (size 1.016 1.016))))
  896. )
  897. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  898. (name "PC6" (effects (font (size 1.016 1.016))))
  899. (number "96" (effects (font (size 1.016 1.016))))
  900. )
  901. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  902. (name "PC7" (effects (font (size 1.016 1.016))))
  903. (number "97" (effects (font (size 1.016 1.016))))
  904. )
  905. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  906. (name "PC8" (effects (font (size 1.016 1.016))))
  907. (number "98" (effects (font (size 1.016 1.016))))
  908. )
  909. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  910. (name "PC9" (effects (font (size 1.016 1.016))))
  911. (number "99" (effects (font (size 1.016 1.016))))
  912. )
  913. )
  914. (symbol "STM32F730Z8T6_3_1"
  915. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  916. (stroke (width 0) (type default) (color 0 0 0 0))
  917. (fill (type background))
  918. )
  919. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  920. (name "PE2" (effects (font (size 1.016 1.016))))
  921. (number "1" (effects (font (size 1.016 1.016))))
  922. )
  923. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  924. (name "PF0" (effects (font (size 1.016 1.016))))
  925. (number "10" (effects (font (size 1.016 1.016))))
  926. )
  927. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  928. (name "PF1" (effects (font (size 1.016 1.016))))
  929. (number "11" (effects (font (size 1.016 1.016))))
  930. )
  931. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  932. (name "PF2" (effects (font (size 1.016 1.016))))
  933. (number "12" (effects (font (size 1.016 1.016))))
  934. )
  935. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  936. (name "PG9" (effects (font (size 1.016 1.016))))
  937. (number "124" (effects (font (size 1.016 1.016))))
  938. )
  939. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  940. (name "PG10" (effects (font (size 1.016 1.016))))
  941. (number "125" (effects (font (size 1.016 1.016))))
  942. )
  943. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  944. (name "PG11" (effects (font (size 1.016 1.016))))
  945. (number "126" (effects (font (size 1.016 1.016))))
  946. )
  947. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  948. (name "PG12" (effects (font (size 1.016 1.016))))
  949. (number "127" (effects (font (size 1.016 1.016))))
  950. )
  951. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  952. (name "PG13" (effects (font (size 1.016 1.016))))
  953. (number "128" (effects (font (size 1.016 1.016))))
  954. )
  955. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  956. (name "PG14" (effects (font (size 1.016 1.016))))
  957. (number "129" (effects (font (size 1.016 1.016))))
  958. )
  959. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  960. (name "PF3" (effects (font (size 1.016 1.016))))
  961. (number "13" (effects (font (size 1.016 1.016))))
  962. )
  963. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  964. (name "PG15" (effects (font (size 1.016 1.016))))
  965. (number "132" (effects (font (size 1.016 1.016))))
  966. )
  967. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  968. (name "PF4" (effects (font (size 1.016 1.016))))
  969. (number "14" (effects (font (size 1.016 1.016))))
  970. )
  971. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  972. (name "PE0" (effects (font (size 1.016 1.016))))
  973. (number "141" (effects (font (size 1.016 1.016))))
  974. )
  975. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  976. (name "PE1" (effects (font (size 1.016 1.016))))
  977. (number "142" (effects (font (size 1.016 1.016))))
  978. )
  979. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  980. (name "PF5" (effects (font (size 1.016 1.016))))
  981. (number "15" (effects (font (size 1.016 1.016))))
  982. )
  983. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  984. (name "PF6" (effects (font (size 1.016 1.016))))
  985. (number "18" (effects (font (size 1.016 1.016))))
  986. )
  987. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  988. (name "PF7" (effects (font (size 1.016 1.016))))
  989. (number "19" (effects (font (size 1.016 1.016))))
  990. )
  991. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  992. (name "PE3" (effects (font (size 1.016 1.016))))
  993. (number "2" (effects (font (size 1.016 1.016))))
  994. )
  995. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  996. (name "PF8" (effects (font (size 1.016 1.016))))
  997. (number "20" (effects (font (size 1.016 1.016))))
  998. )
  999. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  1000. (name "PF9" (effects (font (size 1.016 1.016))))
  1001. (number "21" (effects (font (size 1.016 1.016))))
  1002. )
  1003. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  1004. (name "PF10" (effects (font (size 1.016 1.016))))
  1005. (number "22" (effects (font (size 1.016 1.016))))
  1006. )
  1007. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  1008. (name "PH0" (effects (font (size 1.016 1.016))))
  1009. (number "23" (effects (font (size 1.016 1.016))))
  1010. )
  1011. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  1012. (name "PH1" (effects (font (size 1.016 1.016))))
  1013. (number "24" (effects (font (size 1.016 1.016))))
  1014. )
  1015. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  1016. (name "PE4" (effects (font (size 1.016 1.016))))
  1017. (number "3" (effects (font (size 1.016 1.016))))
  1018. )
  1019. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  1020. (name "PE5" (effects (font (size 1.016 1.016))))
  1021. (number "4" (effects (font (size 1.016 1.016))))
  1022. )
  1023. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  1024. (name "PF11" (effects (font (size 1.016 1.016))))
  1025. (number "49" (effects (font (size 1.016 1.016))))
  1026. )
  1027. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  1028. (name "PE6" (effects (font (size 1.016 1.016))))
  1029. (number "5" (effects (font (size 1.016 1.016))))
  1030. )
  1031. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  1032. (name "PF12" (effects (font (size 1.016 1.016))))
  1033. (number "50" (effects (font (size 1.016 1.016))))
  1034. )
  1035. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  1036. (name "PF13" (effects (font (size 1.016 1.016))))
  1037. (number "53" (effects (font (size 1.016 1.016))))
  1038. )
  1039. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  1040. (name "PF14" (effects (font (size 1.016 1.016))))
  1041. (number "54" (effects (font (size 1.016 1.016))))
  1042. )
  1043. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  1044. (name "PF15" (effects (font (size 1.016 1.016))))
  1045. (number "55" (effects (font (size 1.016 1.016))))
  1046. )
  1047. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  1048. (name "PG0" (effects (font (size 1.016 1.016))))
  1049. (number "56" (effects (font (size 1.016 1.016))))
  1050. )
  1051. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  1052. (name "PG1" (effects (font (size 1.016 1.016))))
  1053. (number "57" (effects (font (size 1.016 1.016))))
  1054. )
  1055. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  1056. (name "PE7" (effects (font (size 1.016 1.016))))
  1057. (number "58" (effects (font (size 1.016 1.016))))
  1058. )
  1059. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  1060. (name "PE8" (effects (font (size 1.016 1.016))))
  1061. (number "59" (effects (font (size 1.016 1.016))))
  1062. )
  1063. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  1064. (name "PE9" (effects (font (size 1.016 1.016))))
  1065. (number "60" (effects (font (size 1.016 1.016))))
  1066. )
  1067. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  1068. (name "PE10" (effects (font (size 1.016 1.016))))
  1069. (number "63" (effects (font (size 1.016 1.016))))
  1070. )
  1071. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  1072. (name "PE11" (effects (font (size 1.016 1.016))))
  1073. (number "64" (effects (font (size 1.016 1.016))))
  1074. )
  1075. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  1076. (name "PE12" (effects (font (size 1.016 1.016))))
  1077. (number "65" (effects (font (size 1.016 1.016))))
  1078. )
  1079. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  1080. (name "PE13" (effects (font (size 1.016 1.016))))
  1081. (number "66" (effects (font (size 1.016 1.016))))
  1082. )
  1083. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  1084. (name "PE14" (effects (font (size 1.016 1.016))))
  1085. (number "67" (effects (font (size 1.016 1.016))))
  1086. )
  1087. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  1088. (name "PE15" (effects (font (size 1.016 1.016))))
  1089. (number "68" (effects (font (size 1.016 1.016))))
  1090. )
  1091. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  1092. (name "PG2" (effects (font (size 1.016 1.016))))
  1093. (number "89" (effects (font (size 1.016 1.016))))
  1094. )
  1095. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  1096. (name "PG3" (effects (font (size 1.016 1.016))))
  1097. (number "90" (effects (font (size 1.016 1.016))))
  1098. )
  1099. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  1100. (name "PG4" (effects (font (size 1.016 1.016))))
  1101. (number "91" (effects (font (size 1.016 1.016))))
  1102. )
  1103. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  1104. (name "PG5" (effects (font (size 1.016 1.016))))
  1105. (number "92" (effects (font (size 1.016 1.016))))
  1106. )
  1107. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  1108. (name "PG8" (effects (font (size 1.016 1.016))))
  1109. (number "93" (effects (font (size 1.016 1.016))))
  1110. )
  1111. )
  1112. )
  1113. (symbol "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1114. (property "Reference" "U" (id 0) (at -3.81 3.175 0)
  1115. (effects (font (size 1.27 1.27)))
  1116. )
  1117. (property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0)
  1118. (effects (font (size 1.27 1.27)) (justify left))
  1119. )
  1120. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
  1121. (effects (font (size 1.27 1.27)) hide)
  1122. )
  1123. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
  1124. (effects (font (size 1.27 1.27)) hide)
  1125. )
  1126. (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
  1127. (effects (font (size 1.27 1.27)) hide)
  1128. )
  1129. (property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
  1130. (effects (font (size 1.27 1.27)) hide)
  1131. )
  1132. (property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
  1133. (effects (font (size 1.27 1.27)) hide)
  1134. )
  1135. (symbol "AMS1117-3.3_0_1"
  1136. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  1137. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1138. (fill (type background))
  1139. )
  1140. )
  1141. (symbol "AMS1117-3.3_1_1"
  1142. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1143. (name "GND" (effects (font (size 1.27 1.27))))
  1144. (number "1" (effects (font (size 1.27 1.27))))
  1145. )
  1146. (pin power_out line (at 7.62 0 180) (length 2.54)
  1147. (name "VO" (effects (font (size 1.27 1.27))))
  1148. (number "2" (effects (font (size 1.27 1.27))))
  1149. )
  1150. (pin power_in line (at -7.62 0 0) (length 2.54)
  1151. (name "VI" (effects (font (size 1.27 1.27))))
  1152. (number "3" (effects (font (size 1.27 1.27))))
  1153. )
  1154. )
  1155. )
  1156. (symbol "Switch:SW_SPST" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1157. (property "Reference" "SW" (id 0) (at 0 3.175 0)
  1158. (effects (font (size 1.27 1.27)))
  1159. )
  1160. (property "Value" "SW_SPST" (id 1) (at 0 -2.54 0)
  1161. (effects (font (size 1.27 1.27)))
  1162. )
  1163. (property "Footprint" "" (id 2) (at 0 0 0)
  1164. (effects (font (size 1.27 1.27)) hide)
  1165. )
  1166. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1167. (effects (font (size 1.27 1.27)) hide)
  1168. )
  1169. (property "ki_keywords" "switch lever" (id 4) (at 0 0 0)
  1170. (effects (font (size 1.27 1.27)) hide)
  1171. )
  1172. (property "ki_description" "Single Pole Single Throw (SPST) switch" (id 5) (at 0 0 0)
  1173. (effects (font (size 1.27 1.27)) hide)
  1174. )
  1175. (symbol "SW_SPST_0_0"
  1176. (circle (center -2.032 0) (radius 0.508)
  1177. (stroke (width 0) (type default) (color 0 0 0 0))
  1178. (fill (type none))
  1179. )
  1180. (polyline
  1181. (pts
  1182. (xy -1.524 0.254)
  1183. (xy 1.524 1.778)
  1184. )
  1185. (stroke (width 0) (type default) (color 0 0 0 0))
  1186. (fill (type none))
  1187. )
  1188. (circle (center 2.032 0) (radius 0.508)
  1189. (stroke (width 0) (type default) (color 0 0 0 0))
  1190. (fill (type none))
  1191. )
  1192. )
  1193. (symbol "SW_SPST_1_1"
  1194. (pin passive line (at -5.08 0 0) (length 2.54)
  1195. (name "A" (effects (font (size 1.27 1.27))))
  1196. (number "1" (effects (font (size 1.27 1.27))))
  1197. )
  1198. (pin passive line (at 5.08 0 180) (length 2.54)
  1199. (name "B" (effects (font (size 1.27 1.27))))
  1200. (number "2" (effects (font (size 1.27 1.27))))
  1201. )
  1202. )
  1203. )
  1204. (symbol "TPS54331_1" (in_bom yes) (on_board yes)
  1205. (property "Reference" "U" (id 0) (at -10.16 8.89 0)
  1206. (effects (font (size 1.27 1.27)) (justify left))
  1207. )
  1208. (property "Value" "TPS54331_1" (id 1) (at -1.27 8.89 0)
  1209. (effects (font (size 1.27 1.27)) (justify left))
  1210. )
  1211. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 1.27 -8.89 0)
  1212. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  1213. )
  1214. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tps5430.pdf" (id 3) (at 0 0 0)
  1215. (effects (font (size 1.27 1.27)) hide)
  1216. )
  1217. (property "ki_keywords" "Step-Down DC-DC Switching Regulator" (id 4) (at 0 0 0)
  1218. (effects (font (size 1.27 1.27)) hide)
  1219. )
  1220. (property "ki_description" "3A, Step Down Swift Converter, , PowerSOIC-8" (id 5) (at 0 0 0)
  1221. (effects (font (size 1.27 1.27)) hide)
  1222. )
  1223. (property "ki_fp_filters" "TI*SO*PowerPAD*ThermalVias*" (id 6) (at 0 0 0)
  1224. (effects (font (size 1.27 1.27)) hide)
  1225. )
  1226. (symbol "TPS54331_1_0_1"
  1227. (rectangle (start -10.16 7.62) (end 10.16 -7.62)
  1228. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1229. (fill (type background))
  1230. )
  1231. )
  1232. (symbol "TPS54331_1_1_1"
  1233. (pin input line (at 12.7 5.08 180) (length 2.54)
  1234. (name "BOOT" (effects (font (size 1.27 1.27))))
  1235. (number "1" (effects (font (size 1.27 1.27))))
  1236. )
  1237. (pin no_connect line (at -10.16 2.54 0) (length 2.54) hide
  1238. (name "NC" (effects (font (size 1.27 1.27))))
  1239. (number "2" (effects (font (size 1.27 1.27))))
  1240. )
  1241. (pin power_in line (at -12.7 5.08 0) (length 2.54)
  1242. (name "VIN" (effects (font (size 1.27 1.27))))
  1243. (number "2" (effects (font (size 1.27 1.27))))
  1244. )
  1245. (pin input line (at -12.7 -5.08 0) (length 2.54)
  1246. (name "EN" (effects (font (size 1.27 1.27))))
  1247. (number "3" (effects (font (size 1.27 1.27))))
  1248. )
  1249. (pin input line (at -12.7 -2.54 0) (length 2.54)
  1250. (name "SS" (effects (font (size 1.27 1.27))))
  1251. (number "4" (effects (font (size 1.27 1.27))))
  1252. )
  1253. (pin input line (at 12.7 -5.08 180) (length 2.54)
  1254. (name "VSENSE" (effects (font (size 1.27 1.27))))
  1255. (number "5" (effects (font (size 1.27 1.27))))
  1256. )
  1257. (pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
  1258. (name "COMP" (effects (font (size 1.27 1.27))))
  1259. (number "6" (effects (font (size 1.27 1.27))))
  1260. )
  1261. (pin power_in line (at -2.54 -10.16 90) (length 2.54)
  1262. (name "GND" (effects (font (size 1.27 1.27))))
  1263. (number "7" (effects (font (size 1.27 1.27))))
  1264. )
  1265. (pin output line (at 12.7 2.54 180) (length 2.54)
  1266. (name "PH" (effects (font (size 1.27 1.27))))
  1267. (number "8" (effects (font (size 1.27 1.27))))
  1268. )
  1269. )
  1270. )
  1271. (symbol "TPS54331_2" (in_bom yes) (on_board yes)
  1272. (property "Reference" "U" (id 0) (at -10.16 8.89 0)
  1273. (effects (font (size 1.27 1.27)) (justify left))
  1274. )
  1275. (property "Value" "TPS54331_2" (id 1) (at -1.27 8.89 0)
  1276. (effects (font (size 1.27 1.27)) (justify left))
  1277. )
  1278. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 1.27 -8.89 0)
  1279. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  1280. )
  1281. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tps5430.pdf" (id 3) (at 0 0 0)
  1282. (effects (font (size 1.27 1.27)) hide)
  1283. )
  1284. (property "ki_keywords" "Step-Down DC-DC Switching Regulator" (id 4) (at 0 0 0)
  1285. (effects (font (size 1.27 1.27)) hide)
  1286. )
  1287. (property "ki_description" "3A, Step Down Swift Converter, , PowerSOIC-8" (id 5) (at 0 0 0)
  1288. (effects (font (size 1.27 1.27)) hide)
  1289. )
  1290. (property "ki_fp_filters" "TI*SO*PowerPAD*ThermalVias*" (id 6) (at 0 0 0)
  1291. (effects (font (size 1.27 1.27)) hide)
  1292. )
  1293. (symbol "TPS54331_2_0_1"
  1294. (rectangle (start -10.16 7.62) (end 10.16 -7.62)
  1295. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1296. (fill (type background))
  1297. )
  1298. )
  1299. (symbol "TPS54331_2_1_1"
  1300. (pin input line (at 12.7 5.08 180) (length 2.54)
  1301. (name "BOOT" (effects (font (size 1.27 1.27))))
  1302. (number "1" (effects (font (size 1.27 1.27))))
  1303. )
  1304. (pin no_connect line (at -10.16 2.54 0) (length 2.54) hide
  1305. (name "NC" (effects (font (size 1.27 1.27))))
  1306. (number "2" (effects (font (size 1.27 1.27))))
  1307. )
  1308. (pin power_in line (at -12.7 5.08 0) (length 2.54)
  1309. (name "VIN" (effects (font (size 1.27 1.27))))
  1310. (number "2" (effects (font (size 1.27 1.27))))
  1311. )
  1312. (pin input line (at -12.7 -5.08 0) (length 2.54)
  1313. (name "EN" (effects (font (size 1.27 1.27))))
  1314. (number "3" (effects (font (size 1.27 1.27))))
  1315. )
  1316. (pin input line (at -12.7 -2.54 0) (length 2.54)
  1317. (name "SS" (effects (font (size 1.27 1.27))))
  1318. (number "4" (effects (font (size 1.27 1.27))))
  1319. )
  1320. (pin input line (at 12.7 -5.08 180) (length 2.54)
  1321. (name "VSENSE" (effects (font (size 1.27 1.27))))
  1322. (number "5" (effects (font (size 1.27 1.27))))
  1323. )
  1324. (pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
  1325. (name "COMP" (effects (font (size 1.27 1.27))))
  1326. (number "6" (effects (font (size 1.27 1.27))))
  1327. )
  1328. (pin power_in line (at -2.54 -10.16 90) (length 2.54)
  1329. (name "GND" (effects (font (size 1.27 1.27))))
  1330. (number "7" (effects (font (size 1.27 1.27))))
  1331. )
  1332. (pin output line (at 12.7 2.54 180) (length 2.54)
  1333. (name "PH" (effects (font (size 1.27 1.27))))
  1334. (number "8" (effects (font (size 1.27 1.27))))
  1335. )
  1336. )
  1337. )
  1338. (symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1339. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1340. (effects (font (size 1.27 1.27)) hide)
  1341. )
  1342. (property "Value" "+12V" (id 1) (at 0 3.556 0)
  1343. (effects (font (size 1.27 1.27)))
  1344. )
  1345. (property "Footprint" "" (id 2) (at 0 0 0)
  1346. (effects (font (size 1.27 1.27)) hide)
  1347. )
  1348. (property "Datasheet" "" (id 3) (at 0 0 0)
  1349. (effects (font (size 1.27 1.27)) hide)
  1350. )
  1351. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1352. (effects (font (size 1.27 1.27)) hide)
  1353. )
  1354. (property "ki_description" "Power symbol creates a global label with name \"+12V\"" (id 5) (at 0 0 0)
  1355. (effects (font (size 1.27 1.27)) hide)
  1356. )
  1357. (symbol "+12V_0_1"
  1358. (polyline
  1359. (pts
  1360. (xy -0.762 1.27)
  1361. (xy 0 2.54)
  1362. )
  1363. (stroke (width 0) (type default) (color 0 0 0 0))
  1364. (fill (type none))
  1365. )
  1366. (polyline
  1367. (pts
  1368. (xy 0 0)
  1369. (xy 0 2.54)
  1370. )
  1371. (stroke (width 0) (type default) (color 0 0 0 0))
  1372. (fill (type none))
  1373. )
  1374. (polyline
  1375. (pts
  1376. (xy 0 2.54)
  1377. (xy 0.762 1.27)
  1378. )
  1379. (stroke (width 0) (type default) (color 0 0 0 0))
  1380. (fill (type none))
  1381. )
  1382. )
  1383. (symbol "+12V_1_1"
  1384. (pin power_in line (at 0 0 90) (length 0) hide
  1385. (name "+12V" (effects (font (size 1.27 1.27))))
  1386. (number "1" (effects (font (size 1.27 1.27))))
  1387. )
  1388. )
  1389. )
  1390. (symbol "power:+24V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1391. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1392. (effects (font (size 1.27 1.27)) hide)
  1393. )
  1394. (property "Value" "+24V" (id 1) (at 0 3.556 0)
  1395. (effects (font (size 1.27 1.27)))
  1396. )
  1397. (property "Footprint" "" (id 2) (at 0 0 0)
  1398. (effects (font (size 1.27 1.27)) hide)
  1399. )
  1400. (property "Datasheet" "" (id 3) (at 0 0 0)
  1401. (effects (font (size 1.27 1.27)) hide)
  1402. )
  1403. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1404. (effects (font (size 1.27 1.27)) hide)
  1405. )
  1406. (property "ki_description" "Power symbol creates a global label with name \"+24V\"" (id 5) (at 0 0 0)
  1407. (effects (font (size 1.27 1.27)) hide)
  1408. )
  1409. (symbol "+24V_0_1"
  1410. (polyline
  1411. (pts
  1412. (xy -0.762 1.27)
  1413. (xy 0 2.54)
  1414. )
  1415. (stroke (width 0) (type default) (color 0 0 0 0))
  1416. (fill (type none))
  1417. )
  1418. (polyline
  1419. (pts
  1420. (xy 0 0)
  1421. (xy 0 2.54)
  1422. )
  1423. (stroke (width 0) (type default) (color 0 0 0 0))
  1424. (fill (type none))
  1425. )
  1426. (polyline
  1427. (pts
  1428. (xy 0 2.54)
  1429. (xy 0.762 1.27)
  1430. )
  1431. (stroke (width 0) (type default) (color 0 0 0 0))
  1432. (fill (type none))
  1433. )
  1434. )
  1435. (symbol "+24V_1_1"
  1436. (pin power_in line (at 0 0 90) (length 0) hide
  1437. (name "+24V" (effects (font (size 1.27 1.27))))
  1438. (number "1" (effects (font (size 1.27 1.27))))
  1439. )
  1440. )
  1441. )
  1442. (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1443. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1444. (effects (font (size 1.27 1.27)) hide)
  1445. )
  1446. (property "Value" "+3.3V" (id 1) (at 0 3.556 0)
  1447. (effects (font (size 1.27 1.27)))
  1448. )
  1449. (property "Footprint" "" (id 2) (at 0 0 0)
  1450. (effects (font (size 1.27 1.27)) hide)
  1451. )
  1452. (property "Datasheet" "" (id 3) (at 0 0 0)
  1453. (effects (font (size 1.27 1.27)) hide)
  1454. )
  1455. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1456. (effects (font (size 1.27 1.27)) hide)
  1457. )
  1458. (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
  1459. (effects (font (size 1.27 1.27)) hide)
  1460. )
  1461. (symbol "+3.3V_0_1"
  1462. (polyline
  1463. (pts
  1464. (xy -0.762 1.27)
  1465. (xy 0 2.54)
  1466. )
  1467. (stroke (width 0) (type default) (color 0 0 0 0))
  1468. (fill (type none))
  1469. )
  1470. (polyline
  1471. (pts
  1472. (xy 0 0)
  1473. (xy 0 2.54)
  1474. )
  1475. (stroke (width 0) (type default) (color 0 0 0 0))
  1476. (fill (type none))
  1477. )
  1478. (polyline
  1479. (pts
  1480. (xy 0 2.54)
  1481. (xy 0.762 1.27)
  1482. )
  1483. (stroke (width 0) (type default) (color 0 0 0 0))
  1484. (fill (type none))
  1485. )
  1486. )
  1487. (symbol "+3.3V_1_1"
  1488. (pin power_in line (at 0 0 90) (length 0) hide
  1489. (name "+3V3" (effects (font (size 1.27 1.27))))
  1490. (number "1" (effects (font (size 1.27 1.27))))
  1491. )
  1492. )
  1493. )
  1494. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1495. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1496. (effects (font (size 1.27 1.27)) hide)
  1497. )
  1498. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  1499. (effects (font (size 1.27 1.27)))
  1500. )
  1501. (property "Footprint" "" (id 2) (at 0 0 0)
  1502. (effects (font (size 1.27 1.27)) hide)
  1503. )
  1504. (property "Datasheet" "" (id 3) (at 0 0 0)
  1505. (effects (font (size 1.27 1.27)) hide)
  1506. )
  1507. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1508. (effects (font (size 1.27 1.27)) hide)
  1509. )
  1510. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  1511. (effects (font (size 1.27 1.27)) hide)
  1512. )
  1513. (symbol "+3V3_0_1"
  1514. (polyline
  1515. (pts
  1516. (xy -0.762 1.27)
  1517. (xy 0 2.54)
  1518. )
  1519. (stroke (width 0) (type default) (color 0 0 0 0))
  1520. (fill (type none))
  1521. )
  1522. (polyline
  1523. (pts
  1524. (xy 0 0)
  1525. (xy 0 2.54)
  1526. )
  1527. (stroke (width 0) (type default) (color 0 0 0 0))
  1528. (fill (type none))
  1529. )
  1530. (polyline
  1531. (pts
  1532. (xy 0 2.54)
  1533. (xy 0.762 1.27)
  1534. )
  1535. (stroke (width 0) (type default) (color 0 0 0 0))
  1536. (fill (type none))
  1537. )
  1538. )
  1539. (symbol "+3V3_1_1"
  1540. (pin power_in line (at 0 0 90) (length 0) hide
  1541. (name "+3V3" (effects (font (size 1.27 1.27))))
  1542. (number "1" (effects (font (size 1.27 1.27))))
  1543. )
  1544. )
  1545. )
  1546. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1547. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1548. (effects (font (size 1.27 1.27)) hide)
  1549. )
  1550. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  1551. (effects (font (size 1.27 1.27)))
  1552. )
  1553. (property "Footprint" "" (id 2) (at 0 0 0)
  1554. (effects (font (size 1.27 1.27)) hide)
  1555. )
  1556. (property "Datasheet" "" (id 3) (at 0 0 0)
  1557. (effects (font (size 1.27 1.27)) hide)
  1558. )
  1559. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1560. (effects (font (size 1.27 1.27)) hide)
  1561. )
  1562. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  1563. (effects (font (size 1.27 1.27)) hide)
  1564. )
  1565. (symbol "+5V_0_1"
  1566. (polyline
  1567. (pts
  1568. (xy -0.762 1.27)
  1569. (xy 0 2.54)
  1570. )
  1571. (stroke (width 0) (type default) (color 0 0 0 0))
  1572. (fill (type none))
  1573. )
  1574. (polyline
  1575. (pts
  1576. (xy 0 0)
  1577. (xy 0 2.54)
  1578. )
  1579. (stroke (width 0) (type default) (color 0 0 0 0))
  1580. (fill (type none))
  1581. )
  1582. (polyline
  1583. (pts
  1584. (xy 0 2.54)
  1585. (xy 0.762 1.27)
  1586. )
  1587. (stroke (width 0) (type default) (color 0 0 0 0))
  1588. (fill (type none))
  1589. )
  1590. )
  1591. (symbol "+5V_1_1"
  1592. (pin power_in line (at 0 0 90) (length 0) hide
  1593. (name "+5V" (effects (font (size 1.27 1.27))))
  1594. (number "1" (effects (font (size 1.27 1.27))))
  1595. )
  1596. )
  1597. )
  1598. (symbol "power:+5VA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1599. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1600. (effects (font (size 1.27 1.27)) hide)
  1601. )
  1602. (property "Value" "+5VA" (id 1) (at 0 3.556 0)
  1603. (effects (font (size 1.27 1.27)))
  1604. )
  1605. (property "Footprint" "" (id 2) (at 0 0 0)
  1606. (effects (font (size 1.27 1.27)) hide)
  1607. )
  1608. (property "Datasheet" "" (id 3) (at 0 0 0)
  1609. (effects (font (size 1.27 1.27)) hide)
  1610. )
  1611. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1612. (effects (font (size 1.27 1.27)) hide)
  1613. )
  1614. (property "ki_description" "Power symbol creates a global label with name \"+5VA\"" (id 5) (at 0 0 0)
  1615. (effects (font (size 1.27 1.27)) hide)
  1616. )
  1617. (symbol "+5VA_0_1"
  1618. (polyline
  1619. (pts
  1620. (xy -0.762 1.27)
  1621. (xy 0 2.54)
  1622. )
  1623. (stroke (width 0) (type default) (color 0 0 0 0))
  1624. (fill (type none))
  1625. )
  1626. (polyline
  1627. (pts
  1628. (xy 0 0)
  1629. (xy 0 2.54)
  1630. )
  1631. (stroke (width 0) (type default) (color 0 0 0 0))
  1632. (fill (type none))
  1633. )
  1634. (polyline
  1635. (pts
  1636. (xy 0 2.54)
  1637. (xy 0.762 1.27)
  1638. )
  1639. (stroke (width 0) (type default) (color 0 0 0 0))
  1640. (fill (type none))
  1641. )
  1642. )
  1643. (symbol "+5VA_1_1"
  1644. (pin power_in line (at 0 0 90) (length 0) hide
  1645. (name "+5VA" (effects (font (size 1.27 1.27))))
  1646. (number "1" (effects (font (size 1.27 1.27))))
  1647. )
  1648. )
  1649. )
  1650. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1651. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1652. (effects (font (size 1.27 1.27)) hide)
  1653. )
  1654. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1655. (effects (font (size 1.27 1.27)))
  1656. )
  1657. (property "Footprint" "" (id 2) (at 0 0 0)
  1658. (effects (font (size 1.27 1.27)) hide)
  1659. )
  1660. (property "Datasheet" "" (id 3) (at 0 0 0)
  1661. (effects (font (size 1.27 1.27)) hide)
  1662. )
  1663. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1664. (effects (font (size 1.27 1.27)) hide)
  1665. )
  1666. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1667. (effects (font (size 1.27 1.27)) hide)
  1668. )
  1669. (symbol "GND_0_1"
  1670. (polyline
  1671. (pts
  1672. (xy 0 0)
  1673. (xy 0 -1.27)
  1674. (xy 1.27 -1.27)
  1675. (xy 0 -2.54)
  1676. (xy -1.27 -1.27)
  1677. (xy 0 -1.27)
  1678. )
  1679. (stroke (width 0) (type default) (color 0 0 0 0))
  1680. (fill (type none))
  1681. )
  1682. )
  1683. (symbol "GND_1_1"
  1684. (pin power_in line (at 0 0 270) (length 0) hide
  1685. (name "GND" (effects (font (size 1.27 1.27))))
  1686. (number "1" (effects (font (size 1.27 1.27))))
  1687. )
  1688. )
  1689. )
  1690. )
  1691. (junction (at 110.49 82.55) (diameter 0) (color 0 0 0 0)
  1692. (uuid 01c54577-6862-4ca7-bb55-524c2e995aee)
  1693. )
  1694. (junction (at 198.12 106.68) (diameter 0) (color 0 0 0 0)
  1695. (uuid 06ae599d-ec2a-407f-bd24-54dd2d1d7ca4)
  1696. )
  1697. (junction (at 74.93 45.72) (diameter 0) (color 0 0 0 0)
  1698. (uuid 06fb8a5e-69f3-44ca-bc88-4da9a1408625)
  1699. )
  1700. (junction (at 67.437 143.256) (diameter 0) (color 0 0 0 0)
  1701. (uuid 0ca90552-88f0-4a8c-9eae-ca238d2a0071)
  1702. )
  1703. (junction (at 24.13 143.256) (diameter 0) (color 0 0 0 0)
  1704. (uuid 11506643-9a6f-401d-878e-efc8f85f4dcd)
  1705. )
  1706. (junction (at 147.32 45.72) (diameter 0) (color 0 0 0 0)
  1707. (uuid 1533b475-c834-40d3-ae2c-55eb46ae810f)
  1708. )
  1709. (junction (at 40.64 80.01) (diameter 0) (color 0 0 0 0)
  1710. (uuid 17adff9d-c581-42e4-b552-035b922b5256)
  1711. )
  1712. (junction (at 167.64 82.55) (diameter 0) (color 0 0 0 0)
  1713. (uuid 1b8d5810-67b5-41f5-a4e9-e6c2cc9fec50)
  1714. )
  1715. (junction (at 193.04 45.72) (diameter 0) (color 0 0 0 0)
  1716. (uuid 1c7ec62e-d96c-4a0d-ac32-e919b90a3c5b)
  1717. )
  1718. (junction (at 95.25 68.58) (diameter 0) (color 0 0 0 0)
  1719. (uuid 1ebce183-d3ad-4022-b82e-9e0d8cd628db)
  1720. )
  1721. (junction (at 224.79 45.72) (diameter 0) (color 0 0 0 0)
  1722. (uuid 207932d1-3fbf-4bd3-8ef6-a6601aaaae72)
  1723. )
  1724. (junction (at 135.89 27.94) (diameter 0) (color 0 0 0 0)
  1725. (uuid 260f62f6-a6cf-45e0-9208-51504e701f69)
  1726. )
  1727. (junction (at 223.52 83.82) (diameter 0) (color 0 0 0 0)
  1728. (uuid 2628b16a-8b1e-4398-be45-c147110e73bb)
  1729. )
  1730. (junction (at 234.95 45.72) (diameter 0) (color 0 0 0 0)
  1731. (uuid 2f29ffe5-cbdc-4a3f-81e6-c7d9f4c5145a)
  1732. )
  1733. (junction (at 167.64 27.94) (diameter 0) (color 0 0 0 0)
  1734. (uuid 33770b56-77ab-4a0c-a675-0ef4f02f8519)
  1735. )
  1736. (junction (at 223.52 86.36) (diameter 0) (color 0 0 0 0)
  1737. (uuid 3497045f-d218-47c9-8fd1-2d0a39585aa6)
  1738. )
  1739. (junction (at 40.64 90.17) (diameter 0) (color 0 0 0 0)
  1740. (uuid 35506831-8c22-45ab-9b57-69eb0f9ef003)
  1741. )
  1742. (junction (at 223.52 142.24) (diameter 0) (color 0 0 0 0)
  1743. (uuid 3bdc61da-fd87-4d91-ae6a-f160ef1e6b25)
  1744. )
  1745. (junction (at 265.43 57.15) (diameter 0) (color 0 0 0 0)
  1746. (uuid 3c19fda9-55de-469e-9693-2d8993bca106)
  1747. )
  1748. (junction (at 29.21 100.33) (diameter 0) (color 0 0 0 0)
  1749. (uuid 414a1d4c-7afc-4ffa-8579-88675cedc4ce)
  1750. )
  1751. (junction (at 214.63 45.72) (diameter 0) (color 0 0 0 0)
  1752. (uuid 4266f6dc-b108-467a-bc4a-756158b1a271)
  1753. )
  1754. (junction (at 81.28 143.256) (diameter 0) (color 0 0 0 0)
  1755. (uuid 42a9616a-abff-4583-83a0-d4dec5df8de7)
  1756. )
  1757. (junction (at 105.41 27.94) (diameter 0) (color 0 0 0 0)
  1758. (uuid 44c331f8-33e4-4ba1-bb1e-3071cc175bfd)
  1759. )
  1760. (junction (at 29.21 80.01) (diameter 0) (color 0 0 0 0)
  1761. (uuid 44cd273f-f3a1-4b9a-83a6-972b276409e1)
  1762. )
  1763. (junction (at 255.27 57.15) (diameter 0) (color 0 0 0 0)
  1764. (uuid 4687c479-536f-4d7c-9d3c-04c9b426c43c)
  1765. )
  1766. (junction (at 223.52 78.74) (diameter 0) (color 0 0 0 0)
  1767. (uuid 481354ed-51b9-4db2-9835-781681979b4b)
  1768. )
  1769. (junction (at 265.43 45.72) (diameter 0) (color 0 0 0 0)
  1770. (uuid 4e0c0da6-a302-49a1-8b88-4dccac856a0b)
  1771. )
  1772. (junction (at 21.59 80.01) (diameter 0) (color 0 0 0 0)
  1773. (uuid 557d128f-cf69-4c70-9959-d139ac95c63c)
  1774. )
  1775. (junction (at 223.52 101.6) (diameter 0) (color 0 0 0 0)
  1776. (uuid 56801e6d-c4ab-4f7b-8289-2119a52fa227)
  1777. )
  1778. (junction (at 204.47 45.72) (diameter 0) (color 0 0 0 0)
  1779. (uuid 56b53988-7c92-40d8-a754-683f4429d93e)
  1780. )
  1781. (junction (at 36.83 143.256) (diameter 0) (color 0 0 0 0)
  1782. (uuid 59324d4c-12f8-4a3e-a6c5-143d2384150e)
  1783. )
  1784. (junction (at 135.89 82.55) (diameter 0) (color 0 0 0 0)
  1785. (uuid 5a63aa46-8c18-43d5-8def-1c886562be17)
  1786. )
  1787. (junction (at 147.32 27.94) (diameter 0) (color 0 0 0 0)
  1788. (uuid 5c652bfd-7025-48e8-86f2-beee7cb38bd7)
  1789. )
  1790. (junction (at 50.8 179.07) (diameter 0) (color 0 0 0 0)
  1791. (uuid 5ea450c5-c799-4c49-a77b-90af3b812ea4)
  1792. )
  1793. (junction (at 95.25 104.14) (diameter 0) (color 0 0 0 0)
  1794. (uuid 5f7505cc-53a6-463b-b397-33ff845b1ac0)
  1795. )
  1796. (junction (at 182.88 45.72) (diameter 0) (color 0 0 0 0)
  1797. (uuid 60628c1f-f7b2-4a4b-be6f-62bc1a819432)
  1798. )
  1799. (junction (at 245.11 45.72) (diameter 0) (color 0 0 0 0)
  1800. (uuid 6540157e-dd56-419f-8e12-b9f763e7e5a8)
  1801. )
  1802. (junction (at 214.63 57.15) (diameter 0) (color 0 0 0 0)
  1803. (uuid 6597e724-ffad-43f1-9619-cca25cced87f)
  1804. )
  1805. (junction (at 58.42 143.256) (diameter 0) (color 0 0 0 0)
  1806. (uuid 6a9e1afc-56ba-4859-b642-84caf4b8d598)
  1807. )
  1808. (junction (at 30.48 143.256) (diameter 0) (color 0 0 0 0)
  1809. (uuid 6b64173a-1c64-499a-acfa-a6258a2decfa)
  1810. )
  1811. (junction (at 278.13 139.7) (diameter 0) (color 0 0 0 0)
  1812. (uuid 6d401fdd-c1f6-4321-96c4-4843b6143be9)
  1813. )
  1814. (junction (at 105.41 82.55) (diameter 0) (color 0 0 0 0)
  1815. (uuid 77cfe682-cc36-4979-823b-05ea5f187ba7)
  1816. )
  1817. (junction (at 245.11 57.15) (diameter 0) (color 0 0 0 0)
  1818. (uuid 7da6dd22-6820-4812-8b65-ceb1440c016d)
  1819. )
  1820. (junction (at 147.32 100.33) (diameter 0) (color 0 0 0 0)
  1821. (uuid 802bd717-75a4-4efc-bdc3-ab512c6bce65)
  1822. )
  1823. (junction (at 223.52 96.52) (diameter 0) (color 0 0 0 0)
  1824. (uuid 83181dd0-bbcd-4a99-a5a2-7d6961abb51a)
  1825. )
  1826. (junction (at 29.21 25.4) (diameter 0) (color 0 0 0 0)
  1827. (uuid 84daabe5-262d-44f3-8073-3a5eff98700f)
  1828. )
  1829. (junction (at 40.64 45.72) (diameter 0) (color 0 0 0 0)
  1830. (uuid 84e64de5-2809-4251-a45b-2b46d2cc79df)
  1831. )
  1832. (junction (at 278.13 132.08) (diameter 0) (color 0 0 0 0)
  1833. (uuid 88a7e34c-57e7-48ce-a358-6866b2c01d90)
  1834. )
  1835. (junction (at 95.25 123.19) (diameter 0) (color 0 0 0 0)
  1836. (uuid 88e4f832-79d6-4c54-9ce3-4328dcb9d5b5)
  1837. )
  1838. (junction (at 147.32 82.55) (diameter 0) (color 0 0 0 0)
  1839. (uuid 88ea0fe3-17bb-45bf-bf71-4da88c965186)
  1840. )
  1841. (junction (at 224.79 57.15) (diameter 0) (color 0 0 0 0)
  1842. (uuid 895d5ca3-0e9a-421e-88ea-3017edd2db62)
  1843. )
  1844. (junction (at 223.52 81.28) (diameter 0) (color 0 0 0 0)
  1845. (uuid 8cf4e6c7-f213-4dc6-a215-9a85d8791784)
  1846. )
  1847. (junction (at 223.52 91.44) (diameter 0) (color 0 0 0 0)
  1848. (uuid 8dcf40e6-09a5-42e4-8b46-f4738540468d)
  1849. )
  1850. (junction (at 223.52 93.98) (diameter 0) (color 0 0 0 0)
  1851. (uuid 90207e9d-650a-4c45-b7d5-e506cc85537d)
  1852. )
  1853. (junction (at 255.27 45.72) (diameter 0) (color 0 0 0 0)
  1854. (uuid 914ccec4-572a-4ec0-b281-596368eea274)
  1855. )
  1856. (junction (at 135.89 35.56) (diameter 0) (color 0 0 0 0)
  1857. (uuid 97972d9a-c8ac-431f-b1f4-0da8477b5639)
  1858. )
  1859. (junction (at 273.05 36.83) (diameter 0) (color 0 0 0 0)
  1860. (uuid 9b774066-2c22-4032-af01-4291adb02340)
  1861. )
  1862. (junction (at 204.47 57.15) (diameter 0) (color 0 0 0 0)
  1863. (uuid 9cab0c4e-2726-433f-a46f-c25156ae2489)
  1864. )
  1865. (junction (at 40.64 35.56) (diameter 0) (color 0 0 0 0)
  1866. (uuid 9cd1ba63-2087-4000-a5a9-797dad78d993)
  1867. )
  1868. (junction (at 234.95 57.15) (diameter 0) (color 0 0 0 0)
  1869. (uuid 9f5c7a80-7220-432e-865b-d1468e8a8d4c)
  1870. )
  1871. (junction (at 278.13 121.92) (diameter 0) (color 0 0 0 0)
  1872. (uuid a17368fb-646b-4ffd-9057-0994609f8a46)
  1873. )
  1874. (junction (at 21.59 25.4) (diameter 0) (color 0 0 0 0)
  1875. (uuid a3eaa329-1c23-49fc-9fb5-976de81b788e)
  1876. )
  1877. (junction (at 278.13 137.16) (diameter 0) (color 0 0 0 0)
  1878. (uuid a6d88d7d-92d8-4fc8-b103-7599e55f18c0)
  1879. )
  1880. (junction (at 29.21 45.72) (diameter 0) (color 0 0 0 0)
  1881. (uuid b034f82f-3ce9-4423-89ad-7ecf03d348d0)
  1882. )
  1883. (junction (at 53.34 100.33) (diameter 0) (color 0 0 0 0)
  1884. (uuid b42a4498-7f71-4787-a0f1-b44423616ac9)
  1885. )
  1886. (junction (at 278.13 127) (diameter 0) (color 0 0 0 0)
  1887. (uuid b7013b78-ce5a-47df-9e6f-e993b6073985)
  1888. )
  1889. (junction (at 53.34 45.72) (diameter 0) (color 0 0 0 0)
  1890. (uuid b9272e8b-2d00-4d6b-ae8c-fd62ef331586)
  1891. )
  1892. (junction (at 110.49 100.33) (diameter 0) (color 0 0 0 0)
  1893. (uuid bb7f3caf-4343-4dcb-b7b2-5479c850c4a2)
  1894. )
  1895. (junction (at 278.13 124.46) (diameter 0) (color 0 0 0 0)
  1896. (uuid c78d97f4-1d1b-46c3-bcbb-8424944a8978)
  1897. )
  1898. (junction (at 40.64 25.4) (diameter 0) (color 0 0 0 0)
  1899. (uuid c837798c-83c8-4e02-b288-fa03714cab74)
  1900. )
  1901. (junction (at 135.89 100.33) (diameter 0) (color 0 0 0 0)
  1902. (uuid c9863f4f-bdf5-49f4-b18e-dce622ff9931)
  1903. )
  1904. (junction (at 223.52 73.66) (diameter 0) (color 0 0 0 0)
  1905. (uuid cec22d4a-eda3-4d50-8609-c3a123c120be)
  1906. )
  1907. (junction (at 223.52 119.38) (diameter 0) (color 0 0 0 0)
  1908. (uuid cf06bbbc-3fa0-42b7-9a99-642ec3689891)
  1909. )
  1910. (junction (at 193.04 57.15) (diameter 0) (color 0 0 0 0)
  1911. (uuid d316b729-072f-4d15-a495-cbeb8407aea0)
  1912. )
  1913. (junction (at 223.52 76.2) (diameter 0) (color 0 0 0 0)
  1914. (uuid da7eee34-4516-4154-9034-7c9b8e2afe41)
  1915. )
  1916. (junction (at 273.05 26.67) (diameter 0) (color 0 0 0 0)
  1917. (uuid ddfa4cf0-3486-4284-897b-3a9e51f271d9)
  1918. )
  1919. (junction (at 95.25 49.53) (diameter 0) (color 0 0 0 0)
  1920. (uuid e02b47af-92a8-4b6e-841f-f88d0fa73eb7)
  1921. )
  1922. (junction (at 278.13 129.54) (diameter 0) (color 0 0 0 0)
  1923. (uuid e0660a46-ff2a-4b28-b311-cf71bc999b82)
  1924. )
  1925. (junction (at 110.49 27.94) (diameter 0) (color 0 0 0 0)
  1926. (uuid e208ea3a-d990-4992-b395-c95b18b77f83)
  1927. )
  1928. (junction (at 182.88 57.15) (diameter 0) (color 0 0 0 0)
  1929. (uuid e73ef891-c9f9-42ab-894b-b2580ee0b0a1)
  1930. )
  1931. (junction (at 76.2 143.256) (diameter 0) (color 0 0 0 0)
  1932. (uuid eb43ca25-4d68-40a4-98c7-2e1932cda240)
  1933. )
  1934. (junction (at 40.64 100.33) (diameter 0) (color 0 0 0 0)
  1935. (uuid f0e6fae4-0008-43ed-8719-bf62839f601f)
  1936. )
  1937. (junction (at 110.49 45.72) (diameter 0) (color 0 0 0 0)
  1938. (uuid f3642676-ce32-431a-adfa-a8e750bc449d)
  1939. )
  1940. (junction (at 278.13 134.62) (diameter 0) (color 0 0 0 0)
  1941. (uuid f5a54919-b960-48fc-8517-e9e32dce0bf0)
  1942. )
  1943. (junction (at 223.52 104.14) (diameter 0) (color 0 0 0 0)
  1944. (uuid f83c7689-506f-4228-94dd-e1c4dd714e67)
  1945. )
  1946. (junction (at 135.89 90.17) (diameter 0) (color 0 0 0 0)
  1947. (uuid f89b1d5e-28c8-498c-b199-7acbd8607540)
  1948. )
  1949. (junction (at 135.89 45.72) (diameter 0) (color 0 0 0 0)
  1950. (uuid f9c966ae-23e4-43cd-95e1-ebb675260935)
  1951. )
  1952. (junction (at 74.93 100.33) (diameter 0) (color 0 0 0 0)
  1953. (uuid fda94f0a-876e-4bf0-ad10-35819851e3e9)
  1954. )
  1955. (junction (at 223.52 88.9) (diameter 0) (color 0 0 0 0)
  1956. (uuid fdd41a68-206a-4076-b64a-8b7633d428d6)
  1957. )
  1958. (junction (at 278.13 142.24) (diameter 0) (color 0 0 0 0)
  1959. (uuid fe2b05f5-675b-44d0-956c-c5829b7c692a)
  1960. )
  1961. (wire (pts (xy 21.59 25.4) (xy 29.21 25.4))
  1962. (stroke (width 0) (type default) (color 0 0 0 0))
  1963. (uuid 00185541-0a55-4e62-91d8-99e7a7720d36)
  1964. )
  1965. (wire (pts (xy 255.27 57.15) (xy 265.43 57.15))
  1966. (stroke (width 0) (type default) (color 0 0 0 0))
  1967. (uuid 00627221-b0fd-448e-b5a6-250d249697c2)
  1968. )
  1969. (wire (pts (xy 67.437 149.479) (xy 67.437 150.749))
  1970. (stroke (width 0) (type default) (color 0 0 0 0))
  1971. (uuid 00cfadd5-9667-4db6-b4bc-212d70222d0d)
  1972. )
  1973. (wire (pts (xy 205.74 137.16) (xy 205.74 135.89))
  1974. (stroke (width 0) (type default) (color 0 0 0 0))
  1975. (uuid 01caafb3-af8a-4642-870c-c290b286d040)
  1976. )
  1977. (wire (pts (xy 212.09 127) (xy 215.9 127))
  1978. (stroke (width 0) (type default) (color 0 0 0 0))
  1979. (uuid 037a257a-ceb2-409c-ab24-48a743172dae)
  1980. )
  1981. (wire (pts (xy 74.93 100.33) (xy 110.49 100.33))
  1982. (stroke (width 0) (type default) (color 0 0 0 0))
  1983. (uuid 059f4155-bed3-4fb2-9baa-d569f31b7e5d)
  1984. )
  1985. (wire (pts (xy 223.52 76.2) (xy 223.52 78.74))
  1986. (stroke (width 0) (type default) (color 0 0 0 0))
  1987. (uuid 05c4a04b-0442-4e18-9747-3d9fc4a562fe)
  1988. )
  1989. (wire (pts (xy 198.12 111.76) (xy 198.12 113.03))
  1990. (stroke (width 0) (type default) (color 0 0 0 0))
  1991. (uuid 077985bd-c8a6-43b8-af30-1141a8334306)
  1992. )
  1993. (wire (pts (xy 90.17 35.56) (xy 135.89 35.56))
  1994. (stroke (width 0) (type default) (color 0 0 0 0))
  1995. (uuid 09433d97-62ec-42de-89f2-7d0b68dc1b9d)
  1996. )
  1997. (wire (pts (xy 40.64 90.17) (xy 64.77 90.17))
  1998. (stroke (width 0) (type default) (color 0 0 0 0))
  1999. (uuid 0a52fedd-967a-423d-aaaf-3875f20f935b)
  2000. )
  2001. (wire (pts (xy 224.79 45.72) (xy 234.95 45.72))
  2002. (stroke (width 0) (type default) (color 0 0 0 0))
  2003. (uuid 0ba3fcf8-07bd-443d-be28-f69a4ad80df4)
  2004. )
  2005. (wire (pts (xy 226.06 101.6) (xy 223.52 101.6))
  2006. (stroke (width 0) (type default) (color 0 0 0 0))
  2007. (uuid 0c345fc5-964b-48c0-9452-55507c868edc)
  2008. )
  2009. (wire (pts (xy 214.63 57.15) (xy 224.79 57.15))
  2010. (stroke (width 0) (type default) (color 0 0 0 0))
  2011. (uuid 0d7333ca-0587-43cb-9af7-f59016c85820)
  2012. )
  2013. (wire (pts (xy 21.59 80.01) (xy 29.21 80.01))
  2014. (stroke (width 0) (type default) (color 0 0 0 0))
  2015. (uuid 0dcb5ab5-f291-489d-b2bc-0f0b25b801ee)
  2016. )
  2017. (wire (pts (xy 135.89 35.56) (xy 135.89 34.29))
  2018. (stroke (width 0) (type default) (color 0 0 0 0))
  2019. (uuid 0e11718f-21aa-474d-9bf4-88d875870740)
  2020. )
  2021. (wire (pts (xy 110.49 27.94) (xy 118.11 27.94))
  2022. (stroke (width 0) (type default) (color 0 0 0 0))
  2023. (uuid 0e852933-f119-4b7f-a503-b829e02656a9)
  2024. )
  2025. (wire (pts (xy 217.17 132.08) (xy 217.17 133.35))
  2026. (stroke (width 0) (type default) (color 0 0 0 0))
  2027. (uuid 0f6b89db-12ed-4dac-b3ce-819a49798117)
  2028. )
  2029. (wire (pts (xy 95.25 49.53) (xy 105.41 49.53))
  2030. (stroke (width 0) (type default) (color 0 0 0 0))
  2031. (uuid 10df6e07-cc84-4b25-a71b-19a35b4b40da)
  2032. )
  2033. (wire (pts (xy 21.59 77.47) (xy 21.59 80.01))
  2034. (stroke (width 0) (type default) (color 0 0 0 0))
  2035. (uuid 10e5ae6d-e43e-4ff8-abc5-fd9df16782da)
  2036. )
  2037. (wire (pts (xy 21.59 36.83) (xy 21.59 45.72))
  2038. (stroke (width 0) (type default) (color 0 0 0 0))
  2039. (uuid 128a7556-cb3d-406d-b84d-6d9efc7f9ed8)
  2040. )
  2041. (wire (pts (xy 135.89 90.17) (xy 135.89 88.9))
  2042. (stroke (width 0) (type default) (color 0 0 0 0))
  2043. (uuid 12c9f3e1-9431-42f8-b6f8-fb6fd35fc1cb)
  2044. )
  2045. (wire (pts (xy 271.78 129.54) (xy 278.13 129.54))
  2046. (stroke (width 0) (type default) (color 0 0 0 0))
  2047. (uuid 1354903a-b7d2-4e04-b220-6c6c8f058ef7)
  2048. )
  2049. (wire (pts (xy 29.21 25.4) (xy 40.64 25.4))
  2050. (stroke (width 0) (type default) (color 0 0 0 0))
  2051. (uuid 1416f46f-efcf-4c99-81af-d39cf81f2652)
  2052. )
  2053. (wire (pts (xy 81.28 143.256) (xy 88.392 143.256))
  2054. (stroke (width 0) (type default) (color 0 0 0 0))
  2055. (uuid 15084521-374a-4f95-bc25-4132739c238e)
  2056. )
  2057. (wire (pts (xy 24.13 149.86) (xy 24.13 150.876))
  2058. (stroke (width 0) (type default) (color 0 0 0 0))
  2059. (uuid 173a3cc6-0a20-4747-ba7b-6cf701a04c08)
  2060. )
  2061. (wire (pts (xy 88.392 143.256) (xy 88.392 145.796))
  2062. (stroke (width 0) (type default) (color 0 0 0 0))
  2063. (uuid 177f1d95-3206-4e86-a326-b75c396c89a3)
  2064. )
  2065. (wire (pts (xy 167.64 45.72) (xy 167.64 44.45))
  2066. (stroke (width 0) (type default) (color 0 0 0 0))
  2067. (uuid 198642f2-8db4-475b-ac24-9da65c994a3a)
  2068. )
  2069. (wire (pts (xy 193.04 57.15) (xy 204.47 57.15))
  2070. (stroke (width 0) (type default) (color 0 0 0 0))
  2071. (uuid 1ba3e338-9465-4844-8361-6715d7885c15)
  2072. )
  2073. (wire (pts (xy 223.52 78.74) (xy 223.52 81.28))
  2074. (stroke (width 0) (type default) (color 0 0 0 0))
  2075. (uuid 1c4dfe58-85b1-467f-8e9d-bdb7a0d0ca8e)
  2076. )
  2077. (wire (pts (xy 271.78 127) (xy 278.13 127))
  2078. (stroke (width 0) (type default) (color 0 0 0 0))
  2079. (uuid 1c57f8a5-0a6c-44cd-b514-5b9d5f8cc98b)
  2080. )
  2081. (wire (pts (xy 54.61 173.99) (xy 54.61 170.18))
  2082. (stroke (width 0) (type default) (color 0 0 0 0))
  2083. (uuid 1c6c46b2-dd9e-430f-85e9-621815ceca94)
  2084. )
  2085. (wire (pts (xy 24.13 143.256) (xy 24.13 144.78))
  2086. (stroke (width 0) (type default) (color 0 0 0 0))
  2087. (uuid 1cb2b992-1f62-44c1-ae18-61c4645b7898)
  2088. )
  2089. (wire (pts (xy 199.39 101.6) (xy 199.39 102.87))
  2090. (stroke (width 0) (type default) (color 0 0 0 0))
  2091. (uuid 1cd08355-701e-4fba-886f-d48517dcccf5)
  2092. )
  2093. (wire (pts (xy 204.47 45.72) (xy 214.63 45.72))
  2094. (stroke (width 0) (type default) (color 0 0 0 0))
  2095. (uuid 2056f16f-2d4a-4f35-8a56-49ab69eeef16)
  2096. )
  2097. (wire (pts (xy 214.63 48.26) (xy 214.63 45.72))
  2098. (stroke (width 0) (type default) (color 0 0 0 0))
  2099. (uuid 21c9358c-c2dd-4df5-9cfe-ea9bd0b49374)
  2100. )
  2101. (wire (pts (xy 135.89 45.72) (xy 135.89 43.18))
  2102. (stroke (width 0) (type default) (color 0 0 0 0))
  2103. (uuid 22312754-c8c2-4400-b598-394e06b2be81)
  2104. )
  2105. (wire (pts (xy 278.13 142.24) (xy 278.13 146.05))
  2106. (stroke (width 0) (type default) (color 0 0 0 0))
  2107. (uuid 224e8890-cdee-45fd-bd2e-64fe49c2de75)
  2108. )
  2109. (wire (pts (xy 90.17 80.01) (xy 96.52 80.01))
  2110. (stroke (width 0) (type default) (color 0 0 0 0))
  2111. (uuid 2276bf47-b441-4aa2-ba22-8213875ce0ee)
  2112. )
  2113. (wire (pts (xy 76.2 144.526) (xy 76.2 143.256))
  2114. (stroke (width 0) (type default) (color 0 0 0 0))
  2115. (uuid 2471afde-423c-4d7c-b400-51c1e438643f)
  2116. )
  2117. (wire (pts (xy 204.47 57.15) (xy 214.63 57.15))
  2118. (stroke (width 0) (type default) (color 0 0 0 0))
  2119. (uuid 2571f4c8-d7fc-4e8c-94df-f480e56bb717)
  2120. )
  2121. (wire (pts (xy 203.2 119.38) (xy 203.2 120.65))
  2122. (stroke (width 0) (type default) (color 0 0 0 0))
  2123. (uuid 2a507df7-40c5-4523-b0fd-269cea55efb9)
  2124. )
  2125. (wire (pts (xy 90.17 27.94) (xy 105.41 27.94))
  2126. (stroke (width 0) (type default) (color 0 0 0 0))
  2127. (uuid 2aabebab-10c6-4637-946b-cda31980f550)
  2128. )
  2129. (wire (pts (xy 101.6 80.01) (xy 105.41 80.01))
  2130. (stroke (width 0) (type default) (color 0 0 0 0))
  2131. (uuid 2af1d271-3c6a-476d-8eba-6b2aab466da3)
  2132. )
  2133. (wire (pts (xy 223.52 86.36) (xy 226.06 86.36))
  2134. (stroke (width 0) (type default) (color 0 0 0 0))
  2135. (uuid 2b1a1d99-4ea2-4cae-846a-5609aadc4265)
  2136. )
  2137. (wire (pts (xy 278.13 132.08) (xy 278.13 134.62))
  2138. (stroke (width 0) (type default) (color 0 0 0 0))
  2139. (uuid 2b878984-ad62-40d5-87be-d30f465ae2b3)
  2140. )
  2141. (wire (pts (xy 40.64 45.72) (xy 40.64 43.18))
  2142. (stroke (width 0) (type default) (color 0 0 0 0))
  2143. (uuid 2c3d5c2f-c119-4276-9b7e-33808f1d9396)
  2144. )
  2145. (wire (pts (xy 147.32 45.72) (xy 147.32 38.1))
  2146. (stroke (width 0) (type default) (color 0 0 0 0))
  2147. (uuid 2d4ba971-ddd9-4f08-ae0a-4bc49faa5143)
  2148. )
  2149. (wire (pts (xy 224.79 57.15) (xy 234.95 57.15))
  2150. (stroke (width 0) (type default) (color 0 0 0 0))
  2151. (uuid 2f122013-8dbc-4371-941a-b52e2115db20)
  2152. )
  2153. (wire (pts (xy 214.63 45.72) (xy 224.79 45.72))
  2154. (stroke (width 0) (type default) (color 0 0 0 0))
  2155. (uuid 2f8ebbbf-0f11-4a15-9648-1d28e5593127)
  2156. )
  2157. (wire (pts (xy 21.59 80.01) (xy 21.59 86.36))
  2158. (stroke (width 0) (type default) (color 0 0 0 0))
  2159. (uuid 30b75c25-1d2c-45e7-83e2-bb3be98f8f83)
  2160. )
  2161. (wire (pts (xy 245.11 45.72) (xy 255.27 45.72))
  2162. (stroke (width 0) (type default) (color 0 0 0 0))
  2163. (uuid 31b8e579-7afa-4dee-9f20-b2fefaae3c16)
  2164. )
  2165. (wire (pts (xy 271.78 121.92) (xy 278.13 121.92))
  2166. (stroke (width 0) (type default) (color 0 0 0 0))
  2167. (uuid 335263d3-7e35-4a9c-83c2-cd71d45f0688)
  2168. )
  2169. (wire (pts (xy 88.392 161.036) (xy 88.392 159.766))
  2170. (stroke (width 0) (type default) (color 0 0 0 0))
  2171. (uuid 3361482c-ca19-4873-b4a9-88f85f1328a1)
  2172. )
  2173. (wire (pts (xy 147.32 82.55) (xy 147.32 87.63))
  2174. (stroke (width 0) (type default) (color 0 0 0 0))
  2175. (uuid 338b7824-6fa7-42ef-b79a-c6dc90689f4e)
  2176. )
  2177. (wire (pts (xy 271.78 124.46) (xy 278.13 124.46))
  2178. (stroke (width 0) (type default) (color 0 0 0 0))
  2179. (uuid 33b48673-c959-4510-b6fa-fd3f7bdb00fd)
  2180. )
  2181. (wire (pts (xy 182.88 53.34) (xy 182.88 57.15))
  2182. (stroke (width 0) (type default) (color 0 0 0 0))
  2183. (uuid 33e40dd5-556d-4de0-ab08-235c61b7ba9f)
  2184. )
  2185. (wire (pts (xy 147.32 27.94) (xy 167.64 27.94))
  2186. (stroke (width 0) (type default) (color 0 0 0 0))
  2187. (uuid 33ef82c8-b659-42b6-9429-5436a00e7b54)
  2188. )
  2189. (wire (pts (xy 57.15 181.61) (xy 57.15 177.8))
  2190. (stroke (width 0) (type default) (color 0 0 0 0))
  2191. (uuid 3520b9bf-2dfc-4868-a650-86ff98682e83)
  2192. )
  2193. (wire (pts (xy 262.89 35.56) (xy 262.89 36.83))
  2194. (stroke (width 0) (type default) (color 0 0 0 0))
  2195. (uuid 3581de8b-daeb-467a-8039-51714599e4ba)
  2196. )
  2197. (wire (pts (xy 40.64 100.33) (xy 40.64 97.79))
  2198. (stroke (width 0) (type default) (color 0 0 0 0))
  2199. (uuid 373b5b59-9fbb-41a2-845d-56a1ed5a82dd)
  2200. )
  2201. (wire (pts (xy 74.93 40.64) (xy 74.93 45.72))
  2202. (stroke (width 0) (type default) (color 0 0 0 0))
  2203. (uuid 38c40dcc-c1da-4f6f-a147-01497313c7b0)
  2204. )
  2205. (wire (pts (xy 182.88 44.45) (xy 182.88 45.72))
  2206. (stroke (width 0) (type default) (color 0 0 0 0))
  2207. (uuid 3a274653-eff3-4ffe-9be8-2bfd0950af0a)
  2208. )
  2209. (wire (pts (xy 182.88 57.15) (xy 193.04 57.15))
  2210. (stroke (width 0) (type default) (color 0 0 0 0))
  2211. (uuid 3a568413-17bd-4a87-b1ac-928e77fa1b6a)
  2212. )
  2213. (wire (pts (xy 135.89 35.56) (xy 135.89 38.1))
  2214. (stroke (width 0) (type default) (color 0 0 0 0))
  2215. (uuid 3afae848-3ba1-40f3-a73d-cfa98c2ff8b2)
  2216. )
  2217. (wire (pts (xy 135.89 45.72) (xy 147.32 45.72))
  2218. (stroke (width 0) (type default) (color 0 0 0 0))
  2219. (uuid 3b199d04-ad2b-4bc0-b66c-8629e7796fdd)
  2220. )
  2221. (wire (pts (xy 234.95 48.26) (xy 234.95 45.72))
  2222. (stroke (width 0) (type default) (color 0 0 0 0))
  2223. (uuid 3ba59656-e36e-4caa-8957-90ed8686b3d3)
  2224. )
  2225. (wire (pts (xy 223.52 86.36) (xy 223.52 88.9))
  2226. (stroke (width 0) (type default) (color 0 0 0 0))
  2227. (uuid 3bc24d10-b3eb-4abe-836d-a8521ccc4341)
  2228. )
  2229. (wire (pts (xy 199.39 96.52) (xy 199.39 93.98))
  2230. (stroke (width 0) (type default) (color 0 0 0 0))
  2231. (uuid 3c3e78d8-62d7-4020-ae7c-c489234b27d5)
  2232. )
  2233. (wire (pts (xy 223.52 83.82) (xy 226.06 83.82))
  2234. (stroke (width 0) (type default) (color 0 0 0 0))
  2235. (uuid 3cf0233f-86e3-4b85-ad75-fb8a46f37498)
  2236. )
  2237. (wire (pts (xy 135.89 82.55) (xy 147.32 82.55))
  2238. (stroke (width 0) (type default) (color 0 0 0 0))
  2239. (uuid 3d0a8609-a059-4734-b988-da00f509164d)
  2240. )
  2241. (wire (pts (xy 105.41 25.4) (xy 105.41 27.94))
  2242. (stroke (width 0) (type default) (color 0 0 0 0))
  2243. (uuid 3eee2221-7af9-4d6a-ba79-a48c3fd1ac35)
  2244. )
  2245. (wire (pts (xy 53.34 92.71) (xy 53.34 87.63))
  2246. (stroke (width 0) (type default) (color 0 0 0 0))
  2247. (uuid 3f0c3fb9-57f0-4439-b2df-3c934842d7db)
  2248. )
  2249. (wire (pts (xy 135.89 100.33) (xy 135.89 102.87))
  2250. (stroke (width 0) (type default) (color 0 0 0 0))
  2251. (uuid 407d0cd8-54f8-47a8-90cb-42c8a441d04f)
  2252. )
  2253. (wire (pts (xy 40.64 35.56) (xy 40.64 38.1))
  2254. (stroke (width 0) (type default) (color 0 0 0 0))
  2255. (uuid 41e442c4-3daa-4776-bd79-7990c939b354)
  2256. )
  2257. (wire (pts (xy 76.2 149.606) (xy 76.2 150.876))
  2258. (stroke (width 0) (type default) (color 0 0 0 0))
  2259. (uuid 4275c2b3-59e7-409d-ae75-26ae06cb35e2)
  2260. )
  2261. (wire (pts (xy 90.17 33.02) (xy 95.25 33.02))
  2262. (stroke (width 0) (type default) (color 0 0 0 0))
  2263. (uuid 42795956-f125-4166-860d-4316fe3791b8)
  2264. )
  2265. (wire (pts (xy 147.32 100.33) (xy 147.32 92.71))
  2266. (stroke (width 0) (type default) (color 0 0 0 0))
  2267. (uuid 45fc93ca-f8ba-48a8-9189-1c9886475cd3)
  2268. )
  2269. (wire (pts (xy 271.78 142.24) (xy 278.13 142.24))
  2270. (stroke (width 0) (type default) (color 0 0 0 0))
  2271. (uuid 4612f9f0-1343-4ba7-94dd-7d3e9fc08dad)
  2272. )
  2273. (wire (pts (xy 40.64 35.56) (xy 40.64 34.29))
  2274. (stroke (width 0) (type default) (color 0 0 0 0))
  2275. (uuid 46255620-16a2-4e81-9e4a-58dddcf89388)
  2276. )
  2277. (wire (pts (xy 245.11 57.15) (xy 255.27 57.15))
  2278. (stroke (width 0) (type default) (color 0 0 0 0))
  2279. (uuid 47890384-6eaa-420c-b9ae-e68a6a7f17b5)
  2280. )
  2281. (wire (pts (xy 278.13 129.54) (xy 278.13 132.08))
  2282. (stroke (width 0) (type default) (color 0 0 0 0))
  2283. (uuid 4a56ac62-5ec2-46fc-a86c-9adf2d8fead1)
  2284. )
  2285. (wire (pts (xy 278.13 139.7) (xy 278.13 142.24))
  2286. (stroke (width 0) (type default) (color 0 0 0 0))
  2287. (uuid 4b3cefd2-e7d7-4d25-8bb9-37548c3e8b03)
  2288. )
  2289. (wire (pts (xy 95.25 68.58) (xy 95.25 69.85))
  2290. (stroke (width 0) (type default) (color 0 0 0 0))
  2291. (uuid 4c77837f-2440-4b7b-8e7e-430f981c7c04)
  2292. )
  2293. (wire (pts (xy 40.64 90.17) (xy 40.64 88.9))
  2294. (stroke (width 0) (type default) (color 0 0 0 0))
  2295. (uuid 4de018aa-33f9-4679-9406-fafd70ff0142)
  2296. )
  2297. (wire (pts (xy 46.99 150.876) (xy 46.99 152.146))
  2298. (stroke (width 0) (type default) (color 0 0 0 0))
  2299. (uuid 4f31acca-384a-4c19-b00c-be85acf73c40)
  2300. )
  2301. (wire (pts (xy 212.09 101.6) (xy 223.52 101.6))
  2302. (stroke (width 0) (type default) (color 0 0 0 0))
  2303. (uuid 4ff71e44-dddb-450e-9f6f-fe3947968fd4)
  2304. )
  2305. (wire (pts (xy 29.21 100.33) (xy 29.21 91.44))
  2306. (stroke (width 0) (type default) (color 0 0 0 0))
  2307. (uuid 504cb9e4-5572-4208-bc9d-30a7efff8b9a)
  2308. )
  2309. (wire (pts (xy 220.98 142.24) (xy 223.52 142.24))
  2310. (stroke (width 0) (type default) (color 0 0 0 0))
  2311. (uuid 505c1d3e-8ca5-438e-9eae-18483f12882c)
  2312. )
  2313. (wire (pts (xy 46.99 181.61) (xy 57.15 181.61))
  2314. (stroke (width 0) (type default) (color 0 0 0 0))
  2315. (uuid 506110af-ac51-4501-bfa6-1552a848d599)
  2316. )
  2317. (wire (pts (xy 53.34 45.72) (xy 40.64 45.72))
  2318. (stroke (width 0) (type default) (color 0 0 0 0))
  2319. (uuid 50cd7dd2-4ee6-4ead-a8d7-6798eb55f8db)
  2320. )
  2321. (wire (pts (xy 105.41 104.14) (xy 105.41 111.76))
  2322. (stroke (width 0) (type default) (color 0 0 0 0))
  2323. (uuid 5125c4d9-cf5c-4fe5-9dc8-c939e40fcd6f)
  2324. )
  2325. (wire (pts (xy 110.49 27.94) (xy 110.49 36.83))
  2326. (stroke (width 0) (type default) (color 0 0 0 0))
  2327. (uuid 53548090-4b36-44b5-9ef5-2fa214b2fbf4)
  2328. )
  2329. (wire (pts (xy 110.49 99.06) (xy 110.49 100.33))
  2330. (stroke (width 0) (type default) (color 0 0 0 0))
  2331. (uuid 55b28997-b330-40d1-b32a-125cd071668d)
  2332. )
  2333. (wire (pts (xy 40.64 80.01) (xy 64.77 80.01))
  2334. (stroke (width 0) (type default) (color 0 0 0 0))
  2335. (uuid 5684e95c-6824-46cf-8e72-881178a51d31)
  2336. )
  2337. (wire (pts (xy 220.98 127) (xy 226.06 127))
  2338. (stroke (width 0) (type default) (color 0 0 0 0))
  2339. (uuid 57e17378-f1f7-42d0-9ad3-fb44c2d5cdc3)
  2340. )
  2341. (wire (pts (xy 95.25 104.14) (xy 105.41 104.14))
  2342. (stroke (width 0) (type default) (color 0 0 0 0))
  2343. (uuid 58728297-c362-4c70-a751-4d60ffa81b1a)
  2344. )
  2345. (wire (pts (xy 226.06 119.38) (xy 223.52 119.38))
  2346. (stroke (width 0) (type default) (color 0 0 0 0))
  2347. (uuid 58c4b7f1-3bfe-4269-af43-3ce726a108d9)
  2348. )
  2349. (wire (pts (xy 223.52 83.82) (xy 223.52 86.36))
  2350. (stroke (width 0) (type default) (color 0 0 0 0))
  2351. (uuid 594594ee-9de8-45bc-b621-a9251877b0c2)
  2352. )
  2353. (wire (pts (xy 110.49 82.55) (xy 110.49 91.44))
  2354. (stroke (width 0) (type default) (color 0 0 0 0))
  2355. (uuid 5aa1c642-a9f0-4211-8572-3a7e8453422e)
  2356. )
  2357. (wire (pts (xy 125.73 82.55) (xy 135.89 82.55))
  2358. (stroke (width 0) (type default) (color 0 0 0 0))
  2359. (uuid 5c9202d7-6a93-43b3-87c0-77347fd72885)
  2360. )
  2361. (wire (pts (xy 21.59 91.44) (xy 21.59 100.33))
  2362. (stroke (width 0) (type default) (color 0 0 0 0))
  2363. (uuid 5daf2c3c-7702-4a59-b99d-84464c054bc4)
  2364. )
  2365. (wire (pts (xy 149.86 179.07) (xy 152.4 179.07))
  2366. (stroke (width 0) (type default) (color 0 0 0 0))
  2367. (uuid 5ecea6c7-cbcd-4340-9db8-55b54a886e1e)
  2368. )
  2369. (wire (pts (xy 213.36 99.06) (xy 226.06 99.06))
  2370. (stroke (width 0) (type default) (color 0 0 0 0))
  2371. (uuid 5ed637ac-40ac-434c-a406-609e25d3658d)
  2372. )
  2373. (wire (pts (xy 40.64 45.72) (xy 29.21 45.72))
  2374. (stroke (width 0) (type default) (color 0 0 0 0))
  2375. (uuid 5f4676ff-2597-415d-a32e-98d53038f432)
  2376. )
  2377. (wire (pts (xy 167.64 82.55) (xy 167.64 85.09))
  2378. (stroke (width 0) (type default) (color 0 0 0 0))
  2379. (uuid 60ca4740-3009-4486-93d6-c2502818122b)
  2380. )
  2381. (wire (pts (xy 95.25 104.14) (xy 95.25 105.41))
  2382. (stroke (width 0) (type default) (color 0 0 0 0))
  2383. (uuid 60fc0348-15d2-462c-9b87-dbb507b8717b)
  2384. )
  2385. (wire (pts (xy 167.64 35.56) (xy 167.64 36.83))
  2386. (stroke (width 0) (type default) (color 0 0 0 0))
  2387. (uuid 61415144-ce8f-483a-82b7-e2e320f7f0b4)
  2388. )
  2389. (wire (pts (xy 234.95 53.34) (xy 234.95 57.15))
  2390. (stroke (width 0) (type default) (color 0 0 0 0))
  2391. (uuid 62c6f8ce-78e5-4ab3-bb01-2fcb0df87aa6)
  2392. )
  2393. (wire (pts (xy 67.437 143.256) (xy 76.2 143.256))
  2394. (stroke (width 0) (type default) (color 0 0 0 0))
  2395. (uuid 6301f184-dc0e-47d1-a158-5fdcab3140e4)
  2396. )
  2397. (wire (pts (xy 223.52 91.44) (xy 223.52 93.98))
  2398. (stroke (width 0) (type default) (color 0 0 0 0))
  2399. (uuid 6476e233-d260-45fe-84d2-9ade7d0003a0)
  2400. )
  2401. (wire (pts (xy 191.77 27.94) (xy 195.58 27.94))
  2402. (stroke (width 0) (type default) (color 0 0 0 0))
  2403. (uuid 6505825f-43ee-4fb8-b546-c0b2310ed040)
  2404. )
  2405. (wire (pts (xy 95.25 49.53) (xy 95.25 50.8))
  2406. (stroke (width 0) (type default) (color 0 0 0 0))
  2407. (uuid 65908b01-f0a0-46e1-84f2-bf49d46af2a7)
  2408. )
  2409. (wire (pts (xy 223.52 76.2) (xy 226.06 76.2))
  2410. (stroke (width 0) (type default) (color 0 0 0 0))
  2411. (uuid 6a5b3eea-de35-4a54-8316-e56ea2a634e4)
  2412. )
  2413. (wire (pts (xy 50.8 176.53) (xy 50.8 179.07))
  2414. (stroke (width 0) (type default) (color 0 0 0 0))
  2415. (uuid 6e23d37a-3804-4cb0-9f56-ede150eedda5)
  2416. )
  2417. (wire (pts (xy 135.89 100.33) (xy 135.89 97.79))
  2418. (stroke (width 0) (type default) (color 0 0 0 0))
  2419. (uuid 6fb8126a-bcf3-40a3-924c-e2fbe8dba36a)
  2420. )
  2421. (wire (pts (xy 40.64 100.33) (xy 29.21 100.33))
  2422. (stroke (width 0) (type default) (color 0 0 0 0))
  2423. (uuid 72e9c34a-4fbc-4581-8ad2-e93bc3c3ccb0)
  2424. )
  2425. (wire (pts (xy 46.99 179.07) (xy 50.8 179.07))
  2426. (stroke (width 0) (type default) (color 0 0 0 0))
  2427. (uuid 730780c7-40bd-484b-b640-ae047209b478)
  2428. )
  2429. (wire (pts (xy 76.2 143.256) (xy 81.28 143.256))
  2430. (stroke (width 0) (type default) (color 0 0 0 0))
  2431. (uuid 731aea1e-3e92-458c-8eee-7dde79352436)
  2432. )
  2433. (wire (pts (xy 226.06 137.16) (xy 205.74 137.16))
  2434. (stroke (width 0) (type default) (color 0 0 0 0))
  2435. (uuid 74d2d2c1-d0d5-412f-ab06-bb67df0a3900)
  2436. )
  2437. (wire (pts (xy 40.64 25.4) (xy 64.77 25.4))
  2438. (stroke (width 0) (type default) (color 0 0 0 0))
  2439. (uuid 755d3d18-6013-47c4-9133-c783ae2db259)
  2440. )
  2441. (wire (pts (xy 208.28 101.6) (xy 208.28 102.87))
  2442. (stroke (width 0) (type default) (color 0 0 0 0))
  2443. (uuid 75f982a1-6ab8-4209-a4a8-58e41c3ce9c1)
  2444. )
  2445. (wire (pts (xy 223.52 81.28) (xy 223.52 83.82))
  2446. (stroke (width 0) (type default) (color 0 0 0 0))
  2447. (uuid 77121855-7958-40c5-81ca-b386a811e84c)
  2448. )
  2449. (wire (pts (xy 271.78 137.16) (xy 278.13 137.16))
  2450. (stroke (width 0) (type default) (color 0 0 0 0))
  2451. (uuid 773bdc81-beec-4a4b-9485-1c1dd15c6e5a)
  2452. )
  2453. (wire (pts (xy 271.78 132.08) (xy 278.13 132.08))
  2454. (stroke (width 0) (type default) (color 0 0 0 0))
  2455. (uuid 78d3a4a0-e724-44e1-963f-de88a39d4158)
  2456. )
  2457. (wire (pts (xy 223.52 78.74) (xy 226.06 78.74))
  2458. (stroke (width 0) (type default) (color 0 0 0 0))
  2459. (uuid 7a332b0c-4cba-438b-85c1-9efe2690fb62)
  2460. )
  2461. (wire (pts (xy 198.12 106.68) (xy 226.06 106.68))
  2462. (stroke (width 0) (type default) (color 0 0 0 0))
  2463. (uuid 7a4a5c0e-c639-4f33-aa7f-cf5502abd572)
  2464. )
  2465. (wire (pts (xy 273.05 26.67) (xy 273.05 30.48))
  2466. (stroke (width 0) (type default) (color 0 0 0 0))
  2467. (uuid 7b1f2f40-abe7-4adb-bfe4-3f1a7f99a0f2)
  2468. )
  2469. (wire (pts (xy 95.25 87.63) (xy 95.25 104.14))
  2470. (stroke (width 0) (type default) (color 0 0 0 0))
  2471. (uuid 7b58219a-a31d-4ba4-804a-77c6d706d8bc)
  2472. )
  2473. (wire (pts (xy 105.41 27.94) (xy 110.49 27.94))
  2474. (stroke (width 0) (type default) (color 0 0 0 0))
  2475. (uuid 7b694997-43fc-41fd-818b-681c539b1571)
  2476. )
  2477. (wire (pts (xy 262.89 26.67) (xy 273.05 26.67))
  2478. (stroke (width 0) (type default) (color 0 0 0 0))
  2479. (uuid 7bc13ee4-2194-461b-9242-0d96ebba241b)
  2480. )
  2481. (wire (pts (xy 234.95 45.72) (xy 245.11 45.72))
  2482. (stroke (width 0) (type default) (color 0 0 0 0))
  2483. (uuid 7c1dbd41-291a-4aad-bf3b-16497f84df7b)
  2484. )
  2485. (wire (pts (xy 226.06 132.08) (xy 217.17 132.08))
  2486. (stroke (width 0) (type default) (color 0 0 0 0))
  2487. (uuid 7d283b62-f314-41a0-b56b-d307f2ebfa85)
  2488. )
  2489. (wire (pts (xy 275.59 48.26) (xy 275.59 45.72))
  2490. (stroke (width 0) (type default) (color 0 0 0 0))
  2491. (uuid 7e509ce7-bdc7-45fb-b2d0-c14a958a5480)
  2492. )
  2493. (wire (pts (xy 182.88 45.72) (xy 182.88 48.26))
  2494. (stroke (width 0) (type default) (color 0 0 0 0))
  2495. (uuid 810d1828-323c-409a-960d-456fda8be10a)
  2496. )
  2497. (wire (pts (xy 234.95 57.15) (xy 245.11 57.15))
  2498. (stroke (width 0) (type default) (color 0 0 0 0))
  2499. (uuid 825ca21e-b6a1-4e84-a612-f8e2fae8ac04)
  2500. )
  2501. (wire (pts (xy 265.43 48.26) (xy 265.43 45.72))
  2502. (stroke (width 0) (type default) (color 0 0 0 0))
  2503. (uuid 82782dc2-cb84-4d0c-b85e-b3903aca1e13)
  2504. )
  2505. (wire (pts (xy 193.04 45.72) (xy 193.04 48.26))
  2506. (stroke (width 0) (type default) (color 0 0 0 0))
  2507. (uuid 82941cb3-7e8d-4836-8b43-647cd4390ab6)
  2508. )
  2509. (wire (pts (xy 40.64 25.4) (xy 40.64 29.21))
  2510. (stroke (width 0) (type default) (color 0 0 0 0))
  2511. (uuid 83250ce3-cee5-48b2-8a3e-b1e7887d6a15)
  2512. )
  2513. (wire (pts (xy 278.13 119.38) (xy 278.13 121.92))
  2514. (stroke (width 0) (type default) (color 0 0 0 0))
  2515. (uuid 84315919-677c-4909-a747-2c92c96d5870)
  2516. )
  2517. (wire (pts (xy 212.09 119.38) (xy 212.09 120.65))
  2518. (stroke (width 0) (type default) (color 0 0 0 0))
  2519. (uuid 845f389f-ac5c-4af4-aa4f-3b1355707a5f)
  2520. )
  2521. (wire (pts (xy 255.27 53.34) (xy 255.27 57.15))
  2522. (stroke (width 0) (type default) (color 0 0 0 0))
  2523. (uuid 858b182d-fdce-45a6-8c3a-626e9f7a9971)
  2524. )
  2525. (wire (pts (xy 188.468 106.68) (xy 198.12 106.68))
  2526. (stroke (width 0) (type default) (color 0 0 0 0))
  2527. (uuid 8638e09e-f91e-4f44-bf6f-6106c18719d7)
  2528. )
  2529. (wire (pts (xy 21.59 45.72) (xy 29.21 45.72))
  2530. (stroke (width 0) (type default) (color 0 0 0 0))
  2531. (uuid 86c73e16-9c05-4385-b59b-206056f7ac90)
  2532. )
  2533. (wire (pts (xy 223.52 101.6) (xy 223.52 96.52))
  2534. (stroke (width 0) (type default) (color 0 0 0 0))
  2535. (uuid 87bdd00e-f10c-4d37-9a6b-480b5e87ca33)
  2536. )
  2537. (wire (pts (xy 58.42 144.526) (xy 58.42 143.256))
  2538. (stroke (width 0) (type default) (color 0 0 0 0))
  2539. (uuid 88476b21-b2be-4405-acd2-064389eadaca)
  2540. )
  2541. (wire (pts (xy 105.41 82.55) (xy 110.49 82.55))
  2542. (stroke (width 0) (type default) (color 0 0 0 0))
  2543. (uuid 88fb8817-4ee2-4465-a9af-37fedc8b835b)
  2544. )
  2545. (wire (pts (xy 95.25 55.88) (xy 95.25 59.69))
  2546. (stroke (width 0) (type default) (color 0 0 0 0))
  2547. (uuid 899d6960-0494-4e8f-9091-802503c02d1b)
  2548. )
  2549. (wire (pts (xy 67.437 143.256) (xy 67.437 144.399))
  2550. (stroke (width 0) (type default) (color 0 0 0 0))
  2551. (uuid 8b637b4b-9239-474d-aac7-dc2e7b545594)
  2552. )
  2553. (wire (pts (xy 36.83 143.256) (xy 39.37 143.256))
  2554. (stroke (width 0) (type default) (color 0 0 0 0))
  2555. (uuid 8dc82d7d-74c3-4db7-a875-ce37bdd8b301)
  2556. )
  2557. (wire (pts (xy 223.52 104.14) (xy 223.52 101.6))
  2558. (stroke (width 0) (type default) (color 0 0 0 0))
  2559. (uuid 8dcf91a3-1716-406f-975d-a5e4d347a64c)
  2560. )
  2561. (wire (pts (xy 278.13 124.46) (xy 278.13 127))
  2562. (stroke (width 0) (type default) (color 0 0 0 0))
  2563. (uuid 8e5a3783-142f-42f6-a215-d0f81a05c5c0)
  2564. )
  2565. (wire (pts (xy 147.32 100.33) (xy 167.64 100.33))
  2566. (stroke (width 0) (type default) (color 0 0 0 0))
  2567. (uuid 8e6e5f4d-6567-459b-ac23-dfc1d101e708)
  2568. )
  2569. (wire (pts (xy 255.27 45.72) (xy 265.43 45.72))
  2570. (stroke (width 0) (type default) (color 0 0 0 0))
  2571. (uuid 8ecc0874-e7f5-4102-a6b7-0222cf1fccc2)
  2572. )
  2573. (wire (pts (xy 223.52 119.38) (xy 223.52 104.14))
  2574. (stroke (width 0) (type default) (color 0 0 0 0))
  2575. (uuid 8f2a6709-854c-4caf-959b-d289d2962128)
  2576. )
  2577. (wire (pts (xy 278.13 137.16) (xy 278.13 139.7))
  2578. (stroke (width 0) (type default) (color 0 0 0 0))
  2579. (uuid 90671817-460f-456a-a6e3-6cfa468bea55)
  2580. )
  2581. (wire (pts (xy 223.52 81.28) (xy 226.06 81.28))
  2582. (stroke (width 0) (type default) (color 0 0 0 0))
  2583. (uuid 90912a07-8f0d-457a-b78a-1c112c8f2052)
  2584. )
  2585. (wire (pts (xy 182.88 45.72) (xy 193.04 45.72))
  2586. (stroke (width 0) (type default) (color 0 0 0 0))
  2587. (uuid 914a2046-646f-4d53-b355-ce2139e25907)
  2588. )
  2589. (wire (pts (xy 152.4 179.07) (xy 152.4 180.34))
  2590. (stroke (width 0) (type default) (color 0 0 0 0))
  2591. (uuid 92ff4797-ba89-46c8-b3a8-8260d960e660)
  2592. )
  2593. (wire (pts (xy 110.49 44.45) (xy 110.49 45.72))
  2594. (stroke (width 0) (type default) (color 0 0 0 0))
  2595. (uuid 937928d4-4dfb-4f2f-91d0-697ec54ac283)
  2596. )
  2597. (wire (pts (xy 95.25 64.77) (xy 95.25 68.58))
  2598. (stroke (width 0) (type default) (color 0 0 0 0))
  2599. (uuid 94a21413-9821-4587-923e-f37548a5150a)
  2600. )
  2601. (wire (pts (xy 193.04 53.34) (xy 193.04 57.15))
  2602. (stroke (width 0) (type default) (color 0 0 0 0))
  2603. (uuid 95aed042-4cef-4360-9184-83bbe2dcfbaa)
  2604. )
  2605. (wire (pts (xy 135.89 27.94) (xy 135.89 29.21))
  2606. (stroke (width 0) (type default) (color 0 0 0 0))
  2607. (uuid 96cc7009-e5c2-4181-9848-d145b9196cc4)
  2608. )
  2609. (wire (pts (xy 213.36 93.98) (xy 213.36 99.06))
  2610. (stroke (width 0) (type default) (color 0 0 0 0))
  2611. (uuid 977371ef-232c-40b3-8805-7fed7909b206)
  2612. )
  2613. (wire (pts (xy 255.27 48.26) (xy 255.27 45.72))
  2614. (stroke (width 0) (type default) (color 0 0 0 0))
  2615. (uuid 978f967d-6cc0-4f07-b852-e2800feefa07)
  2616. )
  2617. (wire (pts (xy 273.05 35.56) (xy 273.05 36.83))
  2618. (stroke (width 0) (type default) (color 0 0 0 0))
  2619. (uuid 9a68bf85-c16f-48ee-8e66-0d9ea8ea8b23)
  2620. )
  2621. (wire (pts (xy 204.47 45.72) (xy 204.47 48.26))
  2622. (stroke (width 0) (type default) (color 0 0 0 0))
  2623. (uuid 9ad8e352-005c-4299-8beb-56f3b58c96b7)
  2624. )
  2625. (wire (pts (xy 74.93 45.72) (xy 110.49 45.72))
  2626. (stroke (width 0) (type default) (color 0 0 0 0))
  2627. (uuid 9b26d003-7efb-405a-8332-1a189f9d4920)
  2628. )
  2629. (wire (pts (xy 46.99 176.53) (xy 50.8 176.53))
  2630. (stroke (width 0) (type default) (color 0 0 0 0))
  2631. (uuid 9c7af13e-949e-4a55-a6b7-45ef51b4f106)
  2632. )
  2633. (wire (pts (xy 199.39 93.98) (xy 213.36 93.98))
  2634. (stroke (width 0) (type default) (color 0 0 0 0))
  2635. (uuid 9caefee8-6dcd-4815-b6e5-c75999fb9c90)
  2636. )
  2637. (wire (pts (xy 167.64 90.17) (xy 167.64 91.44))
  2638. (stroke (width 0) (type default) (color 0 0 0 0))
  2639. (uuid 9cdaf74c-bd9d-4293-9612-c30a4bca9a30)
  2640. )
  2641. (wire (pts (xy 29.21 45.72) (xy 29.21 36.83))
  2642. (stroke (width 0) (type default) (color 0 0 0 0))
  2643. (uuid 9ceeff0a-ae63-43da-8fd2-e3d57063537d)
  2644. )
  2645. (wire (pts (xy 74.93 95.25) (xy 74.93 100.33))
  2646. (stroke (width 0) (type default) (color 0 0 0 0))
  2647. (uuid 9d4bb085-5413-4cad-9765-4f916ffbe612)
  2648. )
  2649. (wire (pts (xy 30.48 143.256) (xy 36.83 143.256))
  2650. (stroke (width 0) (type default) (color 0 0 0 0))
  2651. (uuid 9dea4225-5467-4d2b-8bbf-fbb9f87ecf70)
  2652. )
  2653. (wire (pts (xy 105.41 68.58) (xy 105.41 62.23))
  2654. (stroke (width 0) (type default) (color 0 0 0 0))
  2655. (uuid 9e2ad25e-29e1-4c10-8e33-16d30c4ff9b9)
  2656. )
  2657. (wire (pts (xy 95.25 110.49) (xy 95.25 114.3))
  2658. (stroke (width 0) (type default) (color 0 0 0 0))
  2659. (uuid 9efb25aa-d11e-4d2f-96a9-326a2f75dcc1)
  2660. )
  2661. (wire (pts (xy 135.89 90.17) (xy 135.89 92.71))
  2662. (stroke (width 0) (type default) (color 0 0 0 0))
  2663. (uuid 9fbabfd5-5316-4dcb-8d99-3c53b9c69880)
  2664. )
  2665. (wire (pts (xy 223.52 142.24) (xy 223.52 143.51))
  2666. (stroke (width 0) (type default) (color 0 0 0 0))
  2667. (uuid a0129fe7-e9e9-4c74-af85-e2b335707eb4)
  2668. )
  2669. (wire (pts (xy 53.34 33.02) (xy 64.77 33.02))
  2670. (stroke (width 0) (type default) (color 0 0 0 0))
  2671. (uuid a1441258-3477-4706-8540-9e88ae0dac49)
  2672. )
  2673. (wire (pts (xy 30.48 144.526) (xy 30.48 143.256))
  2674. (stroke (width 0) (type default) (color 0 0 0 0))
  2675. (uuid a158f96a-a5a2-4df9-ba34-f750301a27e3)
  2676. )
  2677. (wire (pts (xy 167.64 82.55) (xy 171.45 82.55))
  2678. (stroke (width 0) (type default) (color 0 0 0 0))
  2679. (uuid a281de60-7af0-498c-be0b-24572e88b490)
  2680. )
  2681. (wire (pts (xy 223.52 93.98) (xy 226.06 93.98))
  2682. (stroke (width 0) (type default) (color 0 0 0 0))
  2683. (uuid a29e1299-22c5-4fd2-9a37-e405785962a9)
  2684. )
  2685. (wire (pts (xy 223.52 88.9) (xy 223.52 91.44))
  2686. (stroke (width 0) (type default) (color 0 0 0 0))
  2687. (uuid a2d090b5-bdc2-4863-87f2-2ea46a246d3d)
  2688. )
  2689. (wire (pts (xy 245.11 53.34) (xy 245.11 57.15))
  2690. (stroke (width 0) (type default) (color 0 0 0 0))
  2691. (uuid a543a4a0-b8e2-45a4-be48-7207020a5b1f)
  2692. )
  2693. (wire (pts (xy 50.8 179.07) (xy 50.8 186.69))
  2694. (stroke (width 0) (type default) (color 0 0 0 0))
  2695. (uuid a56d1fde-b4ad-42de-a848-9c94bc0cbe09)
  2696. )
  2697. (wire (pts (xy 110.49 82.55) (xy 118.11 82.55))
  2698. (stroke (width 0) (type default) (color 0 0 0 0))
  2699. (uuid a5dfaf18-d33f-45c4-b76f-2a5051ec9118)
  2700. )
  2701. (wire (pts (xy 74.93 100.33) (xy 53.34 100.33))
  2702. (stroke (width 0) (type default) (color 0 0 0 0))
  2703. (uuid a6187c22-3622-4a1a-a49a-b21e96986f96)
  2704. )
  2705. (wire (pts (xy 226.06 121.92) (xy 223.52 121.92))
  2706. (stroke (width 0) (type default) (color 0 0 0 0))
  2707. (uuid a8b5a69a-24fc-4f3a-af15-1ced0fb0d73b)
  2708. )
  2709. (wire (pts (xy 223.52 93.98) (xy 223.52 96.52))
  2710. (stroke (width 0) (type default) (color 0 0 0 0))
  2711. (uuid a8cdda0e-7b06-4b92-8078-341b4e32614a)
  2712. )
  2713. (wire (pts (xy 226.06 104.14) (xy 223.52 104.14))
  2714. (stroke (width 0) (type default) (color 0 0 0 0))
  2715. (uuid a8ed9f4d-0385-4ec2-831d-b6c7165c148a)
  2716. )
  2717. (wire (pts (xy 21.59 22.86) (xy 21.59 25.4))
  2718. (stroke (width 0) (type default) (color 0 0 0 0))
  2719. (uuid a9240eb1-cd96-4728-9dbf-17ea5e90b45d)
  2720. )
  2721. (wire (pts (xy 90.17 25.4) (xy 96.52 25.4))
  2722. (stroke (width 0) (type default) (color 0 0 0 0))
  2723. (uuid a97391c0-c438-44dc-aec7-4249e6f62568)
  2724. )
  2725. (wire (pts (xy 147.32 27.94) (xy 147.32 33.02))
  2726. (stroke (width 0) (type default) (color 0 0 0 0))
  2727. (uuid aaa13f87-8acd-40d7-bdde-65d39b0b7892)
  2728. )
  2729. (wire (pts (xy 46.99 173.99) (xy 54.61 173.99))
  2730. (stroke (width 0) (type default) (color 0 0 0 0))
  2731. (uuid ab3e0d45-ad5b-42a1-ab02-8fee32ad804e)
  2732. )
  2733. (wire (pts (xy 81.28 143.256) (xy 81.28 141.986))
  2734. (stroke (width 0) (type default) (color 0 0 0 0))
  2735. (uuid ac0ac6f5-225f-42f3-a5af-be5d61a5c9a1)
  2736. )
  2737. (wire (pts (xy 275.59 53.34) (xy 275.59 57.15))
  2738. (stroke (width 0) (type default) (color 0 0 0 0))
  2739. (uuid ac99d2b9-3592-44c3-94eb-e556103750a4)
  2740. )
  2741. (wire (pts (xy 278.13 121.92) (xy 278.13 124.46))
  2742. (stroke (width 0) (type default) (color 0 0 0 0))
  2743. (uuid ad2d033c-4040-4813-b5da-82cf827f9d86)
  2744. )
  2745. (wire (pts (xy 29.21 31.75) (xy 29.21 25.4))
  2746. (stroke (width 0) (type default) (color 0 0 0 0))
  2747. (uuid ad8c2a20-27d0-4e2a-aabf-44a509bf342a)
  2748. )
  2749. (wire (pts (xy 214.63 53.34) (xy 214.63 57.15))
  2750. (stroke (width 0) (type default) (color 0 0 0 0))
  2751. (uuid aeae1c08-0511-41ff-896d-95b95a86eb35)
  2752. )
  2753. (wire (pts (xy 58.42 143.256) (xy 67.437 143.256))
  2754. (stroke (width 0) (type default) (color 0 0 0 0))
  2755. (uuid af35a210-4668-48ed-837a-c21f928e6c34)
  2756. )
  2757. (wire (pts (xy 53.34 100.33) (xy 40.64 100.33))
  2758. (stroke (width 0) (type default) (color 0 0 0 0))
  2759. (uuid af66589f-0dae-4737-851f-f8cddd35005b)
  2760. )
  2761. (wire (pts (xy 125.73 27.94) (xy 135.89 27.94))
  2762. (stroke (width 0) (type default) (color 0 0 0 0))
  2763. (uuid b09870ad-8985-4a1c-a7b1-3acb9a1b9282)
  2764. )
  2765. (wire (pts (xy 223.52 142.24) (xy 226.06 142.24))
  2766. (stroke (width 0) (type default) (color 0 0 0 0))
  2767. (uuid b0b40da2-8918-4f0b-b11b-1408b929feb5)
  2768. )
  2769. (wire (pts (xy 105.41 80.01) (xy 105.41 82.55))
  2770. (stroke (width 0) (type default) (color 0 0 0 0))
  2771. (uuid b2691466-e53b-4f43-806f-abeb762713f6)
  2772. )
  2773. (wire (pts (xy 226.06 73.66) (xy 223.52 73.66))
  2774. (stroke (width 0) (type default) (color 0 0 0 0))
  2775. (uuid b2cac11a-5f3b-43d7-88e5-8d0241ac6453)
  2776. )
  2777. (wire (pts (xy 135.89 100.33) (xy 147.32 100.33))
  2778. (stroke (width 0) (type default) (color 0 0 0 0))
  2779. (uuid b400c80e-5312-495d-b0d5-8365ed4de032)
  2780. )
  2781. (wire (pts (xy 147.32 82.55) (xy 167.64 82.55))
  2782. (stroke (width 0) (type default) (color 0 0 0 0))
  2783. (uuid b4856fa9-d711-4b3f-8ccf-343375c62dce)
  2784. )
  2785. (wire (pts (xy 90.17 87.63) (xy 95.25 87.63))
  2786. (stroke (width 0) (type default) (color 0 0 0 0))
  2787. (uuid b4eddc61-2cab-493a-b874-62b106cef9f4)
  2788. )
  2789. (wire (pts (xy 167.64 27.94) (xy 167.64 30.48))
  2790. (stroke (width 0) (type default) (color 0 0 0 0))
  2791. (uuid b4efa293-75b5-42d5-996c-b449774d5ba5)
  2792. )
  2793. (wire (pts (xy 212.09 114.3) (xy 226.06 114.3))
  2794. (stroke (width 0) (type default) (color 0 0 0 0))
  2795. (uuid b6a3e709-356a-4a55-ac00-07ba73afac37)
  2796. )
  2797. (wire (pts (xy 147.32 45.72) (xy 167.64 45.72))
  2798. (stroke (width 0) (type default) (color 0 0 0 0))
  2799. (uuid b6ceb85d-46f8-42e1-9c68-672660fbaf7c)
  2800. )
  2801. (wire (pts (xy 188.468 104.521) (xy 188.468 106.68))
  2802. (stroke (width 0) (type default) (color 0 0 0 0))
  2803. (uuid b78b449b-cc35-4f43-98cb-46b0e3bf0a3b)
  2804. )
  2805. (wire (pts (xy 58.42 149.606) (xy 58.42 150.876))
  2806. (stroke (width 0) (type default) (color 0 0 0 0))
  2807. (uuid b82dcdfe-6d68-4839-aa11-9b57a3e4aab0)
  2808. )
  2809. (wire (pts (xy 223.52 121.92) (xy 223.52 119.38))
  2810. (stroke (width 0) (type default) (color 0 0 0 0))
  2811. (uuid b830f01d-0d9c-451a-9ac4-3e5744deb516)
  2812. )
  2813. (wire (pts (xy 203.2 114.3) (xy 203.2 111.76))
  2814. (stroke (width 0) (type default) (color 0 0 0 0))
  2815. (uuid ba3f68df-a80d-4363-9b28-2b49507e87bd)
  2816. )
  2817. (wire (pts (xy 223.52 91.44) (xy 226.06 91.44))
  2818. (stroke (width 0) (type default) (color 0 0 0 0))
  2819. (uuid bc408f2c-2338-4a2e-9d30-e90fd4d4f487)
  2820. )
  2821. (wire (pts (xy 24.13 143.256) (xy 30.48 143.256))
  2822. (stroke (width 0) (type default) (color 0 0 0 0))
  2823. (uuid bdf3a4d5-c263-48a5-adc8-754dbf09ad65)
  2824. )
  2825. (wire (pts (xy 105.41 123.19) (xy 105.41 116.84))
  2826. (stroke (width 0) (type default) (color 0 0 0 0))
  2827. (uuid c1b603f4-7037-47e9-a9dc-a0bb6f7e58b1)
  2828. )
  2829. (wire (pts (xy 212.09 128.27) (xy 212.09 127))
  2830. (stroke (width 0) (type default) (color 0 0 0 0))
  2831. (uuid c1b73b2b-a0dd-4b0e-8d3d-c3beea420b93)
  2832. )
  2833. (wire (pts (xy 193.04 45.72) (xy 204.47 45.72))
  2834. (stroke (width 0) (type default) (color 0 0 0 0))
  2835. (uuid c2079b33-906e-4c67-b0b6-7e228acc166b)
  2836. )
  2837. (wire (pts (xy 74.93 45.72) (xy 53.34 45.72))
  2838. (stroke (width 0) (type default) (color 0 0 0 0))
  2839. (uuid c2a5cbbc-a316-4826-81b8-a34d52b5eb58)
  2840. )
  2841. (wire (pts (xy 278.13 127) (xy 278.13 129.54))
  2842. (stroke (width 0) (type default) (color 0 0 0 0))
  2843. (uuid c2d24be9-0a91-4ad8-a6f8-4f606bd871ac)
  2844. )
  2845. (wire (pts (xy 95.25 33.02) (xy 95.25 49.53))
  2846. (stroke (width 0) (type default) (color 0 0 0 0))
  2847. (uuid c7699973-e377-4c8c-8edc-6474ca187ece)
  2848. )
  2849. (wire (pts (xy 265.43 57.15) (xy 275.59 57.15))
  2850. (stroke (width 0) (type default) (color 0 0 0 0))
  2851. (uuid c88340d4-f51e-4560-b5d7-7144fb4e8a04)
  2852. )
  2853. (wire (pts (xy 265.43 45.72) (xy 275.59 45.72))
  2854. (stroke (width 0) (type default) (color 0 0 0 0))
  2855. (uuid c94b6f38-b2c7-494d-9fba-9edbdd8e122a)
  2856. )
  2857. (wire (pts (xy 223.52 73.66) (xy 223.52 69.85))
  2858. (stroke (width 0) (type default) (color 0 0 0 0))
  2859. (uuid c9ab240f-b898-4113-9b58-995237cd751a)
  2860. )
  2861. (wire (pts (xy 179.07 82.55) (xy 182.88 82.55))
  2862. (stroke (width 0) (type default) (color 0 0 0 0))
  2863. (uuid c9dc1467-f8a9-424e-ab40-9eace7cb7fbb)
  2864. )
  2865. (wire (pts (xy 110.49 45.72) (xy 135.89 45.72))
  2866. (stroke (width 0) (type default) (color 0 0 0 0))
  2867. (uuid ca7eee62-ed2f-41f0-ba4a-5f9abd56ee97)
  2868. )
  2869. (wire (pts (xy 273.05 24.13) (xy 273.05 26.67))
  2870. (stroke (width 0) (type default) (color 0 0 0 0))
  2871. (uuid ccdce88e-24b7-4692-934b-22bb9b0763dc)
  2872. )
  2873. (wire (pts (xy 271.78 134.62) (xy 278.13 134.62))
  2874. (stroke (width 0) (type default) (color 0 0 0 0))
  2875. (uuid cce13a3b-854c-49ae-8b19-551eed5c4f96)
  2876. )
  2877. (wire (pts (xy 101.6 25.4) (xy 105.41 25.4))
  2878. (stroke (width 0) (type default) (color 0 0 0 0))
  2879. (uuid cdf69da0-bf1d-48b6-92e4-7b762bd4454d)
  2880. )
  2881. (wire (pts (xy 54.61 143.256) (xy 58.42 143.256))
  2882. (stroke (width 0) (type default) (color 0 0 0 0))
  2883. (uuid cfe0e8d2-3c1a-48e4-acd3-54c2e03bade9)
  2884. )
  2885. (wire (pts (xy 167.64 27.94) (xy 171.45 27.94))
  2886. (stroke (width 0) (type default) (color 0 0 0 0))
  2887. (uuid d0292983-0ab9-4b24-b3bd-f154f790c7ec)
  2888. )
  2889. (wire (pts (xy 95.25 119.38) (xy 95.25 123.19))
  2890. (stroke (width 0) (type default) (color 0 0 0 0))
  2891. (uuid d09d8e7f-f203-4b36-92ba-f9f29b6e7d13)
  2892. )
  2893. (wire (pts (xy 223.52 148.59) (xy 223.52 149.86))
  2894. (stroke (width 0) (type default) (color 0 0 0 0))
  2895. (uuid d0c5561a-ecf5-4fb9-9963-743c221a8335)
  2896. )
  2897. (wire (pts (xy 278.13 134.62) (xy 278.13 137.16))
  2898. (stroke (width 0) (type default) (color 0 0 0 0))
  2899. (uuid d22f8c08-7c7a-481b-96ff-cad6b4c95453)
  2900. )
  2901. (wire (pts (xy 265.43 53.34) (xy 265.43 57.15))
  2902. (stroke (width 0) (type default) (color 0 0 0 0))
  2903. (uuid d26fce45-c1d6-42bc-931d-972bf3799097)
  2904. )
  2905. (wire (pts (xy 95.25 123.19) (xy 105.41 123.19))
  2906. (stroke (width 0) (type default) (color 0 0 0 0))
  2907. (uuid d27bd75e-eeb9-4d8b-bfdb-bddce4b94b6c)
  2908. )
  2909. (wire (pts (xy 95.25 123.19) (xy 95.25 124.46))
  2910. (stroke (width 0) (type default) (color 0 0 0 0))
  2911. (uuid d40f18db-c543-4c22-a8b0-72b9c9e5ae8b)
  2912. )
  2913. (wire (pts (xy 195.58 27.94) (xy 195.58 24.13))
  2914. (stroke (width 0) (type default) (color 0 0 0 0))
  2915. (uuid d427b096-2104-4cac-9d5d-d2195401989e)
  2916. )
  2917. (wire (pts (xy 224.79 45.72) (xy 224.79 48.26))
  2918. (stroke (width 0) (type default) (color 0 0 0 0))
  2919. (uuid d433e10e-a10c-42c7-9409-f756ab1084a2)
  2920. )
  2921. (wire (pts (xy 223.52 73.66) (xy 223.52 76.2))
  2922. (stroke (width 0) (type default) (color 0 0 0 0))
  2923. (uuid d4f9d898-7a83-4186-a9d6-9da79adbdd19)
  2924. )
  2925. (wire (pts (xy 30.48 149.606) (xy 30.48 150.876))
  2926. (stroke (width 0) (type default) (color 0 0 0 0))
  2927. (uuid d5dc6f4d-02db-453c-956f-1c65342c3ce5)
  2928. )
  2929. (wire (pts (xy 29.21 86.36) (xy 29.21 80.01))
  2930. (stroke (width 0) (type default) (color 0 0 0 0))
  2931. (uuid d5eb7c6e-b098-49b0-b366-c8b7c67afed0)
  2932. )
  2933. (wire (pts (xy 223.52 96.52) (xy 226.06 96.52))
  2934. (stroke (width 0) (type default) (color 0 0 0 0))
  2935. (uuid d6cc98ff-7d68-4734-afa1-c7dd225e08d3)
  2936. )
  2937. (wire (pts (xy 137.16 179.07) (xy 139.7 179.07))
  2938. (stroke (width 0) (type default) (color 0 0 0 0))
  2939. (uuid d7329050-0c4f-4d4d-b156-c34af61257ff)
  2940. )
  2941. (wire (pts (xy 245.11 45.72) (xy 245.11 48.26))
  2942. (stroke (width 0) (type default) (color 0 0 0 0))
  2943. (uuid d799aac7-79c2-4447-bfa3-8eb302b60af7)
  2944. )
  2945. (wire (pts (xy 110.49 100.33) (xy 135.89 100.33))
  2946. (stroke (width 0) (type default) (color 0 0 0 0))
  2947. (uuid d8932824-bdfc-4009-a7d0-6ff32efa7e1a)
  2948. )
  2949. (wire (pts (xy 90.17 90.17) (xy 135.89 90.17))
  2950. (stroke (width 0) (type default) (color 0 0 0 0))
  2951. (uuid d97f24b8-3f5c-4536-a071-0786594f3ffe)
  2952. )
  2953. (wire (pts (xy 262.89 36.83) (xy 273.05 36.83))
  2954. (stroke (width 0) (type default) (color 0 0 0 0))
  2955. (uuid d98b06b1-d759-4372-889f-6ac21114139f)
  2956. )
  2957. (wire (pts (xy 167.64 100.33) (xy 167.64 99.06))
  2958. (stroke (width 0) (type default) (color 0 0 0 0))
  2959. (uuid da37a168-b259-4f98-9030-90f2f5ac962a)
  2960. )
  2961. (wire (pts (xy 223.52 88.9) (xy 226.06 88.9))
  2962. (stroke (width 0) (type default) (color 0 0 0 0))
  2963. (uuid dd552f19-e379-4dd5-a10b-882b6c8e7a65)
  2964. )
  2965. (wire (pts (xy 190.5 82.55) (xy 190.5 80.01))
  2966. (stroke (width 0) (type default) (color 0 0 0 0))
  2967. (uuid e1754158-40dc-4df5-848e-7e0c189ace53)
  2968. )
  2969. (wire (pts (xy 105.41 49.53) (xy 105.41 57.15))
  2970. (stroke (width 0) (type default) (color 0 0 0 0))
  2971. (uuid e1b0380f-01af-4f4c-986f-502b633a3c03)
  2972. )
  2973. (wire (pts (xy 29.21 80.01) (xy 40.64 80.01))
  2974. (stroke (width 0) (type default) (color 0 0 0 0))
  2975. (uuid e1df8cea-32a4-457d-86df-d8e326022a52)
  2976. )
  2977. (wire (pts (xy 273.05 36.83) (xy 273.05 38.1))
  2978. (stroke (width 0) (type default) (color 0 0 0 0))
  2979. (uuid e325a134-36dc-4151-9d17-8bf13dc78564)
  2980. )
  2981. (wire (pts (xy 95.25 68.58) (xy 105.41 68.58))
  2982. (stroke (width 0) (type default) (color 0 0 0 0))
  2983. (uuid e342f8d7-ca8a-47a5-a679-3c984454e9a5)
  2984. )
  2985. (wire (pts (xy 187.96 82.55) (xy 190.5 82.55))
  2986. (stroke (width 0) (type default) (color 0 0 0 0))
  2987. (uuid e34d78fc-c821-4e5c-ac82-ce6fcdcd9454)
  2988. )
  2989. (wire (pts (xy 208.28 96.52) (xy 212.09 96.52))
  2990. (stroke (width 0) (type default) (color 0 0 0 0))
  2991. (uuid e3877396-3ff6-4b1d-9715-0d1a70961579)
  2992. )
  2993. (wire (pts (xy 24.13 139.446) (xy 24.13 143.256))
  2994. (stroke (width 0) (type default) (color 0 0 0 0))
  2995. (uuid e3db03de-ad83-440a-a7c0-37969c5a5dbf)
  2996. )
  2997. (wire (pts (xy 179.07 27.94) (xy 186.69 27.94))
  2998. (stroke (width 0) (type default) (color 0 0 0 0))
  2999. (uuid e44dd86d-8737-430e-a0f5-f7ecf3fa5a6b)
  3000. )
  3001. (wire (pts (xy 21.59 100.33) (xy 29.21 100.33))
  3002. (stroke (width 0) (type default) (color 0 0 0 0))
  3003. (uuid e47d9cf3-579e-4750-bc6d-bf58b55862bb)
  3004. )
  3005. (wire (pts (xy 182.88 57.15) (xy 182.88 59.69))
  3006. (stroke (width 0) (type default) (color 0 0 0 0))
  3007. (uuid e6235600-87cc-4c82-b15f-34fb66b9bf0e)
  3008. )
  3009. (wire (pts (xy 40.64 80.01) (xy 40.64 83.82))
  3010. (stroke (width 0) (type default) (color 0 0 0 0))
  3011. (uuid e6b8e749-dce0-4716-821f-058d77eed5ce)
  3012. )
  3013. (wire (pts (xy 53.34 97.79) (xy 53.34 100.33))
  3014. (stroke (width 0) (type default) (color 0 0 0 0))
  3015. (uuid e9597133-3d67-41f8-aabc-5b61d8d3c3c1)
  3016. )
  3017. (wire (pts (xy 135.89 45.72) (xy 135.89 48.26))
  3018. (stroke (width 0) (type default) (color 0 0 0 0))
  3019. (uuid e96432f3-c6ee-4cdc-892b-eb9f8e5ebd05)
  3020. )
  3021. (wire (pts (xy 53.34 43.18) (xy 53.34 45.72))
  3022. (stroke (width 0) (type default) (color 0 0 0 0))
  3023. (uuid ea7f95ca-1368-4ccc-b3c5-17a85c05a2dd)
  3024. )
  3025. (wire (pts (xy 40.64 90.17) (xy 40.64 92.71))
  3026. (stroke (width 0) (type default) (color 0 0 0 0))
  3027. (uuid eca8c1f1-6751-4304-8a65-b05952048507)
  3028. )
  3029. (wire (pts (xy 203.2 111.76) (xy 226.06 111.76))
  3030. (stroke (width 0) (type default) (color 0 0 0 0))
  3031. (uuid ee4527a8-96f7-423b-b0eb-5c3b1bed75f9)
  3032. )
  3033. (wire (pts (xy 135.89 27.94) (xy 147.32 27.94))
  3034. (stroke (width 0) (type default) (color 0 0 0 0))
  3035. (uuid eec607c7-6f4a-49f4-b728-3da8374be4ce)
  3036. )
  3037. (wire (pts (xy 53.34 38.1) (xy 53.34 33.02))
  3038. (stroke (width 0) (type default) (color 0 0 0 0))
  3039. (uuid eef9a49b-90d1-4463-b2c5-af035d3ae9d7)
  3040. )
  3041. (wire (pts (xy 271.78 139.7) (xy 278.13 139.7))
  3042. (stroke (width 0) (type default) (color 0 0 0 0))
  3043. (uuid ef3c2ca7-fcc8-4cff-8fc1-0c762aa25455)
  3044. )
  3045. (wire (pts (xy 271.78 119.38) (xy 278.13 119.38))
  3046. (stroke (width 0) (type default) (color 0 0 0 0))
  3047. (uuid efd79052-e146-4d61-9e0a-ba764a5a966b)
  3048. )
  3049. (wire (pts (xy 212.09 96.52) (xy 212.09 101.6))
  3050. (stroke (width 0) (type default) (color 0 0 0 0))
  3051. (uuid f094eb5d-05c7-4c16-84d0-9d4665317bfb)
  3052. )
  3053. (wire (pts (xy 36.83 149.606) (xy 36.83 150.876))
  3054. (stroke (width 0) (type default) (color 0 0 0 0))
  3055. (uuid f1ec6ad7-5d4c-4324-a703-8262fe959832)
  3056. )
  3057. (wire (pts (xy 262.89 30.48) (xy 262.89 26.67))
  3058. (stroke (width 0) (type default) (color 0 0 0 0))
  3059. (uuid f420833d-9f22-43c2-813c-6543682555e5)
  3060. )
  3061. (wire (pts (xy 21.59 25.4) (xy 21.59 31.75))
  3062. (stroke (width 0) (type default) (color 0 0 0 0))
  3063. (uuid f4cf6dc4-65fc-4b8e-a0d8-0a9074993d40)
  3064. )
  3065. (wire (pts (xy 36.83 143.256) (xy 36.83 144.526))
  3066. (stroke (width 0) (type default) (color 0 0 0 0))
  3067. (uuid f5248817-a7c7-40a7-9d9a-5eb984aa9d40)
  3068. )
  3069. (wire (pts (xy 53.34 87.63) (xy 64.77 87.63))
  3070. (stroke (width 0) (type default) (color 0 0 0 0))
  3071. (uuid f76f4233-905d-4cb5-a153-eed7fe8e458e)
  3072. )
  3073. (wire (pts (xy 224.79 53.34) (xy 224.79 57.15))
  3074. (stroke (width 0) (type default) (color 0 0 0 0))
  3075. (uuid f8db64f8-1695-46e3-9667-49f16b5c734b)
  3076. )
  3077. (wire (pts (xy 135.89 82.55) (xy 135.89 83.82))
  3078. (stroke (width 0) (type default) (color 0 0 0 0))
  3079. (uuid f9570ec9-4338-4208-aee7-369a45a284f8)
  3080. )
  3081. (wire (pts (xy 204.47 53.34) (xy 204.47 57.15))
  3082. (stroke (width 0) (type default) (color 0 0 0 0))
  3083. (uuid fc329e60-968a-4f61-ba77-53d29ff8c1c7)
  3084. )
  3085. (wire (pts (xy 88.392 150.876) (xy 88.392 152.146))
  3086. (stroke (width 0) (type default) (color 0 0 0 0))
  3087. (uuid fed99eb5-430a-467c-b673-21790df80de5)
  3088. )
  3089. (wire (pts (xy 90.17 82.55) (xy 105.41 82.55))
  3090. (stroke (width 0) (type default) (color 0 0 0 0))
  3091. (uuid ff163833-80b9-4bc7-baa1-aa11870ad397)
  3092. )
  3093. (wire (pts (xy 40.64 35.56) (xy 64.77 35.56))
  3094. (stroke (width 0) (type default) (color 0 0 0 0))
  3095. (uuid ffe6d5f3-f9a5-48a9-88db-d2d7822b944f)
  3096. )
  3097. (global_label "nRST" (shape input) (at 137.16 179.07 180) (fields_autoplaced)
  3098. (effects (font (size 1.27 1.27)) (justify right))
  3099. (uuid 7b2f6028-5234-4df8-8d41-bf003f728f58)
  3100. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3101. (effects (font (size 1.27 1.27)) hide)
  3102. )
  3103. )
  3104. (global_label "nRST" (shape input) (at 220.98 142.24 180) (fields_autoplaced)
  3105. (effects (font (size 1.27 1.27)) (justify right))
  3106. (uuid 8b129856-cc2d-4792-b90f-5af9599716ce)
  3107. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  3108. (effects (font (size 1.27 1.27)) hide)
  3109. )
  3110. )
  3111. (symbol (lib_id "Device:C_Small") (at 223.52 146.05 0) (unit 1)
  3112. (in_bom yes) (on_board yes)
  3113. (uuid 00000000-0000-0000-0000-000060f6ef2a)
  3114. (property "Reference" "C47" (id 0) (at 225.8568 144.8816 0)
  3115. (effects (font (size 1.27 1.27)) (justify left))
  3116. )
  3117. (property "Value" "100nF" (id 1) (at 225.8568 147.193 0)
  3118. (effects (font (size 1.27 1.27)) (justify left))
  3119. )
  3120. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 223.52 146.05 0)
  3121. (effects (font (size 1.27 1.27)) hide)
  3122. )
  3123. (property "Datasheet" "~" (id 3) (at 223.52 146.05 0)
  3124. (effects (font (size 1.27 1.27)) hide)
  3125. )
  3126. (property "LCSC" "C1525" (id 4) (at 223.52 146.05 0)
  3127. (effects (font (size 1.27 1.27)) hide)
  3128. )
  3129. (pin "1" (uuid 90e9290c-2951-4a38-b903-b48a0fa27ddf))
  3130. (pin "2" (uuid e1f96f96-6297-4e10-b168-7e4c3c3474ae))
  3131. )
  3132. (symbol (lib_id "power:GND") (at 223.52 149.86 0) (unit 1)
  3133. (in_bom yes) (on_board yes)
  3134. (uuid 00000000-0000-0000-0000-000060faaca0)
  3135. (property "Reference" "#PWR0131" (id 0) (at 223.52 156.21 0)
  3136. (effects (font (size 1.27 1.27)) hide)
  3137. )
  3138. (property "Value" "GND" (id 1) (at 223.647 154.2542 0))
  3139. (property "Footprint" "" (id 2) (at 223.52 149.86 0)
  3140. (effects (font (size 1.27 1.27)) hide)
  3141. )
  3142. (property "Datasheet" "" (id 3) (at 223.52 149.86 0)
  3143. (effects (font (size 1.27 1.27)) hide)
  3144. )
  3145. (pin "1" (uuid 9d629f2a-b466-45d0-8505-617d0c7423dd))
  3146. )
  3147. (symbol (lib_id "Connector:Conn_01x04_Male") (at 41.91 176.53 0) (unit 1)
  3148. (in_bom yes) (on_board yes)
  3149. (uuid 00000000-0000-0000-0000-000060fde913)
  3150. (property "Reference" "J3" (id 0) (at 44.6532 169.3926 0))
  3151. (property "Value" "Floppy power" (id 1) (at 44.6532 171.704 0))
  3152. (property "Footprint" "Greaseweazle:TE_171826-4_1x4_P2.50mm_Horizontal" (id 2) (at 41.91 176.53 0)
  3153. (effects (font (size 1.27 1.27)) hide)
  3154. )
  3155. (property "Datasheet" "~" (id 3) (at 41.91 176.53 0)
  3156. (effects (font (size 1.27 1.27)) hide)
  3157. )
  3158. (pin "1" (uuid 1f5678aa-6483-4545-96fe-000e97215f0d))
  3159. (pin "2" (uuid 2b2b5c2d-7920-4c7f-afe5-de7127bcd1c5))
  3160. (pin "3" (uuid 66bd6fd0-3c04-49cc-bc30-c60c0044e6ed))
  3161. (pin "4" (uuid c14f9779-cca5-4712-a079-ac20431f1f97))
  3162. )
  3163. (symbol (lib_id "Switch:SW_SPST") (at 144.78 179.07 0) (unit 1)
  3164. (in_bom yes) (on_board yes)
  3165. (uuid 00000000-0000-0000-0000-000060ffedf2)
  3166. (property "Reference" "SW1" (id 0) (at 144.78 173.101 0))
  3167. (property "Value" "RESET" (id 1) (at 144.78 175.4124 0))
  3168. (property "Footprint" "Greaseweazle:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04" (id 2) (at 144.78 179.07 0)
  3169. (effects (font (size 1.27 1.27)) hide)
  3170. )
  3171. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811082113_Korean-Hroparts-Elec-K2-1102SP-C4SC-04_C127509.pdf" (id 3) (at 144.78 179.07 0)
  3172. (effects (font (size 1.27 1.27)) hide)
  3173. )
  3174. (property "LCSC" "C127509" (id 4) (at 144.78 179.07 0)
  3175. (effects (font (size 1.27 1.27)) hide)
  3176. )
  3177. (pin "1" (uuid b6b08667-0ee8-4432-8113-e8b278859340))
  3178. (pin "2" (uuid bef50b68-6076-4edb-afe7-60d17bde8bdc))
  3179. )
  3180. (symbol (lib_id "power:GND") (at 152.4 180.34 0) (unit 1)
  3181. (in_bom yes) (on_board yes)
  3182. (uuid 00000000-0000-0000-0000-00006101dfa2)
  3183. (property "Reference" "#PWR0132" (id 0) (at 152.4 186.69 0)
  3184. (effects (font (size 1.27 1.27)) hide)
  3185. )
  3186. (property "Value" "GND" (id 1) (at 152.527 184.7342 0))
  3187. (property "Footprint" "" (id 2) (at 152.4 180.34 0)
  3188. (effects (font (size 1.27 1.27)) hide)
  3189. )
  3190. (property "Datasheet" "" (id 3) (at 152.4 180.34 0)
  3191. (effects (font (size 1.27 1.27)) hide)
  3192. )
  3193. (pin "1" (uuid 3b2d4e6e-42d0-4a39-9b9d-544d19e121d7))
  3194. )
  3195. (symbol (lib_id "power:+12V") (at 57.15 177.8 0) (unit 1)
  3196. (in_bom yes) (on_board yes)
  3197. (uuid 00000000-0000-0000-0000-000061070447)
  3198. (property "Reference" "#PWR0141" (id 0) (at 57.15 181.61 0)
  3199. (effects (font (size 1.27 1.27)) hide)
  3200. )
  3201. (property "Value" "+12V" (id 1) (at 57.531 173.4058 0))
  3202. (property "Footprint" "" (id 2) (at 57.15 177.8 0)
  3203. (effects (font (size 1.27 1.27)) hide)
  3204. )
  3205. (property "Datasheet" "" (id 3) (at 57.15 177.8 0)
  3206. (effects (font (size 1.27 1.27)) hide)
  3207. )
  3208. (pin "1" (uuid 2ea127dd-0b3d-4f9c-bcb2-92c2d6b23a4e))
  3209. )
  3210. (symbol (lib_id "power:GND") (at 50.8 186.69 0) (unit 1)
  3211. (in_bom yes) (on_board yes)
  3212. (uuid 00000000-0000-0000-0000-0000610715f3)
  3213. (property "Reference" "#PWR0143" (id 0) (at 50.8 193.04 0)
  3214. (effects (font (size 1.27 1.27)) hide)
  3215. )
  3216. (property "Value" "GND" (id 1) (at 50.927 191.0842 0))
  3217. (property "Footprint" "" (id 2) (at 50.8 186.69 0)
  3218. (effects (font (size 1.27 1.27)) hide)
  3219. )
  3220. (property "Datasheet" "" (id 3) (at 50.8 186.69 0)
  3221. (effects (font (size 1.27 1.27)) hide)
  3222. )
  3223. (pin "1" (uuid c0bad0e7-f759-4795-829f-169b114b0eb2))
  3224. )
  3225. (symbol (lib_id "Greaseweazle:STM32F730Z8T6") (at 223.52 73.66 0) (unit 1)
  3226. (in_bom yes) (on_board yes)
  3227. (uuid 00000000-0000-0000-0000-000061994339)
  3228. (property "Reference" "U1" (id 0) (at 248.92 66.929 0))
  3229. (property "Value" "STM32F730Z8T6" (id 1) (at 248.92 69.2404 0))
  3230. (property "Footprint" "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (id 2) (at 223.52 63.5 0)
  3231. (effects (font (size 1.27 1.27)) (justify left) hide)
  3232. )
  3233. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (id 3) (at 223.52 60.96 0)
  3234. (effects (font (size 1.27 1.27)) (justify left) hide)
  3235. )
  3236. (property "LCSC" "C508478" (id 4) (at 223.52 73.66 0)
  3237. (effects (font (size 1.27 1.27)) hide)
  3238. )
  3239. (pin "106" (uuid 1fdbeb0d-b532-44cb-a4ad-1266ccb98d4a))
  3240. (pin "107" (uuid a7c4dac8-d3cc-4ebb-8678-57739ef6cdfb))
  3241. (pin "108" (uuid b1185dff-865b-48fd-9a93-50a1a30b66dc))
  3242. (pin "120" (uuid 1ec053df-d79a-4ff4-a5f5-b530d6ffc6e9))
  3243. (pin "121" (uuid 1268f22e-513c-45f6-b22a-81a34fd5861e))
  3244. (pin "130" (uuid 5f9fae3c-8cee-417c-a82a-540a96eec5c7))
  3245. (pin "131" (uuid d3388c04-0946-424b-888f-fb390b5707dc))
  3246. (pin "138" (uuid ce210f58-2829-4baa-bd41-e3a6a2ff18cd))
  3247. (pin "143" (uuid 81cac65d-3d14-45a2-be2e-d9011fc374c6))
  3248. (pin "144" (uuid d85fa43a-a9f2-457a-949c-d3ff28dea92e))
  3249. (pin "16" (uuid f8ff0b15-dcca-43a9-829a-230e008f124a))
  3250. (pin "17" (uuid eae4a714-d328-49f1-a94c-d8b84186f1d5))
  3251. (pin "25" (uuid 298ba11c-ec34-4a56-b6dc-fd4125b9ac86))
  3252. (pin "30" (uuid e01b7678-a014-4034-93ed-6ead8ec328c1))
  3253. (pin "31" (uuid b186b746-f1de-4024-a533-b73067d4ecf4))
  3254. (pin "32" (uuid 25a431d6-c987-46f4-9953-3f82fcb7538c))
  3255. (pin "33" (uuid a804ef89-0053-4b17-a5c1-ae4bc26f53d7))
  3256. (pin "38" (uuid ee440b6e-69d6-44d4-92ee-f0549b17f76a))
  3257. (pin "39" (uuid 04e4327a-e2c4-42d2-a5d3-908494f7f514))
  3258. (pin "51" (uuid 0b937f32-2609-4767-b84d-a1632066f723))
  3259. (pin "52" (uuid ffe90f54-2dac-43a3-a9ca-b0b6e4c2dc1b))
  3260. (pin "6" (uuid 97a848e7-d35d-4338-b4d4-684502c47054))
  3261. (pin "61" (uuid b2fca1fc-8d55-4658-8721-548fa4e11835))
  3262. (pin "62" (uuid 802f6e59-7bed-47d5-9c3f-8f819227b051))
  3263. (pin "71" (uuid f35e3404-ef52-42a8-b3f6-f227b971fc9c))
  3264. (pin "72" (uuid 1dd4d31c-9fe8-49aa-8ccb-c0c8332d89f5))
  3265. (pin "75" (uuid 74000834-842b-4728-9d38-482d54854f68))
  3266. (pin "76" (uuid 65fd0287-8526-4897-84ae-7d05a30ef170))
  3267. (pin "85" (uuid 9c628c5f-8eff-4605-8604-f7ecdd7a0da9))
  3268. (pin "86" (uuid 036502da-b6fd-4804-aa44-b0a22b80d867))
  3269. (pin "94" (uuid c0dd6704-15b7-4ab3-9321-79f3b6d074dc))
  3270. (pin "95" (uuid 0f9ea028-76fe-4e6d-b3e2-c5420956396a))
  3271. (pin "100" (uuid 56e5de3e-3be3-49b7-8978-98f3815a6407))
  3272. (pin "101" (uuid 132a5b0f-0b3a-457e-97ba-82bb415c2335))
  3273. (pin "102" (uuid f0d758de-067d-48e3-af1a-de97c586b6f1))
  3274. (pin "103" (uuid b7feb42c-c12b-4e84-ada7-5d2053e32967))
  3275. (pin "104" (uuid 6fb3f2e2-5e5e-4ae9-a590-93a6bc8d6453))
  3276. (pin "105" (uuid 32e6946a-a8db-4723-8725-fe4862ef90c1))
  3277. (pin "109" (uuid ab001586-105e-41d2-8afc-63b528c8ab0c))
  3278. (pin "110" (uuid a8fa7dc2-8c53-483a-bce9-726ab66e8856))
  3279. (pin "111" (uuid a1187f55-85ee-4139-84c6-eded98af449a))
  3280. (pin "112" (uuid 120a354c-ed84-4ffa-8d57-57ef21ec7851))
  3281. (pin "113" (uuid b3e63010-8631-4793-b2f4-15f3fd42a5cb))
  3282. (pin "114" (uuid b13563cd-ec20-46a1-9408-1a60bd4450ca))
  3283. (pin "115" (uuid a14e8fd7-3d60-4636-acd5-9d9fa32a710c))
  3284. (pin "116" (uuid 0567dae1-cf2c-438a-99dc-8576c8bfdd09))
  3285. (pin "117" (uuid a42762ae-33b2-425d-aa2c-10445b69f1d9))
  3286. (pin "118" (uuid e4e237d9-03d2-4e94-8d05-f0ac14208e27))
  3287. (pin "119" (uuid 5219d1a6-d5f9-4d1e-ab89-e652cc7be982))
  3288. (pin "122" (uuid 7f471642-1233-423c-8a36-6c83b062a83f))
  3289. (pin "123" (uuid a698b5e4-5afe-4d86-af0d-dc1e00b5fdf2))
  3290. (pin "133" (uuid f802b0f1-39dd-41a7-8b30-9af1c7ce8ad8))
  3291. (pin "134" (uuid 7e572a4b-d3e6-485b-9d2a-5212dc708a17))
  3292. (pin "135" (uuid 659df58f-7289-48cd-91e4-be411bcf75e6))
  3293. (pin "136" (uuid a0a149d8-b840-4f9c-acc4-684f7449df6a))
  3294. (pin "137" (uuid 985fdb4e-025c-4ab7-8c14-94e7fe05a34b))
  3295. (pin "139" (uuid 8cab096b-6407-4df1-91d2-2c2e764f4974))
  3296. (pin "140" (uuid c95cb1ab-7d0e-453f-96af-0d1b49c9da22))
  3297. (pin "26" (uuid c69945dc-f5b9-463e-8515-64ad88eed3c0))
  3298. (pin "27" (uuid 958e612c-2534-41fa-a9ef-497dbfd18d46))
  3299. (pin "28" (uuid ffc34649-c62d-4c75-8db6-1fd0142d7864))
  3300. (pin "29" (uuid 296a6213-c6ea-4326-a7f2-eb8f12f47af9))
  3301. (pin "34" (uuid c8b14190-fb97-43d0-945e-94941444a0f3))
  3302. (pin "35" (uuid 38547246-37da-4a13-8e1d-d68716425811))
  3303. (pin "36" (uuid 8a65af8b-70e2-4cee-a662-498bb46d4385))
  3304. (pin "37" (uuid 247c5f4c-d6cb-41bc-b819-741546720845))
  3305. (pin "40" (uuid 4cf9cc02-cf3d-4ee4-b8f3-1418bc753918))
  3306. (pin "41" (uuid e5dd38b9-7fee-41e8-860b-2f661f62cfb1))
  3307. (pin "42" (uuid f68caab6-16c3-4961-9ca0-c2c45577af93))
  3308. (pin "43" (uuid 41e337e2-8bb5-4b7b-bff1-965426e30326))
  3309. (pin "44" (uuid 37a5e57d-2f1c-4c63-a254-c52ba5374252))
  3310. (pin "45" (uuid d2eb2adb-cd9a-4d28-a01c-2d85f40f1a12))
  3311. (pin "46" (uuid a5b564db-6bc3-4c1e-92fa-581399439d2c))
  3312. (pin "47" (uuid 598f8aee-2c73-4ff7-8063-a146844bd001))
  3313. (pin "48" (uuid b8920052-b56d-4ea4-8d0c-c271480c48d7))
  3314. (pin "69" (uuid 0c237dca-4a91-41b1-8f85-7b5328bb9bd7))
  3315. (pin "7" (uuid 8376e4bb-17a3-474c-a67d-76127d5cdf61))
  3316. (pin "70" (uuid 366c4971-c9f8-4584-9858-4f05930236f2))
  3317. (pin "73" (uuid b9af5414-8e6c-4ad2-a110-0330f9c0b453))
  3318. (pin "74" (uuid 430c890a-5f4f-486f-b812-bed12bdeb4d5))
  3319. (pin "77" (uuid 72375027-6e12-4e5a-a9bd-4a71079b73fc))
  3320. (pin "78" (uuid cb9d3135-1d1a-4978-82e9-ef3d7906fd90))
  3321. (pin "79" (uuid d56a7a78-80c6-481a-8cee-989e6d0c5d12))
  3322. (pin "8" (uuid 5af8ab7e-36c8-4dc6-8b52-217f961ea81f))
  3323. (pin "80" (uuid b9983489-4d8d-4ca9-a61e-935621bdaaf9))
  3324. (pin "81" (uuid d0d6632c-90cc-46d3-a2b0-95d5c7361acd))
  3325. (pin "82" (uuid 6dcde25c-61c1-42de-ac5a-94d5611ab941))
  3326. (pin "83" (uuid 5b650344-38f0-419a-95d5-7363522fbb48))
  3327. (pin "84" (uuid 1e9a0123-b9c5-44cf-9937-b3d472080ee7))
  3328. (pin "87" (uuid 85360436-4d0d-473a-ba3e-764f1b6ed88a))
  3329. (pin "88" (uuid 1dec49a1-6b2a-483e-8ec8-4d81057f6b3b))
  3330. (pin "9" (uuid 4e12eec2-7795-4631-83a0-a98a85398b0c))
  3331. (pin "96" (uuid 8c93f0ff-2ea9-4959-922d-90fc68acfed2))
  3332. (pin "97" (uuid 9eeffedc-e90c-43de-9530-96e8d5d34d34))
  3333. (pin "98" (uuid c168b726-8813-49d7-9238-4ec372feb05e))
  3334. (pin "99" (uuid 892d1f64-60cd-431f-98d6-595e3ee32d81))
  3335. (pin "1" (uuid ad16bd38-3390-4fbd-acfc-abcd1768c055))
  3336. (pin "10" (uuid 68967638-e31c-427b-887e-0066a60642b4))
  3337. (pin "11" (uuid 9288ab7e-a5e2-41b0-b802-36635c3aeecb))
  3338. (pin "12" (uuid e554d7e7-5ae3-4e47-a985-6f871eb89d63))
  3339. (pin "124" (uuid 242b61c0-b0be-469b-b170-1966af88aa5b))
  3340. (pin "125" (uuid c3e2b85a-9e0f-4b39-ad4c-a94a79e0da77))
  3341. (pin "126" (uuid 25f553ad-55a3-456f-a4ad-3ef013f37888))
  3342. (pin "127" (uuid 386ce9a6-6f54-4aff-b3d2-1d80028129b4))
  3343. (pin "128" (uuid 37b7c017-3507-4704-9b6a-6fe283f943c2))
  3344. (pin "129" (uuid b822ed2e-aa80-4079-bbfe-905d959317d0))
  3345. (pin "13" (uuid b9e161cf-bac5-49df-96d6-921605a35e99))
  3346. (pin "132" (uuid 5c06c56f-88a5-4e92-a097-a9ca8cdf013c))
  3347. (pin "14" (uuid d4e8d3f6-5bf3-42e6-a3b5-7574d3319bb2))
  3348. (pin "141" (uuid 248c6661-3b6f-42b9-b020-f6664a293add))
  3349. (pin "142" (uuid 9ae363f2-697b-4841-81bc-590e1920cd17))
  3350. (pin "15" (uuid f4f221d6-d514-44f4-bd85-5305d74c7b3e))
  3351. (pin "18" (uuid 9b2fc5bd-0243-4d91-b155-d9c2e15c1500))
  3352. (pin "19" (uuid 36be043e-fe37-411b-b0c3-484d080199e2))
  3353. (pin "2" (uuid 94ea48b5-ad00-453c-ac95-e43121e7103c))
  3354. (pin "20" (uuid 82c34417-eb9b-48e1-abfd-f14ea8fc09db))
  3355. (pin "21" (uuid 465f47a2-d8e3-497f-9a5c-c610fd165989))
  3356. (pin "22" (uuid ee88d26b-7a62-4706-98b6-68951832d28b))
  3357. (pin "23" (uuid 15fc4742-c05d-4909-8ccc-131495d3c9a4))
  3358. (pin "24" (uuid d175f0ac-068d-4ece-b4bc-8eeb51e8698c))
  3359. (pin "3" (uuid 83a003ed-a055-48ce-aa94-5ce5c996bdc5))
  3360. (pin "4" (uuid 9e293c89-cb90-4973-95d9-a849fd069e42))
  3361. (pin "49" (uuid d8c42eeb-c971-439d-b790-2190e17fb5e2))
  3362. (pin "5" (uuid b64e0a2e-4488-4f9d-ab03-36ab223ca380))
  3363. (pin "50" (uuid 46472171-7d57-4ad1-8bc0-fa3b370b2b55))
  3364. (pin "53" (uuid a7212ef2-5955-48b8-9c37-2c42365f6d64))
  3365. (pin "54" (uuid 818e0bcb-c999-4647-8cbe-d0ec988b955d))
  3366. (pin "55" (uuid 88cea2e8-47d6-49e6-a06a-f2c014217a99))
  3367. (pin "56" (uuid deb28a79-cf23-4272-8250-5ac4b57f8265))
  3368. (pin "57" (uuid b2c90932-f704-404a-b0f0-41e459f149e2))
  3369. (pin "58" (uuid cec7f819-cc05-4793-b1c5-f56af14913f5))
  3370. (pin "59" (uuid 1fb8e3ed-d846-4719-b8b9-41d6a0efe96b))
  3371. (pin "60" (uuid c7e93e68-3e1e-4d98-997d-309da3a97902))
  3372. (pin "63" (uuid e2139020-91c0-41fa-8e6c-c17258714b70))
  3373. (pin "64" (uuid c56c6594-2afc-498d-a7c4-0e3b7c7d6b9d))
  3374. (pin "65" (uuid 88f1a8b2-a592-43e8-a2fc-ce6206d790e2))
  3375. (pin "66" (uuid 9a1598d5-bd97-4728-b3dd-af0a6722e531))
  3376. (pin "67" (uuid e32a19ac-f9c4-494a-8f5a-c5ab029c4f13))
  3377. (pin "68" (uuid c45d9a51-8025-41b1-82d8-34e2a8fd0ca0))
  3378. (pin "89" (uuid 2c7e113d-21b1-47ec-a70c-7f9e6a3b1827))
  3379. (pin "90" (uuid 1e535bca-4a41-4656-983d-222c02285060))
  3380. (pin "91" (uuid caa98baf-f355-4b6b-b6de-8bf8ebcc913c))
  3381. (pin "92" (uuid e09d3e34-6192-4074-ab87-3938d818f7dc))
  3382. (pin "93" (uuid f21f2e70-e0f7-4876-93ac-b40711ae4b38))
  3383. )
  3384. (symbol (lib_id "Device:C_Small") (at 275.59 50.8 0) (unit 1)
  3385. (in_bom yes) (on_board yes)
  3386. (uuid 00000000-0000-0000-0000-000061994341)
  3387. (property "Reference" "C22" (id 0) (at 277.9268 49.6316 0)
  3388. (effects (font (size 1.27 1.27)) (justify left))
  3389. )
  3390. (property "Value" "100nF" (id 1) (at 277.9268 51.943 0)
  3391. (effects (font (size 1.27 1.27)) (justify left))
  3392. )
  3393. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 275.59 50.8 0)
  3394. (effects (font (size 1.27 1.27)) hide)
  3395. )
  3396. (property "Datasheet" "~" (id 3) (at 275.59 50.8 0)
  3397. (effects (font (size 1.27 1.27)) hide)
  3398. )
  3399. (property "LCSC" "C1525" (id 4) (at 275.59 50.8 0)
  3400. (effects (font (size 1.27 1.27)) hide)
  3401. )
  3402. (pin "1" (uuid 9e696178-33e4-4c58-9539-04385ca2c95a))
  3403. (pin "2" (uuid 30cc1bc8-edfc-411b-a620-55f3e52d1442))
  3404. )
  3405. (symbol (lib_id "Device:C_Small") (at 265.43 50.8 0) (unit 1)
  3406. (in_bom yes) (on_board yes)
  3407. (uuid 00000000-0000-0000-0000-00006199434d)
  3408. (property "Reference" "C21" (id 0) (at 267.7668 49.6316 0)
  3409. (effects (font (size 1.27 1.27)) (justify left))
  3410. )
  3411. (property "Value" "100nF" (id 1) (at 267.7668 51.943 0)
  3412. (effects (font (size 1.27 1.27)) (justify left))
  3413. )
  3414. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 265.43 50.8 0)
  3415. (effects (font (size 1.27 1.27)) hide)
  3416. )
  3417. (property "Datasheet" "~" (id 3) (at 265.43 50.8 0)
  3418. (effects (font (size 1.27 1.27)) hide)
  3419. )
  3420. (property "LCSC" "C1525" (id 4) (at 265.43 50.8 0)
  3421. (effects (font (size 1.27 1.27)) hide)
  3422. )
  3423. (pin "1" (uuid 8f3302a3-6606-413c-89f7-b70e6911e9fa))
  3424. (pin "2" (uuid caface81-4590-4fc3-b17f-80bd69b05dd1))
  3425. )
  3426. (symbol (lib_id "Device:C_Small") (at 255.27 50.8 0) (unit 1)
  3427. (in_bom yes) (on_board yes)
  3428. (uuid 00000000-0000-0000-0000-000061994353)
  3429. (property "Reference" "C20" (id 0) (at 257.6068 49.6316 0)
  3430. (effects (font (size 1.27 1.27)) (justify left))
  3431. )
  3432. (property "Value" "100nF" (id 1) (at 257.6068 51.943 0)
  3433. (effects (font (size 1.27 1.27)) (justify left))
  3434. )
  3435. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 255.27 50.8 0)
  3436. (effects (font (size 1.27 1.27)) hide)
  3437. )
  3438. (property "Datasheet" "~" (id 3) (at 255.27 50.8 0)
  3439. (effects (font (size 1.27 1.27)) hide)
  3440. )
  3441. (property "LCSC" "C1525" (id 4) (at 255.27 50.8 0)
  3442. (effects (font (size 1.27 1.27)) hide)
  3443. )
  3444. (pin "1" (uuid 3cd2ca5f-5124-498e-9a0d-02659290255f))
  3445. (pin "2" (uuid 40b328db-b33d-453f-99a8-adc42ba4b2c2))
  3446. )
  3447. (symbol (lib_id "Device:C_Small") (at 245.11 50.8 0) (unit 1)
  3448. (in_bom yes) (on_board yes)
  3449. (uuid 00000000-0000-0000-0000-000061994359)
  3450. (property "Reference" "C17" (id 0) (at 247.4468 49.6316 0)
  3451. (effects (font (size 1.27 1.27)) (justify left))
  3452. )
  3453. (property "Value" "100nF" (id 1) (at 247.4468 51.943 0)
  3454. (effects (font (size 1.27 1.27)) (justify left))
  3455. )
  3456. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 245.11 50.8 0)
  3457. (effects (font (size 1.27 1.27)) hide)
  3458. )
  3459. (property "Datasheet" "~" (id 3) (at 245.11 50.8 0)
  3460. (effects (font (size 1.27 1.27)) hide)
  3461. )
  3462. (property "LCSC" "C1525" (id 4) (at 245.11 50.8 0)
  3463. (effects (font (size 1.27 1.27)) hide)
  3464. )
  3465. (pin "1" (uuid 6836dcb6-0a8c-448c-8805-6996b99ae77c))
  3466. (pin "2" (uuid 184eb276-7af8-4f9d-b232-4494c69b00fb))
  3467. )
  3468. (symbol (lib_id "Device:C_Small") (at 234.95 50.8 0) (unit 1)
  3469. (in_bom yes) (on_board yes)
  3470. (uuid 00000000-0000-0000-0000-00006199435f)
  3471. (property "Reference" "C16" (id 0) (at 237.2868 49.6316 0)
  3472. (effects (font (size 1.27 1.27)) (justify left))
  3473. )
  3474. (property "Value" "100nF" (id 1) (at 237.2868 51.943 0)
  3475. (effects (font (size 1.27 1.27)) (justify left))
  3476. )
  3477. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 234.95 50.8 0)
  3478. (effects (font (size 1.27 1.27)) hide)
  3479. )
  3480. (property "Datasheet" "~" (id 3) (at 234.95 50.8 0)
  3481. (effects (font (size 1.27 1.27)) hide)
  3482. )
  3483. (property "LCSC" "C1525" (id 4) (at 234.95 50.8 0)
  3484. (effects (font (size 1.27 1.27)) hide)
  3485. )
  3486. (pin "1" (uuid 92621f2f-dc50-48a8-9249-648b50fbd336))
  3487. (pin "2" (uuid bd6be718-157f-4275-b92c-1c383c2e8dee))
  3488. )
  3489. (symbol (lib_id "Device:C_Small") (at 224.79 50.8 0) (unit 1)
  3490. (in_bom yes) (on_board yes)
  3491. (uuid 00000000-0000-0000-0000-000061994365)
  3492. (property "Reference" "C14" (id 0) (at 227.1268 49.6316 0)
  3493. (effects (font (size 1.27 1.27)) (justify left))
  3494. )
  3495. (property "Value" "100nF" (id 1) (at 227.1268 51.943 0)
  3496. (effects (font (size 1.27 1.27)) (justify left))
  3497. )
  3498. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 224.79 50.8 0)
  3499. (effects (font (size 1.27 1.27)) hide)
  3500. )
  3501. (property "Datasheet" "~" (id 3) (at 224.79 50.8 0)
  3502. (effects (font (size 1.27 1.27)) hide)
  3503. )
  3504. (property "LCSC" "C1525" (id 4) (at 224.79 50.8 0)
  3505. (effects (font (size 1.27 1.27)) hide)
  3506. )
  3507. (pin "1" (uuid 94dd170d-b2e0-4c71-98a7-fb3584925e49))
  3508. (pin "2" (uuid b9b0465c-fc3d-46c0-af40-918113803f60))
  3509. )
  3510. (symbol (lib_id "Device:C_Small") (at 214.63 50.8 0) (unit 1)
  3511. (in_bom yes) (on_board yes)
  3512. (uuid 00000000-0000-0000-0000-00006199436b)
  3513. (property "Reference" "C12" (id 0) (at 216.9668 49.6316 0)
  3514. (effects (font (size 1.27 1.27)) (justify left))
  3515. )
  3516. (property "Value" "100nF" (id 1) (at 216.9668 51.943 0)
  3517. (effects (font (size 1.27 1.27)) (justify left))
  3518. )
  3519. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 214.63 50.8 0)
  3520. (effects (font (size 1.27 1.27)) hide)
  3521. )
  3522. (property "Datasheet" "~" (id 3) (at 214.63 50.8 0)
  3523. (effects (font (size 1.27 1.27)) hide)
  3524. )
  3525. (property "LCSC" "C1525" (id 4) (at 214.63 50.8 0)
  3526. (effects (font (size 1.27 1.27)) hide)
  3527. )
  3528. (pin "1" (uuid 79ab70a4-dcf6-4751-a21c-a6ccbcbb5641))
  3529. (pin "2" (uuid 1bf53079-af24-4758-ae59-d35d69209232))
  3530. )
  3531. (symbol (lib_id "Device:C_Small") (at 204.47 50.8 0) (unit 1)
  3532. (in_bom yes) (on_board yes)
  3533. (uuid 00000000-0000-0000-0000-000061994371)
  3534. (property "Reference" "C10" (id 0) (at 206.8068 49.6316 0)
  3535. (effects (font (size 1.27 1.27)) (justify left))
  3536. )
  3537. (property "Value" "100nF" (id 1) (at 206.8068 51.943 0)
  3538. (effects (font (size 1.27 1.27)) (justify left))
  3539. )
  3540. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 204.47 50.8 0)
  3541. (effects (font (size 1.27 1.27)) hide)
  3542. )
  3543. (property "Datasheet" "~" (id 3) (at 204.47 50.8 0)
  3544. (effects (font (size 1.27 1.27)) hide)
  3545. )
  3546. (property "LCSC" "C1525" (id 4) (at 204.47 50.8 0)
  3547. (effects (font (size 1.27 1.27)) hide)
  3548. )
  3549. (pin "1" (uuid 02fecf22-ef8d-4d9c-b520-55c560c3da56))
  3550. (pin "2" (uuid e122622f-2bb6-4db8-888c-648f69a008c3))
  3551. )
  3552. (symbol (lib_id "Device:C_Small") (at 193.04 50.8 0) (unit 1)
  3553. (in_bom yes) (on_board yes)
  3554. (uuid 00000000-0000-0000-0000-000061994377)
  3555. (property "Reference" "C8" (id 0) (at 195.3768 49.6316 0)
  3556. (effects (font (size 1.27 1.27)) (justify left))
  3557. )
  3558. (property "Value" "100nF" (id 1) (at 195.3768 51.943 0)
  3559. (effects (font (size 1.27 1.27)) (justify left))
  3560. )
  3561. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 193.04 50.8 0)
  3562. (effects (font (size 1.27 1.27)) hide)
  3563. )
  3564. (property "Datasheet" "~" (id 3) (at 193.04 50.8 0)
  3565. (effects (font (size 1.27 1.27)) hide)
  3566. )
  3567. (property "LCSC" "C1525" (id 4) (at 193.04 50.8 0)
  3568. (effects (font (size 1.27 1.27)) hide)
  3569. )
  3570. (pin "1" (uuid 98f56ddf-913f-4b34-a920-b3440605d9de))
  3571. (pin "2" (uuid 17e1240d-3e88-440a-86f0-792aefe84b55))
  3572. )
  3573. (symbol (lib_id "Device:C_Small") (at 182.88 50.8 0) (unit 1)
  3574. (in_bom yes) (on_board yes)
  3575. (uuid 00000000-0000-0000-0000-00006199437d)
  3576. (property "Reference" "C6" (id 0) (at 185.2168 49.6316 0)
  3577. (effects (font (size 1.27 1.27)) (justify left))
  3578. )
  3579. (property "Value" "100nF" (id 1) (at 185.2168 51.943 0)
  3580. (effects (font (size 1.27 1.27)) (justify left))
  3581. )
  3582. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 182.88 50.8 0)
  3583. (effects (font (size 1.27 1.27)) hide)
  3584. )
  3585. (property "Datasheet" "~" (id 3) (at 182.88 50.8 0)
  3586. (effects (font (size 1.27 1.27)) hide)
  3587. )
  3588. (property "LCSC" "C1525" (id 4) (at 182.88 50.8 0)
  3589. (effects (font (size 1.27 1.27)) hide)
  3590. )
  3591. (pin "1" (uuid 80b9f0be-c014-4186-98aa-24c574a5ec24))
  3592. (pin "2" (uuid 7aeeef14-1cf4-4406-9f3a-6798a3964aa1))
  3593. )
  3594. (symbol (lib_id "Device:C_Small") (at 208.28 99.06 0) (unit 1)
  3595. (in_bom yes) (on_board yes)
  3596. (uuid 00000000-0000-0000-0000-000061994383)
  3597. (property "Reference" "C7" (id 0) (at 204.47 96.52 0)
  3598. (effects (font (size 1.27 1.27)) (justify left))
  3599. )
  3600. (property "Value" "1uF" (id 1) (at 204.47 101.6 0)
  3601. (effects (font (size 1.27 1.27)) (justify left))
  3602. )
  3603. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 208.28 99.06 0)
  3604. (effects (font (size 1.27 1.27)) hide)
  3605. )
  3606. (property "Datasheet" "~" (id 3) (at 208.28 99.06 0)
  3607. (effects (font (size 1.27 1.27)) hide)
  3608. )
  3609. (property "LCSC" "C15849" (id 4) (at 208.28 99.06 0)
  3610. (effects (font (size 1.27 1.27)) hide)
  3611. )
  3612. (pin "1" (uuid 92da9f6d-90ca-49fc-ba66-2f9a7f946f8e))
  3613. (pin "2" (uuid 7465740f-6bfc-4c0e-9839-e36c551ccab1))
  3614. )
  3615. (symbol (lib_id "Device:C_Small") (at 198.12 109.22 0) (unit 1)
  3616. (in_bom yes) (on_board yes)
  3617. (uuid 00000000-0000-0000-0000-000061994389)
  3618. (property "Reference" "C9" (id 0) (at 200.4568 108.0516 0)
  3619. (effects (font (size 1.27 1.27)) (justify left))
  3620. )
  3621. (property "Value" "1uF" (id 1) (at 200.4568 110.363 0)
  3622. (effects (font (size 1.27 1.27)) (justify left))
  3623. )
  3624. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 198.12 109.22 0)
  3625. (effects (font (size 1.27 1.27)) hide)
  3626. )
  3627. (property "Datasheet" "~" (id 3) (at 198.12 109.22 0)
  3628. (effects (font (size 1.27 1.27)) hide)
  3629. )
  3630. (property "LCSC" "C15849" (id 4) (at 198.12 109.22 0)
  3631. (effects (font (size 1.27 1.27)) hide)
  3632. )
  3633. (pin "1" (uuid 6845caeb-6485-48fb-9c50-6cb716fb69d9))
  3634. (pin "2" (uuid a78d3080-3cc4-49c5-8b28-c695a6a27c3e))
  3635. )
  3636. (symbol (lib_id "Device:R_Small") (at 218.44 127 270) (unit 1)
  3637. (in_bom yes) (on_board yes)
  3638. (uuid 00000000-0000-0000-0000-0000619943a1)
  3639. (property "Reference" "R5" (id 0) (at 218.44 122.0216 90))
  3640. (property "Value" "3k" (id 1) (at 218.44 124.333 90))
  3641. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 218.44 127 0)
  3642. (effects (font (size 1.27 1.27)) hide)
  3643. )
  3644. (property "Datasheet" "~" (id 3) (at 218.44 127 0)
  3645. (effects (font (size 1.27 1.27)) hide)
  3646. )
  3647. (property "LCSC" "C137987" (id 4) (at 218.44 127 0)
  3648. (effects (font (size 1.27 1.27)) hide)
  3649. )
  3650. (pin "1" (uuid 6c675992-2791-4a03-9af0-3aac5627ec8b))
  3651. (pin "2" (uuid 1aa48519-cecd-4f68-afab-8bc9d287d0ff))
  3652. )
  3653. (symbol (lib_id "power:GND") (at 212.09 128.27 0) (unit 1)
  3654. (in_bom yes) (on_board yes)
  3655. (uuid 00000000-0000-0000-0000-0000619943a8)
  3656. (property "Reference" "#PWR011" (id 0) (at 212.09 134.62 0)
  3657. (effects (font (size 1.27 1.27)) hide)
  3658. )
  3659. (property "Value" "GND" (id 1) (at 212.217 132.6642 0))
  3660. (property "Footprint" "" (id 2) (at 212.09 128.27 0)
  3661. (effects (font (size 1.27 1.27)) hide)
  3662. )
  3663. (property "Datasheet" "" (id 3) (at 212.09 128.27 0)
  3664. (effects (font (size 1.27 1.27)) hide)
  3665. )
  3666. (pin "1" (uuid 0606fc47-0bf5-4677-9f8c-a791c7ac79e1))
  3667. )
  3668. (symbol (lib_id "power:+3.3V") (at 182.88 44.45 0) (unit 1)
  3669. (in_bom yes) (on_board yes)
  3670. (uuid 00000000-0000-0000-0000-0000619a72a6)
  3671. (property "Reference" "#PWR0101" (id 0) (at 182.88 48.26 0)
  3672. (effects (font (size 1.27 1.27)) hide)
  3673. )
  3674. (property "Value" "+3.3V" (id 1) (at 183.261 40.0558 0))
  3675. (property "Footprint" "" (id 2) (at 182.88 44.45 0)
  3676. (effects (font (size 1.27 1.27)) hide)
  3677. )
  3678. (property "Datasheet" "" (id 3) (at 182.88 44.45 0)
  3679. (effects (font (size 1.27 1.27)) hide)
  3680. )
  3681. (pin "1" (uuid 81d7537b-7a6f-40df-a35e-b1b3d6bcf4e3))
  3682. )
  3683. (symbol (lib_id "power:GND") (at 182.88 59.69 0) (unit 1)
  3684. (in_bom yes) (on_board yes)
  3685. (uuid 00000000-0000-0000-0000-000061a13217)
  3686. (property "Reference" "#PWR0109" (id 0) (at 182.88 66.04 0)
  3687. (effects (font (size 1.27 1.27)) hide)
  3688. )
  3689. (property "Value" "GND" (id 1) (at 183.007 64.0842 0))
  3690. (property "Footprint" "" (id 2) (at 182.88 59.69 0)
  3691. (effects (font (size 1.27 1.27)) hide)
  3692. )
  3693. (property "Datasheet" "" (id 3) (at 182.88 59.69 0)
  3694. (effects (font (size 1.27 1.27)) hide)
  3695. )
  3696. (pin "1" (uuid a7bd2aef-7b5d-4b62-a6cf-0429a97d9f8e))
  3697. )
  3698. (symbol (lib_id "Device:C_Small") (at 99.06 80.01 270) (unit 1)
  3699. (in_bom yes) (on_board yes)
  3700. (uuid 00000000-0000-0000-0000-000061d96382)
  3701. (property "Reference" "C29" (id 0) (at 95.25 78.74 90))
  3702. (property "Value" "100nF" (id 1) (at 104.14 78.74 90))
  3703. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 99.06 80.01 0)
  3704. (effects (font (size 1.27 1.27)) hide)
  3705. )
  3706. (property "Datasheet" "~" (id 3) (at 99.06 80.01 0)
  3707. (effects (font (size 1.27 1.27)) hide)
  3708. )
  3709. (property "LCSC" "C1525" (id 4) (at 99.06 80.01 0)
  3710. (effects (font (size 1.27 1.27)) hide)
  3711. )
  3712. (pin "1" (uuid 7925e8c4-8de7-4fc1-a0b4-aa729fe3cf83))
  3713. (pin "2" (uuid d3bc2bcb-0d41-471f-bc83-1b0fa1a7dc5b))
  3714. )
  3715. (symbol (lib_id "Device:D_Schottky") (at 110.49 95.25 270) (unit 1)
  3716. (in_bom yes) (on_board yes)
  3717. (uuid 00000000-0000-0000-0000-000061d9673d)
  3718. (property "Reference" "D6" (id 0) (at 105.41 92.71 90)
  3719. (effects (font (size 1.27 1.27)) (justify left))
  3720. )
  3721. (property "Value" "MBRA340T" (id 1) (at 100.33 97.79 90)
  3722. (effects (font (size 1.27 1.27)) (justify left))
  3723. )
  3724. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 110.49 95.25 0)
  3725. (effects (font (size 1.27 1.27)) hide)
  3726. )
  3727. (property "Datasheet" "~" (id 3) (at 110.49 95.25 0)
  3728. (effects (font (size 1.27 1.27)) hide)
  3729. )
  3730. (property "LCSC" "C26178" (id 4) (at 110.49 95.25 90)
  3731. (effects (font (size 1.27 1.27)) hide)
  3732. )
  3733. (pin "1" (uuid 639e46ca-74df-4626-a3d7-41a28ae94997))
  3734. (pin "2" (uuid 9e962a28-368d-4dc8-9054-7e18b53c628d))
  3735. )
  3736. (symbol (lib_id "Device:R_Small") (at 135.89 86.36 0) (unit 1)
  3737. (in_bom yes) (on_board yes)
  3738. (uuid 00000000-0000-0000-0000-000061d96749)
  3739. (property "Reference" "R47" (id 0) (at 130.81 85.09 0)
  3740. (effects (font (size 1.27 1.27)) (justify left))
  3741. )
  3742. (property "Value" "17k" (id 1) (at 129.54 87.63 0)
  3743. (effects (font (size 1.27 1.27)) (justify left))
  3744. )
  3745. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 135.89 86.36 0)
  3746. (effects (font (size 1.27 1.27)) hide)
  3747. )
  3748. (property "Datasheet" "~" (id 3) (at 135.89 86.36 0)
  3749. (effects (font (size 1.27 1.27)) hide)
  3750. )
  3751. (property "LCSC" "C26957" (id 4) (at 135.89 86.36 0)
  3752. (effects (font (size 1.27 1.27)) hide)
  3753. )
  3754. (pin "1" (uuid f1a78f88-aedd-4a5c-981e-2f6b6e2a5eca))
  3755. (pin "2" (uuid 3a103cb9-2641-4097-85f3-19d4ef8a3e3f))
  3756. )
  3757. (symbol (lib_id "Device:R_Small") (at 135.89 95.25 0) (unit 1)
  3758. (in_bom yes) (on_board yes)
  3759. (uuid 00000000-0000-0000-0000-000061d96754)
  3760. (property "Reference" "R48" (id 0) (at 130.81 93.98 0)
  3761. (effects (font (size 1.27 1.27)) (justify left))
  3762. )
  3763. (property "Value" "3.24k" (id 1) (at 129.54 96.52 0)
  3764. (effects (font (size 1.27 1.27)) (justify left))
  3765. )
  3766. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 135.89 95.25 0)
  3767. (effects (font (size 1.27 1.27)) hide)
  3768. )
  3769. (property "Datasheet" "~" (id 3) (at 135.89 95.25 0)
  3770. (effects (font (size 1.27 1.27)) hide)
  3771. )
  3772. (property "LCSC" "C11457" (id 4) (at 135.89 95.25 0)
  3773. (effects (font (size 1.27 1.27)) hide)
  3774. )
  3775. (pin "1" (uuid ad02cc6f-f8de-445d-afee-5ad2a8d2ece9))
  3776. (pin "2" (uuid 2d7ca2aa-d2c1-419a-bcb6-37fa4a1ea787))
  3777. )
  3778. (symbol (lib_name "TPS54331_2") (lib_id "sm6uax:TPS54331") (at 77.47 85.09 0) (unit 1)
  3779. (in_bom yes) (on_board yes)
  3780. (uuid 00000000-0000-0000-0000-000061d9675f)
  3781. (property "Reference" "U6" (id 0) (at 77.47 73.2282 0))
  3782. (property "Value" "TPS54331" (id 1) (at 77.47 75.5396 0))
  3783. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 78.74 93.98 0)
  3784. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  3785. )
  3786. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tps5430.pdf" (id 3) (at 77.47 85.09 0)
  3787. (effects (font (size 1.27 1.27)) hide)
  3788. )
  3789. (property "LCSC" "C9865" (id 4) (at 77.47 85.09 0)
  3790. (effects (font (size 1.27 1.27)) hide)
  3791. )
  3792. (pin "1" (uuid 03a82d2a-4b52-42c6-bd1f-7e60398a821b))
  3793. (pin "2" (uuid f9f4c7d0-0bca-447a-b7d6-14b4f3a1670e))
  3794. (pin "2" (uuid f9f4c7d0-0bca-447a-b7d6-14b4f3a1670e))
  3795. (pin "3" (uuid 4b206a73-9f84-4652-a616-b1800860c88f))
  3796. (pin "4" (uuid 218ead00-ac40-4443-b3c9-afe9681620b5))
  3797. (pin "5" (uuid 8172826f-fc54-470d-a8b5-4b25126c61c2))
  3798. (pin "6" (uuid f1f0f3fd-9b10-4528-9ae3-37e09b3bef4c))
  3799. (pin "7" (uuid ff5f7c6e-dc13-4122-95c7-ecf5d8ca0b86))
  3800. (pin "8" (uuid 84f3e33e-3762-448b-9363-ce47ebcee824))
  3801. )
  3802. (symbol (lib_id "Device:C_Small") (at 147.32 90.17 0) (unit 1)
  3803. (in_bom yes) (on_board yes)
  3804. (uuid 00000000-0000-0000-0000-000061d96772)
  3805. (property "Reference" "C31" (id 0) (at 142.24 87.63 0)
  3806. (effects (font (size 1.27 1.27)) (justify left))
  3807. )
  3808. (property "Value" "22uF" (id 1) (at 142.24 92.71 0)
  3809. (effects (font (size 1.27 1.27)) (justify left))
  3810. )
  3811. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 147.32 90.17 0)
  3812. (effects (font (size 1.27 1.27)) hide)
  3813. )
  3814. (property "Datasheet" "~" (id 3) (at 147.32 90.17 0)
  3815. (effects (font (size 1.27 1.27)) hide)
  3816. )
  3817. (property "LCSC" "C342620" (id 4) (at 147.32 90.17 0)
  3818. (effects (font (size 1.27 1.27)) hide)
  3819. )
  3820. (pin "1" (uuid 9547d808-24e2-4dca-a2d2-4bee4239fe22))
  3821. (pin "2" (uuid 148af5df-7a53-4ce6-8e7e-061f512198cb))
  3822. )
  3823. (symbol (lib_id "Device:C_Small") (at 95.25 107.95 0) (unit 1)
  3824. (in_bom yes) (on_board yes)
  3825. (uuid 00000000-0000-0000-0000-000061d9678d)
  3826. (property "Reference" "C28" (id 0) (at 90.17 105.41 0)
  3827. (effects (font (size 1.27 1.27)) (justify left))
  3828. )
  3829. (property "Value" "5600pF" (id 1) (at 87.63 110.49 0)
  3830. (effects (font (size 1.27 1.27)) (justify left))
  3831. )
  3832. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 95.25 107.95 0)
  3833. (effects (font (size 1.27 1.27)) hide)
  3834. )
  3835. (property "Datasheet" "~" (id 3) (at 95.25 107.95 0)
  3836. (effects (font (size 1.27 1.27)) hide)
  3837. )
  3838. (property "LCSC" "C170143" (id 4) (at 95.25 107.95 0)
  3839. (effects (font (size 1.27 1.27)) hide)
  3840. )
  3841. (pin "1" (uuid 556ad5a7-4512-43f1-9e82-fe7c12a54eab))
  3842. (pin "2" (uuid 2695d85b-4366-414d-80b7-3210677e8e13))
  3843. )
  3844. (symbol (lib_id "Device:C_Small") (at 105.41 114.3 0) (unit 1)
  3845. (in_bom yes) (on_board yes)
  3846. (uuid 00000000-0000-0000-0000-000061d96798)
  3847. (property "Reference" "C30" (id 0) (at 100.33 111.76 0)
  3848. (effects (font (size 1.27 1.27)) (justify left))
  3849. )
  3850. (property "Value" "390pF" (id 1) (at 99.06 116.84 0)
  3851. (effects (font (size 1.27 1.27)) (justify left))
  3852. )
  3853. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 105.41 114.3 0)
  3854. (effects (font (size 1.27 1.27)) hide)
  3855. )
  3856. (property "Datasheet" "~" (id 3) (at 105.41 114.3 0)
  3857. (effects (font (size 1.27 1.27)) hide)
  3858. )
  3859. (property "LCSC" "C363517" (id 4) (at 105.41 114.3 0)
  3860. (effects (font (size 1.27 1.27)) hide)
  3861. )
  3862. (pin "1" (uuid a8f675a1-594b-4635-aef0-0bdd5268274d))
  3863. (pin "2" (uuid d7c04334-87c3-4b4f-8bcc-835e908e4c2d))
  3864. )
  3865. (symbol (lib_id "Device:R_Small") (at 95.25 116.84 0) (unit 1)
  3866. (in_bom yes) (on_board yes)
  3867. (uuid 00000000-0000-0000-0000-000061d967a3)
  3868. (property "Reference" "R46" (id 0) (at 90.17 114.3 0)
  3869. (effects (font (size 1.27 1.27)) (justify left))
  3870. )
  3871. (property "Value" "12.7k" (id 1) (at 88.9 119.38 0)
  3872. (effects (font (size 1.27 1.27)) (justify left))
  3873. )
  3874. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 95.25 116.84 0)
  3875. (effects (font (size 1.27 1.27)) hide)
  3876. )
  3877. (property "Datasheet" "~" (id 3) (at 95.25 116.84 0)
  3878. (effects (font (size 1.27 1.27)) hide)
  3879. )
  3880. (property "LCSC" "C25853" (id 4) (at 95.25 116.84 0)
  3881. (effects (font (size 1.27 1.27)) hide)
  3882. )
  3883. (pin "1" (uuid 016d91f1-2cd7-466b-a498-06f1d1a2fdc0))
  3884. (pin "2" (uuid 87c4f259-cd6d-4223-a86e-c94ce1355331))
  3885. )
  3886. (symbol (lib_id "power:GND") (at 95.25 124.46 0) (unit 1)
  3887. (in_bom yes) (on_board yes)
  3888. (uuid 00000000-0000-0000-0000-000061d967b6)
  3889. (property "Reference" "#PWR0148" (id 0) (at 95.25 130.81 0)
  3890. (effects (font (size 1.27 1.27)) hide)
  3891. )
  3892. (property "Value" "GND" (id 1) (at 95.377 128.8542 0))
  3893. (property "Footprint" "" (id 2) (at 95.25 124.46 0)
  3894. (effects (font (size 1.27 1.27)) hide)
  3895. )
  3896. (property "Datasheet" "" (id 3) (at 95.25 124.46 0)
  3897. (effects (font (size 1.27 1.27)) hide)
  3898. )
  3899. (pin "1" (uuid 446a9d5b-2dda-4deb-af3e-f5a9ce915445))
  3900. )
  3901. (symbol (lib_id "power:GND") (at 135.89 102.87 0) (unit 1)
  3902. (in_bom yes) (on_board yes)
  3903. (uuid 00000000-0000-0000-0000-000061d967c0)
  3904. (property "Reference" "#PWR0149" (id 0) (at 135.89 109.22 0)
  3905. (effects (font (size 1.27 1.27)) hide)
  3906. )
  3907. (property "Value" "GND" (id 1) (at 136.017 107.2642 0))
  3908. (property "Footprint" "" (id 2) (at 135.89 102.87 0)
  3909. (effects (font (size 1.27 1.27)) hide)
  3910. )
  3911. (property "Datasheet" "" (id 3) (at 135.89 102.87 0)
  3912. (effects (font (size 1.27 1.27)) hide)
  3913. )
  3914. (pin "1" (uuid a97ddcf9-35e1-4c84-8b67-a79d614c9da3))
  3915. )
  3916. (symbol (lib_id "Device:C_Small") (at 53.34 95.25 0) (unit 1)
  3917. (in_bom yes) (on_board yes)
  3918. (uuid 00000000-0000-0000-0000-000061d967cc)
  3919. (property "Reference" "C27" (id 0) (at 48.26 92.71 0)
  3920. (effects (font (size 1.27 1.27)) (justify left))
  3921. )
  3922. (property "Value" "15nF" (id 1) (at 46.99 97.79 0)
  3923. (effects (font (size 1.27 1.27)) (justify left))
  3924. )
  3925. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 53.34 95.25 0)
  3926. (effects (font (size 1.27 1.27)) hide)
  3927. )
  3928. (property "Datasheet" "~" (id 3) (at 53.34 95.25 0)
  3929. (effects (font (size 1.27 1.27)) hide)
  3930. )
  3931. (property "LCSC" "C1548" (id 4) (at 53.34 95.25 0)
  3932. (effects (font (size 1.27 1.27)) hide)
  3933. )
  3934. (pin "1" (uuid ffb29c39-f5ad-4874-a8cc-c1e498ffd7f1))
  3935. (pin "2" (uuid 55005bff-1f1e-4ee9-80ee-f3aa096d9a66))
  3936. )
  3937. (symbol (lib_id "Device:R_Small") (at 40.64 86.36 0) (unit 1)
  3938. (in_bom yes) (on_board yes)
  3939. (uuid 00000000-0000-0000-0000-000061d967ed)
  3940. (property "Reference" "R44" (id 0) (at 35.56 85.09 0)
  3941. (effects (font (size 1.27 1.27)) (justify left))
  3942. )
  3943. (property "Value" "330k" (id 1) (at 34.29 87.63 0)
  3944. (effects (font (size 1.27 1.27)) (justify left))
  3945. )
  3946. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 40.64 86.36 0)
  3947. (effects (font (size 1.27 1.27)) hide)
  3948. )
  3949. (property "Datasheet" "~" (id 3) (at 40.64 86.36 0)
  3950. (effects (font (size 1.27 1.27)) hide)
  3951. )
  3952. (property "LCSC" "C25778" (id 4) (at 40.64 86.36 0)
  3953. (effects (font (size 1.27 1.27)) hide)
  3954. )
  3955. (pin "1" (uuid 8f16db36-f461-478b-b5e2-6f0c6400d0f7))
  3956. (pin "2" (uuid 469b338c-3f2b-4fe6-aef6-baffb854cc6a))
  3957. )
  3958. (symbol (lib_id "Device:R_Small") (at 40.64 95.25 0) (unit 1)
  3959. (in_bom yes) (on_board yes)
  3960. (uuid 00000000-0000-0000-0000-000061d967f8)
  3961. (property "Reference" "R45" (id 0) (at 35.56 93.98 0)
  3962. (effects (font (size 1.27 1.27)) (justify left))
  3963. )
  3964. (property "Value" "120k" (id 1) (at 34.29 96.52 0)
  3965. (effects (font (size 1.27 1.27)) (justify left))
  3966. )
  3967. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 40.64 95.25 0)
  3968. (effects (font (size 1.27 1.27)) hide)
  3969. )
  3970. (property "Datasheet" "~" (id 3) (at 40.64 95.25 0)
  3971. (effects (font (size 1.27 1.27)) hide)
  3972. )
  3973. (property "LCSC" "C25750" (id 4) (at 40.64 95.25 0)
  3974. (effects (font (size 1.27 1.27)) hide)
  3975. )
  3976. (pin "1" (uuid a775717d-e690-4114-87a0-5bb6d6a2759f))
  3977. (pin "2" (uuid 0d8b8eae-bc39-420b-99fa-c37db3102573))
  3978. )
  3979. (symbol (lib_id "Device:C_Small") (at 29.21 88.9 0) (unit 1)
  3980. (in_bom yes) (on_board yes)
  3981. (uuid 00000000-0000-0000-0000-000061d96808)
  3982. (property "Reference" "C26" (id 0) (at 25.4 86.36 0)
  3983. (effects (font (size 1.27 1.27)) (justify left))
  3984. )
  3985. (property "Value" "22uF" (id 1) (at 24.13 91.44 0)
  3986. (effects (font (size 1.27 1.27)) (justify left))
  3987. )
  3988. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 29.21 88.9 0)
  3989. (effects (font (size 1.27 1.27)) hide)
  3990. )
  3991. (property "Datasheet" "~" (id 3) (at 29.21 88.9 0)
  3992. (effects (font (size 1.27 1.27)) hide)
  3993. )
  3994. (property "LCSC" "C342620" (id 4) (at 29.21 88.9 0)
  3995. (effects (font (size 1.27 1.27)) hide)
  3996. )
  3997. (pin "1" (uuid f63c1874-a4b0-4cb1-81d3-21d9570f75f9))
  3998. (pin "2" (uuid 99be4699-0b31-4f45-a8d9-d62a963f29fb))
  3999. )
  4000. (symbol (lib_id "Device:L") (at 121.92 82.55 90) (unit 1)
  4001. (in_bom yes) (on_board yes)
  4002. (uuid 00000000-0000-0000-0000-000061d9681d)
  4003. (property "Reference" "L1" (id 0) (at 121.92 80.01 90))
  4004. (property "Value" "15uH" (id 1) (at 121.92 83.82 90))
  4005. (property "Footprint" "Greaseweazle:L_6.3x6.3_H3" (id 2) (at 121.92 82.55 0)
  4006. (effects (font (size 1.27 1.27)) hide)
  4007. )
  4008. (property "Datasheet" "~" (id 3) (at 121.92 82.55 0)
  4009. (effects (font (size 1.27 1.27)) hide)
  4010. )
  4011. (property "LCSC" "C83374" (id 4) (at 121.92 82.55 90)
  4012. (effects (font (size 1.27 1.27)) hide)
  4013. )
  4014. (pin "1" (uuid efd92761-6feb-4a95-82cd-18a72aa3d352))
  4015. (pin "2" (uuid a32cfe2c-50dd-44d5-8b31-f0f99e406fe1))
  4016. )
  4017. (symbol (lib_id "Device:CP_Small") (at 21.59 88.9 0) (unit 1)
  4018. (in_bom yes) (on_board yes)
  4019. (uuid 00000000-0000-0000-0000-000061d96834)
  4020. (property "Reference" "C4" (id 0) (at 15.24 86.36 0)
  4021. (effects (font (size 1.27 1.27)) (justify left))
  4022. )
  4023. (property "Value" "220uF" (id 1) (at 15.24 91.44 0)
  4024. (effects (font (size 1.27 1.27)) (justify left))
  4025. )
  4026. (property "Footprint" "Capacitor_SMD:CP_Elec_8x10.5" (id 2) (at 21.59 88.9 0)
  4027. (effects (font (size 1.27 1.27)) hide)
  4028. )
  4029. (property "Datasheet" "~" (id 3) (at 21.59 88.9 0)
  4030. (effects (font (size 1.27 1.27)) hide)
  4031. )
  4032. (property "LCSC" "C310848" (id 4) (at 21.59 88.9 0)
  4033. (effects (font (size 1.27 1.27)) hide)
  4034. )
  4035. (pin "1" (uuid 7aaf751a-5bf6-478b-b8f8-7ee814ff0d56))
  4036. (pin "2" (uuid d8466d92-7b78-49ea-99d4-5f09ab712c66))
  4037. )
  4038. (symbol (lib_id "Device:LED") (at 167.64 95.25 90) (unit 1)
  4039. (in_bom yes) (on_board yes)
  4040. (uuid 00000000-0000-0000-0000-000061d96850)
  4041. (property "Reference" "D7" (id 0) (at 161.29 93.98 90)
  4042. (effects (font (size 1.27 1.27)) (justify right))
  4043. )
  4044. (property "Value" "LED-B" (id 1) (at 158.75 96.52 90)
  4045. (effects (font (size 1.27 1.27)) (justify right))
  4046. )
  4047. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 167.64 95.25 0)
  4048. (effects (font (size 1.27 1.27)) hide)
  4049. )
  4050. (property "Datasheet" "~" (id 3) (at 167.64 95.25 0)
  4051. (effects (font (size 1.27 1.27)) hide)
  4052. )
  4053. (property "LCSC" "C72041" (id 4) (at 167.64 95.25 0)
  4054. (effects (font (size 1.27 1.27)) hide)
  4055. )
  4056. (pin "1" (uuid 66102acc-ff95-4123-b269-c134a4cec37c))
  4057. (pin "2" (uuid 2843267f-76e4-4f14-b0cf-8c0358a615f5))
  4058. )
  4059. (symbol (lib_id "Device:R_Small") (at 167.64 87.63 0) (unit 1)
  4060. (in_bom yes) (on_board yes)
  4061. (uuid 00000000-0000-0000-0000-000061d9685b)
  4062. (property "Reference" "R49" (id 0) (at 162.56 86.36 0)
  4063. (effects (font (size 1.27 1.27)) (justify left))
  4064. )
  4065. (property "Value" "1,5k" (id 1) (at 162.56 90.17 0)
  4066. (effects (font (size 1.27 1.27)) (justify left))
  4067. )
  4068. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 167.64 87.63 0)
  4069. (effects (font (size 1.27 1.27)) hide)
  4070. )
  4071. (property "Datasheet" "~" (id 3) (at 167.64 87.63 0)
  4072. (effects (font (size 1.27 1.27)) hide)
  4073. )
  4074. (property "LCSC" "C25867" (id 4) (at 167.64 87.63 0)
  4075. (effects (font (size 1.27 1.27)) hide)
  4076. )
  4077. (pin "1" (uuid 53ff3c47-8b7b-4cdf-9e4f-1879e2cab46c))
  4078. (pin "2" (uuid fc9b3a92-91d8-4dc6-896d-26023ff41752))
  4079. )
  4080. (symbol (lib_id "power:+12V") (at 21.59 77.47 0) (unit 1)
  4081. (in_bom yes) (on_board yes)
  4082. (uuid 00000000-0000-0000-0000-000061db36eb)
  4083. (property "Reference" "#PWR0151" (id 0) (at 21.59 81.28 0)
  4084. (effects (font (size 1.27 1.27)) hide)
  4085. )
  4086. (property "Value" "+12V" (id 1) (at 21.971 73.0758 0))
  4087. (property "Footprint" "" (id 2) (at 21.59 77.47 0)
  4088. (effects (font (size 1.27 1.27)) hide)
  4089. )
  4090. (property "Datasheet" "" (id 3) (at 21.59 77.47 0)
  4091. (effects (font (size 1.27 1.27)) hide)
  4092. )
  4093. (pin "1" (uuid 08c95c5c-3289-4219-967f-78d0062c8e85))
  4094. )
  4095. (symbol (lib_id "power:+3V3") (at 223.52 69.85 0) (unit 1)
  4096. (in_bom yes) (on_board yes)
  4097. (uuid 00000000-0000-0000-0000-000061deec14)
  4098. (property "Reference" "#PWR0152" (id 0) (at 223.52 73.66 0)
  4099. (effects (font (size 1.27 1.27)) hide)
  4100. )
  4101. (property "Value" "+3V3" (id 1) (at 223.901 65.4558 0))
  4102. (property "Footprint" "" (id 2) (at 223.52 69.85 0)
  4103. (effects (font (size 1.27 1.27)) hide)
  4104. )
  4105. (property "Datasheet" "" (id 3) (at 223.52 69.85 0)
  4106. (effects (font (size 1.27 1.27)) hide)
  4107. )
  4108. (pin "1" (uuid 4136c774-4188-4226-b2ff-ae737fd31de8))
  4109. )
  4110. (symbol (lib_id "power:GND") (at 278.13 146.05 0) (unit 1)
  4111. (in_bom yes) (on_board yes)
  4112. (uuid 00000000-0000-0000-0000-000061e68f7d)
  4113. (property "Reference" "#PWR0153" (id 0) (at 278.13 152.4 0)
  4114. (effects (font (size 1.27 1.27)) hide)
  4115. )
  4116. (property "Value" "GND" (id 1) (at 278.257 150.4442 0))
  4117. (property "Footprint" "" (id 2) (at 278.13 146.05 0)
  4118. (effects (font (size 1.27 1.27)) hide)
  4119. )
  4120. (property "Datasheet" "" (id 3) (at 278.13 146.05 0)
  4121. (effects (font (size 1.27 1.27)) hide)
  4122. )
  4123. (pin "1" (uuid c84d138b-6857-4d9a-aaec-868b5a7a5fd9))
  4124. )
  4125. (symbol (lib_id "Device:C_Small") (at 203.2 116.84 0) (unit 1)
  4126. (in_bom yes) (on_board yes)
  4127. (uuid 00000000-0000-0000-0000-000061edc345)
  4128. (property "Reference" "C13" (id 0) (at 205.5368 115.6716 0)
  4129. (effects (font (size 1.27 1.27)) (justify left))
  4130. )
  4131. (property "Value" "2.2uF" (id 1) (at 205.5368 117.983 0)
  4132. (effects (font (size 1.27 1.27)) (justify left))
  4133. )
  4134. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 203.2 116.84 0)
  4135. (effects (font (size 1.27 1.27)) hide)
  4136. )
  4137. (property "Datasheet" "~" (id 3) (at 203.2 116.84 0)
  4138. (effects (font (size 1.27 1.27)) hide)
  4139. )
  4140. (property "LCSC" "C23630" (id 4) (at 203.2 116.84 0)
  4141. (effects (font (size 1.27 1.27)) hide)
  4142. )
  4143. (pin "1" (uuid 47dcae07-e122-4eeb-b9b1-aa11a4366d59))
  4144. (pin "2" (uuid ab1bbb3b-0fbb-44ba-87d8-c0f7372ea84d))
  4145. )
  4146. (symbol (lib_id "power:GND") (at 203.2 120.65 0) (unit 1)
  4147. (in_bom yes) (on_board yes)
  4148. (uuid 00000000-0000-0000-0000-000061ee93e8)
  4149. (property "Reference" "#PWR0154" (id 0) (at 203.2 127 0)
  4150. (effects (font (size 1.27 1.27)) hide)
  4151. )
  4152. (property "Value" "GND" (id 1) (at 203.327 125.0442 0))
  4153. (property "Footprint" "" (id 2) (at 203.2 120.65 0)
  4154. (effects (font (size 1.27 1.27)) hide)
  4155. )
  4156. (property "Datasheet" "" (id 3) (at 203.2 120.65 0)
  4157. (effects (font (size 1.27 1.27)) hide)
  4158. )
  4159. (pin "1" (uuid fca6177b-d012-44f8-9bc7-9ccafed45b60))
  4160. )
  4161. (symbol (lib_id "Device:C_Small") (at 212.09 116.84 0) (unit 1)
  4162. (in_bom yes) (on_board yes)
  4163. (uuid 00000000-0000-0000-0000-000061ef5b8b)
  4164. (property "Reference" "C15" (id 0) (at 214.4268 115.6716 0)
  4165. (effects (font (size 1.27 1.27)) (justify left))
  4166. )
  4167. (property "Value" "2.2uF" (id 1) (at 214.4268 117.983 0)
  4168. (effects (font (size 1.27 1.27)) (justify left))
  4169. )
  4170. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 212.09 116.84 0)
  4171. (effects (font (size 1.27 1.27)) hide)
  4172. )
  4173. (property "Datasheet" "~" (id 3) (at 212.09 116.84 0)
  4174. (effects (font (size 1.27 1.27)) hide)
  4175. )
  4176. (property "LCSC" "C23630" (id 4) (at 212.09 116.84 0)
  4177. (effects (font (size 1.27 1.27)) hide)
  4178. )
  4179. (pin "1" (uuid 818a08dc-25e0-4899-9efa-0585cd429aa5))
  4180. (pin "2" (uuid 4a8e4cb2-1ea8-4cc8-8555-2a9a3b87c28e))
  4181. )
  4182. (symbol (lib_id "power:GND") (at 212.09 120.65 0) (unit 1)
  4183. (in_bom yes) (on_board yes)
  4184. (uuid 00000000-0000-0000-0000-000061f19e0b)
  4185. (property "Reference" "#PWR0158" (id 0) (at 212.09 127 0)
  4186. (effects (font (size 1.27 1.27)) hide)
  4187. )
  4188. (property "Value" "GND" (id 1) (at 212.217 125.0442 0))
  4189. (property "Footprint" "" (id 2) (at 212.09 120.65 0)
  4190. (effects (font (size 1.27 1.27)) hide)
  4191. )
  4192. (property "Datasheet" "" (id 3) (at 212.09 120.65 0)
  4193. (effects (font (size 1.27 1.27)) hide)
  4194. )
  4195. (pin "1" (uuid 4754aff0-4258-4419-b51c-c9c4afd3e6bd))
  4196. )
  4197. (symbol (lib_id "power:GND") (at 217.17 133.35 0) (unit 1)
  4198. (in_bom yes) (on_board yes)
  4199. (uuid 00000000-0000-0000-0000-000061f3f533)
  4200. (property "Reference" "#PWR0155" (id 0) (at 217.17 139.7 0)
  4201. (effects (font (size 1.27 1.27)) hide)
  4202. )
  4203. (property "Value" "GND" (id 1) (at 220.98 134.62 0))
  4204. (property "Footprint" "" (id 2) (at 217.17 133.35 0)
  4205. (effects (font (size 1.27 1.27)) hide)
  4206. )
  4207. (property "Datasheet" "" (id 3) (at 217.17 133.35 0)
  4208. (effects (font (size 1.27 1.27)) hide)
  4209. )
  4210. (pin "1" (uuid 41a3bf0b-0cfa-4e74-8ced-8de21513170c))
  4211. )
  4212. (symbol (lib_id "power:+3V3") (at 205.74 135.89 0) (unit 1)
  4213. (in_bom yes) (on_board yes)
  4214. (uuid 00000000-0000-0000-0000-000061f4c845)
  4215. (property "Reference" "#PWR0156" (id 0) (at 205.74 139.7 0)
  4216. (effects (font (size 1.27 1.27)) hide)
  4217. )
  4218. (property "Value" "+3V3" (id 1) (at 206.121 131.4958 0))
  4219. (property "Footprint" "" (id 2) (at 205.74 135.89 0)
  4220. (effects (font (size 1.27 1.27)) hide)
  4221. )
  4222. (property "Datasheet" "" (id 3) (at 205.74 135.89 0)
  4223. (effects (font (size 1.27 1.27)) hide)
  4224. )
  4225. (pin "1" (uuid 641e4a17-2843-429a-92b8-0a09e7873819))
  4226. )
  4227. (symbol (lib_id "Device:C_Small") (at 199.39 99.06 0) (unit 1)
  4228. (in_bom yes) (on_board yes)
  4229. (uuid 00000000-0000-0000-0000-000061f82fc0)
  4230. (property "Reference" "C11" (id 0) (at 195.58 96.52 0)
  4231. (effects (font (size 1.27 1.27)) (justify left))
  4232. )
  4233. (property "Value" "2.2uF" (id 1) (at 193.04 101.6 0)
  4234. (effects (font (size 1.27 1.27)) (justify left))
  4235. )
  4236. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 199.39 99.06 0)
  4237. (effects (font (size 1.27 1.27)) hide)
  4238. )
  4239. (property "Datasheet" "~" (id 3) (at 199.39 99.06 0)
  4240. (effects (font (size 1.27 1.27)) hide)
  4241. )
  4242. (property "LCSC" "C23630" (id 4) (at 199.39 99.06 0)
  4243. (effects (font (size 1.27 1.27)) hide)
  4244. )
  4245. (pin "1" (uuid 7d859f8e-f58f-43e6-abed-7b9dc4bb0d79))
  4246. (pin "2" (uuid 7c0355c0-b46a-4a2c-880d-ad9881958b0a))
  4247. )
  4248. (symbol (lib_id "power:GND") (at 208.28 102.87 0) (unit 1)
  4249. (in_bom yes) (on_board yes)
  4250. (uuid 00000000-0000-0000-0000-000061f90b65)
  4251. (property "Reference" "#PWR0157" (id 0) (at 208.28 109.22 0)
  4252. (effects (font (size 1.27 1.27)) hide)
  4253. )
  4254. (property "Value" "GND" (id 1) (at 212.09 105.41 0))
  4255. (property "Footprint" "" (id 2) (at 208.28 102.87 0)
  4256. (effects (font (size 1.27 1.27)) hide)
  4257. )
  4258. (property "Datasheet" "" (id 3) (at 208.28 102.87 0)
  4259. (effects (font (size 1.27 1.27)) hide)
  4260. )
  4261. (pin "1" (uuid fb0e3751-ff08-4b84-b6fa-8ad2fefcf385))
  4262. )
  4263. (symbol (lib_id "power:GND") (at 198.12 113.03 0) (unit 1)
  4264. (in_bom yes) (on_board yes)
  4265. (uuid 00000000-0000-0000-0000-000061fe2dba)
  4266. (property "Reference" "#PWR0160" (id 0) (at 198.12 119.38 0)
  4267. (effects (font (size 1.27 1.27)) hide)
  4268. )
  4269. (property "Value" "GND" (id 1) (at 198.12 116.84 0))
  4270. (property "Footprint" "" (id 2) (at 198.12 113.03 0)
  4271. (effects (font (size 1.27 1.27)) hide)
  4272. )
  4273. (property "Datasheet" "" (id 3) (at 198.12 113.03 0)
  4274. (effects (font (size 1.27 1.27)) hide)
  4275. )
  4276. (pin "1" (uuid 0f4398b3-b55f-49cf-89b3-dc3fcbdd7431))
  4277. )
  4278. (symbol (lib_id "power:GND") (at 199.39 102.87 0) (unit 1)
  4279. (in_bom yes) (on_board yes)
  4280. (uuid 00000000-0000-0000-0000-00006205c39d)
  4281. (property "Reference" "#PWR0161" (id 0) (at 199.39 109.22 0)
  4282. (effects (font (size 1.27 1.27)) hide)
  4283. )
  4284. (property "Value" "GND" (id 1) (at 203.2 105.41 0))
  4285. (property "Footprint" "" (id 2) (at 199.39 102.87 0)
  4286. (effects (font (size 1.27 1.27)) hide)
  4287. )
  4288. (property "Datasheet" "" (id 3) (at 199.39 102.87 0)
  4289. (effects (font (size 1.27 1.27)) hide)
  4290. )
  4291. (pin "1" (uuid 943d37e4-3556-46d0-8302-984c6cfecc75))
  4292. )
  4293. (symbol (lib_id "Device:D_Schottky") (at 175.26 82.55 180) (unit 1)
  4294. (in_bom yes) (on_board yes)
  4295. (uuid 00000000-0000-0000-0000-0000620ac1a6)
  4296. (property "Reference" "D14" (id 0) (at 180.34 80.01 0)
  4297. (effects (font (size 1.27 1.27)) (justify left))
  4298. )
  4299. (property "Value" "MBRA340T" (id 1) (at 172.72 80.01 0)
  4300. (effects (font (size 1.27 1.27)) (justify left))
  4301. )
  4302. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 175.26 82.55 0)
  4303. (effects (font (size 1.27 1.27)) hide)
  4304. )
  4305. (property "Datasheet" "~" (id 3) (at 175.26 82.55 0)
  4306. (effects (font (size 1.27 1.27)) hide)
  4307. )
  4308. (property "LCSC" "C26178" (id 4) (at 175.26 82.55 90)
  4309. (effects (font (size 1.27 1.27)) hide)
  4310. )
  4311. (pin "1" (uuid b38cd928-cfac-4117-b1bd-153a8fa04de2))
  4312. (pin "2" (uuid 7534c54b-5624-4040-9f65-4e0212a433a7))
  4313. )
  4314. (symbol (lib_id "Device:C_Small") (at 99.06 25.4 270) (unit 1)
  4315. (in_bom yes) (on_board yes)
  4316. (uuid 00000000-0000-0000-0000-0000621659b8)
  4317. (property "Reference" "C41" (id 0) (at 95.25 24.13 90))
  4318. (property "Value" "100nF" (id 1) (at 104.14 24.13 90))
  4319. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 99.06 25.4 0)
  4320. (effects (font (size 1.27 1.27)) hide)
  4321. )
  4322. (property "Datasheet" "~" (id 3) (at 99.06 25.4 0)
  4323. (effects (font (size 1.27 1.27)) hide)
  4324. )
  4325. (property "LCSC" "C1525" (id 4) (at 99.06 25.4 0)
  4326. (effects (font (size 1.27 1.27)) hide)
  4327. )
  4328. (pin "1" (uuid 0b5ad33f-a12c-4e5e-b4ae-8db396b3a057))
  4329. (pin "2" (uuid 0f0c3464-0909-4aa5-acf8-08f655141682))
  4330. )
  4331. (symbol (lib_id "Device:D_Schottky") (at 110.49 40.64 270) (unit 1)
  4332. (in_bom yes) (on_board yes)
  4333. (uuid 00000000-0000-0000-0000-0000621659c3)
  4334. (property "Reference" "D11" (id 0) (at 105.41 38.1 90)
  4335. (effects (font (size 1.27 1.27)) (justify left))
  4336. )
  4337. (property "Value" "MBRA340T" (id 1) (at 100.33 43.18 90)
  4338. (effects (font (size 1.27 1.27)) (justify left))
  4339. )
  4340. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 110.49 40.64 0)
  4341. (effects (font (size 1.27 1.27)) hide)
  4342. )
  4343. (property "Datasheet" "~" (id 3) (at 110.49 40.64 0)
  4344. (effects (font (size 1.27 1.27)) hide)
  4345. )
  4346. (property "LCSC" "C26178" (id 4) (at 110.49 40.64 90)
  4347. (effects (font (size 1.27 1.27)) hide)
  4348. )
  4349. (pin "1" (uuid 01e51f67-916a-408a-a07a-85f58e5ead42))
  4350. (pin "2" (uuid ea7a5863-d298-47db-9801-fb8152a7d923))
  4351. )
  4352. (symbol (lib_id "Device:R_Small") (at 135.89 31.75 0) (unit 1)
  4353. (in_bom yes) (on_board yes)
  4354. (uuid 00000000-0000-0000-0000-0000621659cf)
  4355. (property "Reference" "R53" (id 0) (at 130.81 30.48 0)
  4356. (effects (font (size 1.27 1.27)) (justify left))
  4357. )
  4358. (property "Value" "45k" (id 1) (at 129.54 33.02 0)
  4359. (effects (font (size 1.27 1.27)) (justify left))
  4360. )
  4361. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 135.89 31.75 0)
  4362. (effects (font (size 1.27 1.27)) hide)
  4363. )
  4364. (property "Datasheet" "~" (id 3) (at 135.89 31.75 0)
  4365. (effects (font (size 1.27 1.27)) hide)
  4366. )
  4367. (property "LCSC" "C26980" (id 4) (at 135.89 31.75 0)
  4368. (effects (font (size 1.27 1.27)) hide)
  4369. )
  4370. (pin "1" (uuid d17b27f9-021b-4528-b0d6-9bbc9eadde3d))
  4371. (pin "2" (uuid abe7de44-8982-4b72-a58b-747d4aba0b99))
  4372. )
  4373. (symbol (lib_id "Device:R_Small") (at 135.89 40.64 0) (unit 1)
  4374. (in_bom yes) (on_board yes)
  4375. (uuid 00000000-0000-0000-0000-0000621659da)
  4376. (property "Reference" "R54" (id 0) (at 130.81 39.37 0)
  4377. (effects (font (size 1.27 1.27)) (justify left))
  4378. )
  4379. (property "Value" "3.24k" (id 1) (at 129.54 41.91 0)
  4380. (effects (font (size 1.27 1.27)) (justify left))
  4381. )
  4382. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 135.89 40.64 0)
  4383. (effects (font (size 1.27 1.27)) hide)
  4384. )
  4385. (property "Datasheet" "~" (id 3) (at 135.89 40.64 0)
  4386. (effects (font (size 1.27 1.27)) hide)
  4387. )
  4388. (property "LCSC" "C11457" (id 4) (at 135.89 40.64 0)
  4389. (effects (font (size 1.27 1.27)) hide)
  4390. )
  4391. (pin "1" (uuid 625ab3ce-9ffa-4601-b3dd-f0ff733bda4a))
  4392. (pin "2" (uuid f00d4575-fe01-4fd5-b2fd-a40751711e65))
  4393. )
  4394. (symbol (lib_name "TPS54331_1") (lib_id "sm6uax:TPS54331") (at 77.47 30.48 0) (unit 1)
  4395. (in_bom yes) (on_board yes)
  4396. (uuid 00000000-0000-0000-0000-0000621659e5)
  4397. (property "Reference" "U7" (id 0) (at 77.47 18.6182 0))
  4398. (property "Value" "TPS54331" (id 1) (at 77.47 20.9296 0))
  4399. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 78.74 39.37 0)
  4400. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  4401. )
  4402. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tps5430.pdf" (id 3) (at 77.47 30.48 0)
  4403. (effects (font (size 1.27 1.27)) hide)
  4404. )
  4405. (property "LCSC" "C9865" (id 4) (at 77.47 30.48 0)
  4406. (effects (font (size 1.27 1.27)) hide)
  4407. )
  4408. (pin "1" (uuid b143abb6-3743-4ba3-b4cf-5376df9c2648))
  4409. (pin "2" (uuid 0a8ef85a-a80f-40ad-bb52-1cdca46ac855))
  4410. (pin "2" (uuid 0a8ef85a-a80f-40ad-bb52-1cdca46ac855))
  4411. (pin "3" (uuid 39a95d45-ce6f-4ee8-a9fc-0399cfa55f96))
  4412. (pin "4" (uuid 8b39e062-5f6e-4a52-9eaf-01739ff1d17e))
  4413. (pin "5" (uuid ebdb3bff-ae95-4d51-90e5-8f7d1021c63f))
  4414. (pin "6" (uuid 75174a5b-6aec-49e8-bade-5bd6dfe7d3c0))
  4415. (pin "7" (uuid d5c11b8f-15f2-484e-aecb-1c1d0bfe3798))
  4416. (pin "8" (uuid 36786add-c9c9-4600-9ba1-87227aaa690c))
  4417. )
  4418. (symbol (lib_id "Device:C_Small") (at 147.32 35.56 0) (unit 1)
  4419. (in_bom yes) (on_board yes)
  4420. (uuid 00000000-0000-0000-0000-0000621659f8)
  4421. (property "Reference" "C43" (id 0) (at 142.24 33.02 0)
  4422. (effects (font (size 1.27 1.27)) (justify left))
  4423. )
  4424. (property "Value" "22uF" (id 1) (at 142.24 38.1 0)
  4425. (effects (font (size 1.27 1.27)) (justify left))
  4426. )
  4427. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 147.32 35.56 0)
  4428. (effects (font (size 1.27 1.27)) hide)
  4429. )
  4430. (property "Datasheet" "~" (id 3) (at 147.32 35.56 0)
  4431. (effects (font (size 1.27 1.27)) hide)
  4432. )
  4433. (property "LCSC" "C342620" (id 4) (at 147.32 35.56 0)
  4434. (effects (font (size 1.27 1.27)) hide)
  4435. )
  4436. (pin "1" (uuid 3d1f7330-4c97-4c3b-92e2-7ccf23e84403))
  4437. (pin "2" (uuid b3e9076c-16f6-4adf-bbb0-b771e6fc656d))
  4438. )
  4439. (symbol (lib_id "Device:C_Small") (at 95.25 53.34 0) (unit 1)
  4440. (in_bom yes) (on_board yes)
  4441. (uuid 00000000-0000-0000-0000-000062165a13)
  4442. (property "Reference" "C40" (id 0) (at 90.17 50.8 0)
  4443. (effects (font (size 1.27 1.27)) (justify left))
  4444. )
  4445. (property "Value" "5600pF" (id 1) (at 87.63 55.88 0)
  4446. (effects (font (size 1.27 1.27)) (justify left))
  4447. )
  4448. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 95.25 53.34 0)
  4449. (effects (font (size 1.27 1.27)) hide)
  4450. )
  4451. (property "Datasheet" "~" (id 3) (at 95.25 53.34 0)
  4452. (effects (font (size 1.27 1.27)) hide)
  4453. )
  4454. (property "LCSC" "C170143" (id 4) (at 95.25 53.34 0)
  4455. (effects (font (size 1.27 1.27)) hide)
  4456. )
  4457. (pin "1" (uuid b04115b9-dd6c-4e9d-9da4-f831f77c20a3))
  4458. (pin "2" (uuid f5a5b0fd-d25a-4191-a4a5-16c8f6e13da6))
  4459. )
  4460. (symbol (lib_id "Device:C_Small") (at 105.41 59.69 0) (unit 1)
  4461. (in_bom yes) (on_board yes)
  4462. (uuid 00000000-0000-0000-0000-000062165a1e)
  4463. (property "Reference" "C42" (id 0) (at 100.33 57.15 0)
  4464. (effects (font (size 1.27 1.27)) (justify left))
  4465. )
  4466. (property "Value" "390pF" (id 1) (at 99.06 62.23 0)
  4467. (effects (font (size 1.27 1.27)) (justify left))
  4468. )
  4469. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 105.41 59.69 0)
  4470. (effects (font (size 1.27 1.27)) hide)
  4471. )
  4472. (property "Datasheet" "~" (id 3) (at 105.41 59.69 0)
  4473. (effects (font (size 1.27 1.27)) hide)
  4474. )
  4475. (property "LCSC" "C363517" (id 4) (at 105.41 59.69 0)
  4476. (effects (font (size 1.27 1.27)) hide)
  4477. )
  4478. (pin "1" (uuid e93ed297-0b26-47d6-add8-50ea218907a3))
  4479. (pin "2" (uuid ad504d11-d4b3-4dc0-846f-5ba4b9465c14))
  4480. )
  4481. (symbol (lib_id "Device:R_Small") (at 95.25 62.23 0) (unit 1)
  4482. (in_bom yes) (on_board yes)
  4483. (uuid 00000000-0000-0000-0000-000062165a29)
  4484. (property "Reference" "R52" (id 0) (at 90.17 59.69 0)
  4485. (effects (font (size 1.27 1.27)) (justify left))
  4486. )
  4487. (property "Value" "12.7k" (id 1) (at 88.9 64.77 0)
  4488. (effects (font (size 1.27 1.27)) (justify left))
  4489. )
  4490. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 95.25 62.23 0)
  4491. (effects (font (size 1.27 1.27)) hide)
  4492. )
  4493. (property "Datasheet" "~" (id 3) (at 95.25 62.23 0)
  4494. (effects (font (size 1.27 1.27)) hide)
  4495. )
  4496. (property "LCSC" "C25853" (id 4) (at 95.25 62.23 0)
  4497. (effects (font (size 1.27 1.27)) hide)
  4498. )
  4499. (pin "1" (uuid fa02fcb5-e946-4ce7-9348-e0e6f5d8912e))
  4500. (pin "2" (uuid 4cd55ddb-5081-4d82-aa99-f4bfbb85e70a))
  4501. )
  4502. (symbol (lib_id "power:GND") (at 95.25 69.85 0) (unit 1)
  4503. (in_bom yes) (on_board yes)
  4504. (uuid 00000000-0000-0000-0000-000062165a3c)
  4505. (property "Reference" "#PWR0166" (id 0) (at 95.25 76.2 0)
  4506. (effects (font (size 1.27 1.27)) hide)
  4507. )
  4508. (property "Value" "GND" (id 1) (at 95.377 74.2442 0))
  4509. (property "Footprint" "" (id 2) (at 95.25 69.85 0)
  4510. (effects (font (size 1.27 1.27)) hide)
  4511. )
  4512. (property "Datasheet" "" (id 3) (at 95.25 69.85 0)
  4513. (effects (font (size 1.27 1.27)) hide)
  4514. )
  4515. (pin "1" (uuid 513f0865-9379-4edb-99ef-467c198a4fc2))
  4516. )
  4517. (symbol (lib_id "power:GND") (at 135.89 48.26 0) (unit 1)
  4518. (in_bom yes) (on_board yes)
  4519. (uuid 00000000-0000-0000-0000-000062165a46)
  4520. (property "Reference" "#PWR0167" (id 0) (at 135.89 54.61 0)
  4521. (effects (font (size 1.27 1.27)) hide)
  4522. )
  4523. (property "Value" "GND" (id 1) (at 136.017 52.6542 0))
  4524. (property "Footprint" "" (id 2) (at 135.89 48.26 0)
  4525. (effects (font (size 1.27 1.27)) hide)
  4526. )
  4527. (property "Datasheet" "" (id 3) (at 135.89 48.26 0)
  4528. (effects (font (size 1.27 1.27)) hide)
  4529. )
  4530. (pin "1" (uuid f34691bd-05d3-4ddc-be49-93b7e56ea524))
  4531. )
  4532. (symbol (lib_id "Device:C_Small") (at 53.34 40.64 0) (unit 1)
  4533. (in_bom yes) (on_board yes)
  4534. (uuid 00000000-0000-0000-0000-000062165a52)
  4535. (property "Reference" "C39" (id 0) (at 48.26 38.1 0)
  4536. (effects (font (size 1.27 1.27)) (justify left))
  4537. )
  4538. (property "Value" "15nF" (id 1) (at 46.99 43.18 0)
  4539. (effects (font (size 1.27 1.27)) (justify left))
  4540. )
  4541. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 53.34 40.64 0)
  4542. (effects (font (size 1.27 1.27)) hide)
  4543. )
  4544. (property "Datasheet" "~" (id 3) (at 53.34 40.64 0)
  4545. (effects (font (size 1.27 1.27)) hide)
  4546. )
  4547. (property "LCSC" "C1548" (id 4) (at 53.34 40.64 0)
  4548. (effects (font (size 1.27 1.27)) hide)
  4549. )
  4550. (pin "1" (uuid 0f19bf23-a2ca-4507-9aaf-5e54c7030483))
  4551. (pin "2" (uuid 9d0d7cd7-f169-450a-beca-b3cc638aaafb))
  4552. )
  4553. (symbol (lib_id "Device:R_Small") (at 40.64 31.75 0) (unit 1)
  4554. (in_bom yes) (on_board yes)
  4555. (uuid 00000000-0000-0000-0000-000062165a5f)
  4556. (property "Reference" "R50" (id 0) (at 35.56 30.48 0)
  4557. (effects (font (size 1.27 1.27)) (justify left))
  4558. )
  4559. (property "Value" "330k" (id 1) (at 34.29 33.02 0)
  4560. (effects (font (size 1.27 1.27)) (justify left))
  4561. )
  4562. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 40.64 31.75 0)
  4563. (effects (font (size 1.27 1.27)) hide)
  4564. )
  4565. (property "Datasheet" "~" (id 3) (at 40.64 31.75 0)
  4566. (effects (font (size 1.27 1.27)) hide)
  4567. )
  4568. (property "LCSC" "C25778" (id 4) (at 40.64 31.75 0)
  4569. (effects (font (size 1.27 1.27)) hide)
  4570. )
  4571. (pin "1" (uuid 62c77ba2-6616-48fc-85b9-24e112f63152))
  4572. (pin "2" (uuid 2baf212c-b450-4279-82f5-28e6bbd512f0))
  4573. )
  4574. (symbol (lib_id "Device:R_Small") (at 40.64 40.64 0) (unit 1)
  4575. (in_bom yes) (on_board yes)
  4576. (uuid 00000000-0000-0000-0000-000062165a6a)
  4577. (property "Reference" "R51" (id 0) (at 35.56 39.37 0)
  4578. (effects (font (size 1.27 1.27)) (justify left))
  4579. )
  4580. (property "Value" "120k" (id 1) (at 34.29 41.91 0)
  4581. (effects (font (size 1.27 1.27)) (justify left))
  4582. )
  4583. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 40.64 40.64 0)
  4584. (effects (font (size 1.27 1.27)) hide)
  4585. )
  4586. (property "Datasheet" "~" (id 3) (at 40.64 40.64 0)
  4587. (effects (font (size 1.27 1.27)) hide)
  4588. )
  4589. (property "LCSC" "C25750" (id 4) (at 40.64 40.64 0)
  4590. (effects (font (size 1.27 1.27)) hide)
  4591. )
  4592. (pin "1" (uuid 1ed56b1c-83af-4aa5-91bd-beb5e1e817b7))
  4593. (pin "2" (uuid e6cef88b-132a-415d-ab8d-63cc23cf8e7c))
  4594. )
  4595. (symbol (lib_id "Device:C_Small") (at 29.21 34.29 0) (unit 1)
  4596. (in_bom yes) (on_board yes)
  4597. (uuid 00000000-0000-0000-0000-000062165a7a)
  4598. (property "Reference" "C34" (id 0) (at 25.4 31.75 0)
  4599. (effects (font (size 1.27 1.27)) (justify left))
  4600. )
  4601. (property "Value" "22uF" (id 1) (at 24.13 36.83 0)
  4602. (effects (font (size 1.27 1.27)) (justify left))
  4603. )
  4604. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 29.21 34.29 0)
  4605. (effects (font (size 1.27 1.27)) hide)
  4606. )
  4607. (property "Datasheet" "~" (id 3) (at 29.21 34.29 0)
  4608. (effects (font (size 1.27 1.27)) hide)
  4609. )
  4610. (property "LCSC" "C342620" (id 4) (at 29.21 34.29 0)
  4611. (effects (font (size 1.27 1.27)) hide)
  4612. )
  4613. (pin "1" (uuid 78b7c91c-02be-4187-b74c-7a7765c7cceb))
  4614. (pin "2" (uuid 072affb7-bd27-4bcf-864e-a4a71fe43f05))
  4615. )
  4616. (symbol (lib_id "Device:L") (at 121.92 27.94 90) (unit 1)
  4617. (in_bom yes) (on_board yes)
  4618. (uuid 00000000-0000-0000-0000-000062165a8f)
  4619. (property "Reference" "L3" (id 0) (at 121.92 25.4 90))
  4620. (property "Value" "15uH" (id 1) (at 121.92 29.21 90))
  4621. (property "Footprint" "Greaseweazle:L_6.3x6.3_H3" (id 2) (at 121.92 27.94 0)
  4622. (effects (font (size 1.27 1.27)) hide)
  4623. )
  4624. (property "Datasheet" "~" (id 3) (at 121.92 27.94 0)
  4625. (effects (font (size 1.27 1.27)) hide)
  4626. )
  4627. (property "LCSC" "C83374" (id 4) (at 121.92 27.94 90)
  4628. (effects (font (size 1.27 1.27)) hide)
  4629. )
  4630. (pin "1" (uuid 5bf1ebac-8000-41f2-98ab-0b9dbcc19bb1))
  4631. (pin "2" (uuid 16d11078-9ada-468c-a190-d74b207437f7))
  4632. )
  4633. (symbol (lib_id "Device:CP_Small") (at 21.59 34.29 0) (unit 1)
  4634. (in_bom yes) (on_board yes)
  4635. (uuid 00000000-0000-0000-0000-000062165aa6)
  4636. (property "Reference" "C33" (id 0) (at 15.24 31.75 0)
  4637. (effects (font (size 1.27 1.27)) (justify left))
  4638. )
  4639. (property "Value" "220uF" (id 1) (at 15.24 36.83 0)
  4640. (effects (font (size 1.27 1.27)) (justify left))
  4641. )
  4642. (property "Footprint" "Capacitor_SMD:CP_Elec_8x10.5" (id 2) (at 21.59 34.29 0)
  4643. (effects (font (size 1.27 1.27)) hide)
  4644. )
  4645. (property "Datasheet" "~" (id 3) (at 21.59 34.29 0)
  4646. (effects (font (size 1.27 1.27)) hide)
  4647. )
  4648. (property "LCSC" "C310848" (id 4) (at 21.59 34.29 0)
  4649. (effects (font (size 1.27 1.27)) hide)
  4650. )
  4651. (pin "1" (uuid 3a8848ab-8e87-4731-a44f-3a7602b4515a))
  4652. (pin "2" (uuid fa842f60-c091-42b2-af33-9404d108d3d9))
  4653. )
  4654. (symbol (lib_id "Device:LED") (at 167.64 40.64 90) (unit 1)
  4655. (in_bom yes) (on_board yes)
  4656. (uuid 00000000-0000-0000-0000-000062165ac0)
  4657. (property "Reference" "D12" (id 0) (at 161.29 39.37 90)
  4658. (effects (font (size 1.27 1.27)) (justify right))
  4659. )
  4660. (property "Value" "LED-B" (id 1) (at 158.75 41.91 90)
  4661. (effects (font (size 1.27 1.27)) (justify right))
  4662. )
  4663. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 167.64 40.64 0)
  4664. (effects (font (size 1.27 1.27)) hide)
  4665. )
  4666. (property "Datasheet" "~" (id 3) (at 167.64 40.64 0)
  4667. (effects (font (size 1.27 1.27)) hide)
  4668. )
  4669. (property "LCSC" "C72041" (id 4) (at 167.64 40.64 0)
  4670. (effects (font (size 1.27 1.27)) hide)
  4671. )
  4672. (pin "1" (uuid d11989c9-f061-4811-a4dc-91328b32b5f8))
  4673. (pin "2" (uuid 6484f51d-2f32-48f3-ad4e-82dd82949ed1))
  4674. )
  4675. (symbol (lib_id "Device:R_Small") (at 167.64 33.02 0) (unit 1)
  4676. (in_bom yes) (on_board yes)
  4677. (uuid 00000000-0000-0000-0000-000062165acb)
  4678. (property "Reference" "R55" (id 0) (at 162.56 31.75 0)
  4679. (effects (font (size 1.27 1.27)) (justify left))
  4680. )
  4681. (property "Value" "4,7k" (id 1) (at 162.56 35.56 0)
  4682. (effects (font (size 1.27 1.27)) (justify left))
  4683. )
  4684. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 167.64 33.02 0)
  4685. (effects (font (size 1.27 1.27)) hide)
  4686. )
  4687. (property "Datasheet" "~" (id 3) (at 167.64 33.02 0)
  4688. (effects (font (size 1.27 1.27)) hide)
  4689. )
  4690. (property "LCSC" "C25900" (id 4) (at 167.64 33.02 0)
  4691. (effects (font (size 1.27 1.27)) hide)
  4692. )
  4693. (pin "1" (uuid f42b0b79-ae72-4aa7-aa6f-ea0826c28adf))
  4694. (pin "2" (uuid 36e57ef3-4688-4d17-9a24-ae6eae50e13d))
  4695. )
  4696. (symbol (lib_id "power:+12V") (at 195.58 24.13 0) (unit 1)
  4697. (in_bom yes) (on_board yes)
  4698. (uuid 00000000-0000-0000-0000-000062165ae0)
  4699. (property "Reference" "#PWR0168" (id 0) (at 195.58 27.94 0)
  4700. (effects (font (size 1.27 1.27)) hide)
  4701. )
  4702. (property "Value" "+12V" (id 1) (at 195.961 19.7358 0))
  4703. (property "Footprint" "" (id 2) (at 195.58 24.13 0)
  4704. (effects (font (size 1.27 1.27)) hide)
  4705. )
  4706. (property "Datasheet" "" (id 3) (at 195.58 24.13 0)
  4707. (effects (font (size 1.27 1.27)) hide)
  4708. )
  4709. (pin "1" (uuid 74a3c12b-e905-4db8-8acc-a134dac040e0))
  4710. )
  4711. (symbol (lib_id "Device:D_Schottky") (at 175.26 27.94 180) (unit 1)
  4712. (in_bom yes) (on_board yes)
  4713. (uuid 00000000-0000-0000-0000-000062165aed)
  4714. (property "Reference" "D13" (id 0) (at 181.61 25.4 0)
  4715. (effects (font (size 1.27 1.27)) (justify left))
  4716. )
  4717. (property "Value" "MBRA340T" (id 1) (at 172.72 25.4 0)
  4718. (effects (font (size 1.27 1.27)) (justify left))
  4719. )
  4720. (property "Footprint" "Diode_SMD:D_SMA" (id 2) (at 175.26 27.94 0)
  4721. (effects (font (size 1.27 1.27)) hide)
  4722. )
  4723. (property "Datasheet" "~" (id 3) (at 175.26 27.94 0)
  4724. (effects (font (size 1.27 1.27)) hide)
  4725. )
  4726. (property "LCSC" "C26178" (id 4) (at 175.26 27.94 90)
  4727. (effects (font (size 1.27 1.27)) hide)
  4728. )
  4729. (pin "1" (uuid af2ecf6e-ddab-429e-ba9d-bfc12339bfeb))
  4730. (pin "2" (uuid 9ccaa379-018a-4bfd-95d4-da0a68bc59af))
  4731. )
  4732. (symbol (lib_id "power:+24V") (at 21.59 22.86 0) (unit 1)
  4733. (in_bom yes) (on_board yes)
  4734. (uuid 00000000-0000-0000-0000-0000621ca70f)
  4735. (property "Reference" "#PWR0169" (id 0) (at 21.59 26.67 0)
  4736. (effects (font (size 1.27 1.27)) hide)
  4737. )
  4738. (property "Value" "+24V" (id 1) (at 21.971 18.4658 0))
  4739. (property "Footprint" "" (id 2) (at 21.59 22.86 0)
  4740. (effects (font (size 1.27 1.27)) hide)
  4741. )
  4742. (property "Datasheet" "" (id 3) (at 21.59 22.86 0)
  4743. (effects (font (size 1.27 1.27)) hide)
  4744. )
  4745. (pin "1" (uuid 0105c0b8-261e-4a07-a31c-c537b9943761))
  4746. )
  4747. (symbol (lib_id "Device:Polyfuse_Small") (at 189.23 27.94 270) (unit 1)
  4748. (in_bom yes) (on_board yes)
  4749. (uuid 00000000-0000-0000-0000-00006226e0d2)
  4750. (property "Reference" "F7" (id 0) (at 189.23 25.4 90))
  4751. (property "Value" "Polyfuse 2.2A" (id 1) (at 190.5 30.48 90))
  4752. (property "Footprint" "Greaseweazle:Fuse_2018Metric" (id 2) (at 184.15 29.21 0)
  4753. (effects (font (size 1.27 1.27)) (justify left) hide)
  4754. )
  4755. (property "Datasheet" "~" (id 3) (at 189.23 27.94 0)
  4756. (effects (font (size 1.27 1.27)) hide)
  4757. )
  4758. (property "LCSC" "C122658" (id 4) (at 189.23 27.94 0)
  4759. (effects (font (size 1.27 1.27)) hide)
  4760. )
  4761. (pin "1" (uuid 71f740e3-91c5-491b-8d81-9b094454c0b5))
  4762. (pin "2" (uuid fd3566f0-038c-435e-9ac9-e75fd274accd))
  4763. )
  4764. (symbol (lib_id "Device:Polyfuse_Small") (at 185.42 82.55 270) (unit 1)
  4765. (in_bom yes) (on_board yes)
  4766. (uuid 00000000-0000-0000-0000-0000622abbc4)
  4767. (property "Reference" "F6" (id 0) (at 185.42 80.01 90))
  4768. (property "Value" "Polyfuse 4.2A" (id 1) (at 185.42 85.09 90))
  4769. (property "Footprint" "Greaseweazle:Fuse_2018Metric" (id 2) (at 180.34 83.82 0)
  4770. (effects (font (size 1.27 1.27)) (justify left) hide)
  4771. )
  4772. (property "Datasheet" "~" (id 3) (at 185.42 82.55 0)
  4773. (effects (font (size 1.27 1.27)) hide)
  4774. )
  4775. (property "LCSC" "C21007" (id 4) (at 185.42 82.55 0)
  4776. (effects (font (size 1.27 1.27)) hide)
  4777. )
  4778. (pin "1" (uuid 63d97fe1-b518-4fb8-9033-098e7b129240))
  4779. (pin "2" (uuid 4a336966-5a4f-4acb-a3c9-91702e641499))
  4780. )
  4781. (symbol (lib_id "Device:C_Small") (at 273.05 33.02 0) (unit 1)
  4782. (in_bom yes) (on_board yes)
  4783. (uuid 00000000-0000-0000-0000-000062489810)
  4784. (property "Reference" "C45" (id 0) (at 275.3868 31.8516 0)
  4785. (effects (font (size 1.27 1.27)) (justify left))
  4786. )
  4787. (property "Value" "100nF" (id 1) (at 275.3868 34.163 0)
  4788. (effects (font (size 1.27 1.27)) (justify left))
  4789. )
  4790. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 273.05 33.02 0)
  4791. (effects (font (size 1.27 1.27)) hide)
  4792. )
  4793. (property "Datasheet" "~" (id 3) (at 273.05 33.02 0)
  4794. (effects (font (size 1.27 1.27)) hide)
  4795. )
  4796. (property "LCSC" "C1525" (id 4) (at 273.05 33.02 0)
  4797. (effects (font (size 1.27 1.27)) hide)
  4798. )
  4799. (pin "1" (uuid d2abe051-f5d3-439b-9f1c-19afcd44d6a6))
  4800. (pin "2" (uuid 29ea641c-de89-450c-907e-1f9766fc15f8))
  4801. )
  4802. (symbol (lib_id "power:+3.3V") (at 273.05 24.13 0) (unit 1)
  4803. (in_bom yes) (on_board yes)
  4804. (uuid 00000000-0000-0000-0000-00006248a530)
  4805. (property "Reference" "#PWR02" (id 0) (at 273.05 27.94 0)
  4806. (effects (font (size 1.27 1.27)) hide)
  4807. )
  4808. (property "Value" "+3.3V" (id 1) (at 273.431 19.7358 0))
  4809. (property "Footprint" "" (id 2) (at 273.05 24.13 0)
  4810. (effects (font (size 1.27 1.27)) hide)
  4811. )
  4812. (property "Datasheet" "" (id 3) (at 273.05 24.13 0)
  4813. (effects (font (size 1.27 1.27)) hide)
  4814. )
  4815. (pin "1" (uuid d48b6d2e-6e5f-4dac-a79e-e9dd99372c0a))
  4816. )
  4817. (symbol (lib_id "power:GND") (at 273.05 38.1 0) (unit 1)
  4818. (in_bom yes) (on_board yes)
  4819. (uuid 00000000-0000-0000-0000-00006248b2f4)
  4820. (property "Reference" "#PWR010" (id 0) (at 273.05 44.45 0)
  4821. (effects (font (size 1.27 1.27)) hide)
  4822. )
  4823. (property "Value" "GND" (id 1) (at 273.177 42.4942 0))
  4824. (property "Footprint" "" (id 2) (at 273.05 38.1 0)
  4825. (effects (font (size 1.27 1.27)) hide)
  4826. )
  4827. (property "Datasheet" "" (id 3) (at 273.05 38.1 0)
  4828. (effects (font (size 1.27 1.27)) hide)
  4829. )
  4830. (pin "1" (uuid 5815912e-dc67-4a15-b36b-f7385240bd8e))
  4831. )
  4832. (symbol (lib_id "Device:C_Small") (at 262.89 33.02 0) (unit 1)
  4833. (in_bom yes) (on_board yes)
  4834. (uuid 00000000-0000-0000-0000-0000624d0c15)
  4835. (property "Reference" "C46" (id 0) (at 265.2268 31.8516 0)
  4836. (effects (font (size 1.27 1.27)) (justify left))
  4837. )
  4838. (property "Value" "100nF" (id 1) (at 265.2268 34.163 0)
  4839. (effects (font (size 1.27 1.27)) (justify left))
  4840. )
  4841. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 262.89 33.02 0)
  4842. (effects (font (size 1.27 1.27)) hide)
  4843. )
  4844. (property "Datasheet" "~" (id 3) (at 262.89 33.02 0)
  4845. (effects (font (size 1.27 1.27)) hide)
  4846. )
  4847. (property "LCSC" "C1525" (id 4) (at 262.89 33.02 0)
  4848. (effects (font (size 1.27 1.27)) hide)
  4849. )
  4850. (pin "1" (uuid 6f763660-8cca-4f7f-9684-6fe4df7160d2))
  4851. (pin "2" (uuid 7a112b78-c1bd-4dd0-879d-ca2b49cb199c))
  4852. )
  4853. (symbol (lib_id "power:+3V3") (at 188.468 104.521 0) (unit 1)
  4854. (in_bom yes) (on_board yes)
  4855. (uuid 0c5fd953-b3c5-4a33-b878-c8771600a700)
  4856. (property "Reference" "#PWR0103" (id 0) (at 188.468 108.331 0)
  4857. (effects (font (size 1.27 1.27)) hide)
  4858. )
  4859. (property "Value" "+3V3" (id 1) (at 188.849 100.1268 0))
  4860. (property "Footprint" "" (id 2) (at 188.468 104.521 0)
  4861. (effects (font (size 1.27 1.27)) hide)
  4862. )
  4863. (property "Datasheet" "" (id 3) (at 188.468 104.521 0)
  4864. (effects (font (size 1.27 1.27)) hide)
  4865. )
  4866. (pin "1" (uuid 6819b90a-1695-4def-a6e4-69ee198c0c99))
  4867. )
  4868. (symbol (lib_id "Device:C_Small") (at 58.42 147.066 0) (unit 1)
  4869. (in_bom yes) (on_board yes)
  4870. (uuid 2371edfd-3192-49c5-a18b-146e47cbce4a)
  4871. (property "Reference" "C35" (id 0) (at 60.7568 145.8976 0)
  4872. (effects (font (size 1.27 1.27)) (justify left))
  4873. )
  4874. (property "Value" "47uF" (id 1) (at 60.7568 148.209 0)
  4875. (effects (font (size 1.27 1.27)) (justify left))
  4876. )
  4877. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 58.42 147.066 0)
  4878. (effects (font (size 1.27 1.27)) hide)
  4879. )
  4880. (property "Datasheet" "~" (id 3) (at 58.42 147.066 0)
  4881. (effects (font (size 1.27 1.27)) hide)
  4882. )
  4883. (property "LCSC" "C140782" (id 4) (at 58.42 147.066 0)
  4884. (effects (font (size 1.27 1.27)) hide)
  4885. )
  4886. (pin "1" (uuid 647a8ac9-2b4f-4c67-bc66-0c8720b13e16))
  4887. (pin "2" (uuid ff99f351-d686-495d-b20d-1d1f74a245cc))
  4888. )
  4889. (symbol (lib_id "power:GND") (at 88.392 161.036 0) (unit 1)
  4890. (in_bom yes) (on_board yes)
  4891. (uuid 30da45cc-a8bc-44fc-8e7b-2858d6603444)
  4892. (property "Reference" "#PWR0146" (id 0) (at 88.392 167.386 0)
  4893. (effects (font (size 1.27 1.27)) hide)
  4894. )
  4895. (property "Value" "GND" (id 1) (at 88.519 165.4302 0))
  4896. (property "Footprint" "" (id 2) (at 88.392 161.036 0)
  4897. (effects (font (size 1.27 1.27)) hide)
  4898. )
  4899. (property "Datasheet" "" (id 3) (at 88.392 161.036 0)
  4900. (effects (font (size 1.27 1.27)) hide)
  4901. )
  4902. (pin "1" (uuid b91232b6-4bd2-4deb-9939-c7b812c4fb21))
  4903. )
  4904. (symbol (lib_id "power:+3V3") (at 81.28 141.986 0) (unit 1)
  4905. (in_bom yes) (on_board yes)
  4906. (uuid 3f3e2887-0131-4b6d-b226-262c167d3f98)
  4907. (property "Reference" "#PWR018" (id 0) (at 81.28 145.796 0)
  4908. (effects (font (size 1.27 1.27)) hide)
  4909. )
  4910. (property "Value" "+3V3" (id 1) (at 81.661 137.5918 0))
  4911. (property "Footprint" "" (id 2) (at 81.28 141.986 0)
  4912. (effects (font (size 1.27 1.27)) hide)
  4913. )
  4914. (property "Datasheet" "" (id 3) (at 81.28 141.986 0)
  4915. (effects (font (size 1.27 1.27)) hide)
  4916. )
  4917. (pin "1" (uuid bd051fd0-2f64-428e-99a0-dedc9e3bc7d7))
  4918. )
  4919. (symbol (lib_id "Device:C_Small") (at 36.83 147.066 0) (unit 1)
  4920. (in_bom yes) (on_board yes)
  4921. (uuid 50f3aa0d-e02c-4605-8d23-8f30a192db6b)
  4922. (property "Reference" "C32" (id 0) (at 37.338 145.288 0)
  4923. (effects (font (size 1.27 1.27)) (justify left))
  4924. )
  4925. (property "Value" "47uF" (id 1) (at 37.084 149.098 0)
  4926. (effects (font (size 1.27 1.27)) (justify left))
  4927. )
  4928. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 36.83 147.066 0)
  4929. (effects (font (size 1.27 1.27)) hide)
  4930. )
  4931. (property "Datasheet" "~" (id 3) (at 36.83 147.066 0)
  4932. (effects (font (size 1.27 1.27)) hide)
  4933. )
  4934. (property "LCSC" "C140782" (id 4) (at 36.83 147.066 0)
  4935. (effects (font (size 1.27 1.27)) hide)
  4936. )
  4937. (pin "1" (uuid 7012e6c3-3d8d-477c-93ee-1f556ada15f9))
  4938. (pin "2" (uuid 35c04907-de61-4456-a4a7-a6234dedc977))
  4939. )
  4940. (symbol (lib_id "Device:C_Small") (at 67.437 146.939 0) (unit 1)
  4941. (in_bom yes) (on_board yes)
  4942. (uuid 54426ce1-260f-4569-b31f-0b544e60105f)
  4943. (property "Reference" "C38" (id 0) (at 69.7738 145.7706 0)
  4944. (effects (font (size 1.27 1.27)) (justify left))
  4945. )
  4946. (property "Value" "47uF" (id 1) (at 69.7738 148.082 0)
  4947. (effects (font (size 1.27 1.27)) (justify left))
  4948. )
  4949. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 67.437 146.939 0)
  4950. (effects (font (size 1.27 1.27)) hide)
  4951. )
  4952. (property "Datasheet" "~" (id 3) (at 67.437 146.939 0)
  4953. (effects (font (size 1.27 1.27)) hide)
  4954. )
  4955. (property "LCSC" "C140782" (id 4) (at 67.437 146.939 0)
  4956. (effects (font (size 1.27 1.27)) hide)
  4957. )
  4958. (pin "1" (uuid fbb9db26-d206-4762-bb61-909ef916d013))
  4959. (pin "2" (uuid 792e8d88-99a6-4ab3-af95-59027cf358cd))
  4960. )
  4961. (symbol (lib_id "power:+5V") (at 24.13 139.446 0) (unit 1)
  4962. (in_bom yes) (on_board yes)
  4963. (uuid 6553d8eb-c75a-476a-8d4d-a3729779c9ea)
  4964. (property "Reference" "#PWR012" (id 0) (at 24.13 143.256 0)
  4965. (effects (font (size 1.27 1.27)) hide)
  4966. )
  4967. (property "Value" "+5V" (id 1) (at 24.511 135.0518 0))
  4968. (property "Footprint" "" (id 2) (at 24.13 139.446 0)
  4969. (effects (font (size 1.27 1.27)) hide)
  4970. )
  4971. (property "Datasheet" "" (id 3) (at 24.13 139.446 0)
  4972. (effects (font (size 1.27 1.27)) hide)
  4973. )
  4974. (pin "1" (uuid 2e1368fd-6726-49ec-a3c3-33e556b09931))
  4975. )
  4976. (symbol (lib_id "Device:LED") (at 88.392 155.956 90) (unit 1)
  4977. (in_bom yes) (on_board yes)
  4978. (uuid 74dd3e82-6ce0-40e5-9a7e-400e2add8afc)
  4979. (property "Reference" "D15" (id 0) (at 82.042 154.686 90)
  4980. (effects (font (size 1.27 1.27)) (justify right))
  4981. )
  4982. (property "Value" "LED-B" (id 1) (at 79.502 157.226 90)
  4983. (effects (font (size 1.27 1.27)) (justify right))
  4984. )
  4985. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 88.392 155.956 0)
  4986. (effects (font (size 1.27 1.27)) hide)
  4987. )
  4988. (property "Datasheet" "~" (id 3) (at 88.392 155.956 0)
  4989. (effects (font (size 1.27 1.27)) hide)
  4990. )
  4991. (property "LCSC" "C72041" (id 4) (at 88.392 155.956 0)
  4992. (effects (font (size 1.27 1.27)) hide)
  4993. )
  4994. (pin "1" (uuid 6b5c331f-9341-43f8-b463-8528cc3abf98))
  4995. (pin "2" (uuid 203d0826-2143-4b98-ae59-407c98db4730))
  4996. )
  4997. (symbol (lib_id "Regulator_Linear:AMS1117-3.3") (at 46.99 143.256 0) (unit 1)
  4998. (in_bom yes) (on_board yes)
  4999. (uuid 8883f98f-fba0-4976-882c-30cc0b8d2aea)
  5000. (property "Reference" "U8" (id 0) (at 46.99 137.1092 0))
  5001. (property "Value" "AMS1117-3.3" (id 1) (at 46.99 139.4206 0))
  5002. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 46.99 138.176 0)
  5003. (effects (font (size 1.27 1.27)) hide)
  5004. )
  5005. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 49.53 149.606 0)
  5006. (effects (font (size 1.27 1.27)) hide)
  5007. )
  5008. (property "LCSC" "C351784" (id 4) (at 46.99 143.256 0)
  5009. (effects (font (size 1.27 1.27)) hide)
  5010. )
  5011. (pin "1" (uuid 8f2fba2c-39c9-4bde-b200-3dd7ba8db838))
  5012. (pin "2" (uuid cd9b0d08-7e78-4a98-bbe3-d0f273e6f3e2))
  5013. (pin "3" (uuid db6df990-6305-43a8-8563-8aa4d9250fbe))
  5014. )
  5015. (symbol (lib_id "Device:C_Small") (at 30.48 147.066 0) (unit 1)
  5016. (in_bom yes) (on_board yes)
  5017. (uuid 8a273ef1-0085-4a14-9190-f6d0f6313d4c)
  5018. (property "Reference" "C5" (id 0) (at 25.908 145.288 0)
  5019. (effects (font (size 1.27 1.27)) (justify left))
  5020. )
  5021. (property "Value" "100nF" (id 1) (at 24.384 149.606 0)
  5022. (effects (font (size 1.27 1.27)) (justify left))
  5023. )
  5024. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 30.48 147.066 0)
  5025. (effects (font (size 1.27 1.27)) hide)
  5026. )
  5027. (property "Datasheet" "~" (id 3) (at 30.48 147.066 0)
  5028. (effects (font (size 1.27 1.27)) hide)
  5029. )
  5030. (property "LCSC" "C1525" (id 4) (at 30.48 147.066 0)
  5031. (effects (font (size 1.27 1.27)) hide)
  5032. )
  5033. (pin "1" (uuid bbce2615-c24b-4680-8f94-89e66d49c4ca))
  5034. (pin "2" (uuid 5f8de49b-6ccc-438e-8460-ebe14a78fdf7))
  5035. )
  5036. (symbol (lib_id "power:GND") (at 36.83 150.876 0) (unit 1)
  5037. (in_bom yes) (on_board yes)
  5038. (uuid 9efba57b-3500-4f45-9fe5-be8043407d0a)
  5039. (property "Reference" "#PWR014" (id 0) (at 36.83 157.226 0)
  5040. (effects (font (size 1.27 1.27)) hide)
  5041. )
  5042. (property "Value" "GND" (id 1) (at 36.957 155.2702 0))
  5043. (property "Footprint" "" (id 2) (at 36.83 150.876 0)
  5044. (effects (font (size 1.27 1.27)) hide)
  5045. )
  5046. (property "Datasheet" "" (id 3) (at 36.83 150.876 0)
  5047. (effects (font (size 1.27 1.27)) hide)
  5048. )
  5049. (pin "1" (uuid 3f66349b-e8eb-401b-98da-21d619e140c0))
  5050. )
  5051. (symbol (lib_id "Device:C_Small") (at 76.2 147.066 0) (unit 1)
  5052. (in_bom yes) (on_board yes)
  5053. (uuid a699b0e4-7d28-4143-92c1-fd238fd7270e)
  5054. (property "Reference" "C36" (id 0) (at 78.5368 145.8976 0)
  5055. (effects (font (size 1.27 1.27)) (justify left))
  5056. )
  5057. (property "Value" "100nF" (id 1) (at 78.5368 148.209 0)
  5058. (effects (font (size 1.27 1.27)) (justify left))
  5059. )
  5060. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 76.2 147.066 0)
  5061. (effects (font (size 1.27 1.27)) hide)
  5062. )
  5063. (property "Datasheet" "~" (id 3) (at 76.2 147.066 0)
  5064. (effects (font (size 1.27 1.27)) hide)
  5065. )
  5066. (property "LCSC" "C1525" (id 4) (at 76.2 147.066 0)
  5067. (effects (font (size 1.27 1.27)) hide)
  5068. )
  5069. (pin "1" (uuid cffd28e9-2560-43d4-a8cb-e3a651cc5509))
  5070. (pin "2" (uuid 6f5d54ae-44d1-4e1b-98ec-d3e86947a379))
  5071. )
  5072. (symbol (lib_id "Device:CP_Small") (at 24.13 147.32 0) (unit 1)
  5073. (in_bom yes) (on_board yes)
  5074. (uuid afeb5d6b-7f4d-41b9-ac0b-8457c1693aac)
  5075. (property "Reference" "C37" (id 0) (at 17.78 144.78 0)
  5076. (effects (font (size 1.27 1.27)) (justify left))
  5077. )
  5078. (property "Value" "220uF" (id 1) (at 17.78 149.86 0)
  5079. (effects (font (size 1.27 1.27)) (justify left))
  5080. )
  5081. (property "Footprint" "Capacitor_SMD:CP_Elec_8x10.5" (id 2) (at 24.13 147.32 0)
  5082. (effects (font (size 1.27 1.27)) hide)
  5083. )
  5084. (property "Datasheet" "~" (id 3) (at 24.13 147.32 0)
  5085. (effects (font (size 1.27 1.27)) hide)
  5086. )
  5087. (property "LCSC" "C310848" (id 4) (at 24.13 147.32 0)
  5088. (effects (font (size 1.27 1.27)) hide)
  5089. )
  5090. (pin "1" (uuid 0ed551b7-7bc0-4b57-9e41-9c2b1a14bb0b))
  5091. (pin "2" (uuid 883cbf60-f784-4c76-a434-c00c65e5f7b6))
  5092. )
  5093. (symbol (lib_id "power:GND") (at 30.48 150.876 0) (unit 1)
  5094. (in_bom yes) (on_board yes)
  5095. (uuid b99f049b-86ba-49a7-80e9-213f3e98b092)
  5096. (property "Reference" "#PWR013" (id 0) (at 30.48 157.226 0)
  5097. (effects (font (size 1.27 1.27)) hide)
  5098. )
  5099. (property "Value" "GND" (id 1) (at 30.607 155.2702 0))
  5100. (property "Footprint" "" (id 2) (at 30.48 150.876 0)
  5101. (effects (font (size 1.27 1.27)) hide)
  5102. )
  5103. (property "Datasheet" "" (id 3) (at 30.48 150.876 0)
  5104. (effects (font (size 1.27 1.27)) hide)
  5105. )
  5106. (pin "1" (uuid b03a158e-2610-4585-af15-977f91c56c85))
  5107. )
  5108. (symbol (lib_id "power:GND") (at 58.42 150.876 0) (unit 1)
  5109. (in_bom yes) (on_board yes)
  5110. (uuid bced4998-bac0-4d66-bf24-5c442d5a0060)
  5111. (property "Reference" "#PWR016" (id 0) (at 58.42 157.226 0)
  5112. (effects (font (size 1.27 1.27)) hide)
  5113. )
  5114. (property "Value" "GND" (id 1) (at 58.547 155.2702 0))
  5115. (property "Footprint" "" (id 2) (at 58.42 150.876 0)
  5116. (effects (font (size 1.27 1.27)) hide)
  5117. )
  5118. (property "Datasheet" "" (id 3) (at 58.42 150.876 0)
  5119. (effects (font (size 1.27 1.27)) hide)
  5120. )
  5121. (pin "1" (uuid 7304ae4b-1e69-4cc5-80e7-ecf949362c05))
  5122. )
  5123. (symbol (lib_id "power:GND") (at 24.13 150.876 0) (unit 1)
  5124. (in_bom yes) (on_board yes)
  5125. (uuid c44f3506-fdb2-4e65-9a29-9adbc98d0f6c)
  5126. (property "Reference" "#PWR0145" (id 0) (at 24.13 157.226 0)
  5127. (effects (font (size 1.27 1.27)) hide)
  5128. )
  5129. (property "Value" "GND" (id 1) (at 24.257 155.2702 0))
  5130. (property "Footprint" "" (id 2) (at 24.13 150.876 0)
  5131. (effects (font (size 1.27 1.27)) hide)
  5132. )
  5133. (property "Datasheet" "" (id 3) (at 24.13 150.876 0)
  5134. (effects (font (size 1.27 1.27)) hide)
  5135. )
  5136. (pin "1" (uuid af765652-7e79-497d-8de4-b05aefcfbb3f))
  5137. )
  5138. (symbol (lib_id "power:GND") (at 67.437 150.749 0) (unit 1)
  5139. (in_bom yes) (on_board yes)
  5140. (uuid c5133f35-adbf-4ce4-bebc-090279107ab9)
  5141. (property "Reference" "#PWR0147" (id 0) (at 67.437 157.099 0)
  5142. (effects (font (size 1.27 1.27)) hide)
  5143. )
  5144. (property "Value" "GND" (id 1) (at 67.564 155.1432 0))
  5145. (property "Footprint" "" (id 2) (at 67.437 150.749 0)
  5146. (effects (font (size 1.27 1.27)) hide)
  5147. )
  5148. (property "Datasheet" "" (id 3) (at 67.437 150.749 0)
  5149. (effects (font (size 1.27 1.27)) hide)
  5150. )
  5151. (pin "1" (uuid fa238fd5-b050-47b5-a39a-c90827d420a0))
  5152. )
  5153. (symbol (lib_id "power:+5VA") (at 190.5 80.01 0) (unit 1)
  5154. (in_bom yes) (on_board yes) (fields_autoplaced)
  5155. (uuid d7b957cc-18a9-46de-b844-2af67b2367f9)
  5156. (property "Reference" "#PWR0150" (id 0) (at 190.5 83.82 0)
  5157. (effects (font (size 1.27 1.27)) hide)
  5158. )
  5159. (property "Value" "+5VA" (id 1) (at 190.5 75.184 0))
  5160. (property "Footprint" "" (id 2) (at 190.5 80.01 0)
  5161. (effects (font (size 1.27 1.27)) hide)
  5162. )
  5163. (property "Datasheet" "" (id 3) (at 190.5 80.01 0)
  5164. (effects (font (size 1.27 1.27)) hide)
  5165. )
  5166. (pin "1" (uuid 30b6e8a2-4681-41e2-a818-79f7637e9d65))
  5167. )
  5168. (symbol (lib_id "Device:R_Small") (at 88.392 148.336 0) (unit 1)
  5169. (in_bom yes) (on_board yes)
  5170. (uuid ddf1d253-db65-4693-a880-6f566c4de4b7)
  5171. (property "Reference" "R34" (id 0) (at 84.582 146.05 0)
  5172. (effects (font (size 1.27 1.27)) (justify left))
  5173. )
  5174. (property "Value" "470" (id 1) (at 83.312 150.876 0)
  5175. (effects (font (size 1.27 1.27)) (justify left))
  5176. )
  5177. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 88.392 148.336 0)
  5178. (effects (font (size 1.27 1.27)) hide)
  5179. )
  5180. (property "Datasheet" "~" (id 3) (at 88.392 148.336 0)
  5181. (effects (font (size 1.27 1.27)) hide)
  5182. )
  5183. (property "LCSC" "C25117" (id 4) (at 88.392 148.336 0)
  5184. (effects (font (size 1.27 1.27)) hide)
  5185. )
  5186. (pin "1" (uuid c28bacd4-6e60-4631-b234-0fbe3c20495f))
  5187. (pin "2" (uuid d813a7e4-3654-4f0d-815c-52333933163c))
  5188. )
  5189. (symbol (lib_id "power:GND") (at 76.2 150.876 0) (unit 1)
  5190. (in_bom yes) (on_board yes)
  5191. (uuid e9e88504-9527-4479-a4fc-483b95b11399)
  5192. (property "Reference" "#PWR017" (id 0) (at 76.2 157.226 0)
  5193. (effects (font (size 1.27 1.27)) hide)
  5194. )
  5195. (property "Value" "GND" (id 1) (at 76.327 155.2702 0))
  5196. (property "Footprint" "" (id 2) (at 76.2 150.876 0)
  5197. (effects (font (size 1.27 1.27)) hide)
  5198. )
  5199. (property "Datasheet" "" (id 3) (at 76.2 150.876 0)
  5200. (effects (font (size 1.27 1.27)) hide)
  5201. )
  5202. (pin "1" (uuid c24f505a-1ff3-44fd-bc24-c0cbbc81f93f))
  5203. )
  5204. (symbol (lib_id "power:GND") (at 46.99 152.146 0) (unit 1)
  5205. (in_bom yes) (on_board yes)
  5206. (uuid f2bfa2d8-80d5-4b13-ae87-9c844021de35)
  5207. (property "Reference" "#PWR015" (id 0) (at 46.99 158.496 0)
  5208. (effects (font (size 1.27 1.27)) hide)
  5209. )
  5210. (property "Value" "GND" (id 1) (at 47.117 156.5402 0))
  5211. (property "Footprint" "" (id 2) (at 46.99 152.146 0)
  5212. (effects (font (size 1.27 1.27)) hide)
  5213. )
  5214. (property "Datasheet" "" (id 3) (at 46.99 152.146 0)
  5215. (effects (font (size 1.27 1.27)) hide)
  5216. )
  5217. (pin "1" (uuid 1a7c924c-7fba-4abb-a9a3-1d8f2f19945b))
  5218. )
  5219. (symbol (lib_id "power:+5VA") (at 54.61 170.18 0) (unit 1)
  5220. (in_bom yes) (on_board yes) (fields_autoplaced)
  5221. (uuid f458115f-385e-4b7e-96e6-e47f9d8828c8)
  5222. (property "Reference" "#PWR0140" (id 0) (at 54.61 173.99 0)
  5223. (effects (font (size 1.27 1.27)) hide)
  5224. )
  5225. (property "Value" "+5VA" (id 1) (at 54.61 165.1 0))
  5226. (property "Footprint" "" (id 2) (at 54.61 170.18 0)
  5227. (effects (font (size 1.27 1.27)) hide)
  5228. )
  5229. (property "Datasheet" "" (id 3) (at 54.61 170.18 0)
  5230. (effects (font (size 1.27 1.27)) hide)
  5231. )
  5232. (pin "1" (uuid 410f9ab4-3da6-41c2-8c66-991716f5a24e))
  5233. )
  5234. )