ad_usb.kicad_sch 175 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 579a29a8-cb44-486c-bb96-051580b27281)
  3. (paper "A4")
  4. (title_block
  5. (company "SweProj.com")
  6. )
  7. (lib_symbols
  8. (symbol "74xGxx:74LVC2G04" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  9. (property "Reference" "U" (id 0) (at -2.54 3.81 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Value" "74LVC2G04" (id 1) (at 0 -3.81 0)
  13. (effects (font (size 1.27 1.27)))
  14. )
  15. (property "Footprint" "" (id 2) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "ki_keywords" "Dual Gate NOT LVC CMOS" (id 4) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_description" "Dual NOT Gate, Low-Voltage CMOS" (id 5) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_fp_filters" "SG-* SOT*" (id 6) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (symbol "74LVC2G04_0_1"
  31. (polyline
  32. (pts
  33. (xy -3.81 2.54)
  34. (xy -3.81 -2.54)
  35. (xy 2.54 0)
  36. (xy -3.81 2.54)
  37. )
  38. (stroke (width 0.254) (type default) (color 0 0 0 0))
  39. (fill (type none))
  40. )
  41. (pin power_in line (at 0 -2.54 270) (length 0) hide
  42. (name "GND" (effects (font (size 1.016 1.016))))
  43. (number "2" (effects (font (size 1.016 1.016))))
  44. )
  45. (pin power_in line (at 0 2.54 90) (length 0) hide
  46. (name "VCC" (effects (font (size 1.016 1.016))))
  47. (number "5" (effects (font (size 1.016 1.016))))
  48. )
  49. )
  50. (symbol "74LVC2G04_1_1"
  51. (pin input line (at -7.62 0 0) (length 3.81)
  52. (name "~" (effects (font (size 1.016 1.016))))
  53. (number "1" (effects (font (size 1.016 1.016))))
  54. )
  55. (pin output inverted (at 6.35 0 180) (length 3.81)
  56. (name "~" (effects (font (size 1.016 1.016))))
  57. (number "6" (effects (font (size 1.016 1.016))))
  58. )
  59. )
  60. (symbol "74LVC2G04_2_1"
  61. (pin input line (at -7.62 0 0) (length 3.81)
  62. (name "~" (effects (font (size 1.016 1.016))))
  63. (number "3" (effects (font (size 1.016 1.016))))
  64. )
  65. (pin output inverted (at 6.35 0 180) (length 3.81)
  66. (name "~" (effects (font (size 1.016 1.016))))
  67. (number "4" (effects (font (size 1.016 1.016))))
  68. )
  69. )
  70. )
  71. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  72. (property "Reference" "J" (id 0) (at 0 5.08 0)
  73. (effects (font (size 1.27 1.27)))
  74. )
  75. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  76. (effects (font (size 1.27 1.27)))
  77. )
  78. (property "Footprint" "" (id 2) (at 0 0 0)
  79. (effects (font (size 1.27 1.27)) hide)
  80. )
  81. (property "Datasheet" "~" (id 3) (at 0 0 0)
  82. (effects (font (size 1.27 1.27)) hide)
  83. )
  84. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  85. (effects (font (size 1.27 1.27)) hide)
  86. )
  87. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  88. (effects (font (size 1.27 1.27)) hide)
  89. )
  90. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  91. (effects (font (size 1.27 1.27)) hide)
  92. )
  93. (symbol "Conn_01x03_Male_1_1"
  94. (polyline
  95. (pts
  96. (xy 1.27 -2.54)
  97. (xy 0.8636 -2.54)
  98. )
  99. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  100. (fill (type none))
  101. )
  102. (polyline
  103. (pts
  104. (xy 1.27 0)
  105. (xy 0.8636 0)
  106. )
  107. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  108. (fill (type none))
  109. )
  110. (polyline
  111. (pts
  112. (xy 1.27 2.54)
  113. (xy 0.8636 2.54)
  114. )
  115. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  116. (fill (type none))
  117. )
  118. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  119. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  120. (fill (type outline))
  121. )
  122. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  123. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  124. (fill (type outline))
  125. )
  126. (rectangle (start 0.8636 2.667) (end 0 2.413)
  127. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  128. (fill (type outline))
  129. )
  130. (pin passive line (at 5.08 2.54 180) (length 3.81)
  131. (name "Pin_1" (effects (font (size 1.27 1.27))))
  132. (number "1" (effects (font (size 1.27 1.27))))
  133. )
  134. (pin passive line (at 5.08 0 180) (length 3.81)
  135. (name "Pin_2" (effects (font (size 1.27 1.27))))
  136. (number "2" (effects (font (size 1.27 1.27))))
  137. )
  138. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  139. (name "Pin_3" (effects (font (size 1.27 1.27))))
  140. (number "3" (effects (font (size 1.27 1.27))))
  141. )
  142. )
  143. )
  144. (symbol "Connector:USB_C_Receptacle" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  145. (property "Reference" "J" (id 0) (at -10.16 29.21 0)
  146. (effects (font (size 1.27 1.27)) (justify left))
  147. )
  148. (property "Value" "USB_C_Receptacle" (id 1) (at 10.16 29.21 0)
  149. (effects (font (size 1.27 1.27)) (justify right))
  150. )
  151. (property "Footprint" "" (id 2) (at 3.81 0 0)
  152. (effects (font (size 1.27 1.27)) hide)
  153. )
  154. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 3.81 0 0)
  155. (effects (font (size 1.27 1.27)) hide)
  156. )
  157. (property "ki_keywords" "usb universal serial bus type-C full-featured" (id 4) (at 0 0 0)
  158. (effects (font (size 1.27 1.27)) hide)
  159. )
  160. (property "ki_description" "USB Full-Featured Type-C Receptacle connector" (id 5) (at 0 0 0)
  161. (effects (font (size 1.27 1.27)) hide)
  162. )
  163. (property "ki_fp_filters" "USB*C*Receptacle*" (id 6) (at 0 0 0)
  164. (effects (font (size 1.27 1.27)) hide)
  165. )
  166. (symbol "USB_C_Receptacle_0_0"
  167. (rectangle (start -0.254 -35.56) (end 0.254 -34.544)
  168. (stroke (width 0) (type default) (color 0 0 0 0))
  169. (fill (type none))
  170. )
  171. (rectangle (start 10.16 -32.766) (end 9.144 -33.274)
  172. (stroke (width 0) (type default) (color 0 0 0 0))
  173. (fill (type none))
  174. )
  175. (rectangle (start 10.16 -30.226) (end 9.144 -30.734)
  176. (stroke (width 0) (type default) (color 0 0 0 0))
  177. (fill (type none))
  178. )
  179. (rectangle (start 10.16 -25.146) (end 9.144 -25.654)
  180. (stroke (width 0) (type default) (color 0 0 0 0))
  181. (fill (type none))
  182. )
  183. (rectangle (start 10.16 -22.606) (end 9.144 -23.114)
  184. (stroke (width 0) (type default) (color 0 0 0 0))
  185. (fill (type none))
  186. )
  187. (rectangle (start 10.16 -17.526) (end 9.144 -18.034)
  188. (stroke (width 0) (type default) (color 0 0 0 0))
  189. (fill (type none))
  190. )
  191. (rectangle (start 10.16 -14.986) (end 9.144 -15.494)
  192. (stroke (width 0) (type default) (color 0 0 0 0))
  193. (fill (type none))
  194. )
  195. (rectangle (start 10.16 -9.906) (end 9.144 -10.414)
  196. (stroke (width 0) (type default) (color 0 0 0 0))
  197. (fill (type none))
  198. )
  199. (rectangle (start 10.16 -7.366) (end 9.144 -7.874)
  200. (stroke (width 0) (type default) (color 0 0 0 0))
  201. (fill (type none))
  202. )
  203. (rectangle (start 10.16 -2.286) (end 9.144 -2.794)
  204. (stroke (width 0) (type default) (color 0 0 0 0))
  205. (fill (type none))
  206. )
  207. (rectangle (start 10.16 0.254) (end 9.144 -0.254)
  208. (stroke (width 0) (type default) (color 0 0 0 0))
  209. (fill (type none))
  210. )
  211. (rectangle (start 10.16 5.334) (end 9.144 4.826)
  212. (stroke (width 0) (type default) (color 0 0 0 0))
  213. (fill (type none))
  214. )
  215. (rectangle (start 10.16 7.874) (end 9.144 7.366)
  216. (stroke (width 0) (type default) (color 0 0 0 0))
  217. (fill (type none))
  218. )
  219. (rectangle (start 10.16 10.414) (end 9.144 9.906)
  220. (stroke (width 0) (type default) (color 0 0 0 0))
  221. (fill (type none))
  222. )
  223. (rectangle (start 10.16 12.954) (end 9.144 12.446)
  224. (stroke (width 0) (type default) (color 0 0 0 0))
  225. (fill (type none))
  226. )
  227. (rectangle (start 10.16 18.034) (end 9.144 17.526)
  228. (stroke (width 0) (type default) (color 0 0 0 0))
  229. (fill (type none))
  230. )
  231. (rectangle (start 10.16 20.574) (end 9.144 20.066)
  232. (stroke (width 0) (type default) (color 0 0 0 0))
  233. (fill (type none))
  234. )
  235. (rectangle (start 10.16 25.654) (end 9.144 25.146)
  236. (stroke (width 0) (type default) (color 0 0 0 0))
  237. (fill (type none))
  238. )
  239. )
  240. (symbol "USB_C_Receptacle_0_1"
  241. (rectangle (start -10.16 27.94) (end 10.16 -35.56)
  242. (stroke (width 0.254) (type default) (color 0 0 0 0))
  243. (fill (type background))
  244. )
  245. (arc (start -8.89 -3.81) (mid -6.985 -5.715) (end -5.08 -3.81)
  246. (stroke (width 0.508) (type default) (color 0 0 0 0))
  247. (fill (type none))
  248. )
  249. (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81)
  250. (stroke (width 0.254) (type default) (color 0 0 0 0))
  251. (fill (type none))
  252. )
  253. (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81)
  254. (stroke (width 0.254) (type default) (color 0 0 0 0))
  255. (fill (type outline))
  256. )
  257. (rectangle (start -7.62 -3.81) (end -6.35 3.81)
  258. (stroke (width 0.254) (type default) (color 0 0 0 0))
  259. (fill (type outline))
  260. )
  261. (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81)
  262. (stroke (width 0.254) (type default) (color 0 0 0 0))
  263. (fill (type none))
  264. )
  265. (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81)
  266. (stroke (width 0.254) (type default) (color 0 0 0 0))
  267. (fill (type outline))
  268. )
  269. (arc (start -5.08 3.81) (mid -6.985 5.715) (end -8.89 3.81)
  270. (stroke (width 0.508) (type default) (color 0 0 0 0))
  271. (fill (type none))
  272. )
  273. (polyline
  274. (pts
  275. (xy -8.89 -3.81)
  276. (xy -8.89 3.81)
  277. )
  278. (stroke (width 0.508) (type default) (color 0 0 0 0))
  279. (fill (type none))
  280. )
  281. (polyline
  282. (pts
  283. (xy -5.08 3.81)
  284. (xy -5.08 -3.81)
  285. )
  286. (stroke (width 0.508) (type default) (color 0 0 0 0))
  287. (fill (type none))
  288. )
  289. )
  290. (symbol "USB_C_Receptacle_1_1"
  291. (circle (center -2.54 1.143) (radius 0.635)
  292. (stroke (width 0.254) (type default) (color 0 0 0 0))
  293. (fill (type outline))
  294. )
  295. (circle (center 0 -5.842) (radius 1.27)
  296. (stroke (width 0) (type default) (color 0 0 0 0))
  297. (fill (type outline))
  298. )
  299. (polyline
  300. (pts
  301. (xy 0 -5.842)
  302. (xy 0 4.318)
  303. )
  304. (stroke (width 0.508) (type default) (color 0 0 0 0))
  305. (fill (type none))
  306. )
  307. (polyline
  308. (pts
  309. (xy 0 -3.302)
  310. (xy -2.54 -0.762)
  311. (xy -2.54 0.508)
  312. )
  313. (stroke (width 0.508) (type default) (color 0 0 0 0))
  314. (fill (type none))
  315. )
  316. (polyline
  317. (pts
  318. (xy 0 -2.032)
  319. (xy 2.54 0.508)
  320. (xy 2.54 1.778)
  321. )
  322. (stroke (width 0.508) (type default) (color 0 0 0 0))
  323. (fill (type none))
  324. )
  325. (polyline
  326. (pts
  327. (xy -1.27 4.318)
  328. (xy 0 6.858)
  329. (xy 1.27 4.318)
  330. (xy -1.27 4.318)
  331. )
  332. (stroke (width 0.254) (type default) (color 0 0 0 0))
  333. (fill (type outline))
  334. )
  335. (rectangle (start 1.905 1.778) (end 3.175 3.048)
  336. (stroke (width 0.254) (type default) (color 0 0 0 0))
  337. (fill (type outline))
  338. )
  339. (pin passive line (at 0 -40.64 90) (length 5.08)
  340. (name "GND" (effects (font (size 1.27 1.27))))
  341. (number "A1" (effects (font (size 1.27 1.27))))
  342. )
  343. (pin bidirectional line (at 15.24 -15.24 180) (length 5.08)
  344. (name "RX2-" (effects (font (size 1.27 1.27))))
  345. (number "A10" (effects (font (size 1.27 1.27))))
  346. )
  347. (pin bidirectional line (at 15.24 -17.78 180) (length 5.08)
  348. (name "RX2+" (effects (font (size 1.27 1.27))))
  349. (number "A11" (effects (font (size 1.27 1.27))))
  350. )
  351. (pin passive line (at 0 -40.64 90) (length 5.08) hide
  352. (name "GND" (effects (font (size 1.27 1.27))))
  353. (number "A12" (effects (font (size 1.27 1.27))))
  354. )
  355. (pin bidirectional line (at 15.24 -10.16 180) (length 5.08)
  356. (name "TX1+" (effects (font (size 1.27 1.27))))
  357. (number "A2" (effects (font (size 1.27 1.27))))
  358. )
  359. (pin bidirectional line (at 15.24 -7.62 180) (length 5.08)
  360. (name "TX1-" (effects (font (size 1.27 1.27))))
  361. (number "A3" (effects (font (size 1.27 1.27))))
  362. )
  363. (pin passive line (at 15.24 25.4 180) (length 5.08)
  364. (name "VBUS" (effects (font (size 1.27 1.27))))
  365. (number "A4" (effects (font (size 1.27 1.27))))
  366. )
  367. (pin bidirectional line (at 15.24 20.32 180) (length 5.08)
  368. (name "CC1" (effects (font (size 1.27 1.27))))
  369. (number "A5" (effects (font (size 1.27 1.27))))
  370. )
  371. (pin bidirectional line (at 15.24 7.62 180) (length 5.08)
  372. (name "D+" (effects (font (size 1.27 1.27))))
  373. (number "A6" (effects (font (size 1.27 1.27))))
  374. )
  375. (pin bidirectional line (at 15.24 12.7 180) (length 5.08)
  376. (name "D-" (effects (font (size 1.27 1.27))))
  377. (number "A7" (effects (font (size 1.27 1.27))))
  378. )
  379. (pin bidirectional line (at 15.24 -30.48 180) (length 5.08)
  380. (name "SBU1" (effects (font (size 1.27 1.27))))
  381. (number "A8" (effects (font (size 1.27 1.27))))
  382. )
  383. (pin passive line (at 15.24 25.4 180) (length 5.08) hide
  384. (name "VBUS" (effects (font (size 1.27 1.27))))
  385. (number "A9" (effects (font (size 1.27 1.27))))
  386. )
  387. (pin passive line (at 0 -40.64 90) (length 5.08) hide
  388. (name "GND" (effects (font (size 1.27 1.27))))
  389. (number "B1" (effects (font (size 1.27 1.27))))
  390. )
  391. (pin bidirectional line (at 15.24 0 180) (length 5.08)
  392. (name "RX1-" (effects (font (size 1.27 1.27))))
  393. (number "B10" (effects (font (size 1.27 1.27))))
  394. )
  395. (pin bidirectional line (at 15.24 -2.54 180) (length 5.08)
  396. (name "RX1+" (effects (font (size 1.27 1.27))))
  397. (number "B11" (effects (font (size 1.27 1.27))))
  398. )
  399. (pin passive line (at 0 -40.64 90) (length 5.08) hide
  400. (name "GND" (effects (font (size 1.27 1.27))))
  401. (number "B12" (effects (font (size 1.27 1.27))))
  402. )
  403. (pin bidirectional line (at 15.24 -25.4 180) (length 5.08)
  404. (name "TX2+" (effects (font (size 1.27 1.27))))
  405. (number "B2" (effects (font (size 1.27 1.27))))
  406. )
  407. (pin bidirectional line (at 15.24 -22.86 180) (length 5.08)
  408. (name "TX2-" (effects (font (size 1.27 1.27))))
  409. (number "B3" (effects (font (size 1.27 1.27))))
  410. )
  411. (pin passive line (at 15.24 25.4 180) (length 5.08) hide
  412. (name "VBUS" (effects (font (size 1.27 1.27))))
  413. (number "B4" (effects (font (size 1.27 1.27))))
  414. )
  415. (pin bidirectional line (at 15.24 17.78 180) (length 5.08)
  416. (name "CC2" (effects (font (size 1.27 1.27))))
  417. (number "B5" (effects (font (size 1.27 1.27))))
  418. )
  419. (pin bidirectional line (at 15.24 5.08 180) (length 5.08)
  420. (name "D+" (effects (font (size 1.27 1.27))))
  421. (number "B6" (effects (font (size 1.27 1.27))))
  422. )
  423. (pin bidirectional line (at 15.24 10.16 180) (length 5.08)
  424. (name "D-" (effects (font (size 1.27 1.27))))
  425. (number "B7" (effects (font (size 1.27 1.27))))
  426. )
  427. (pin bidirectional line (at 15.24 -33.02 180) (length 5.08)
  428. (name "SBU2" (effects (font (size 1.27 1.27))))
  429. (number "B8" (effects (font (size 1.27 1.27))))
  430. )
  431. (pin passive line (at 15.24 25.4 180) (length 5.08) hide
  432. (name "VBUS" (effects (font (size 1.27 1.27))))
  433. (number "B9" (effects (font (size 1.27 1.27))))
  434. )
  435. (pin passive line (at -7.62 -40.64 90) (length 5.08)
  436. (name "SHIELD" (effects (font (size 1.27 1.27))))
  437. (number "S1" (effects (font (size 1.27 1.27))))
  438. )
  439. )
  440. )
  441. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  442. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  443. (effects (font (size 1.27 1.27)) (justify left))
  444. )
  445. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  446. (effects (font (size 1.27 1.27)) (justify left))
  447. )
  448. (property "Footprint" "" (id 2) (at 0 0 0)
  449. (effects (font (size 1.27 1.27)) hide)
  450. )
  451. (property "Datasheet" "~" (id 3) (at 0 0 0)
  452. (effects (font (size 1.27 1.27)) hide)
  453. )
  454. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  455. (effects (font (size 1.27 1.27)) hide)
  456. )
  457. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  458. (effects (font (size 1.27 1.27)) hide)
  459. )
  460. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  461. (effects (font (size 1.27 1.27)) hide)
  462. )
  463. (symbol "C_Small_0_1"
  464. (polyline
  465. (pts
  466. (xy -1.524 -0.508)
  467. (xy 1.524 -0.508)
  468. )
  469. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  470. (fill (type none))
  471. )
  472. (polyline
  473. (pts
  474. (xy -1.524 0.508)
  475. (xy 1.524 0.508)
  476. )
  477. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  478. (fill (type none))
  479. )
  480. )
  481. (symbol "C_Small_1_1"
  482. (pin passive line (at 0 2.54 270) (length 2.032)
  483. (name "~" (effects (font (size 1.27 1.27))))
  484. (number "1" (effects (font (size 1.27 1.27))))
  485. )
  486. (pin passive line (at 0 -2.54 90) (length 2.032)
  487. (name "~" (effects (font (size 1.27 1.27))))
  488. (number "2" (effects (font (size 1.27 1.27))))
  489. )
  490. )
  491. )
  492. (symbol "Device:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  493. (property "Reference" "Y" (id 0) (at 3.175 5.08 0)
  494. (effects (font (size 1.27 1.27)) (justify left))
  495. )
  496. (property "Value" "Crystal_GND24" (id 1) (at 3.175 3.175 0)
  497. (effects (font (size 1.27 1.27)) (justify left))
  498. )
  499. (property "Footprint" "" (id 2) (at 0 0 0)
  500. (effects (font (size 1.27 1.27)) hide)
  501. )
  502. (property "Datasheet" "~" (id 3) (at 0 0 0)
  503. (effects (font (size 1.27 1.27)) hide)
  504. )
  505. (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
  506. (effects (font (size 1.27 1.27)) hide)
  507. )
  508. (property "ki_description" "Four pin crystal, GND on pins 2 and 4" (id 5) (at 0 0 0)
  509. (effects (font (size 1.27 1.27)) hide)
  510. )
  511. (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
  512. (effects (font (size 1.27 1.27)) hide)
  513. )
  514. (symbol "Crystal_GND24_0_1"
  515. (rectangle (start -1.143 2.54) (end 1.143 -2.54)
  516. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  517. (fill (type none))
  518. )
  519. (polyline
  520. (pts
  521. (xy -2.54 0)
  522. (xy -2.032 0)
  523. )
  524. (stroke (width 0) (type default) (color 0 0 0 0))
  525. (fill (type none))
  526. )
  527. (polyline
  528. (pts
  529. (xy -2.032 -1.27)
  530. (xy -2.032 1.27)
  531. )
  532. (stroke (width 0.508) (type default) (color 0 0 0 0))
  533. (fill (type none))
  534. )
  535. (polyline
  536. (pts
  537. (xy 0 -3.81)
  538. (xy 0 -3.556)
  539. )
  540. (stroke (width 0) (type default) (color 0 0 0 0))
  541. (fill (type none))
  542. )
  543. (polyline
  544. (pts
  545. (xy 0 3.556)
  546. (xy 0 3.81)
  547. )
  548. (stroke (width 0) (type default) (color 0 0 0 0))
  549. (fill (type none))
  550. )
  551. (polyline
  552. (pts
  553. (xy 2.032 -1.27)
  554. (xy 2.032 1.27)
  555. )
  556. (stroke (width 0.508) (type default) (color 0 0 0 0))
  557. (fill (type none))
  558. )
  559. (polyline
  560. (pts
  561. (xy 2.032 0)
  562. (xy 2.54 0)
  563. )
  564. (stroke (width 0) (type default) (color 0 0 0 0))
  565. (fill (type none))
  566. )
  567. (polyline
  568. (pts
  569. (xy -2.54 -2.286)
  570. (xy -2.54 -3.556)
  571. (xy 2.54 -3.556)
  572. (xy 2.54 -2.286)
  573. )
  574. (stroke (width 0) (type default) (color 0 0 0 0))
  575. (fill (type none))
  576. )
  577. (polyline
  578. (pts
  579. (xy -2.54 2.286)
  580. (xy -2.54 3.556)
  581. (xy 2.54 3.556)
  582. (xy 2.54 2.286)
  583. )
  584. (stroke (width 0) (type default) (color 0 0 0 0))
  585. (fill (type none))
  586. )
  587. )
  588. (symbol "Crystal_GND24_1_1"
  589. (pin passive line (at -3.81 0 0) (length 1.27)
  590. (name "1" (effects (font (size 1.27 1.27))))
  591. (number "1" (effects (font (size 1.27 1.27))))
  592. )
  593. (pin passive line (at 0 5.08 270) (length 1.27)
  594. (name "2" (effects (font (size 1.27 1.27))))
  595. (number "2" (effects (font (size 1.27 1.27))))
  596. )
  597. (pin passive line (at 3.81 0 180) (length 1.27)
  598. (name "3" (effects (font (size 1.27 1.27))))
  599. (number "3" (effects (font (size 1.27 1.27))))
  600. )
  601. (pin passive line (at 0 -5.08 90) (length 1.27)
  602. (name "4" (effects (font (size 1.27 1.27))))
  603. (number "4" (effects (font (size 1.27 1.27))))
  604. )
  605. )
  606. )
  607. (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  608. (property "Reference" "D" (id 0) (at 0 2.54 0)
  609. (effects (font (size 1.27 1.27)))
  610. )
  611. (property "Value" "D_Schottky" (id 1) (at 0 -2.54 0)
  612. (effects (font (size 1.27 1.27)))
  613. )
  614. (property "Footprint" "" (id 2) (at 0 0 0)
  615. (effects (font (size 1.27 1.27)) hide)
  616. )
  617. (property "Datasheet" "~" (id 3) (at 0 0 0)
  618. (effects (font (size 1.27 1.27)) hide)
  619. )
  620. (property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0)
  621. (effects (font (size 1.27 1.27)) hide)
  622. )
  623. (property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
  624. (effects (font (size 1.27 1.27)) hide)
  625. )
  626. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
  627. (effects (font (size 1.27 1.27)) hide)
  628. )
  629. (symbol "D_Schottky_0_1"
  630. (polyline
  631. (pts
  632. (xy 1.27 0)
  633. (xy -1.27 0)
  634. )
  635. (stroke (width 0) (type default) (color 0 0 0 0))
  636. (fill (type none))
  637. )
  638. (polyline
  639. (pts
  640. (xy 1.27 1.27)
  641. (xy 1.27 -1.27)
  642. (xy -1.27 0)
  643. (xy 1.27 1.27)
  644. )
  645. (stroke (width 0.254) (type default) (color 0 0 0 0))
  646. (fill (type none))
  647. )
  648. (polyline
  649. (pts
  650. (xy -1.905 0.635)
  651. (xy -1.905 1.27)
  652. (xy -1.27 1.27)
  653. (xy -1.27 -1.27)
  654. (xy -0.635 -1.27)
  655. (xy -0.635 -0.635)
  656. )
  657. (stroke (width 0.254) (type default) (color 0 0 0 0))
  658. (fill (type none))
  659. )
  660. )
  661. (symbol "D_Schottky_1_1"
  662. (pin passive line (at -3.81 0 0) (length 2.54)
  663. (name "K" (effects (font (size 1.27 1.27))))
  664. (number "1" (effects (font (size 1.27 1.27))))
  665. )
  666. (pin passive line (at 3.81 0 180) (length 2.54)
  667. (name "A" (effects (font (size 1.27 1.27))))
  668. (number "2" (effects (font (size 1.27 1.27))))
  669. )
  670. )
  671. )
  672. (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  673. (property "Reference" "L" (id 0) (at -1.27 0 90)
  674. (effects (font (size 1.27 1.27)))
  675. )
  676. (property "Value" "L" (id 1) (at 1.905 0 90)
  677. (effects (font (size 1.27 1.27)))
  678. )
  679. (property "Footprint" "" (id 2) (at 0 0 0)
  680. (effects (font (size 1.27 1.27)) hide)
  681. )
  682. (property "Datasheet" "~" (id 3) (at 0 0 0)
  683. (effects (font (size 1.27 1.27)) hide)
  684. )
  685. (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
  686. (effects (font (size 1.27 1.27)) hide)
  687. )
  688. (property "ki_description" "Inductor" (id 5) (at 0 0 0)
  689. (effects (font (size 1.27 1.27)) hide)
  690. )
  691. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
  692. (effects (font (size 1.27 1.27)) hide)
  693. )
  694. (symbol "L_0_1"
  695. (arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
  696. (stroke (width 0) (type default) (color 0 0 0 0))
  697. (fill (type none))
  698. )
  699. (arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
  700. (stroke (width 0) (type default) (color 0 0 0 0))
  701. (fill (type none))
  702. )
  703. (arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
  704. (stroke (width 0) (type default) (color 0 0 0 0))
  705. (fill (type none))
  706. )
  707. (arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
  708. (stroke (width 0) (type default) (color 0 0 0 0))
  709. (fill (type none))
  710. )
  711. )
  712. (symbol "L_1_1"
  713. (pin passive line (at 0 3.81 270) (length 1.27)
  714. (name "1" (effects (font (size 1.27 1.27))))
  715. (number "1" (effects (font (size 1.27 1.27))))
  716. )
  717. (pin passive line (at 0 -3.81 90) (length 1.27)
  718. (name "2" (effects (font (size 1.27 1.27))))
  719. (number "2" (effects (font (size 1.27 1.27))))
  720. )
  721. )
  722. )
  723. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  724. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  725. (effects (font (size 1.27 1.27)) (justify left))
  726. )
  727. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  728. (effects (font (size 1.27 1.27)) (justify left))
  729. )
  730. (property "Footprint" "" (id 2) (at 0 0 0)
  731. (effects (font (size 1.27 1.27)) hide)
  732. )
  733. (property "Datasheet" "~" (id 3) (at 0 0 0)
  734. (effects (font (size 1.27 1.27)) hide)
  735. )
  736. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  737. (effects (font (size 1.27 1.27)) hide)
  738. )
  739. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  740. (effects (font (size 1.27 1.27)) hide)
  741. )
  742. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  743. (effects (font (size 1.27 1.27)) hide)
  744. )
  745. (symbol "R_Small_0_1"
  746. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  747. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  748. (fill (type none))
  749. )
  750. )
  751. (symbol "R_Small_1_1"
  752. (pin passive line (at 0 2.54 270) (length 0.762)
  753. (name "~" (effects (font (size 1.27 1.27))))
  754. (number "1" (effects (font (size 1.27 1.27))))
  755. )
  756. (pin passive line (at 0 -2.54 90) (length 0.762)
  757. (name "~" (effects (font (size 1.27 1.27))))
  758. (number "2" (effects (font (size 1.27 1.27))))
  759. )
  760. )
  761. )
  762. (symbol "Greaseweazle:FT601Q-B-T" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  763. (property "Reference" "U" (id 0) (at -15.24 60.9854 0)
  764. (effects (font (size 1.27 1.27)) (justify left bottom))
  765. )
  766. (property "Value" "FT601Q-B-T" (id 1) (at -15.2654 -61.0362 0)
  767. (effects (font (size 1.27 1.27)) (justify left bottom))
  768. )
  769. (property "Footprint" "QFN40P900X900X100-77N" (id 2) (at 0 0 0)
  770. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  771. )
  772. (property "Datasheet" "" (id 3) (at 0 0 0)
  773. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  774. )
  775. (property "STANDARD" "IPC7351B" (id 4) (at 0 0 0)
  776. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  777. )
  778. (property "SNAPEDA_PACKAGE_ID" "11921" (id 5) (at 0 0 0)
  779. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  780. )
  781. (property "MANUFACTURER" "FTDI Chip" (id 6) (at 0 0 0)
  782. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  783. )
  784. (property "PARTREV" "1.05" (id 7) (at 0 0 0)
  785. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  786. )
  787. (property "ki_locked" "" (id 8) (at 0 0 0)
  788. (effects (font (size 1.27 1.27)))
  789. )
  790. (symbol "FT601Q-B-T_0_0"
  791. (rectangle (start -15.24 -58.42) (end 15.24 60.96)
  792. (stroke (width 0.254) (type default) (color 0 0 0 0))
  793. (fill (type background))
  794. )
  795. (pin power_in line (at 20.32 -53.34 180) (length 5.08)
  796. (name "GND" (effects (font (size 1.016 1.016))))
  797. (number "1" (effects (font (size 1.016 1.016))))
  798. )
  799. (pin input line (at -20.32 35.56 0) (length 5.08)
  800. (name "SIWU_N" (effects (font (size 1.016 1.016))))
  801. (number "10" (effects (font (size 1.016 1.016))))
  802. )
  803. (pin input line (at -20.32 30.48 0) (length 5.08)
  804. (name "WR_N" (effects (font (size 1.016 1.016))))
  805. (number "11" (effects (font (size 1.016 1.016))))
  806. )
  807. (pin input line (at -20.32 27.94 0) (length 5.08)
  808. (name "RD_N" (effects (font (size 1.016 1.016))))
  809. (number "12" (effects (font (size 1.016 1.016))))
  810. )
  811. (pin input line (at -20.32 43.18 0) (length 5.08)
  812. (name "OE_N" (effects (font (size 1.016 1.016))))
  813. (number "13" (effects (font (size 1.016 1.016))))
  814. )
  815. (pin power_in line (at 20.32 55.88 180) (length 5.08)
  816. (name "VCCIO" (effects (font (size 1.016 1.016))))
  817. (number "14" (effects (font (size 1.016 1.016))))
  818. )
  819. (pin input line (at -20.32 40.64 0) (length 5.08)
  820. (name "RESET_N" (effects (font (size 1.016 1.016))))
  821. (number "15" (effects (font (size 1.016 1.016))))
  822. )
  823. (pin bidirectional line (at -20.32 -40.64 0) (length 5.08)
  824. (name "WAKEUP_N" (effects (font (size 1.016 1.016))))
  825. (number "16" (effects (font (size 1.016 1.016))))
  826. )
  827. (pin bidirectional line (at -20.32 -33.02 0) (length 5.08)
  828. (name "GPIO0" (effects (font (size 1.016 1.016))))
  829. (number "17" (effects (font (size 1.016 1.016))))
  830. )
  831. (pin bidirectional line (at -20.32 -35.56 0) (length 5.08)
  832. (name "GPIO1" (effects (font (size 1.016 1.016))))
  833. (number "18" (effects (font (size 1.016 1.016))))
  834. )
  835. (pin power_in line (at 20.32 50.8 180) (length 5.08)
  836. (name "AVDD" (effects (font (size 1.016 1.016))))
  837. (number "2" (effects (font (size 1.016 1.016))))
  838. )
  839. (pin power_in line (at 20.32 53.34 180) (length 5.08)
  840. (name "VCC33" (effects (font (size 1.016 1.016))))
  841. (number "20" (effects (font (size 1.016 1.016))))
  842. )
  843. (pin input line (at -20.32 -25.4 0) (length 5.08)
  844. (name "XI" (effects (font (size 1.016 1.016))))
  845. (number "21" (effects (font (size 1.016 1.016))))
  846. )
  847. (pin output line (at -20.32 -27.94 0) (length 5.08)
  848. (name "XO" (effects (font (size 1.016 1.016))))
  849. (number "22" (effects (font (size 1.016 1.016))))
  850. )
  851. (pin bidirectional line (at -20.32 17.78 0) (length 5.08)
  852. (name "DP" (effects (font (size 1.016 1.016))))
  853. (number "23" (effects (font (size 1.016 1.016))))
  854. )
  855. (pin power_in line (at 20.32 53.34 180) (length 5.08)
  856. (name "VCC33" (effects (font (size 1.016 1.016))))
  857. (number "24" (effects (font (size 1.016 1.016))))
  858. )
  859. (pin bidirectional line (at -20.32 15.24 0) (length 5.08)
  860. (name "DM" (effects (font (size 1.016 1.016))))
  861. (number "25" (effects (font (size 1.016 1.016))))
  862. )
  863. (pin power_in line (at 20.32 -53.34 180) (length 5.08)
  864. (name "GND" (effects (font (size 1.016 1.016))))
  865. (number "26" (effects (font (size 1.016 1.016))))
  866. )
  867. (pin input line (at -20.32 10.16 0) (length 5.08)
  868. (name "RREF" (effects (font (size 1.016 1.016))))
  869. (number "27" (effects (font (size 1.016 1.016))))
  870. )
  871. (pin power_in line (at 20.32 48.26 180) (length 5.08)
  872. (name "VDDA" (effects (font (size 1.016 1.016))))
  873. (number "28" (effects (font (size 1.016 1.016))))
  874. )
  875. (pin power_in line (at 20.32 -53.34 180) (length 5.08)
  876. (name "GND" (effects (font (size 1.016 1.016))))
  877. (number "29" (effects (font (size 1.016 1.016))))
  878. )
  879. (pin power_in line (at 20.32 58.42 180) (length 5.08)
  880. (name "VD10" (effects (font (size 1.016 1.016))))
  881. (number "3" (effects (font (size 1.016 1.016))))
  882. )
  883. (pin power_in line (at 20.32 58.42 180) (length 5.08)
  884. (name "VD10" (effects (font (size 1.016 1.016))))
  885. (number "30" (effects (font (size 1.016 1.016))))
  886. )
  887. (pin output line (at -20.32 5.08 0) (length 5.08)
  888. (name "T0DN" (effects (font (size 1.016 1.016))))
  889. (number "31" (effects (font (size 1.016 1.016))))
  890. )
  891. (pin output line (at -20.32 2.54 0) (length 5.08)
  892. (name "T0DP" (effects (font (size 1.016 1.016))))
  893. (number "32" (effects (font (size 1.016 1.016))))
  894. )
  895. (pin power_in line (at 20.32 58.42 180) (length 5.08)
  896. (name "VD10" (effects (font (size 1.016 1.016))))
  897. (number "33" (effects (font (size 1.016 1.016))))
  898. )
  899. (pin input line (at -20.32 0 0) (length 5.08)
  900. (name "RIDN" (effects (font (size 1.016 1.016))))
  901. (number "34" (effects (font (size 1.016 1.016))))
  902. )
  903. (pin input line (at -20.32 -2.54 0) (length 5.08)
  904. (name "RIDP" (effects (font (size 1.016 1.016))))
  905. (number "35" (effects (font (size 1.016 1.016))))
  906. )
  907. (pin power_in line (at 20.32 -53.34 180) (length 5.08)
  908. (name "GND" (effects (font (size 1.016 1.016))))
  909. (number "36" (effects (font (size 1.016 1.016))))
  910. )
  911. (pin input line (at -20.32 22.86 0) (length 5.08)
  912. (name "VBUS" (effects (font (size 1.016 1.016))))
  913. (number "37" (effects (font (size 1.016 1.016))))
  914. )
  915. (pin power_in line (at 20.32 53.34 180) (length 5.08)
  916. (name "VCC33" (effects (font (size 1.016 1.016))))
  917. (number "38" (effects (font (size 1.016 1.016))))
  918. )
  919. (pin output line (at -20.32 -20.32 0) (length 5.08)
  920. (name "DV10" (effects (font (size 1.016 1.016))))
  921. (number "39" (effects (font (size 1.016 1.016))))
  922. )
  923. (pin bidirectional line (at 20.32 -40.64 180) (length 5.08)
  924. (name "BE_0" (effects (font (size 1.016 1.016))))
  925. (number "4" (effects (font (size 1.016 1.016))))
  926. )
  927. (pin bidirectional line (at 20.32 43.18 180) (length 5.08)
  928. (name "DATA_0" (effects (font (size 1.016 1.016))))
  929. (number "40" (effects (font (size 1.016 1.016))))
  930. )
  931. (pin bidirectional line (at 20.32 40.64 180) (length 5.08)
  932. (name "DATA_1" (effects (font (size 1.016 1.016))))
  933. (number "41" (effects (font (size 1.016 1.016))))
  934. )
  935. (pin bidirectional line (at 20.32 38.1 180) (length 5.08)
  936. (name "DATA_2" (effects (font (size 1.016 1.016))))
  937. (number "42" (effects (font (size 1.016 1.016))))
  938. )
  939. (pin bidirectional line (at 20.32 35.56 180) (length 5.08)
  940. (name "DATA_3" (effects (font (size 1.016 1.016))))
  941. (number "43" (effects (font (size 1.016 1.016))))
  942. )
  943. (pin bidirectional line (at 20.32 33.02 180) (length 5.08)
  944. (name "DATA_4" (effects (font (size 1.016 1.016))))
  945. (number "44" (effects (font (size 1.016 1.016))))
  946. )
  947. (pin bidirectional line (at 20.32 30.48 180) (length 5.08)
  948. (name "DATA_5" (effects (font (size 1.016 1.016))))
  949. (number "45" (effects (font (size 1.016 1.016))))
  950. )
  951. (pin bidirectional line (at 20.32 27.94 180) (length 5.08)
  952. (name "DATA_6" (effects (font (size 1.016 1.016))))
  953. (number "46" (effects (font (size 1.016 1.016))))
  954. )
  955. (pin bidirectional line (at 20.32 25.4 180) (length 5.08)
  956. (name "DATA_7" (effects (font (size 1.016 1.016))))
  957. (number "47" (effects (font (size 1.016 1.016))))
  958. )
  959. (pin power_in line (at 20.32 58.42 180) (length 5.08)
  960. (name "VD10" (effects (font (size 1.016 1.016))))
  961. (number "48" (effects (font (size 1.016 1.016))))
  962. )
  963. (pin power_in line (at 20.32 55.88 180) (length 5.08)
  964. (name "VCCIO" (effects (font (size 1.016 1.016))))
  965. (number "49" (effects (font (size 1.016 1.016))))
  966. )
  967. (pin bidirectional line (at 20.32 -43.18 180) (length 5.08)
  968. (name "BE_1" (effects (font (size 1.016 1.016))))
  969. (number "5" (effects (font (size 1.016 1.016))))
  970. )
  971. (pin bidirectional line (at 20.32 22.86 180) (length 5.08)
  972. (name "DATA_8" (effects (font (size 1.016 1.016))))
  973. (number "50" (effects (font (size 1.016 1.016))))
  974. )
  975. (pin bidirectional line (at 20.32 20.32 180) (length 5.08)
  976. (name "DATA_9" (effects (font (size 1.016 1.016))))
  977. (number "51" (effects (font (size 1.016 1.016))))
  978. )
  979. (pin bidirectional line (at 20.32 17.78 180) (length 5.08)
  980. (name "DATA_10" (effects (font (size 1.016 1.016))))
  981. (number "52" (effects (font (size 1.016 1.016))))
  982. )
  983. (pin bidirectional line (at 20.32 15.24 180) (length 5.08)
  984. (name "DATA_11" (effects (font (size 1.016 1.016))))
  985. (number "53" (effects (font (size 1.016 1.016))))
  986. )
  987. (pin bidirectional line (at 20.32 12.7 180) (length 5.08)
  988. (name "DATA_12" (effects (font (size 1.016 1.016))))
  989. (number "54" (effects (font (size 1.016 1.016))))
  990. )
  991. (pin bidirectional line (at 20.32 10.16 180) (length 5.08)
  992. (name "DATA_13" (effects (font (size 1.016 1.016))))
  993. (number "55" (effects (font (size 1.016 1.016))))
  994. )
  995. (pin bidirectional line (at 20.32 7.62 180) (length 5.08)
  996. (name "DATA_14" (effects (font (size 1.016 1.016))))
  997. (number "56" (effects (font (size 1.016 1.016))))
  998. )
  999. (pin bidirectional line (at 20.32 5.08 180) (length 5.08)
  1000. (name "DATA_15" (effects (font (size 1.016 1.016))))
  1001. (number "57" (effects (font (size 1.016 1.016))))
  1002. )
  1003. (pin output line (at -20.32 -7.62 0) (length 5.08)
  1004. (name "CLK" (effects (font (size 1.016 1.016))))
  1005. (number "58" (effects (font (size 1.016 1.016))))
  1006. )
  1007. (pin power_in line (at 20.32 55.88 180) (length 5.08)
  1008. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1009. (number "59" (effects (font (size 1.016 1.016))))
  1010. )
  1011. (pin bidirectional line (at 20.32 -45.72 180) (length 5.08)
  1012. (name "BE_2" (effects (font (size 1.016 1.016))))
  1013. (number "6" (effects (font (size 1.016 1.016))))
  1014. )
  1015. (pin bidirectional line (at 20.32 2.54 180) (length 5.08)
  1016. (name "DATA_16" (effects (font (size 1.016 1.016))))
  1017. (number "60" (effects (font (size 1.016 1.016))))
  1018. )
  1019. (pin bidirectional line (at 20.32 0 180) (length 5.08)
  1020. (name "DATA_17" (effects (font (size 1.016 1.016))))
  1021. (number "61" (effects (font (size 1.016 1.016))))
  1022. )
  1023. (pin bidirectional line (at 20.32 -2.54 180) (length 5.08)
  1024. (name "DATA_18" (effects (font (size 1.016 1.016))))
  1025. (number "62" (effects (font (size 1.016 1.016))))
  1026. )
  1027. (pin bidirectional line (at 20.32 -5.08 180) (length 5.08)
  1028. (name "DATA_19" (effects (font (size 1.016 1.016))))
  1029. (number "63" (effects (font (size 1.016 1.016))))
  1030. )
  1031. (pin bidirectional line (at 20.32 -7.62 180) (length 5.08)
  1032. (name "DATA_20" (effects (font (size 1.016 1.016))))
  1033. (number "64" (effects (font (size 1.016 1.016))))
  1034. )
  1035. (pin bidirectional line (at 20.32 -10.16 180) (length 5.08)
  1036. (name "DATA_21" (effects (font (size 1.016 1.016))))
  1037. (number "65" (effects (font (size 1.016 1.016))))
  1038. )
  1039. (pin bidirectional line (at 20.32 -12.7 180) (length 5.08)
  1040. (name "DATA_22" (effects (font (size 1.016 1.016))))
  1041. (number "66" (effects (font (size 1.016 1.016))))
  1042. )
  1043. (pin bidirectional line (at 20.32 -15.24 180) (length 5.08)
  1044. (name "DATA_23" (effects (font (size 1.016 1.016))))
  1045. (number "67" (effects (font (size 1.016 1.016))))
  1046. )
  1047. (pin power_in line (at 20.32 55.88 180) (length 5.08)
  1048. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1049. (number "68" (effects (font (size 1.016 1.016))))
  1050. )
  1051. (pin bidirectional line (at 20.32 -17.78 180) (length 5.08)
  1052. (name "DATA_24" (effects (font (size 1.016 1.016))))
  1053. (number "69" (effects (font (size 1.016 1.016))))
  1054. )
  1055. (pin bidirectional line (at 20.32 -48.26 180) (length 5.08)
  1056. (name "BE_3" (effects (font (size 1.016 1.016))))
  1057. (number "7" (effects (font (size 1.016 1.016))))
  1058. )
  1059. (pin bidirectional line (at 20.32 -20.32 180) (length 5.08)
  1060. (name "DATA_25" (effects (font (size 1.016 1.016))))
  1061. (number "70" (effects (font (size 1.016 1.016))))
  1062. )
  1063. (pin bidirectional line (at 20.32 -22.86 180) (length 5.08)
  1064. (name "DATA_26" (effects (font (size 1.016 1.016))))
  1065. (number "71" (effects (font (size 1.016 1.016))))
  1066. )
  1067. (pin bidirectional line (at 20.32 -25.4 180) (length 5.08)
  1068. (name "DATA_27" (effects (font (size 1.016 1.016))))
  1069. (number "72" (effects (font (size 1.016 1.016))))
  1070. )
  1071. (pin bidirectional line (at 20.32 -27.94 180) (length 5.08)
  1072. (name "DATA_28" (effects (font (size 1.016 1.016))))
  1073. (number "73" (effects (font (size 1.016 1.016))))
  1074. )
  1075. (pin bidirectional line (at 20.32 -30.48 180) (length 5.08)
  1076. (name "DATA_29" (effects (font (size 1.016 1.016))))
  1077. (number "74" (effects (font (size 1.016 1.016))))
  1078. )
  1079. (pin bidirectional line (at 20.32 -33.02 180) (length 5.08)
  1080. (name "DATA_30" (effects (font (size 1.016 1.016))))
  1081. (number "75" (effects (font (size 1.016 1.016))))
  1082. )
  1083. (pin bidirectional line (at 20.32 -35.56 180) (length 5.08)
  1084. (name "DATA_31" (effects (font (size 1.016 1.016))))
  1085. (number "76" (effects (font (size 1.016 1.016))))
  1086. )
  1087. (pin power_in line (at 20.32 -55.88 180) (length 5.08)
  1088. (name "EXP" (effects (font (size 1.016 1.016))))
  1089. (number "77" (effects (font (size 1.016 1.016))))
  1090. )
  1091. (pin output line (at -20.32 -12.7 0) (length 5.08)
  1092. (name "TXE_N" (effects (font (size 1.016 1.016))))
  1093. (number "8" (effects (font (size 1.016 1.016))))
  1094. )
  1095. (pin output line (at -20.32 -15.24 0) (length 5.08)
  1096. (name "RXF_N" (effects (font (size 1.016 1.016))))
  1097. (number "9" (effects (font (size 1.016 1.016))))
  1098. )
  1099. )
  1100. )
  1101. (symbol "Switch:SW_SPST" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1102. (property "Reference" "SW" (id 0) (at 0 3.175 0)
  1103. (effects (font (size 1.27 1.27)))
  1104. )
  1105. (property "Value" "SW_SPST" (id 1) (at 0 -2.54 0)
  1106. (effects (font (size 1.27 1.27)))
  1107. )
  1108. (property "Footprint" "" (id 2) (at 0 0 0)
  1109. (effects (font (size 1.27 1.27)) hide)
  1110. )
  1111. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1112. (effects (font (size 1.27 1.27)) hide)
  1113. )
  1114. (property "ki_keywords" "switch lever" (id 4) (at 0 0 0)
  1115. (effects (font (size 1.27 1.27)) hide)
  1116. )
  1117. (property "ki_description" "Single Pole Single Throw (SPST) switch" (id 5) (at 0 0 0)
  1118. (effects (font (size 1.27 1.27)) hide)
  1119. )
  1120. (symbol "SW_SPST_0_0"
  1121. (circle (center -2.032 0) (radius 0.508)
  1122. (stroke (width 0) (type default) (color 0 0 0 0))
  1123. (fill (type none))
  1124. )
  1125. (polyline
  1126. (pts
  1127. (xy -1.524 0.254)
  1128. (xy 1.524 1.778)
  1129. )
  1130. (stroke (width 0) (type default) (color 0 0 0 0))
  1131. (fill (type none))
  1132. )
  1133. (circle (center 2.032 0) (radius 0.508)
  1134. (stroke (width 0) (type default) (color 0 0 0 0))
  1135. (fill (type none))
  1136. )
  1137. )
  1138. (symbol "SW_SPST_1_1"
  1139. (pin passive line (at -5.08 0 0) (length 2.54)
  1140. (name "A" (effects (font (size 1.27 1.27))))
  1141. (number "1" (effects (font (size 1.27 1.27))))
  1142. )
  1143. (pin passive line (at 5.08 0 180) (length 2.54)
  1144. (name "B" (effects (font (size 1.27 1.27))))
  1145. (number "2" (effects (font (size 1.27 1.27))))
  1146. )
  1147. )
  1148. )
  1149. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1150. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1151. (effects (font (size 1.27 1.27)) hide)
  1152. )
  1153. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  1154. (effects (font (size 1.27 1.27)))
  1155. )
  1156. (property "Footprint" "" (id 2) (at 0 0 0)
  1157. (effects (font (size 1.27 1.27)) hide)
  1158. )
  1159. (property "Datasheet" "" (id 3) (at 0 0 0)
  1160. (effects (font (size 1.27 1.27)) hide)
  1161. )
  1162. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1163. (effects (font (size 1.27 1.27)) hide)
  1164. )
  1165. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  1166. (effects (font (size 1.27 1.27)) hide)
  1167. )
  1168. (symbol "+3V3_0_1"
  1169. (polyline
  1170. (pts
  1171. (xy -0.762 1.27)
  1172. (xy 0 2.54)
  1173. )
  1174. (stroke (width 0) (type default) (color 0 0 0 0))
  1175. (fill (type none))
  1176. )
  1177. (polyline
  1178. (pts
  1179. (xy 0 0)
  1180. (xy 0 2.54)
  1181. )
  1182. (stroke (width 0) (type default) (color 0 0 0 0))
  1183. (fill (type none))
  1184. )
  1185. (polyline
  1186. (pts
  1187. (xy 0 2.54)
  1188. (xy 0.762 1.27)
  1189. )
  1190. (stroke (width 0) (type default) (color 0 0 0 0))
  1191. (fill (type none))
  1192. )
  1193. )
  1194. (symbol "+3V3_1_1"
  1195. (pin power_in line (at 0 0 90) (length 0) hide
  1196. (name "+3V3" (effects (font (size 1.27 1.27))))
  1197. (number "1" (effects (font (size 1.27 1.27))))
  1198. )
  1199. )
  1200. )
  1201. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1202. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1203. (effects (font (size 1.27 1.27)) hide)
  1204. )
  1205. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1206. (effects (font (size 1.27 1.27)))
  1207. )
  1208. (property "Footprint" "" (id 2) (at 0 0 0)
  1209. (effects (font (size 1.27 1.27)) hide)
  1210. )
  1211. (property "Datasheet" "" (id 3) (at 0 0 0)
  1212. (effects (font (size 1.27 1.27)) hide)
  1213. )
  1214. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1215. (effects (font (size 1.27 1.27)) hide)
  1216. )
  1217. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1218. (effects (font (size 1.27 1.27)) hide)
  1219. )
  1220. (symbol "GND_0_1"
  1221. (polyline
  1222. (pts
  1223. (xy 0 0)
  1224. (xy 0 -1.27)
  1225. (xy 1.27 -1.27)
  1226. (xy 0 -2.54)
  1227. (xy -1.27 -1.27)
  1228. (xy 0 -1.27)
  1229. )
  1230. (stroke (width 0) (type default) (color 0 0 0 0))
  1231. (fill (type none))
  1232. )
  1233. )
  1234. (symbol "GND_1_1"
  1235. (pin power_in line (at 0 0 270) (length 0) hide
  1236. (name "GND" (effects (font (size 1.27 1.27))))
  1237. (number "1" (effects (font (size 1.27 1.27))))
  1238. )
  1239. )
  1240. )
  1241. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1242. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  1243. (effects (font (size 1.27 1.27)) hide)
  1244. )
  1245. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  1246. (effects (font (size 1.27 1.27)))
  1247. )
  1248. (property "Footprint" "" (id 2) (at 0 0 0)
  1249. (effects (font (size 1.27 1.27)) hide)
  1250. )
  1251. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1252. (effects (font (size 1.27 1.27)) hide)
  1253. )
  1254. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1255. (effects (font (size 1.27 1.27)) hide)
  1256. )
  1257. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  1258. (effects (font (size 1.27 1.27)) hide)
  1259. )
  1260. (symbol "PWR_FLAG_0_0"
  1261. (pin power_out line (at 0 0 90) (length 0)
  1262. (name "pwr" (effects (font (size 1.27 1.27))))
  1263. (number "1" (effects (font (size 1.27 1.27))))
  1264. )
  1265. )
  1266. (symbol "PWR_FLAG_0_1"
  1267. (polyline
  1268. (pts
  1269. (xy 0 0)
  1270. (xy 0 1.27)
  1271. (xy -1.016 1.905)
  1272. (xy 0 2.54)
  1273. (xy 1.016 1.905)
  1274. (xy 0 1.27)
  1275. )
  1276. (stroke (width 0) (type default) (color 0 0 0 0))
  1277. (fill (type none))
  1278. )
  1279. )
  1280. )
  1281. )
  1282. (junction (at 130.81 30.48) (diameter 0) (color 0 0 0 0)
  1283. (uuid 052b4ae1-93f5-45eb-87ac-4c56161422af)
  1284. )
  1285. (junction (at 50.8 30.48) (diameter 0) (color 0 0 0 0)
  1286. (uuid 0a1f8969-5393-4efe-b458-1bcd2d7a4b07)
  1287. )
  1288. (junction (at 83.82 73.66) (diameter 0) (color 0 0 0 0)
  1289. (uuid 0b55d3c0-46c6-4797-b13d-d1267e2011fd)
  1290. )
  1291. (junction (at 153.67 43.18) (diameter 0) (color 0 0 0 0)
  1292. (uuid 0b5c11d1-6ccf-4378-b53a-26c27ca1b71d)
  1293. )
  1294. (junction (at 66.04 86.36) (diameter 0) (color 0 0 0 0)
  1295. (uuid 13e006e9-2abf-4969-a8ad-099016bdcf77)
  1296. )
  1297. (junction (at 54.61 44.45) (diameter 0) (color 0 0 0 0)
  1298. (uuid 151049aa-fdf9-46ad-8a50-bdadaaa40ff9)
  1299. )
  1300. (junction (at 40.64 30.48) (diameter 0) (color 0 0 0 0)
  1301. (uuid 1561ca2d-5b93-4615-8d3c-258ccb43ad58)
  1302. )
  1303. (junction (at 118.11 163.83) (diameter 0) (color 0 0 0 0)
  1304. (uuid 179f5b89-e95d-4394-a44a-333a15a41581)
  1305. )
  1306. (junction (at 201.93 40.64) (diameter 0) (color 0 0 0 0)
  1307. (uuid 1e068df5-59cf-4c3a-9c9c-a51390e80bb4)
  1308. )
  1309. (junction (at 121.92 158.75) (diameter 0) (color 0 0 0 0)
  1310. (uuid 2e3cfd3f-acae-409f-b966-a7cd5cae622f)
  1311. )
  1312. (junction (at 66.04 81.28) (diameter 0) (color 0 0 0 0)
  1313. (uuid 316a66f5-2b50-4133-8e07-9e7948bf8d69)
  1314. )
  1315. (junction (at 77.47 104.14) (diameter 0) (color 0 0 0 0)
  1316. (uuid 32923bdf-5b28-491e-8abc-a77917cfc40d)
  1317. )
  1318. (junction (at 129.54 121.92) (diameter 0) (color 0 0 0 0)
  1319. (uuid 3f4a91bf-cc01-42e3-b50f-8e4bd5dfbff6)
  1320. )
  1321. (junction (at 74.93 22.86) (diameter 0) (color 0 0 0 0)
  1322. (uuid 3fce75a8-0fd8-47a8-882a-94c674141749)
  1323. )
  1324. (junction (at 113.03 22.86) (diameter 0) (color 0 0 0 0)
  1325. (uuid 40b601b0-51ac-4eec-8dd9-aa827e8d1491)
  1326. )
  1327. (junction (at 83.82 22.86) (diameter 0) (color 0 0 0 0)
  1328. (uuid 49e67421-4d0e-47ea-af6f-0049fc0d5b11)
  1329. )
  1330. (junction (at 102.87 22.86) (diameter 0) (color 0 0 0 0)
  1331. (uuid 5308b8db-d9ba-4d54-b893-835a89e19fbc)
  1332. )
  1333. (junction (at 44.45 173.99) (diameter 0) (color 0 0 0 0)
  1334. (uuid 53839854-f108-426d-9352-22a295b30aa1)
  1335. )
  1336. (junction (at 102.87 30.48) (diameter 0) (color 0 0 0 0)
  1337. (uuid 5636cf35-9b6a-4c98-bcf2-e82ecf6aa3ec)
  1338. )
  1339. (junction (at 124.46 161.29) (diameter 0) (color 0 0 0 0)
  1340. (uuid 578f4a37-a00b-4e05-a20f-a81415679341)
  1341. )
  1342. (junction (at 45.72 30.48) (diameter 0) (color 0 0 0 0)
  1343. (uuid 57b44f34-3193-4e1d-97eb-244d9e0ebf96)
  1344. )
  1345. (junction (at 147.32 43.18) (diameter 0) (color 0 0 0 0)
  1346. (uuid 5ce4f6af-f813-41c4-9e8b-f180a5c3926e)
  1347. )
  1348. (junction (at 130.81 22.86) (diameter 0) (color 0 0 0 0)
  1349. (uuid 5fa96c59-8474-49c8-b700-e27c61265ae6)
  1350. )
  1351. (junction (at 88.9 30.48) (diameter 0) (color 0 0 0 0)
  1352. (uuid 6b408135-4f10-4702-a62b-9fe062829518)
  1353. )
  1354. (junction (at 35.56 22.86) (diameter 0) (color 0 0 0 0)
  1355. (uuid 6dea86d7-0fd0-4adf-9dcb-02dd8682fd04)
  1356. )
  1357. (junction (at 140.97 22.86) (diameter 0) (color 0 0 0 0)
  1358. (uuid 7157be28-5003-4bcc-8e8f-0ad14eb58f57)
  1359. )
  1360. (junction (at 115.57 148.59) (diameter 0) (color 0 0 0 0)
  1361. (uuid 7219f03f-2afe-4b43-be4c-16998692e5b6)
  1362. )
  1363. (junction (at 113.03 30.48) (diameter 0) (color 0 0 0 0)
  1364. (uuid 782d53a1-46f1-43c9-9a45-24bfe9fa4249)
  1365. )
  1366. (junction (at 124.46 151.13) (diameter 0) (color 0 0 0 0)
  1367. (uuid 7fa603a2-aed9-46fb-ae5c-98143b17cc81)
  1368. )
  1369. (junction (at 125.73 22.86) (diameter 0) (color 0 0 0 0)
  1370. (uuid 8422b388-e79f-4ee5-997d-e987732bebcb)
  1371. )
  1372. (junction (at 142.24 121.92) (diameter 0) (color 0 0 0 0)
  1373. (uuid 893003f4-9eb9-4d8b-b395-5c918b4aec6b)
  1374. )
  1375. (junction (at 49.53 52.07) (diameter 0) (color 0 0 0 0)
  1376. (uuid 90e2fa2f-52d0-43e4-9c7e-3bc37f080e34)
  1377. )
  1378. (junction (at 118.11 22.86) (diameter 0) (color 0 0 0 0)
  1379. (uuid 913fe846-8688-4c8e-ad74-3fd4cb652905)
  1380. )
  1381. (junction (at 74.93 101.6) (diameter 0) (color 0 0 0 0)
  1382. (uuid 92889b3d-c064-47fb-a5fe-b2bfc76ccbcd)
  1383. )
  1384. (junction (at 107.95 22.86) (diameter 0) (color 0 0 0 0)
  1385. (uuid 9be1ec72-3a24-43ab-98f5-0862b65c7f74)
  1386. )
  1387. (junction (at 57.15 30.48) (diameter 0) (color 0 0 0 0)
  1388. (uuid a3fea079-4e54-42f0-bb87-03f1bcbf3d92)
  1389. )
  1390. (junction (at 71.12 96.52) (diameter 0) (color 0 0 0 0)
  1391. (uuid a7baeb3f-f43a-43df-9f63-1c1ec1cda60b)
  1392. )
  1393. (junction (at 107.95 30.48) (diameter 0) (color 0 0 0 0)
  1394. (uuid aab9de51-9bc2-4f6a-8b61-a0b8b871bba4)
  1395. )
  1396. (junction (at 135.89 22.86) (diameter 0) (color 0 0 0 0)
  1397. (uuid bbcc533d-c061-4e1a-bf55-94ec6d14094d)
  1398. )
  1399. (junction (at 44.45 137.16) (diameter 0) (color 0 0 0 0)
  1400. (uuid be97c69b-c912-4384-a658-a5f17604006e)
  1401. )
  1402. (junction (at 49.53 44.45) (diameter 0) (color 0 0 0 0)
  1403. (uuid c54d4540-bb94-458d-b481-b214612e2bee)
  1404. )
  1405. (junction (at 40.64 22.86) (diameter 0) (color 0 0 0 0)
  1406. (uuid c9088174-1ad7-4865-a98f-3378414f7529)
  1407. )
  1408. (junction (at 57.15 22.86) (diameter 0) (color 0 0 0 0)
  1409. (uuid d1449cb5-28a8-4693-baeb-c40d0929d460)
  1410. )
  1411. (junction (at 83.82 30.48) (diameter 0) (color 0 0 0 0)
  1412. (uuid d9cee027-1a68-4ef1-83cc-49f59adda1a3)
  1413. )
  1414. (junction (at 50.8 22.86) (diameter 0) (color 0 0 0 0)
  1415. (uuid d9ff65dd-48f9-4f59-b2b5-9519ee04fb32)
  1416. )
  1417. (junction (at 57.15 44.45) (diameter 0) (color 0 0 0 0)
  1418. (uuid dfecb94c-a403-4e82-aa22-b37148e5fe60)
  1419. )
  1420. (junction (at 135.89 30.48) (diameter 0) (color 0 0 0 0)
  1421. (uuid e43114a4-ba52-4520-8c32-18cd64d35766)
  1422. )
  1423. (junction (at 68.58 93.98) (diameter 0) (color 0 0 0 0)
  1424. (uuid eba55999-a795-4a58-8105-b30bf7aae47a)
  1425. )
  1426. (junction (at 45.72 22.86) (diameter 0) (color 0 0 0 0)
  1427. (uuid ee7680fe-3e98-4a0f-b73e-035eeb25f68b)
  1428. )
  1429. (junction (at 125.73 30.48) (diameter 0) (color 0 0 0 0)
  1430. (uuid f10de094-4469-4dbe-858d-0abeae0b672b)
  1431. )
  1432. (junction (at 35.56 30.48) (diameter 0) (color 0 0 0 0)
  1433. (uuid f47a08cd-2bfe-43fe-bbcb-39fa5f8f9a3b)
  1434. )
  1435. (junction (at 88.9 22.86) (diameter 0) (color 0 0 0 0)
  1436. (uuid fabbb283-0f4e-4399-a583-cea10827c875)
  1437. )
  1438. (no_connect (at 198.12 96.52) (uuid 09eb0607-4fb0-438b-8e83-634e245afe84))
  1439. (no_connect (at 135.89 127) (uuid 1ad24d62-d545-4b84-986d-bb7e84888f2e))
  1440. (no_connect (at 198.12 129.54) (uuid 29b6cedf-5197-4a04-aec4-1c908dce535c))
  1441. (no_connect (at 198.12 119.38) (uuid 33de0f6c-0923-47f5-96ad-aac4f6705ea7))
  1442. (no_connect (at 198.12 106.68) (uuid 36d87fa2-09af-4f0c-a71d-93f2bbe67a3a))
  1443. (no_connect (at 198.12 99.06) (uuid 3da51f9a-7930-4409-a36d-0a40ae4548c8))
  1444. (no_connect (at 198.12 93.98) (uuid 4640c082-6245-496e-85d2-d2a51b1b0b71))
  1445. (no_connect (at 198.12 109.22) (uuid 53034895-b808-4a25-94a2-68aee13251d2))
  1446. (no_connect (at 198.12 149.86) (uuid 6eb9a23d-ef14-452f-a1d9-77ce41664d9f))
  1447. (no_connect (at 198.12 91.44) (uuid 6fdc755b-8c4e-4967-a158-23069fb9c124))
  1448. (no_connect (at 135.89 116.84) (uuid 701ab135-9c88-4e09-a3c5-af8a8ccd734f))
  1449. (no_connect (at 198.12 116.84) (uuid 7fb9637f-98b6-4948-a907-f4c84181ed34))
  1450. (no_connect (at 63.5 124.46) (uuid 89fce686-df46-40b9-b252-4ffe7255f2d8))
  1451. (no_connect (at 63.5 127) (uuid a7297121-96b8-448f-8458-c41202b24614))
  1452. (no_connect (at 198.12 111.76) (uuid b35c40f8-dc31-49f3-8e98-3c0bb64ea557))
  1453. (no_connect (at 198.12 101.6) (uuid b8ea52c8-a798-4b50-bce0-a99046a9d545))
  1454. (no_connect (at 198.12 104.14) (uuid d5868a47-dd45-4fad-a801-7833035c0a7e))
  1455. (no_connect (at 93.98 129.54) (uuid e127deb0-4ac9-4666-adf4-74790ab73962))
  1456. (no_connect (at 198.12 114.3) (uuid f9d86c53-f03e-40a2-aa7a-2f9db7e7bd7b))
  1457. (bus_entry (at 226.06 60.96) (size 2.54 2.54)
  1458. (stroke (width 0) (type default) (color 0 0 0 0))
  1459. (uuid 1c994396-a92e-4694-9fab-9f4566c455e5)
  1460. )
  1461. (bus_entry (at 226.06 76.2) (size 2.54 2.54)
  1462. (stroke (width 0) (type default) (color 0 0 0 0))
  1463. (uuid 210b9650-57ed-421c-98c6-10ab26f38fd1)
  1464. )
  1465. (bus_entry (at 226.06 71.12) (size 2.54 2.54)
  1466. (stroke (width 0) (type default) (color 0 0 0 0))
  1467. (uuid 36603517-03a5-4122-8f76-88d7e3430d8b)
  1468. )
  1469. (bus_entry (at 226.06 66.04) (size 2.54 2.54)
  1470. (stroke (width 0) (type default) (color 0 0 0 0))
  1471. (uuid 36816851-c74c-40c7-8a56-7df17eb978f3)
  1472. )
  1473. (bus_entry (at 226.06 68.58) (size 2.54 2.54)
  1474. (stroke (width 0) (type default) (color 0 0 0 0))
  1475. (uuid 38845139-f485-47dc-822f-778ce9663191)
  1476. )
  1477. (bus_entry (at 226.06 78.74) (size 2.54 2.54)
  1478. (stroke (width 0) (type default) (color 0 0 0 0))
  1479. (uuid 45da16a6-6b81-4d58-be5a-83c4f2e6a3eb)
  1480. )
  1481. (bus_entry (at 226.06 73.66) (size 2.54 2.54)
  1482. (stroke (width 0) (type default) (color 0 0 0 0))
  1483. (uuid 46d4f54a-9dc8-40a5-97e3-a15b4bcc151d)
  1484. )
  1485. (bus_entry (at 226.06 55.88) (size 2.54 2.54)
  1486. (stroke (width 0) (type default) (color 0 0 0 0))
  1487. (uuid 6c3db74f-22bd-4141-93ed-e609a77ebf6f)
  1488. )
  1489. (bus_entry (at 226.06 50.8) (size 2.54 2.54)
  1490. (stroke (width 0) (type default) (color 0 0 0 0))
  1491. (uuid d3ab2813-23d8-4e92-83f1-722c1774c502)
  1492. )
  1493. (bus_entry (at 226.06 53.34) (size 2.54 2.54)
  1494. (stroke (width 0) (type default) (color 0 0 0 0))
  1495. (uuid e430793e-7deb-41c0-a9a9-c7dd40b57bda)
  1496. )
  1497. (bus_entry (at 226.06 58.42) (size 2.54 2.54)
  1498. (stroke (width 0) (type default) (color 0 0 0 0))
  1499. (uuid e62c918e-2ba5-4e14-91bf-451dab14bdf2)
  1500. )
  1501. (bus_entry (at 226.06 63.5) (size 2.54 2.54)
  1502. (stroke (width 0) (type default) (color 0 0 0 0))
  1503. (uuid ef863ed8-e98f-4857-9990-1268a0e76a5a)
  1504. )
  1505. (bus (pts (xy 228.6 53.34) (xy 228.6 55.88))
  1506. (stroke (width 0) (type default) (color 0 0 0 0))
  1507. (uuid 00050a5e-aced-4f19-92a1-146170a1c684)
  1508. )
  1509. (wire (pts (xy 102.87 21.59) (xy 102.87 22.86))
  1510. (stroke (width 0) (type default) (color 0 0 0 0))
  1511. (uuid 024fea57-aca7-40e6-ba90-2af0188372f8)
  1512. )
  1513. (wire (pts (xy 210.82 73.66) (xy 226.06 73.66))
  1514. (stroke (width 0) (type default) (color 0 0 0 0))
  1515. (uuid 061c6546-7a7e-4d39-a6ec-ab4563426b23)
  1516. )
  1517. (wire (pts (xy 198.12 78.74) (xy 205.74 78.74))
  1518. (stroke (width 0) (type default) (color 0 0 0 0))
  1519. (uuid 063c6630-1b1b-423d-a718-bad1ef4a1569)
  1520. )
  1521. (wire (pts (xy 88.9 22.86) (xy 93.98 22.86))
  1522. (stroke (width 0) (type default) (color 0 0 0 0))
  1523. (uuid 0762f890-310e-4b7b-b102-c66052577053)
  1524. )
  1525. (wire (pts (xy 198.12 83.82) (xy 213.36 83.82))
  1526. (stroke (width 0) (type default) (color 0 0 0 0))
  1527. (uuid 08e34e08-069a-44f2-bb8d-8b27e698ab32)
  1528. )
  1529. (wire (pts (xy 62.23 30.48) (xy 62.23 29.21))
  1530. (stroke (width 0) (type default) (color 0 0 0 0))
  1531. (uuid 09b561bc-9a6b-410a-82d2-90265c29fdf0)
  1532. )
  1533. (wire (pts (xy 151.13 127) (xy 151.13 151.13))
  1534. (stroke (width 0) (type default) (color 0 0 0 0))
  1535. (uuid 0a1b2e9a-74c4-4462-bbf4-519c34d247bc)
  1536. )
  1537. (wire (pts (xy 55.88 173.99) (xy 58.42 173.99))
  1538. (stroke (width 0) (type default) (color 0 0 0 0))
  1539. (uuid 0d951b9d-1ca9-4f22-a042-d0026ee92c3f)
  1540. )
  1541. (bus (pts (xy 228.6 50.8) (xy 228.6 53.34))
  1542. (stroke (width 0) (type default) (color 0 0 0 0))
  1543. (uuid 0e3ccd74-0216-4d5c-87b8-e623042c9985)
  1544. )
  1545. (wire (pts (xy 40.64 30.48) (xy 40.64 29.21))
  1546. (stroke (width 0) (type default) (color 0 0 0 0))
  1547. (uuid 0ff21d18-3404-406d-8053-857cb6030200)
  1548. )
  1549. (wire (pts (xy 44.45 162.56) (xy 44.45 165.1))
  1550. (stroke (width 0) (type default) (color 0 0 0 0))
  1551. (uuid 0ffec143-82ff-4023-8dda-01312ce1da0a)
  1552. )
  1553. (wire (pts (xy 44.45 170.18) (xy 44.45 173.99))
  1554. (stroke (width 0) (type default) (color 0 0 0 0))
  1555. (uuid 10a0bcfb-55f4-4c5b-85f5-5d77f0dc6b79)
  1556. )
  1557. (wire (pts (xy 88.9 22.86) (xy 88.9 24.13))
  1558. (stroke (width 0) (type default) (color 0 0 0 0))
  1559. (uuid 1194cfc6-744f-4d96-af48-95d2a2b281fe)
  1560. )
  1561. (bus (pts (xy 228.6 71.12) (xy 228.6 73.66))
  1562. (stroke (width 0) (type default) (color 0 0 0 0))
  1563. (uuid 121c554e-6ee4-4e3e-a82b-49ebb9f3a9a8)
  1564. )
  1565. (wire (pts (xy 57.15 22.86) (xy 62.23 22.86))
  1566. (stroke (width 0) (type default) (color 0 0 0 0))
  1567. (uuid 12681bbd-31af-4f2c-9569-caa23ae8a8ce)
  1568. )
  1569. (wire (pts (xy 67.31 44.45) (xy 69.85 44.45))
  1570. (stroke (width 0) (type default) (color 0 0 0 0))
  1571. (uuid 12e483f4-2c35-4ec2-b969-16a8cb1257de)
  1572. )
  1573. (wire (pts (xy 50.8 22.86) (xy 50.8 24.13))
  1574. (stroke (width 0) (type default) (color 0 0 0 0))
  1575. (uuid 12e96ade-fd67-484b-aca5-54824a155d10)
  1576. )
  1577. (wire (pts (xy 140.97 22.86) (xy 140.97 24.13))
  1578. (stroke (width 0) (type default) (color 0 0 0 0))
  1579. (uuid 14c75a79-031e-4663-905a-996467e0d654)
  1580. )
  1581. (wire (pts (xy 113.03 153.67) (xy 118.11 153.67))
  1582. (stroke (width 0) (type default) (color 0 0 0 0))
  1583. (uuid 14f35a96-1f55-4f38-b316-0816c33a2776)
  1584. )
  1585. (wire (pts (xy 95.885 118.745) (xy 95.885 121.285))
  1586. (stroke (width 0) (type default) (color 0 0 0 0))
  1587. (uuid 15335492-1abe-4888-88ea-5ae73fc34ebb)
  1588. )
  1589. (bus (pts (xy 228.6 60.96) (xy 228.6 63.5))
  1590. (stroke (width 0) (type default) (color 0 0 0 0))
  1591. (uuid 17100788-d42e-4556-980e-864c236ae922)
  1592. )
  1593. (wire (pts (xy 124.46 148.59) (xy 124.46 151.13))
  1594. (stroke (width 0) (type default) (color 0 0 0 0))
  1595. (uuid 181d497a-7b28-42d9-88a1-e58a56a9087d)
  1596. )
  1597. (wire (pts (xy 35.56 21.59) (xy 35.56 22.86))
  1598. (stroke (width 0) (type default) (color 0 0 0 0))
  1599. (uuid 188d6c42-0752-4171-94c8-9bededf6ebc5)
  1600. )
  1601. (wire (pts (xy 107.95 30.48) (xy 107.95 29.21))
  1602. (stroke (width 0) (type default) (color 0 0 0 0))
  1603. (uuid 19c25703-99fb-4acb-936e-e1f94517f43d)
  1604. )
  1605. (wire (pts (xy 83.82 22.86) (xy 83.82 24.13))
  1606. (stroke (width 0) (type default) (color 0 0 0 0))
  1607. (uuid 1aa08ded-40e5-4846-85c4-c054c99818a2)
  1608. )
  1609. (wire (pts (xy 115.57 148.59) (xy 124.46 148.59))
  1610. (stroke (width 0) (type default) (color 0 0 0 0))
  1611. (uuid 1b670ca0-a317-4524-8903-cab705f0958a)
  1612. )
  1613. (wire (pts (xy 74.93 116.84) (xy 74.93 101.6))
  1614. (stroke (width 0) (type default) (color 0 0 0 0))
  1615. (uuid 1bbe7219-b59f-41e6-8d5f-79342a6d9e46)
  1616. )
  1617. (wire (pts (xy 35.56 22.86) (xy 40.64 22.86))
  1618. (stroke (width 0) (type default) (color 0 0 0 0))
  1619. (uuid 1c6bcaee-f3b0-4cff-b9f8-7b54e7a9dfc5)
  1620. )
  1621. (wire (pts (xy 40.64 22.86) (xy 40.64 24.13))
  1622. (stroke (width 0) (type default) (color 0 0 0 0))
  1623. (uuid 1db9b279-c7be-4da1-9506-a8868a060aad)
  1624. )
  1625. (wire (pts (xy 198.12 71.12) (xy 205.74 71.12))
  1626. (stroke (width 0) (type default) (color 0 0 0 0))
  1627. (uuid 21202f37-37d9-4346-a3ce-fb9cdc003354)
  1628. )
  1629. (wire (pts (xy 86.995 116.205) (xy 89.535 116.205))
  1630. (stroke (width 0) (type default) (color 0 0 0 0))
  1631. (uuid 214b0873-883a-4b49-9379-11e80ca83758)
  1632. )
  1633. (wire (pts (xy 154.94 114.3) (xy 157.48 114.3))
  1634. (stroke (width 0) (type default) (color 0 0 0 0))
  1635. (uuid 2231fffe-87a2-4a05-9df9-0dce718cee48)
  1636. )
  1637. (wire (pts (xy 153.67 41.91) (xy 153.67 43.18))
  1638. (stroke (width 0) (type default) (color 0 0 0 0))
  1639. (uuid 23361300-d8ad-4b39-96f0-431d13eb997e)
  1640. )
  1641. (wire (pts (xy 35.56 30.48) (xy 40.64 30.48))
  1642. (stroke (width 0) (type default) (color 0 0 0 0))
  1643. (uuid 234463fd-68d9-4da2-9a96-fb23735f7678)
  1644. )
  1645. (wire (pts (xy 140.97 30.48) (xy 140.97 29.21))
  1646. (stroke (width 0) (type default) (color 0 0 0 0))
  1647. (uuid 23dc05de-1873-415d-9917-d84f1a314f21)
  1648. )
  1649. (wire (pts (xy 74.93 22.86) (xy 83.82 22.86))
  1650. (stroke (width 0) (type default) (color 0 0 0 0))
  1651. (uuid 2615a44b-d70f-4099-89af-36f9b591df0e)
  1652. )
  1653. (wire (pts (xy 95.25 86.36) (xy 95.25 76.2))
  1654. (stroke (width 0) (type default) (color 0 0 0 0))
  1655. (uuid 27fa4445-4cae-443b-a87e-b0d420415c33)
  1656. )
  1657. (wire (pts (xy 63.5 81.28) (xy 66.04 81.28))
  1658. (stroke (width 0) (type default) (color 0 0 0 0))
  1659. (uuid 2a6beb37-6b49-4da6-a186-7a8466026d1d)
  1660. )
  1661. (wire (pts (xy 63.5 116.84) (xy 74.93 116.84))
  1662. (stroke (width 0) (type default) (color 0 0 0 0))
  1663. (uuid 2aa039a2-ad47-4887-bb27-25235a68b421)
  1664. )
  1665. (wire (pts (xy 107.95 30.48) (xy 113.03 30.48))
  1666. (stroke (width 0) (type default) (color 0 0 0 0))
  1667. (uuid 2b8e9083-59af-44de-9aa9-235a1ff19b67)
  1668. )
  1669. (bus (pts (xy 228.6 68.58) (xy 228.6 71.12))
  1670. (stroke (width 0) (type default) (color 0 0 0 0))
  1671. (uuid 2c3f144e-c23d-47a9-a607-854446700598)
  1672. )
  1673. (wire (pts (xy 198.12 55.88) (xy 205.74 55.88))
  1674. (stroke (width 0) (type default) (color 0 0 0 0))
  1675. (uuid 2cf76403-7bfe-4b67-a5d3-168d408263c2)
  1676. )
  1677. (bus (pts (xy 228.6 63.5) (xy 228.6 66.04))
  1678. (stroke (width 0) (type default) (color 0 0 0 0))
  1679. (uuid 2d233097-2409-483e-a1be-83939dca7520)
  1680. )
  1681. (wire (pts (xy 88.9 30.48) (xy 88.9 29.21))
  1682. (stroke (width 0) (type default) (color 0 0 0 0))
  1683. (uuid 2da4280a-2009-4ca8-b2aa-df973e5ae395)
  1684. )
  1685. (wire (pts (xy 58.42 173.99) (xy 58.42 175.26))
  1686. (stroke (width 0) (type default) (color 0 0 0 0))
  1687. (uuid 2e5ec534-5d8b-4381-aad9-6541dd6f55d4)
  1688. )
  1689. (wire (pts (xy 125.73 21.59) (xy 125.73 22.86))
  1690. (stroke (width 0) (type default) (color 0 0 0 0))
  1691. (uuid 2edb0e6c-0d45-4811-ab68-2901f95904ed)
  1692. )
  1693. (wire (pts (xy 156.21 109.22) (xy 157.48 109.22))
  1694. (stroke (width 0) (type default) (color 0 0 0 0))
  1695. (uuid 2fdbb244-f697-4554-9c92-3600fc8c2c24)
  1696. )
  1697. (wire (pts (xy 125.73 29.21) (xy 125.73 30.48))
  1698. (stroke (width 0) (type default) (color 0 0 0 0))
  1699. (uuid 32327dce-22f5-4393-a2a1-8418336486e2)
  1700. )
  1701. (wire (pts (xy 198.12 86.36) (xy 213.36 86.36))
  1702. (stroke (width 0) (type default) (color 0 0 0 0))
  1703. (uuid 32880cbf-b1f8-48c6-a561-90f78269e955)
  1704. )
  1705. (wire (pts (xy 129.54 115.57) (xy 129.54 121.92))
  1706. (stroke (width 0) (type default) (color 0 0 0 0))
  1707. (uuid 32b5a6f3-2419-4f35-ac2a-552a6dbbf99e)
  1708. )
  1709. (wire (pts (xy 121.92 133.35) (xy 121.92 134.62))
  1710. (stroke (width 0) (type default) (color 0 0 0 0))
  1711. (uuid 33d93b48-92bd-4e48-9049-6782ddfd9568)
  1712. )
  1713. (wire (pts (xy 142.24 121.92) (xy 157.48 121.92))
  1714. (stroke (width 0) (type default) (color 0 0 0 0))
  1715. (uuid 340ff101-fe5d-48c1-8c67-a0fed101d076)
  1716. )
  1717. (wire (pts (xy 66.04 81.28) (xy 66.04 83.82))
  1718. (stroke (width 0) (type default) (color 0 0 0 0))
  1719. (uuid 3956f06b-e365-4c19-83bd-fff843636f4c)
  1720. )
  1721. (wire (pts (xy 45.72 30.48) (xy 45.72 29.21))
  1722. (stroke (width 0) (type default) (color 0 0 0 0))
  1723. (uuid 3a2fbf9e-53ac-446a-b26d-7bc9fd47579d)
  1724. )
  1725. (wire (pts (xy 66.04 78.74) (xy 66.04 81.28))
  1726. (stroke (width 0) (type default) (color 0 0 0 0))
  1727. (uuid 3a3646d4-d404-495c-81bc-6181dd424a93)
  1728. )
  1729. (wire (pts (xy 129.54 43.18) (xy 129.54 58.42))
  1730. (stroke (width 0) (type default) (color 0 0 0 0))
  1731. (uuid 3b066f5f-126b-4778-8407-f174d482603b)
  1732. )
  1733. (wire (pts (xy 74.93 88.9) (xy 74.93 101.6))
  1734. (stroke (width 0) (type default) (color 0 0 0 0))
  1735. (uuid 3b633ab5-f039-4374-9961-0aec6a6b2980)
  1736. )
  1737. (wire (pts (xy 57.15 44.45) (xy 54.61 44.45))
  1738. (stroke (width 0) (type default) (color 0 0 0 0))
  1739. (uuid 3c520dd0-ffe2-4475-8fec-54a786105c53)
  1740. )
  1741. (wire (pts (xy 120.65 91.44) (xy 157.48 91.44))
  1742. (stroke (width 0) (type default) (color 0 0 0 0))
  1743. (uuid 3d55b0c4-481d-4b5d-af41-b7b7c3911e55)
  1744. )
  1745. (wire (pts (xy 154.94 53.34) (xy 157.48 53.34))
  1746. (stroke (width 0) (type default) (color 0 0 0 0))
  1747. (uuid 3d63e58b-6e1a-4644-93a9-5ba4188b9eba)
  1748. )
  1749. (wire (pts (xy 49.53 44.45) (xy 49.53 45.72))
  1750. (stroke (width 0) (type default) (color 0 0 0 0))
  1751. (uuid 3d9694bc-cd68-464e-ac22-7e781fa508e8)
  1752. )
  1753. (wire (pts (xy 66.04 86.36) (xy 95.25 86.36))
  1754. (stroke (width 0) (type default) (color 0 0 0 0))
  1755. (uuid 3ded4d6b-4da2-41e9-9a37-5ba2ae4381ad)
  1756. )
  1757. (wire (pts (xy 50.8 22.86) (xy 57.15 22.86))
  1758. (stroke (width 0) (type default) (color 0 0 0 0))
  1759. (uuid 3e85f5f2-0a60-403f-bdf2-3dc0ee51c599)
  1760. )
  1761. (wire (pts (xy 129.54 63.5) (xy 129.54 66.04))
  1762. (stroke (width 0) (type default) (color 0 0 0 0))
  1763. (uuid 405119f6-64b2-4020-9fac-fde1a7bcaef8)
  1764. )
  1765. (wire (pts (xy 48.26 137.16) (xy 48.26 134.62))
  1766. (stroke (width 0) (type default) (color 0 0 0 0))
  1767. (uuid 4107ac83-14a7-40fa-9e00-e382d03f3156)
  1768. )
  1769. (wire (pts (xy 153.67 50.8) (xy 157.48 50.8))
  1770. (stroke (width 0) (type default) (color 0 0 0 0))
  1771. (uuid 424da688-dbe2-4862-8ee7-92e5276e802c)
  1772. )
  1773. (wire (pts (xy 210.82 53.34) (xy 226.06 53.34))
  1774. (stroke (width 0) (type default) (color 0 0 0 0))
  1775. (uuid 42d4674f-c297-48d8-802f-05adefd9f990)
  1776. )
  1777. (wire (pts (xy 124.46 151.13) (xy 127 151.13))
  1778. (stroke (width 0) (type default) (color 0 0 0 0))
  1779. (uuid 43958010-fa01-4be1-9255-33ce27c61ba2)
  1780. )
  1781. (wire (pts (xy 198.12 50.8) (xy 205.74 50.8))
  1782. (stroke (width 0) (type default) (color 0 0 0 0))
  1783. (uuid 4529b35e-5ed4-4a31-a11d-51399dfe2a60)
  1784. )
  1785. (wire (pts (xy 152.4 161.29) (xy 132.08 161.29))
  1786. (stroke (width 0) (type default) (color 0 0 0 0))
  1787. (uuid 4540dcf7-4cee-49cc-a7b1-0b8a4d2e629f)
  1788. )
  1789. (wire (pts (xy 43.18 173.99) (xy 44.45 173.99))
  1790. (stroke (width 0) (type default) (color 0 0 0 0))
  1791. (uuid 4572adac-282e-49eb-8da5-0c046e71107a)
  1792. )
  1793. (wire (pts (xy 198.12 68.58) (xy 205.74 68.58))
  1794. (stroke (width 0) (type default) (color 0 0 0 0))
  1795. (uuid 47522a23-4252-48e3-8388-155de5ac5af8)
  1796. )
  1797. (wire (pts (xy 88.9 30.48) (xy 93.98 30.48))
  1798. (stroke (width 0) (type default) (color 0 0 0 0))
  1799. (uuid 481f6f71-9618-49a3-8705-379ae5a36368)
  1800. )
  1801. (wire (pts (xy 118.11 163.83) (xy 113.03 163.83))
  1802. (stroke (width 0) (type default) (color 0 0 0 0))
  1803. (uuid 48670141-e748-4135-b00b-b64748e0bd7f)
  1804. )
  1805. (wire (pts (xy 135.89 30.48) (xy 135.89 29.21))
  1806. (stroke (width 0) (type default) (color 0 0 0 0))
  1807. (uuid 48f4e0e1-a70d-4beb-86b2-b8ad6da16858)
  1808. )
  1809. (bus (pts (xy 228.6 73.66) (xy 228.6 76.2))
  1810. (stroke (width 0) (type default) (color 0 0 0 0))
  1811. (uuid 496c2e7e-4f6d-422c-916a-2404fdd8d873)
  1812. )
  1813. (wire (pts (xy 71.12 96.52) (xy 157.48 96.52))
  1814. (stroke (width 0) (type default) (color 0 0 0 0))
  1815. (uuid 49b7a93b-0c45-4f54-82d8-c73fca8e9a2f)
  1816. )
  1817. (wire (pts (xy 63.5 109.22) (xy 68.58 109.22))
  1818. (stroke (width 0) (type default) (color 0 0 0 0))
  1819. (uuid 49fb1b93-ef2c-4c13-8861-864d83ebc2ed)
  1820. )
  1821. (wire (pts (xy 157.48 129.54) (xy 152.4 129.54))
  1822. (stroke (width 0) (type default) (color 0 0 0 0))
  1823. (uuid 4af6888f-1fe0-4d56-b94e-22b4d50bbd89)
  1824. )
  1825. (wire (pts (xy 83.82 21.59) (xy 83.82 22.86))
  1826. (stroke (width 0) (type default) (color 0 0 0 0))
  1827. (uuid 4bce17f0-6326-4645-b7b6-ca724ce9d2cb)
  1828. )
  1829. (wire (pts (xy 83.82 30.48) (xy 88.9 30.48))
  1830. (stroke (width 0) (type default) (color 0 0 0 0))
  1831. (uuid 4d3bb3a0-673f-413b-8812-2f1e44fe7b23)
  1832. )
  1833. (bus (pts (xy 228.6 66.04) (xy 228.6 68.58))
  1834. (stroke (width 0) (type default) (color 0 0 0 0))
  1835. (uuid 4fb7975d-dc94-4146-8f85-99e8a9b45ede)
  1836. )
  1837. (wire (pts (xy 198.12 121.92) (xy 213.995 121.92))
  1838. (stroke (width 0) (type default) (color 0 0 0 0))
  1839. (uuid 501146be-0ed3-4fb0-8a59-687d52f177ee)
  1840. )
  1841. (wire (pts (xy 198.12 81.28) (xy 213.36 81.28))
  1842. (stroke (width 0) (type default) (color 0 0 0 0))
  1843. (uuid 508ffb63-f5c2-45fe-a36e-e437f091afa9)
  1844. )
  1845. (wire (pts (xy 63.5 104.14) (xy 77.47 104.14))
  1846. (stroke (width 0) (type default) (color 0 0 0 0))
  1847. (uuid 50a8583a-4726-410b-8992-b77a315245a3)
  1848. )
  1849. (wire (pts (xy 35.56 22.86) (xy 35.56 24.13))
  1850. (stroke (width 0) (type default) (color 0 0 0 0))
  1851. (uuid 510c6bc5-af5c-4c44-ac29-b04833dd0f95)
  1852. )
  1853. (wire (pts (xy 153.67 49.53) (xy 153.67 50.8))
  1854. (stroke (width 0) (type default) (color 0 0 0 0))
  1855. (uuid 51c901d7-ed0d-4e2d-9a1c-668470867d75)
  1856. )
  1857. (wire (pts (xy 132.08 121.92) (xy 129.54 121.92))
  1858. (stroke (width 0) (type default) (color 0 0 0 0))
  1859. (uuid 52187ba3-9619-4e36-a79a-18eadbcbc0d0)
  1860. )
  1861. (wire (pts (xy 129.54 43.18) (xy 147.32 43.18))
  1862. (stroke (width 0) (type default) (color 0 0 0 0))
  1863. (uuid 52b73b57-6011-442e-8a39-5a26e9438856)
  1864. )
  1865. (wire (pts (xy 125.73 22.86) (xy 130.81 22.86))
  1866. (stroke (width 0) (type default) (color 0 0 0 0))
  1867. (uuid 5500826b-565d-493e-bae6-b2a2ea4c465e)
  1868. )
  1869. (wire (pts (xy 210.82 66.04) (xy 226.06 66.04))
  1870. (stroke (width 0) (type default) (color 0 0 0 0))
  1871. (uuid 556efe03-dead-4cfa-97cb-8f0ef95d00f8)
  1872. )
  1873. (wire (pts (xy 102.87 30.48) (xy 107.95 30.48))
  1874. (stroke (width 0) (type default) (color 0 0 0 0))
  1875. (uuid 55ba0ce1-7803-4ee2-9a69-79af658eceb9)
  1876. )
  1877. (wire (pts (xy 156.21 142.24) (xy 156.21 143.51))
  1878. (stroke (width 0) (type default) (color 0 0 0 0))
  1879. (uuid 55d9e8e1-4029-41fa-bbbc-dbf0a3c69493)
  1880. )
  1881. (wire (pts (xy 57.15 30.48) (xy 57.15 29.21))
  1882. (stroke (width 0) (type default) (color 0 0 0 0))
  1883. (uuid 56a08669-a5d8-4bdd-813c-4a364a976e98)
  1884. )
  1885. (wire (pts (xy 130.81 22.86) (xy 135.89 22.86))
  1886. (stroke (width 0) (type default) (color 0 0 0 0))
  1887. (uuid 5b398c3d-fe37-44ce-a3ad-4339805624cc)
  1888. )
  1889. (wire (pts (xy 142.875 83.82) (xy 147.32 83.82))
  1890. (stroke (width 0) (type default) (color 0 0 0 0))
  1891. (uuid 5bc11437-8c2e-426a-960d-d47a2ae15992)
  1892. )
  1893. (wire (pts (xy 83.82 29.21) (xy 83.82 30.48))
  1894. (stroke (width 0) (type default) (color 0 0 0 0))
  1895. (uuid 5cd4918e-8dcc-4103-93e4-90d9eb4f4812)
  1896. )
  1897. (wire (pts (xy 113.03 88.9) (xy 157.48 88.9))
  1898. (stroke (width 0) (type default) (color 0 0 0 0))
  1899. (uuid 5d061b70-022b-4717-b2da-4346db5706a0)
  1900. )
  1901. (wire (pts (xy 210.82 50.8) (xy 226.06 50.8))
  1902. (stroke (width 0) (type default) (color 0 0 0 0))
  1903. (uuid 5dac6330-ecbb-492a-af35-f883e2eca151)
  1904. )
  1905. (wire (pts (xy 103.505 116.205) (xy 117.475 116.205))
  1906. (stroke (width 0) (type default) (color 0 0 0 0))
  1907. (uuid 5f25fda2-8085-43fc-90aa-141a32df721e)
  1908. )
  1909. (wire (pts (xy 44.45 173.99) (xy 45.72 173.99))
  1910. (stroke (width 0) (type default) (color 0 0 0 0))
  1911. (uuid 5f676cce-6c2b-483f-96a2-a7cd4f6a20b3)
  1912. )
  1913. (wire (pts (xy 153.67 43.18) (xy 153.67 44.45))
  1914. (stroke (width 0) (type default) (color 0 0 0 0))
  1915. (uuid 6078ca9f-9037-45ce-8aaf-2118966b7f72)
  1916. )
  1917. (wire (pts (xy 152.4 83.82) (xy 157.48 83.82))
  1918. (stroke (width 0) (type default) (color 0 0 0 0))
  1919. (uuid 60e818cd-508e-451d-b243-fb53dc09ad31)
  1920. )
  1921. (bus (pts (xy 228.6 78.74) (xy 228.6 81.28))
  1922. (stroke (width 0) (type default) (color 0 0 0 0))
  1923. (uuid 61a44562-c9d3-422d-a7c2-ce164ba0e11b)
  1924. )
  1925. (wire (pts (xy 71.12 111.76) (xy 63.5 111.76))
  1926. (stroke (width 0) (type default) (color 0 0 0 0))
  1927. (uuid 61eb8908-e0a9-4412-8019-9b641be45a3c)
  1928. )
  1929. (wire (pts (xy 77.47 119.38) (xy 77.47 104.14))
  1930. (stroke (width 0) (type default) (color 0 0 0 0))
  1931. (uuid 6221513d-7e3e-420d-89cd-6319c106f0f1)
  1932. )
  1933. (wire (pts (xy 210.82 76.2) (xy 226.06 76.2))
  1934. (stroke (width 0) (type default) (color 0 0 0 0))
  1935. (uuid 627b30b8-4b97-4124-952e-a3cd30f7d99c)
  1936. )
  1937. (wire (pts (xy 118.11 22.86) (xy 118.11 24.13))
  1938. (stroke (width 0) (type default) (color 0 0 0 0))
  1939. (uuid 62971692-d2cf-4650-b7d8-d4c31715dd72)
  1940. )
  1941. (wire (pts (xy 63.5 101.6) (xy 74.93 101.6))
  1942. (stroke (width 0) (type default) (color 0 0 0 0))
  1943. (uuid 62af5bbd-3b56-439c-9fdd-db15772af9b8)
  1944. )
  1945. (wire (pts (xy 135.89 30.48) (xy 140.97 30.48))
  1946. (stroke (width 0) (type default) (color 0 0 0 0))
  1947. (uuid 62c381bf-82d0-4fb8-8fc8-51f82061b732)
  1948. )
  1949. (wire (pts (xy 125.73 22.86) (xy 125.73 24.13))
  1950. (stroke (width 0) (type default) (color 0 0 0 0))
  1951. (uuid 62f069dd-bd2e-4efa-8765-8edb249a588e)
  1952. )
  1953. (wire (pts (xy 118.11 30.48) (xy 118.11 29.21))
  1954. (stroke (width 0) (type default) (color 0 0 0 0))
  1955. (uuid 63f11a24-1236-43bf-abcd-e48140821982)
  1956. )
  1957. (wire (pts (xy 146.05 71.12) (xy 157.48 71.12))
  1958. (stroke (width 0) (type default) (color 0 0 0 0))
  1959. (uuid 66116ae2-0a9e-4780-8e3f-894c71be53f6)
  1960. )
  1961. (wire (pts (xy 198.12 137.16) (xy 200.66 137.16))
  1962. (stroke (width 0) (type default) (color 0 0 0 0))
  1963. (uuid 68178000-422e-438b-95f9-197a4c481e2b)
  1964. )
  1965. (wire (pts (xy 198.12 73.66) (xy 205.74 73.66))
  1966. (stroke (width 0) (type default) (color 0 0 0 0))
  1967. (uuid 68318d78-b09f-443b-8d69-bf0291757d0c)
  1968. )
  1969. (wire (pts (xy 54.61 52.07) (xy 54.61 50.8))
  1970. (stroke (width 0) (type default) (color 0 0 0 0))
  1971. (uuid 69c65ee2-ceeb-4c2e-aa72-02722100bcee)
  1972. )
  1973. (wire (pts (xy 198.12 88.9) (xy 213.36 88.9))
  1974. (stroke (width 0) (type default) (color 0 0 0 0))
  1975. (uuid 6a9c76f3-ef9e-4bef-8b7b-bb3b04aa6057)
  1976. )
  1977. (wire (pts (xy 74.93 88.9) (xy 107.95 88.9))
  1978. (stroke (width 0) (type default) (color 0 0 0 0))
  1979. (uuid 6c7e9be2-64ef-4ed6-bfb3-4c107a788049)
  1980. )
  1981. (wire (pts (xy 95.25 76.2) (xy 157.48 76.2))
  1982. (stroke (width 0) (type default) (color 0 0 0 0))
  1983. (uuid 6d4ff248-d460-468b-858e-feb37f2c9c9e)
  1984. )
  1985. (wire (pts (xy 50.8 30.48) (xy 50.8 29.21))
  1986. (stroke (width 0) (type default) (color 0 0 0 0))
  1987. (uuid 6e130a71-15ed-4ac8-8908-d8b4ad793029)
  1988. )
  1989. (wire (pts (xy 113.03 22.86) (xy 113.03 24.13))
  1990. (stroke (width 0) (type default) (color 0 0 0 0))
  1991. (uuid 6e844671-7ebf-4564-b737-57030750cafd)
  1992. )
  1993. (wire (pts (xy 49.53 41.91) (xy 49.53 44.45))
  1994. (stroke (width 0) (type default) (color 0 0 0 0))
  1995. (uuid 6fafdb34-d92b-4f14-a056-869f111d06da)
  1996. )
  1997. (wire (pts (xy 129.54 129.54) (xy 129.54 130.81))
  1998. (stroke (width 0) (type default) (color 0 0 0 0))
  1999. (uuid 70603670-d235-4f6c-bc12-3da760b1a1d8)
  2000. )
  2001. (wire (pts (xy 45.72 22.86) (xy 45.72 24.13))
  2002. (stroke (width 0) (type default) (color 0 0 0 0))
  2003. (uuid 7366ec70-2b9f-417a-8bdf-50cd19a487c4)
  2004. )
  2005. (wire (pts (xy 83.82 71.12) (xy 90.17 71.12))
  2006. (stroke (width 0) (type default) (color 0 0 0 0))
  2007. (uuid 742a38ae-3d9c-43fb-aa07-44adefb5c02a)
  2008. )
  2009. (wire (pts (xy 57.15 22.86) (xy 57.15 24.13))
  2010. (stroke (width 0) (type default) (color 0 0 0 0))
  2011. (uuid 75673abc-4b18-408d-bee3-fd08aab97925)
  2012. )
  2013. (wire (pts (xy 59.69 44.45) (xy 57.15 44.45))
  2014. (stroke (width 0) (type default) (color 0 0 0 0))
  2015. (uuid 775a697c-817d-47c2-8b5b-937a3954a171)
  2016. )
  2017. (wire (pts (xy 63.5 96.52) (xy 71.12 96.52))
  2018. (stroke (width 0) (type default) (color 0 0 0 0))
  2019. (uuid 7b1293ec-fd36-4d54-942d-b2ceb3880e14)
  2020. )
  2021. (wire (pts (xy 76.2 129.54) (xy 80.01 129.54))
  2022. (stroke (width 0) (type default) (color 0 0 0 0))
  2023. (uuid 7dd62b76-dfa5-4808-b8bc-ba0a8f8e01eb)
  2024. )
  2025. (wire (pts (xy 210.82 63.5) (xy 226.06 63.5))
  2026. (stroke (width 0) (type default) (color 0 0 0 0))
  2027. (uuid 7eb3476a-c436-45f5-885a-9d0959792e1d)
  2028. )
  2029. (wire (pts (xy 54.61 44.45) (xy 54.61 45.72))
  2030. (stroke (width 0) (type default) (color 0 0 0 0))
  2031. (uuid 7f494585-72c9-458b-b67d-02a1401e253b)
  2032. )
  2033. (wire (pts (xy 93.98 30.48) (xy 93.98 29.21))
  2034. (stroke (width 0) (type default) (color 0 0 0 0))
  2035. (uuid 7f672a4e-2feb-40cd-8877-41206b3432ef)
  2036. )
  2037. (wire (pts (xy 83.82 30.48) (xy 83.82 31.75))
  2038. (stroke (width 0) (type default) (color 0 0 0 0))
  2039. (uuid 82c77558-ce82-4376-96e8-4f4c0e8d40d0)
  2040. )
  2041. (wire (pts (xy 210.82 78.74) (xy 226.06 78.74))
  2042. (stroke (width 0) (type default) (color 0 0 0 0))
  2043. (uuid 8304ba98-2922-4917-94c8-3e0576aaeacd)
  2044. )
  2045. (wire (pts (xy 49.53 52.07) (xy 49.53 50.8))
  2046. (stroke (width 0) (type default) (color 0 0 0 0))
  2047. (uuid 85bb5643-5f2e-4da2-a20b-66a556d3824f)
  2048. )
  2049. (bus (pts (xy 228.6 76.2) (xy 228.6 78.74))
  2050. (stroke (width 0) (type default) (color 0 0 0 0))
  2051. (uuid 85f3f8bf-b7db-498f-8f1f-618e6b21bcd2)
  2052. )
  2053. (wire (pts (xy 137.16 50.165) (xy 143.51 50.165))
  2054. (stroke (width 0) (type default) (color 0 0 0 0))
  2055. (uuid 87c97b29-f9df-46c0-bbc0-b42c53bfd2b7)
  2056. )
  2057. (wire (pts (xy 124.46 161.29) (xy 127 161.29))
  2058. (stroke (width 0) (type default) (color 0 0 0 0))
  2059. (uuid 89ebb453-f373-4185-bd4c-ea00c9f8582a)
  2060. )
  2061. (wire (pts (xy 63.5 73.66) (xy 66.04 73.66))
  2062. (stroke (width 0) (type default) (color 0 0 0 0))
  2063. (uuid 8a52eabc-415e-4906-b457-9286637990fc)
  2064. )
  2065. (wire (pts (xy 156.21 137.16) (xy 156.21 134.62))
  2066. (stroke (width 0) (type default) (color 0 0 0 0))
  2067. (uuid 8ab3c44a-d8ac-4750-92eb-cbfcb73f65c4)
  2068. )
  2069. (wire (pts (xy 152.4 119.38) (xy 157.48 119.38))
  2070. (stroke (width 0) (type default) (color 0 0 0 0))
  2071. (uuid 8b413049-65e1-42f9-80e2-5e637281eed4)
  2072. )
  2073. (wire (pts (xy 198.12 35.56) (xy 205.74 35.56))
  2074. (stroke (width 0) (type default) (color 0 0 0 0))
  2075. (uuid 8b4d61ab-d84d-4d5f-97c5-17d649720c43)
  2076. )
  2077. (wire (pts (xy 50.8 30.48) (xy 57.15 30.48))
  2078. (stroke (width 0) (type default) (color 0 0 0 0))
  2079. (uuid 8ba62203-469b-49e3-9d24-bdeab469b658)
  2080. )
  2081. (wire (pts (xy 115.57 139.7) (xy 115.57 148.59))
  2082. (stroke (width 0) (type default) (color 0 0 0 0))
  2083. (uuid 8bbdb902-d72b-4ac3-9c03-a0d6b3b29cba)
  2084. )
  2085. (wire (pts (xy 76.2 132.08) (xy 76.2 129.54))
  2086. (stroke (width 0) (type default) (color 0 0 0 0))
  2087. (uuid 8cd5c61a-9d98-4c30-a0d7-1be599dd2607)
  2088. )
  2089. (wire (pts (xy 210.82 60.96) (xy 226.06 60.96))
  2090. (stroke (width 0) (type default) (color 0 0 0 0))
  2091. (uuid 8d8be836-afba-4749-bb96-bf9de1313bd8)
  2092. )
  2093. (wire (pts (xy 198.12 139.7) (xy 200.66 139.7))
  2094. (stroke (width 0) (type default) (color 0 0 0 0))
  2095. (uuid 8e3fc14e-51a3-4de6-9002-a981209cd472)
  2096. )
  2097. (wire (pts (xy 156.21 106.68) (xy 157.48 106.68))
  2098. (stroke (width 0) (type default) (color 0 0 0 0))
  2099. (uuid 8e72f531-ef89-40ce-8124-56cdb734afe3)
  2100. )
  2101. (wire (pts (xy 135.89 22.86) (xy 135.89 24.13))
  2102. (stroke (width 0) (type default) (color 0 0 0 0))
  2103. (uuid 8ea1c107-677b-442e-992e-1dfd9e947d33)
  2104. )
  2105. (wire (pts (xy 71.12 96.52) (xy 71.12 111.76))
  2106. (stroke (width 0) (type default) (color 0 0 0 0))
  2107. (uuid 8f19934a-bb2c-4cd6-9b7c-3e9f68ca569b)
  2108. )
  2109. (wire (pts (xy 198.12 134.62) (xy 200.66 134.62))
  2110. (stroke (width 0) (type default) (color 0 0 0 0))
  2111. (uuid 904e98d4-d437-4de4-ad9e-4909a1382e7c)
  2112. )
  2113. (wire (pts (xy 44.45 137.16) (xy 44.45 139.7))
  2114. (stroke (width 0) (type default) (color 0 0 0 0))
  2115. (uuid 9115feb3-f3b4-411e-9507-ea985035e4d2)
  2116. )
  2117. (wire (pts (xy 62.23 22.86) (xy 62.23 24.13))
  2118. (stroke (width 0) (type default) (color 0 0 0 0))
  2119. (uuid 93352040-6dd7-4b22-b750-030986a95bda)
  2120. )
  2121. (wire (pts (xy 201.93 45.72) (xy 201.93 40.64))
  2122. (stroke (width 0) (type default) (color 0 0 0 0))
  2123. (uuid 94072f0e-a4d7-48ad-bc03-111c65d0d412)
  2124. )
  2125. (wire (pts (xy 198.12 38.1) (xy 205.74 38.1))
  2126. (stroke (width 0) (type default) (color 0 0 0 0))
  2127. (uuid 9563f12a-65d7-4c66-a4df-f8fdfb1a7147)
  2128. )
  2129. (wire (pts (xy 117.475 116.205) (xy 117.475 101.6))
  2130. (stroke (width 0) (type default) (color 0 0 0 0))
  2131. (uuid 95797304-88fc-44a5-a2c8-54a534c4edc8)
  2132. )
  2133. (wire (pts (xy 40.64 30.48) (xy 45.72 30.48))
  2134. (stroke (width 0) (type default) (color 0 0 0 0))
  2135. (uuid 9588535d-ebff-4e8e-87d7-bcf85f0febdc)
  2136. )
  2137. (wire (pts (xy 129.54 115.57) (xy 152.4 115.57))
  2138. (stroke (width 0) (type default) (color 0 0 0 0))
  2139. (uuid 96025306-03a8-4bcf-9ef8-6cdc38da750f)
  2140. )
  2141. (wire (pts (xy 40.64 22.86) (xy 45.72 22.86))
  2142. (stroke (width 0) (type default) (color 0 0 0 0))
  2143. (uuid 962e47b2-417e-4961-a632-953851b7ae7a)
  2144. )
  2145. (wire (pts (xy 139.7 121.92) (xy 142.24 121.92))
  2146. (stroke (width 0) (type default) (color 0 0 0 0))
  2147. (uuid 977550df-05d4-407e-b220-36c5a6aaa533)
  2148. )
  2149. (bus (pts (xy 228.6 58.42) (xy 228.6 60.96))
  2150. (stroke (width 0) (type default) (color 0 0 0 0))
  2151. (uuid 98de1692-82ef-4787-847a-2f7e50f80cea)
  2152. )
  2153. (wire (pts (xy 83.82 73.66) (xy 83.82 71.12))
  2154. (stroke (width 0) (type default) (color 0 0 0 0))
  2155. (uuid 9914b193-17d0-48ad-b79e-3550ef1dd397)
  2156. )
  2157. (wire (pts (xy 35.56 29.21) (xy 35.56 30.48))
  2158. (stroke (width 0) (type default) (color 0 0 0 0))
  2159. (uuid 9938bbb2-0568-4fd4-bdd3-3624da6e9c00)
  2160. )
  2161. (wire (pts (xy 73.66 73.66) (xy 83.82 73.66))
  2162. (stroke (width 0) (type default) (color 0 0 0 0))
  2163. (uuid 9a3e5e71-90d9-4dd2-8d4f-a61a51ee7847)
  2164. )
  2165. (wire (pts (xy 118.11 153.67) (xy 118.11 163.83))
  2166. (stroke (width 0) (type default) (color 0 0 0 0))
  2167. (uuid 9a779ef2-fd9f-443b-b63c-93b5d8e47b1a)
  2168. )
  2169. (wire (pts (xy 68.58 109.22) (xy 68.58 93.98))
  2170. (stroke (width 0) (type default) (color 0 0 0 0))
  2171. (uuid 9a940373-e783-4827-89d8-8391c90af5c8)
  2172. )
  2173. (wire (pts (xy 113.03 30.48) (xy 118.11 30.48))
  2174. (stroke (width 0) (type default) (color 0 0 0 0))
  2175. (uuid 9cfd1870-5c77-42f9-8549-9ab173dda3c1)
  2176. )
  2177. (wire (pts (xy 147.32 58.42) (xy 157.48 58.42))
  2178. (stroke (width 0) (type default) (color 0 0 0 0))
  2179. (uuid a0ec5b8f-5cbc-45d4-8c64-aa42e86c6eab)
  2180. )
  2181. (wire (pts (xy 45.72 22.86) (xy 50.8 22.86))
  2182. (stroke (width 0) (type default) (color 0 0 0 0))
  2183. (uuid a1ec0980-fc94-4c8f-86d4-12de44bb9b41)
  2184. )
  2185. (wire (pts (xy 152.4 115.57) (xy 152.4 119.38))
  2186. (stroke (width 0) (type default) (color 0 0 0 0))
  2187. (uuid a2700c1e-5d00-4732-859d-3ca8e22a97ab)
  2188. )
  2189. (wire (pts (xy 142.24 129.54) (xy 142.24 130.81))
  2190. (stroke (width 0) (type default) (color 0 0 0 0))
  2191. (uuid a2d0c2c7-7cf4-4aca-8738-04d8a52a8002)
  2192. )
  2193. (wire (pts (xy 74.93 24.13) (xy 74.93 22.86))
  2194. (stroke (width 0) (type default) (color 0 0 0 0))
  2195. (uuid a3363357-ff28-46e8-9071-c310cb2ac7c8)
  2196. )
  2197. (wire (pts (xy 147.32 49.53) (xy 147.32 58.42))
  2198. (stroke (width 0) (type default) (color 0 0 0 0))
  2199. (uuid a60837d0-03ef-4059-b0bd-bc8f443b1d75)
  2200. )
  2201. (wire (pts (xy 198.12 124.46) (xy 213.995 124.46))
  2202. (stroke (width 0) (type default) (color 0 0 0 0))
  2203. (uuid a67e46a3-2ca6-400f-81cb-5eff324611a8)
  2204. )
  2205. (wire (pts (xy 147.32 44.45) (xy 147.32 43.18))
  2206. (stroke (width 0) (type default) (color 0 0 0 0))
  2207. (uuid a746d27f-d861-433d-8df4-2bdba87f7b24)
  2208. )
  2209. (wire (pts (xy 198.12 63.5) (xy 205.74 63.5))
  2210. (stroke (width 0) (type default) (color 0 0 0 0))
  2211. (uuid a77b66d5-06f8-43e5-b7b0-de50a72a7f7f)
  2212. )
  2213. (wire (pts (xy 152.4 129.54) (xy 152.4 161.29))
  2214. (stroke (width 0) (type default) (color 0 0 0 0))
  2215. (uuid a857144c-00a3-45d8-b13a-238bd7c4a942)
  2216. )
  2217. (wire (pts (xy 210.82 58.42) (xy 226.06 58.42))
  2218. (stroke (width 0) (type default) (color 0 0 0 0))
  2219. (uuid a89c6e23-aa9d-40db-bf38-de761234662c)
  2220. )
  2221. (wire (pts (xy 57.15 30.48) (xy 62.23 30.48))
  2222. (stroke (width 0) (type default) (color 0 0 0 0))
  2223. (uuid aa839829-118f-48ab-a835-b544bd5a9a5e)
  2224. )
  2225. (wire (pts (xy 198.12 127) (xy 213.995 127))
  2226. (stroke (width 0) (type default) (color 0 0 0 0))
  2227. (uuid ab2e0ecc-0af3-49c3-8524-8aebb361a5c7)
  2228. )
  2229. (wire (pts (xy 137.16 50.165) (xy 137.16 60.96))
  2230. (stroke (width 0) (type default) (color 0 0 0 0))
  2231. (uuid abe66ced-6890-4e7f-8da4-a1a447168baf)
  2232. )
  2233. (wire (pts (xy 143.51 59.055) (xy 143.51 63.5))
  2234. (stroke (width 0) (type default) (color 0 0 0 0))
  2235. (uuid ac9a4868-0880-4b55-8dff-a5953f7fb20f)
  2236. )
  2237. (wire (pts (xy 74.93 30.48) (xy 83.82 30.48))
  2238. (stroke (width 0) (type default) (color 0 0 0 0))
  2239. (uuid ae273e25-12ff-4007-b42d-10a81a5fa921)
  2240. )
  2241. (wire (pts (xy 113.03 22.86) (xy 118.11 22.86))
  2242. (stroke (width 0) (type default) (color 0 0 0 0))
  2243. (uuid afbfb27b-6212-4645-8d8a-02fafc71cd52)
  2244. )
  2245. (wire (pts (xy 157.48 78.74) (xy 66.04 78.74))
  2246. (stroke (width 0) (type default) (color 0 0 0 0))
  2247. (uuid afc0295c-b427-4b5e-b234-eea2876cba9b)
  2248. )
  2249. (wire (pts (xy 113.03 158.75) (xy 121.92 158.75))
  2250. (stroke (width 0) (type default) (color 0 0 0 0))
  2251. (uuid afc2e7aa-3614-4246-91f9-fc2f877cc432)
  2252. )
  2253. (wire (pts (xy 113.03 151.13) (xy 124.46 151.13))
  2254. (stroke (width 0) (type default) (color 0 0 0 0))
  2255. (uuid b0866c15-20de-419d-8c3c-f4764c96dc4d)
  2256. )
  2257. (wire (pts (xy 121.92 139.7) (xy 121.92 158.75))
  2258. (stroke (width 0) (type default) (color 0 0 0 0))
  2259. (uuid b1285241-489c-454b-a629-4cda49be8d30)
  2260. )
  2261. (wire (pts (xy 66.04 86.36) (xy 63.5 86.36))
  2262. (stroke (width 0) (type default) (color 0 0 0 0))
  2263. (uuid b1d4c709-7d8c-49aa-98e0-609887198b75)
  2264. )
  2265. (wire (pts (xy 209.55 147.32) (xy 209.55 151.13))
  2266. (stroke (width 0) (type default) (color 0 0 0 0))
  2267. (uuid b1e82707-4f94-4e55-85a4-977e36049062)
  2268. )
  2269. (wire (pts (xy 113.03 30.48) (xy 113.03 29.21))
  2270. (stroke (width 0) (type default) (color 0 0 0 0))
  2271. (uuid b4e76719-a564-46ed-8c65-3d8784b1cea9)
  2272. )
  2273. (wire (pts (xy 102.87 22.86) (xy 102.87 24.13))
  2274. (stroke (width 0) (type default) (color 0 0 0 0))
  2275. (uuid b695bd57-3584-448d-8d01-5dbcc7f8d5b6)
  2276. )
  2277. (wire (pts (xy 40.64 134.62) (xy 40.64 137.16))
  2278. (stroke (width 0) (type default) (color 0 0 0 0))
  2279. (uuid b7427625-502d-41a7-b98c-241a82b6aec8)
  2280. )
  2281. (wire (pts (xy 143.51 63.5) (xy 157.48 63.5))
  2282. (stroke (width 0) (type default) (color 0 0 0 0))
  2283. (uuid b7f04330-b667-40f4-842d-0b8b4990a868)
  2284. )
  2285. (wire (pts (xy 63.5 93.98) (xy 68.58 93.98))
  2286. (stroke (width 0) (type default) (color 0 0 0 0))
  2287. (uuid b868d386-d2b0-4cda-a7b4-d89657ed325d)
  2288. )
  2289. (wire (pts (xy 143.51 50.165) (xy 143.51 53.975))
  2290. (stroke (width 0) (type default) (color 0 0 0 0))
  2291. (uuid b9076832-86b0-4a2e-ab26-82ffe440c795)
  2292. )
  2293. (wire (pts (xy 142.24 121.92) (xy 142.24 124.46))
  2294. (stroke (width 0) (type default) (color 0 0 0 0))
  2295. (uuid b9dec395-cba3-4a72-a087-aa4deb88a605)
  2296. )
  2297. (wire (pts (xy 63.5 68.58) (xy 146.05 68.58))
  2298. (stroke (width 0) (type default) (color 0 0 0 0))
  2299. (uuid ba38e8a5-67d5-474d-8ffc-57239ba5ed87)
  2300. )
  2301. (wire (pts (xy 77.47 104.14) (xy 77.47 91.44))
  2302. (stroke (width 0) (type default) (color 0 0 0 0))
  2303. (uuid c157d72a-9058-4d2c-a239-c24f6b0b203a)
  2304. )
  2305. (wire (pts (xy 107.95 22.86) (xy 107.95 24.13))
  2306. (stroke (width 0) (type default) (color 0 0 0 0))
  2307. (uuid c158ad6e-7d3d-41fd-861b-2e3cf75a9e95)
  2308. )
  2309. (wire (pts (xy 63.5 119.38) (xy 77.47 119.38))
  2310. (stroke (width 0) (type default) (color 0 0 0 0))
  2311. (uuid c26340a4-106e-4fa6-975c-4861a8d2e5e9)
  2312. )
  2313. (bus (pts (xy 228.6 55.88) (xy 228.6 58.42))
  2314. (stroke (width 0) (type default) (color 0 0 0 0))
  2315. (uuid c316045b-3543-4823-9729-cb38b7604b2c)
  2316. )
  2317. (wire (pts (xy 129.54 66.04) (xy 157.48 66.04))
  2318. (stroke (width 0) (type default) (color 0 0 0 0))
  2319. (uuid c3293d30-25b7-4557-9535-e15945e53165)
  2320. )
  2321. (wire (pts (xy 44.45 137.16) (xy 48.26 137.16))
  2322. (stroke (width 0) (type default) (color 0 0 0 0))
  2323. (uuid c3c5ced4-84ca-4401-8780-2fd0ad166b28)
  2324. )
  2325. (wire (pts (xy 198.12 43.18) (xy 205.74 43.18))
  2326. (stroke (width 0) (type default) (color 0 0 0 0))
  2327. (uuid c4096030-4fca-483a-b308-b4ecb4630f3e)
  2328. )
  2329. (wire (pts (xy 129.54 121.92) (xy 129.54 124.46))
  2330. (stroke (width 0) (type default) (color 0 0 0 0))
  2331. (uuid c4364fac-91e7-48ea-97b8-d3635acfd165)
  2332. )
  2333. (wire (pts (xy 132.08 151.13) (xy 151.13 151.13))
  2334. (stroke (width 0) (type default) (color 0 0 0 0))
  2335. (uuid c5c04cb9-608a-4c0b-9254-56193a5a0b0b)
  2336. )
  2337. (wire (pts (xy 40.64 137.16) (xy 44.45 137.16))
  2338. (stroke (width 0) (type default) (color 0 0 0 0))
  2339. (uuid cacb9e7b-55b4-4698-b1f7-96932536429f)
  2340. )
  2341. (wire (pts (xy 93.98 22.86) (xy 93.98 24.13))
  2342. (stroke (width 0) (type default) (color 0 0 0 0))
  2343. (uuid cc62cb90-20c4-44f8-9d03-8bd754190e37)
  2344. )
  2345. (wire (pts (xy 113.03 148.59) (xy 115.57 148.59))
  2346. (stroke (width 0) (type default) (color 0 0 0 0))
  2347. (uuid cd4e468d-0343-4302-9280-ab8d8178f80b)
  2348. )
  2349. (wire (pts (xy 63.5 76.2) (xy 76.2 76.2))
  2350. (stroke (width 0) (type default) (color 0 0 0 0))
  2351. (uuid ce6ca7fc-ccfb-4336-87e5-2fd16b3b233d)
  2352. )
  2353. (wire (pts (xy 54.61 52.07) (xy 49.53 52.07))
  2354. (stroke (width 0) (type default) (color 0 0 0 0))
  2355. (uuid d0060011-159c-4ef4-aa78-f4d85abee50f)
  2356. )
  2357. (wire (pts (xy 198.12 142.24) (xy 200.66 142.24))
  2358. (stroke (width 0) (type default) (color 0 0 0 0))
  2359. (uuid d1756c3f-ac31-485f-ac5e-e8239a2ba88a)
  2360. )
  2361. (wire (pts (xy 125.73 30.48) (xy 125.73 31.75))
  2362. (stroke (width 0) (type default) (color 0 0 0 0))
  2363. (uuid d5dc1258-0c24-442e-80de-1c86322da3eb)
  2364. )
  2365. (wire (pts (xy 210.82 68.58) (xy 226.06 68.58))
  2366. (stroke (width 0) (type default) (color 0 0 0 0))
  2367. (uuid d613ce4e-01ff-421c-ac49-24ef1bd66970)
  2368. )
  2369. (wire (pts (xy 113.03 161.29) (xy 124.46 161.29))
  2370. (stroke (width 0) (type default) (color 0 0 0 0))
  2371. (uuid d8b66e3e-3b77-4a08-a24d-4df3a26ce3cb)
  2372. )
  2373. (wire (pts (xy 198.12 76.2) (xy 205.74 76.2))
  2374. (stroke (width 0) (type default) (color 0 0 0 0))
  2375. (uuid d8d326da-f330-4624-aca4-441ba3e6f050)
  2376. )
  2377. (wire (pts (xy 198.12 40.64) (xy 201.93 40.64))
  2378. (stroke (width 0) (type default) (color 0 0 0 0))
  2379. (uuid d8f192b2-02f2-449f-a254-02c1a66ea293)
  2380. )
  2381. (wire (pts (xy 95.885 106.68) (xy 95.885 113.665))
  2382. (stroke (width 0) (type default) (color 0 0 0 0))
  2383. (uuid dab283f2-5fdb-458f-834d-524ac97250fc)
  2384. )
  2385. (wire (pts (xy 198.12 66.04) (xy 205.74 66.04))
  2386. (stroke (width 0) (type default) (color 0 0 0 0))
  2387. (uuid db551ea7-113e-4690-89a3-af01a982aa14)
  2388. )
  2389. (wire (pts (xy 156.21 134.62) (xy 157.48 134.62))
  2390. (stroke (width 0) (type default) (color 0 0 0 0))
  2391. (uuid dc433763-45c1-4e22-ac99-8c3683fe53c6)
  2392. )
  2393. (wire (pts (xy 107.95 22.86) (xy 113.03 22.86))
  2394. (stroke (width 0) (type default) (color 0 0 0 0))
  2395. (uuid dd5eb54f-4327-4abf-916e-6eecb43ea5f8)
  2396. )
  2397. (wire (pts (xy 102.87 22.86) (xy 107.95 22.86))
  2398. (stroke (width 0) (type default) (color 0 0 0 0))
  2399. (uuid dddb1d73-932f-47b1-a661-d891a40b839b)
  2400. )
  2401. (wire (pts (xy 135.89 22.86) (xy 140.97 22.86))
  2402. (stroke (width 0) (type default) (color 0 0 0 0))
  2403. (uuid ddec6951-2f5b-4fd7-b4d2-e3c309778b77)
  2404. )
  2405. (wire (pts (xy 66.04 88.9) (xy 66.04 86.36))
  2406. (stroke (width 0) (type default) (color 0 0 0 0))
  2407. (uuid deb79c54-bdf6-40d0-8e43-a9c1e0e5de20)
  2408. )
  2409. (wire (pts (xy 121.92 158.75) (xy 124.46 158.75))
  2410. (stroke (width 0) (type default) (color 0 0 0 0))
  2411. (uuid e046192d-009e-46b1-a80d-aeb2a3ad8c86)
  2412. )
  2413. (wire (pts (xy 130.81 30.48) (xy 135.89 30.48))
  2414. (stroke (width 0) (type default) (color 0 0 0 0))
  2415. (uuid e0cf575b-8328-4946-ad62-968fa6620158)
  2416. )
  2417. (wire (pts (xy 102.87 29.21) (xy 102.87 30.48))
  2418. (stroke (width 0) (type default) (color 0 0 0 0))
  2419. (uuid e0ff28d8-5eb5-4f7a-aef3-40a792d032ba)
  2420. )
  2421. (wire (pts (xy 210.82 71.12) (xy 226.06 71.12))
  2422. (stroke (width 0) (type default) (color 0 0 0 0))
  2423. (uuid e19bf2a5-5d9e-4889-9b3c-748c6ba69784)
  2424. )
  2425. (wire (pts (xy 198.12 60.96) (xy 205.74 60.96))
  2426. (stroke (width 0) (type default) (color 0 0 0 0))
  2427. (uuid e1c05b52-a640-4d89-87d3-74f77f859be5)
  2428. )
  2429. (wire (pts (xy 198.12 53.34) (xy 205.74 53.34))
  2430. (stroke (width 0) (type default) (color 0 0 0 0))
  2431. (uuid e38a819b-8ea9-48e9-87fd-9798d19c5880)
  2432. )
  2433. (wire (pts (xy 210.82 55.88) (xy 226.06 55.88))
  2434. (stroke (width 0) (type default) (color 0 0 0 0))
  2435. (uuid e5bc9385-f717-44cf-9070-7248f3cfb68f)
  2436. )
  2437. (wire (pts (xy 74.93 29.21) (xy 74.93 30.48))
  2438. (stroke (width 0) (type default) (color 0 0 0 0))
  2439. (uuid e616559a-ba0f-4c9e-96b6-8714e91254a3)
  2440. )
  2441. (wire (pts (xy 124.46 158.75) (xy 124.46 161.29))
  2442. (stroke (width 0) (type default) (color 0 0 0 0))
  2443. (uuid e79dfd65-6880-4ec9-80da-624cd42060b4)
  2444. )
  2445. (wire (pts (xy 68.58 93.98) (xy 157.48 93.98))
  2446. (stroke (width 0) (type default) (color 0 0 0 0))
  2447. (uuid e8ba3327-2a5b-4e96-b503-6f9e6ba83460)
  2448. )
  2449. (wire (pts (xy 83.82 22.86) (xy 88.9 22.86))
  2450. (stroke (width 0) (type default) (color 0 0 0 0))
  2451. (uuid e956fe8d-c956-4c4d-9e99-90bd0af3ee2f)
  2452. )
  2453. (wire (pts (xy 198.12 147.32) (xy 209.55 147.32))
  2454. (stroke (width 0) (type default) (color 0 0 0 0))
  2455. (uuid e9eeb478-2025-4b4f-aa5a-24151667484a)
  2456. )
  2457. (wire (pts (xy 77.47 91.44) (xy 115.57 91.44))
  2458. (stroke (width 0) (type default) (color 0 0 0 0))
  2459. (uuid eaa5214a-6741-4efa-b6d3-b99076a93a39)
  2460. )
  2461. (wire (pts (xy 198.12 45.72) (xy 201.93 45.72))
  2462. (stroke (width 0) (type default) (color 0 0 0 0))
  2463. (uuid eb2fbe0d-f885-44a2-a07a-462071cf61ae)
  2464. )
  2465. (wire (pts (xy 115.57 133.35) (xy 115.57 134.62))
  2466. (stroke (width 0) (type default) (color 0 0 0 0))
  2467. (uuid edce2c4b-2a14-45e4-8f1c-92ce87289b98)
  2468. )
  2469. (wire (pts (xy 147.32 43.18) (xy 153.67 43.18))
  2470. (stroke (width 0) (type default) (color 0 0 0 0))
  2471. (uuid ee6900b9-db4f-4e30-ad30-2ff3144a1d3b)
  2472. )
  2473. (wire (pts (xy 45.72 30.48) (xy 50.8 30.48))
  2474. (stroke (width 0) (type default) (color 0 0 0 0))
  2475. (uuid f1097f37-183a-4b6d-ba99-b0ec097da2c6)
  2476. )
  2477. (wire (pts (xy 66.04 83.82) (xy 63.5 83.82))
  2478. (stroke (width 0) (type default) (color 0 0 0 0))
  2479. (uuid f1156e09-4c38-4f6b-aaaa-48f6acf87190)
  2480. )
  2481. (wire (pts (xy 90.17 71.12) (xy 90.17 72.39))
  2482. (stroke (width 0) (type default) (color 0 0 0 0))
  2483. (uuid f2f8c430-2f27-4a12-bce3-60de52fc9d68)
  2484. )
  2485. (wire (pts (xy 125.73 30.48) (xy 130.81 30.48))
  2486. (stroke (width 0) (type default) (color 0 0 0 0))
  2487. (uuid f2fdd747-ef03-4620-af41-3467857e0623)
  2488. )
  2489. (wire (pts (xy 83.82 73.66) (xy 83.82 76.2))
  2490. (stroke (width 0) (type default) (color 0 0 0 0))
  2491. (uuid f3119cd7-c265-407b-8ffb-cb6e3e912d44)
  2492. )
  2493. (wire (pts (xy 102.87 30.48) (xy 102.87 31.75))
  2494. (stroke (width 0) (type default) (color 0 0 0 0))
  2495. (uuid f3bacdda-1216-41ca-8a53-ffe9676555de)
  2496. )
  2497. (wire (pts (xy 130.81 30.48) (xy 130.81 29.21))
  2498. (stroke (width 0) (type default) (color 0 0 0 0))
  2499. (uuid f4300f09-b462-4bc8-9cb1-4698ff4f56b1)
  2500. )
  2501. (wire (pts (xy 198.12 58.42) (xy 205.74 58.42))
  2502. (stroke (width 0) (type default) (color 0 0 0 0))
  2503. (uuid f49b7265-c74c-45fa-bfbf-f6483a1e135f)
  2504. )
  2505. (wire (pts (xy 118.11 163.83) (xy 118.11 167.64))
  2506. (stroke (width 0) (type default) (color 0 0 0 0))
  2507. (uuid f542f378-238e-4b5c-9f35-4a6301820bb0)
  2508. )
  2509. (wire (pts (xy 130.81 22.86) (xy 130.81 24.13))
  2510. (stroke (width 0) (type default) (color 0 0 0 0))
  2511. (uuid f5d897f9-cc8d-4286-91f0-b3452a9aeb60)
  2512. )
  2513. (wire (pts (xy 146.05 68.58) (xy 146.05 71.12))
  2514. (stroke (width 0) (type default) (color 0 0 0 0))
  2515. (uuid fa38e983-8c8e-4e1f-8c13-c9e596fa8d02)
  2516. )
  2517. (wire (pts (xy 157.48 127) (xy 151.13 127))
  2518. (stroke (width 0) (type default) (color 0 0 0 0))
  2519. (uuid fa451b29-3ff9-412a-9c88-d94bcf41c82c)
  2520. )
  2521. (wire (pts (xy 35.56 30.48) (xy 35.56 31.75))
  2522. (stroke (width 0) (type default) (color 0 0 0 0))
  2523. (uuid fb35a62a-c5f0-4bac-a74e-e95d9cec34f4)
  2524. )
  2525. (wire (pts (xy 201.93 30.48) (xy 201.93 40.64))
  2526. (stroke (width 0) (type default) (color 0 0 0 0))
  2527. (uuid fdd05adf-99a4-4da3-93c3-df890415b4bd)
  2528. )
  2529. (wire (pts (xy 117.475 101.6) (xy 157.48 101.6))
  2530. (stroke (width 0) (type default) (color 0 0 0 0))
  2531. (uuid ff178b6c-54ec-4d6c-99bc-eed6a18ea1d0)
  2532. )
  2533. (wire (pts (xy 54.61 44.45) (xy 49.53 44.45))
  2534. (stroke (width 0) (type default) (color 0 0 0 0))
  2535. (uuid ff2148d6-e6d8-4c6e-9285-dce52814fa3f)
  2536. )
  2537. (wire (pts (xy 63.5 88.9) (xy 66.04 88.9))
  2538. (stroke (width 0) (type default) (color 0 0 0 0))
  2539. (uuid ffd14834-2b79-4793-b6a7-cf98fa5ae3fc)
  2540. )
  2541. (label "VBUS" (at 67.945 68.58 0)
  2542. (effects (font (size 1.27 1.27)) (justify left bottom))
  2543. (uuid 011d2ada-0ea4-4ef5-8c09-30cb6c3a74ec)
  2544. )
  2545. (label "VD10" (at 154.94 114.3 180)
  2546. (effects (font (size 1.27 1.27)) (justify right bottom))
  2547. (uuid 0727109e-b7da-4fb1-832d-0c7f9b236afc)
  2548. )
  2549. (label "AVDD" (at 205.74 43.18 0)
  2550. (effects (font (size 1.27 1.27)) (justify left bottom))
  2551. (uuid 124d63c5-1857-4753-b1dc-256e96133095)
  2552. )
  2553. (label "PA8" (at 222.25 58.42 0)
  2554. (effects (font (size 1.27 1.27)) (justify left bottom))
  2555. (uuid 138ef9a8-abd7-4798-88a1-96a60090bd92)
  2556. )
  2557. (label "FT_RST" (at 154.94 53.34 180)
  2558. (effects (font (size 1.27 1.27)) (justify right bottom))
  2559. (uuid 13b1330c-cd36-4f55-981e-106a765c400c)
  2560. )
  2561. (label "RX+" (at 80.645 96.52 0)
  2562. (effects (font (size 1.27 1.27)) (justify left bottom))
  2563. (uuid 349d6294-8496-4058-b6b8-9559bd09f467)
  2564. )
  2565. (label "PA5" (at 222.25 66.04 0)
  2566. (effects (font (size 1.27 1.27)) (justify left bottom))
  2567. (uuid 38ce2684-2aef-4ae9-b05c-812c00eb5006)
  2568. )
  2569. (label "PA3" (at 222.25 71.12 0)
  2570. (effects (font (size 1.27 1.27)) (justify left bottom))
  2571. (uuid 460b3916-5384-4611-9096-55b7f9d79d66)
  2572. )
  2573. (label "VCCIO" (at 125.73 21.59 180)
  2574. (effects (font (size 1.27 1.27)) (justify right bottom))
  2575. (uuid 47a1e641-3c4e-4c24-a484-9c16b1fe3c45)
  2576. )
  2577. (label "AVDD" (at 49.53 41.91 0)
  2578. (effects (font (size 1.27 1.27)) (justify left bottom))
  2579. (uuid 4a82af66-6637-497d-bc17-c51023b3359b)
  2580. )
  2581. (label "PA9" (at 222.25 55.88 0)
  2582. (effects (font (size 1.27 1.27)) (justify left bottom))
  2583. (uuid 4fbe099b-085c-4b96-a7d3-6b5241f10bed)
  2584. )
  2585. (label "PA0" (at 222.25 78.74 0)
  2586. (effects (font (size 1.27 1.27)) (justify left bottom))
  2587. (uuid 6565b433-daa0-49b9-accf-4543f59605ec)
  2588. )
  2589. (label "VD10" (at 83.82 21.59 180)
  2590. (effects (font (size 1.27 1.27)) (justify right bottom))
  2591. (uuid 66318a7c-7580-4702-a628-b33a6b6d3e56)
  2592. )
  2593. (label "RX-" (at 80.645 93.98 0)
  2594. (effects (font (size 1.27 1.27)) (justify left bottom))
  2595. (uuid 6a31d2af-8e08-4df5-bc3b-a62374af7a82)
  2596. )
  2597. (label "TX+" (at 80.645 91.44 0)
  2598. (effects (font (size 1.27 1.27)) (justify left bottom))
  2599. (uuid 6f057245-5209-4fda-9ce2-c99dd902acc6)
  2600. )
  2601. (label "PA1" (at 222.25 76.2 0)
  2602. (effects (font (size 1.27 1.27)) (justify left bottom))
  2603. (uuid 734234f2-d4a8-4f52-ab0d-0ac9a69707a6)
  2604. )
  2605. (label "VD10" (at 205.74 35.56 0)
  2606. (effects (font (size 1.27 1.27)) (justify left bottom))
  2607. (uuid 75ab5d50-910e-423f-8db3-927e5b5da825)
  2608. )
  2609. (label "PA4" (at 222.25 68.58 0)
  2610. (effects (font (size 1.27 1.27)) (justify left bottom))
  2611. (uuid 7b878b89-1b3b-4800-82ef-cc1d09af1647)
  2612. )
  2613. (label "VD10" (at 102.87 21.59 180)
  2614. (effects (font (size 1.27 1.27)) (justify right bottom))
  2615. (uuid 818b1737-286b-4970-8cc0-45ba90938153)
  2616. )
  2617. (label "VCCIO" (at 205.74 38.1 0)
  2618. (effects (font (size 1.27 1.27)) (justify left bottom))
  2619. (uuid 8af82b9a-9297-4c17-87ae-e182d16d0e46)
  2620. )
  2621. (label "PA11" (at 222.25 50.8 0)
  2622. (effects (font (size 1.27 1.27)) (justify left bottom))
  2623. (uuid 96d2389a-c558-44f5-91c0-6424be3c69ad)
  2624. )
  2625. (label "PA2" (at 222.25 73.66 0)
  2626. (effects (font (size 1.27 1.27)) (justify left bottom))
  2627. (uuid 99a67508-0a4e-4c7c-9582-7bc2d9154677)
  2628. )
  2629. (label "D-" (at 66.04 83.82 0)
  2630. (effects (font (size 1.27 1.27)) (justify left bottom))
  2631. (uuid b5320594-a4d1-4dc4-a12b-4f0b8cc42e73)
  2632. )
  2633. (label "TX-" (at 80.645 88.9 0)
  2634. (effects (font (size 1.27 1.27)) (justify left bottom))
  2635. (uuid bc554260-5017-4c7e-8a3f-557828a62638)
  2636. )
  2637. (label "PA[0..11]" (at 228.6 50.8 0)
  2638. (effects (font (size 1.27 1.27)) (justify left bottom))
  2639. (uuid e3840199-af1c-427e-b632-48b847fca01d)
  2640. )
  2641. (label "PA10" (at 222.25 53.34 0)
  2642. (effects (font (size 1.27 1.27)) (justify left bottom))
  2643. (uuid e6b5a726-dc38-4991-a95b-3639628e685c)
  2644. )
  2645. (label "PA6" (at 222.25 63.5 0)
  2646. (effects (font (size 1.27 1.27)) (justify left bottom))
  2647. (uuid e8f5c30d-708b-4dc2-96c7-e42f5bf8b7df)
  2648. )
  2649. (label "D+" (at 66.04 88.9 0)
  2650. (effects (font (size 1.27 1.27)) (justify left bottom))
  2651. (uuid ed8936e6-0b8d-461f-92cc-58749976607b)
  2652. )
  2653. (label "VD10" (at 69.85 44.45 0)
  2654. (effects (font (size 1.27 1.27)) (justify left bottom))
  2655. (uuid f3db14b0-9f12-4932-89da-6bb4405a1ff1)
  2656. )
  2657. (label "FT_RST" (at 43.18 173.99 180)
  2658. (effects (font (size 1.27 1.27)) (justify right bottom))
  2659. (uuid fc57b223-9f09-4ec1-a842-5d71ae6d2eaa)
  2660. )
  2661. (label "PA7" (at 222.25 60.96 0)
  2662. (effects (font (size 1.27 1.27)) (justify left bottom))
  2663. (uuid fd981e26-49bd-409f-a4af-3bc4d213493d)
  2664. )
  2665. (hierarchical_label "BE_3" (shape input) (at 200.66 142.24 0)
  2666. (effects (font (size 1.27 1.27)) (justify left))
  2667. (uuid 01a35b15-8dc9-4ad9-ba6d-4cc2649c56fc)
  2668. )
  2669. (hierarchical_label "PA[0..11]" (shape input) (at 228.6 53.34 0)
  2670. (effects (font (size 1.27 1.27)) (justify left))
  2671. (uuid 0b9bf8d5-206d-4097-9a62-37f5599f4c14)
  2672. )
  2673. (hierarchical_label "DIR" (shape input) (at 213.36 86.36 0)
  2674. (effects (font (size 1.27 1.27)) (justify left))
  2675. (uuid 11e1d1eb-4808-4e65-afbd-011ff19caa5d)
  2676. )
  2677. (hierarchical_label "BE_1" (shape input) (at 200.66 137.16 0)
  2678. (effects (font (size 1.27 1.27)) (justify left))
  2679. (uuid 2fcb6dd5-cf36-41ef-9bbb-a2bc45cf9908)
  2680. )
  2681. (hierarchical_label "STEP" (shape input) (at 213.36 83.82 0)
  2682. (effects (font (size 1.27 1.27)) (justify left))
  2683. (uuid 332ab297-260d-4358-82d4-428623af320a)
  2684. )
  2685. (hierarchical_label "RXE_N" (shape input) (at 156.21 109.22 180)
  2686. (effects (font (size 1.27 1.27)) (justify right))
  2687. (uuid 3749461e-fabb-4099-a086-a52dca033778)
  2688. )
  2689. (hierarchical_label "CLK" (shape input) (at 86.995 116.205 180)
  2690. (effects (font (size 1.27 1.27)) (justify right))
  2691. (uuid 6028c6e5-8f7a-49a5-96d6-756cda349648)
  2692. )
  2693. (hierarchical_label "BE_0" (shape input) (at 200.66 134.62 0)
  2694. (effects (font (size 1.27 1.27)) (justify left))
  2695. (uuid 612d0ba7-90ac-413d-8fc8-140c946d5997)
  2696. )
  2697. (hierarchical_label "SIDE_SEL" (shape input) (at 213.995 127 0)
  2698. (effects (font (size 1.27 1.27)) (justify left))
  2699. (uuid 6c1889de-16e0-4d38-a59c-3ba110d3dd5a)
  2700. )
  2701. (hierarchical_label "BE_2" (shape input) (at 200.66 139.7 0)
  2702. (effects (font (size 1.27 1.27)) (justify left))
  2703. (uuid 71399b76-3be3-4ec1-aadf-3fec33eebca1)
  2704. )
  2705. (hierarchical_label "R_DATA" (shape input) (at 213.36 81.28 0)
  2706. (effects (font (size 1.27 1.27)) (justify left))
  2707. (uuid 77c6a7f4-9cb2-4e3f-b962-b7a42d05b234)
  2708. )
  2709. (hierarchical_label "TRK_00" (shape input) (at 213.36 88.9 0)
  2710. (effects (font (size 1.27 1.27)) (justify left))
  2711. (uuid 7844395a-c792-4201-be47-7655154fe118)
  2712. )
  2713. (hierarchical_label "TXE_N" (shape input) (at 156.21 106.68 180)
  2714. (effects (font (size 1.27 1.27)) (justify right))
  2715. (uuid 82766b2b-3173-4968-9191-d117cb05b77e)
  2716. )
  2717. (hierarchical_label "READY" (shape input) (at 213.995 124.46 0)
  2718. (effects (font (size 1.27 1.27)) (justify left))
  2719. (uuid 932c2688-447a-4dd1-8cc0-93b0bf612b22)
  2720. )
  2721. (hierarchical_label "INDEX" (shape input) (at 213.995 121.92 0)
  2722. (effects (font (size 1.27 1.27)) (justify left))
  2723. (uuid ca93c623-6063-4912-bf06-61747b479031)
  2724. )
  2725. (symbol (lib_id "power:GND") (at 142.875 83.82 0) (unit 1)
  2726. (in_bom yes) (on_board yes)
  2727. (uuid 0b681b1f-253f-4c60-af8d-74274e9173d5)
  2728. (property "Reference" "#PWR0257" (id 0) (at 142.875 90.17 0)
  2729. (effects (font (size 1.27 1.27)) hide)
  2730. )
  2731. (property "Value" "GND" (id 1) (at 138.43 85.725 0))
  2732. (property "Footprint" "" (id 2) (at 142.875 83.82 0)
  2733. (effects (font (size 1.27 1.27)) hide)
  2734. )
  2735. (property "Datasheet" "" (id 3) (at 142.875 83.82 0)
  2736. (effects (font (size 1.27 1.27)) hide)
  2737. )
  2738. (pin "1" (uuid 8389fceb-3277-4c7e-83dd-834b5882d49a))
  2739. )
  2740. (symbol (lib_id "Device:C_Small") (at 49.53 48.26 0) (mirror y) (unit 1)
  2741. (in_bom yes) (on_board yes)
  2742. (uuid 0c2f62ea-dbda-4ec0-b7e6-ec80c3dba194)
  2743. (property "Reference" "C95" (id 0) (at 47.1932 47.0916 0)
  2744. (effects (font (size 1.27 1.27)) (justify left))
  2745. )
  2746. (property "Value" "1uF" (id 1) (at 47.1932 49.403 0)
  2747. (effects (font (size 1.27 1.27)) (justify left))
  2748. )
  2749. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 49.53 48.26 0)
  2750. (effects (font (size 1.27 1.27)) hide)
  2751. )
  2752. (property "Datasheet" "~" (id 3) (at 49.53 48.26 0)
  2753. (effects (font (size 1.27 1.27)) hide)
  2754. )
  2755. (property "LCSC" "C15849" (id 4) (at 49.53 48.26 0)
  2756. (effects (font (size 1.27 1.27)) hide)
  2757. )
  2758. (pin "1" (uuid 36752716-519f-4f4a-aa80-1684fa45207a))
  2759. (pin "2" (uuid a007f73c-c54b-4373-87bd-025a8739d9e6))
  2760. )
  2761. (symbol (lib_id "Device:R_Small") (at 129.54 151.13 90) (unit 1)
  2762. (in_bom yes) (on_board yes) (fields_autoplaced)
  2763. (uuid 0c63677b-8ab6-4db8-89dd-30bf81a99fed)
  2764. (property "Reference" "R73" (id 0) (at 129.54 144.78 90))
  2765. (property "Value" "100" (id 1) (at 129.54 147.32 90))
  2766. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 129.54 151.13 0)
  2767. (effects (font (size 1.27 1.27)) hide)
  2768. )
  2769. (property "Datasheet" "~" (id 3) (at 129.54 151.13 0)
  2770. (effects (font (size 1.27 1.27)) hide)
  2771. )
  2772. (property "LCSC" "C25076" (id 4) (at 129.54 151.13 0)
  2773. (effects (font (size 1.27 1.27)) hide)
  2774. )
  2775. (pin "1" (uuid 1aed8ac1-c2ba-4c3b-ad68-050e3304d69f))
  2776. (pin "2" (uuid 1ebcc1ac-4244-4cbc-83fa-e2ca02fe406f))
  2777. )
  2778. (symbol (lib_id "Device:C_Small") (at 118.11 26.67 180) (unit 1)
  2779. (in_bom yes) (on_board yes)
  2780. (uuid 0d7357e4-355a-4aa4-841a-03851fab5f63)
  2781. (property "Reference" "C89" (id 0) (at 118.11 24.13 0)
  2782. (effects (font (size 1.27 1.27)) (justify left))
  2783. )
  2784. (property "Value" "6800pF" (id 1) (at 118.11 31.75 90)
  2785. (effects (font (size 1.27 1.27)) (justify left))
  2786. )
  2787. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 118.11 26.67 0)
  2788. (effects (font (size 1.27 1.27)) hide)
  2789. )
  2790. (property "Datasheet" "~" (id 3) (at 118.11 26.67 0)
  2791. (effects (font (size 1.27 1.27)) hide)
  2792. )
  2793. (property "LCSC" "C1542" (id 4) (at 118.11 26.67 0)
  2794. (effects (font (size 1.27 1.27)) hide)
  2795. )
  2796. (pin "1" (uuid 95423297-13b3-43c7-9289-94cd4bbb07c5))
  2797. (pin "2" (uuid 79906008-0eb1-4e73-8cc8-7ce49c1dd25c))
  2798. )
  2799. (symbol (lib_id "power:GND") (at 83.82 31.75 0) (unit 1)
  2800. (in_bom yes) (on_board yes) (fields_autoplaced)
  2801. (uuid 0e3bde92-83bc-461a-ad8a-2334e46d5a4a)
  2802. (property "Reference" "#PWR0232" (id 0) (at 83.82 38.1 0)
  2803. (effects (font (size 1.27 1.27)) hide)
  2804. )
  2805. (property "Value" "GND" (id 1) (at 83.82 36.83 0))
  2806. (property "Footprint" "" (id 2) (at 83.82 31.75 0)
  2807. (effects (font (size 1.27 1.27)) hide)
  2808. )
  2809. (property "Datasheet" "" (id 3) (at 83.82 31.75 0)
  2810. (effects (font (size 1.27 1.27)) hide)
  2811. )
  2812. (pin "1" (uuid db188826-88f7-45fe-aa5b-2913a88192f5))
  2813. )
  2814. (symbol (lib_id "Device:C_Small") (at 45.72 26.67 180) (unit 1)
  2815. (in_bom yes) (on_board yes)
  2816. (uuid 0fd699b6-51d7-4501-a3dd-19916dac77b3)
  2817. (property "Reference" "C79" (id 0) (at 45.72 24.13 0)
  2818. (effects (font (size 1.27 1.27)) (justify left))
  2819. )
  2820. (property "Value" "100nF" (id 1) (at 45.72 31.75 90)
  2821. (effects (font (size 1.27 1.27)) (justify left))
  2822. )
  2823. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 45.72 26.67 0)
  2824. (effects (font (size 1.27 1.27)) hide)
  2825. )
  2826. (property "Datasheet" "~" (id 3) (at 45.72 26.67 0)
  2827. (effects (font (size 1.27 1.27)) hide)
  2828. )
  2829. (property "LCSC" "C1525" (id 4) (at 45.72 26.67 0)
  2830. (effects (font (size 1.27 1.27)) hide)
  2831. )
  2832. (pin "1" (uuid 32ba05a2-9b2e-46d2-b181-d528e120781f))
  2833. (pin "2" (uuid 7a6e8e5b-293c-4e46-b0c4-7c29f0d5a967))
  2834. )
  2835. (symbol (lib_id "Device:R_Small") (at 208.28 55.88 270) (unit 1)
  2836. (in_bom yes) (on_board yes)
  2837. (uuid 1130f7d7-ff37-44ed-8434-d5eeae594084)
  2838. (property "Reference" "R86" (id 0) (at 205.74 54.61 90)
  2839. (effects (font (size 1.27 1.27)) (justify right))
  2840. )
  2841. (property "Value" "33" (id 1) (at 213.36 54.61 90)
  2842. (effects (font (size 1.27 1.27)) (justify right))
  2843. )
  2844. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 55.88 0)
  2845. (effects (font (size 1.27 1.27)) hide)
  2846. )
  2847. (property "Datasheet" "~" (id 3) (at 208.28 55.88 0)
  2848. (effects (font (size 1.27 1.27)) hide)
  2849. )
  2850. (property "LCSC" "C25105" (id 4) (at 208.28 55.88 0)
  2851. (effects (font (size 1.27 1.27)) hide)
  2852. )
  2853. (pin "1" (uuid e1b78bac-707e-4af7-be4c-f7df36bf3b55))
  2854. (pin "2" (uuid d13854f9-c7ff-41f3-8984-34b0b2b73d2a))
  2855. )
  2856. (symbol (lib_id "Device:R_Small") (at 208.28 53.34 270) (unit 1)
  2857. (in_bom yes) (on_board yes)
  2858. (uuid 17aaf0b1-1af0-4b06-822a-679dc5b3f7a6)
  2859. (property "Reference" "R85" (id 0) (at 205.74 52.07 90)
  2860. (effects (font (size 1.27 1.27)) (justify right))
  2861. )
  2862. (property "Value" "33" (id 1) (at 213.36 52.07 90)
  2863. (effects (font (size 1.27 1.27)) (justify right))
  2864. )
  2865. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 53.34 0)
  2866. (effects (font (size 1.27 1.27)) hide)
  2867. )
  2868. (property "Datasheet" "~" (id 3) (at 208.28 53.34 0)
  2869. (effects (font (size 1.27 1.27)) hide)
  2870. )
  2871. (property "LCSC" "C25105" (id 4) (at 208.28 53.34 0)
  2872. (effects (font (size 1.27 1.27)) hide)
  2873. )
  2874. (pin "1" (uuid c12933e5-955a-4998-8d84-19bed2f380ad))
  2875. (pin "2" (uuid ffbc3b5b-f1a1-4fdd-b55d-5e1d0bd89621))
  2876. )
  2877. (symbol (lib_id "Connector:Conn_01x03_Male") (at 107.95 151.13 0) (unit 1)
  2878. (in_bom yes) (on_board yes)
  2879. (uuid 18f3be4d-442e-4446-b8d8-42499a6418cc)
  2880. (property "Reference" "J15" (id 0) (at 106.68 147.32 0))
  2881. (property "Value" "GPIO0" (id 1) (at 104.14 151.13 0))
  2882. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (id 2) (at 107.95 151.13 0)
  2883. (effects (font (size 1.27 1.27)) hide)
  2884. )
  2885. (property "Datasheet" "~" (id 3) (at 107.95 151.13 0)
  2886. (effects (font (size 1.27 1.27)) hide)
  2887. )
  2888. (pin "1" (uuid 54f0c858-9b87-4165-99ff-5eb42fa6ac1e))
  2889. (pin "2" (uuid 091dbfd0-00df-4dae-987f-e943d8176c92))
  2890. (pin "3" (uuid 9eb68c18-d7db-45ac-b651-45da63b8ef25))
  2891. )
  2892. (symbol (lib_id "power:PWR_FLAG") (at 57.15 44.45 0) (unit 1)
  2893. (in_bom yes) (on_board yes) (fields_autoplaced)
  2894. (uuid 1a2f49e0-d170-44d3-8b11-709402d66ce5)
  2895. (property "Reference" "#FLG0103" (id 0) (at 57.15 42.545 0)
  2896. (effects (font (size 1.27 1.27)) hide)
  2897. )
  2898. (property "Value" "PWR_FLAG" (id 1) (at 57.15 39.37 0))
  2899. (property "Footprint" "" (id 2) (at 57.15 44.45 0)
  2900. (effects (font (size 1.27 1.27)) hide)
  2901. )
  2902. (property "Datasheet" "~" (id 3) (at 57.15 44.45 0)
  2903. (effects (font (size 1.27 1.27)) hide)
  2904. )
  2905. (pin "1" (uuid 5bf251c1-bdcf-4d85-a254-e50e4f7c8ef8))
  2906. )
  2907. (symbol (lib_id "Device:C_Small") (at 83.82 26.67 180) (unit 1)
  2908. (in_bom yes) (on_board yes)
  2909. (uuid 1e3c736e-05e0-4820-bd06-ab8e8ff874df)
  2910. (property "Reference" "C83" (id 0) (at 83.82 24.13 0)
  2911. (effects (font (size 1.27 1.27)) (justify left))
  2912. )
  2913. (property "Value" "1uF" (id 1) (at 82.55 29.21 0)
  2914. (effects (font (size 1.27 1.27)) (justify left))
  2915. )
  2916. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 83.82 26.67 0)
  2917. (effects (font (size 1.27 1.27)) hide)
  2918. )
  2919. (property "Datasheet" "~" (id 3) (at 83.82 26.67 0)
  2920. (effects (font (size 1.27 1.27)) hide)
  2921. )
  2922. (property "LCSC" "C15849" (id 4) (at 83.82 26.67 0)
  2923. (effects (font (size 1.27 1.27)) hide)
  2924. )
  2925. (pin "1" (uuid 6c896d2f-0ef4-47e0-9da5-ab801998df4e))
  2926. (pin "2" (uuid a241f86d-ca72-4b6b-8d82-e4951c1d1386))
  2927. )
  2928. (symbol (lib_id "Device:C_Small") (at 125.73 26.67 180) (unit 1)
  2929. (in_bom yes) (on_board yes)
  2930. (uuid 24823d32-efb6-46a1-98da-c30d8db5d1a4)
  2931. (property "Reference" "C90" (id 0) (at 125.73 24.13 0)
  2932. (effects (font (size 1.27 1.27)) (justify left))
  2933. )
  2934. (property "Value" "1uF" (id 1) (at 125.73 29.21 0)
  2935. (effects (font (size 1.27 1.27)) (justify left))
  2936. )
  2937. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 125.73 26.67 0)
  2938. (effects (font (size 1.27 1.27)) hide)
  2939. )
  2940. (property "Datasheet" "~" (id 3) (at 125.73 26.67 0)
  2941. (effects (font (size 1.27 1.27)) hide)
  2942. )
  2943. (property "LCSC" "C15849" (id 4) (at 125.73 26.67 0)
  2944. (effects (font (size 1.27 1.27)) hide)
  2945. )
  2946. (pin "1" (uuid 142b9918-dd38-41f3-b61c-210ce99e08eb))
  2947. (pin "2" (uuid b3a2574e-b544-49d3-a46c-c8877f13afb8))
  2948. )
  2949. (symbol (lib_id "Device:C_Small") (at 135.89 26.67 0) (mirror x) (unit 1)
  2950. (in_bom yes) (on_board yes)
  2951. (uuid 26cb46f8-8a8c-4873-a0ff-7d7542f1b5af)
  2952. (property "Reference" "C92" (id 0) (at 132.08 24.13 0)
  2953. (effects (font (size 1.27 1.27)) (justify left))
  2954. )
  2955. (property "Value" "100nF" (id 1) (at 135.89 31.75 90)
  2956. (effects (font (size 1.27 1.27)) (justify left))
  2957. )
  2958. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 135.89 26.67 0)
  2959. (effects (font (size 1.27 1.27)) hide)
  2960. )
  2961. (property "Datasheet" "~" (id 3) (at 135.89 26.67 0)
  2962. (effects (font (size 1.27 1.27)) hide)
  2963. )
  2964. (property "LCSC" "C1525" (id 4) (at 135.89 26.67 0)
  2965. (effects (font (size 1.27 1.27)) hide)
  2966. )
  2967. (pin "1" (uuid 09c034d9-7edb-46fe-a01e-9cd003a2da61))
  2968. (pin "2" (uuid 9d030548-d555-45f8-8ba0-06a0f2480afc))
  2969. )
  2970. (symbol (lib_id "Device:R_Small") (at 121.92 137.16 0) (unit 1)
  2971. (in_bom yes) (on_board yes)
  2972. (uuid 29c3c356-515f-4654-9bd9-f28bf8dedd06)
  2973. (property "Reference" "R75" (id 0) (at 123.19 135.89 0)
  2974. (effects (font (size 1.27 1.27)) (justify left))
  2975. )
  2976. (property "Value" "3.24k" (id 1) (at 123.19 138.43 0)
  2977. (effects (font (size 1.27 1.27)) (justify left))
  2978. )
  2979. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 121.92 137.16 0)
  2980. (effects (font (size 1.27 1.27)) hide)
  2981. )
  2982. (property "Datasheet" "~" (id 3) (at 121.92 137.16 0)
  2983. (effects (font (size 1.27 1.27)) hide)
  2984. )
  2985. (property "LCSC" "C11457" (id 4) (at 121.92 137.16 0)
  2986. (effects (font (size 1.27 1.27)) hide)
  2987. )
  2988. (pin "1" (uuid 1a30bdde-150d-4ae6-8d8e-1fafcc75c94b))
  2989. (pin "2" (uuid f34717c0-771e-4e99-a28d-7ecf5151ec98))
  2990. )
  2991. (symbol (lib_id "power:PWR_FLAG") (at 74.93 22.86 0) (unit 1)
  2992. (in_bom yes) (on_board yes) (fields_autoplaced)
  2993. (uuid 2be7e7bd-d5ba-4c78-9e38-9ff398a01218)
  2994. (property "Reference" "#FLG0105" (id 0) (at 74.93 20.955 0)
  2995. (effects (font (size 1.27 1.27)) hide)
  2996. )
  2997. (property "Value" "PWR_FLAG" (id 1) (at 74.93 17.78 0))
  2998. (property "Footprint" "" (id 2) (at 74.93 22.86 0)
  2999. (effects (font (size 1.27 1.27)) hide)
  3000. )
  3001. (property "Datasheet" "~" (id 3) (at 74.93 22.86 0)
  3002. (effects (font (size 1.27 1.27)) hide)
  3003. )
  3004. (pin "1" (uuid 2b943ee0-e082-425a-9c2c-4f6006684b5c))
  3005. )
  3006. (symbol (lib_id "power:GND") (at 102.87 31.75 0) (unit 1)
  3007. (in_bom yes) (on_board yes) (fields_autoplaced)
  3008. (uuid 2c6db664-62f7-4acc-9702-c6cca00ac65c)
  3009. (property "Reference" "#PWR0241" (id 0) (at 102.87 38.1 0)
  3010. (effects (font (size 1.27 1.27)) hide)
  3011. )
  3012. (property "Value" "GND" (id 1) (at 102.87 36.83 0))
  3013. (property "Footprint" "" (id 2) (at 102.87 31.75 0)
  3014. (effects (font (size 1.27 1.27)) hide)
  3015. )
  3016. (property "Datasheet" "" (id 3) (at 102.87 31.75 0)
  3017. (effects (font (size 1.27 1.27)) hide)
  3018. )
  3019. (pin "1" (uuid 53870b3c-b384-45ca-8cad-785cdb8c3125))
  3020. )
  3021. (symbol (lib_id "74xGxx:74LVC2G04") (at 87.63 129.54 0) (unit 2)
  3022. (in_bom yes) (on_board yes) (fields_autoplaced)
  3023. (uuid 367c56f6-510c-4539-b2da-88ba506d8283)
  3024. (property "Reference" "U13" (id 0) (at 86.995 121.285 0))
  3025. (property "Value" "74LVC2G04" (id 1) (at 86.995 123.825 0))
  3026. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 87.63 129.54 0)
  3027. (effects (font (size 1.27 1.27)) hide)
  3028. )
  3029. (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 87.63 129.54 0)
  3030. (effects (font (size 1.27 1.27)) hide)
  3031. )
  3032. (property "LCSC" "C460538" (id 4) (at 87.63 129.54 0)
  3033. (effects (font (size 1.27 1.27)) hide)
  3034. )
  3035. (pin "2" (uuid 762863ec-7289-479c-aff7-227b385591df))
  3036. (pin "5" (uuid 320acd92-7ad8-4994-a658-85d4c80bf2cf))
  3037. (pin "1" (uuid 6cec941f-4917-43b8-9a6b-1cc96708633b))
  3038. (pin "6" (uuid 7905cb2c-c5eb-4a96-bd21-1e1db8c77970))
  3039. (pin "3" (uuid 4099aef7-068c-428d-9eef-0e1dec2319e8))
  3040. (pin "4" (uuid 0116862e-7aac-4bcc-a22a-14c2527624b6))
  3041. )
  3042. (symbol (lib_id "Device:C_Small") (at 57.15 26.67 180) (unit 1)
  3043. (in_bom yes) (on_board yes)
  3044. (uuid 3e0c574b-35f2-46e3-9aac-c11407c0bc18)
  3045. (property "Reference" "C81" (id 0) (at 57.15 24.13 0)
  3046. (effects (font (size 1.27 1.27)) (justify left))
  3047. )
  3048. (property "Value" "1uF" (id 1) (at 57.15 31.75 90)
  3049. (effects (font (size 1.27 1.27)) (justify left))
  3050. )
  3051. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 57.15 26.67 0)
  3052. (effects (font (size 1.27 1.27)) hide)
  3053. )
  3054. (property "Datasheet" "~" (id 3) (at 57.15 26.67 0)
  3055. (effects (font (size 1.27 1.27)) hide)
  3056. )
  3057. (property "LCSC" "C15849" (id 4) (at 57.15 26.67 0)
  3058. (effects (font (size 1.27 1.27)) hide)
  3059. )
  3060. (pin "1" (uuid 7b6335b4-d886-4cbb-9e2f-43f45ad75341))
  3061. (pin "2" (uuid 25a18819-d59f-4bd5-bebb-5300aef05c23))
  3062. )
  3063. (symbol (lib_id "Device:C_Small") (at 35.56 26.67 180) (unit 1)
  3064. (in_bom yes) (on_board yes)
  3065. (uuid 415154e3-0b4d-4395-985d-8408ba5ca3d5)
  3066. (property "Reference" "C77" (id 0) (at 35.56 24.13 0)
  3067. (effects (font (size 1.27 1.27)) (justify left))
  3068. )
  3069. (property "Value" "100nF" (id 1) (at 34.29 29.21 0)
  3070. (effects (font (size 1.27 1.27)) (justify left))
  3071. )
  3072. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 35.56 26.67 0)
  3073. (effects (font (size 1.27 1.27)) hide)
  3074. )
  3075. (property "Datasheet" "~" (id 3) (at 35.56 26.67 0)
  3076. (effects (font (size 1.27 1.27)) hide)
  3077. )
  3078. (property "LCSC" "C1525" (id 4) (at 35.56 26.67 0)
  3079. (effects (font (size 1.27 1.27)) hide)
  3080. )
  3081. (pin "1" (uuid 6bb3ac34-9a2f-481a-8f70-3bfe24e5c9e6))
  3082. (pin "2" (uuid ff30ea58-80f3-40e0-b89c-357ddc7a69ef))
  3083. )
  3084. (symbol (lib_id "Device:C_Small") (at 50.8 26.67 180) (unit 1)
  3085. (in_bom yes) (on_board yes)
  3086. (uuid 41a9d0f7-b660-448e-bfdb-826542775cd5)
  3087. (property "Reference" "C80" (id 0) (at 50.8 24.13 0)
  3088. (effects (font (size 1.27 1.27)) (justify left))
  3089. )
  3090. (property "Value" "1uF" (id 1) (at 50.8 31.75 90)
  3091. (effects (font (size 1.27 1.27)) (justify left))
  3092. )
  3093. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 50.8 26.67 0)
  3094. (effects (font (size 1.27 1.27)) hide)
  3095. )
  3096. (property "Datasheet" "~" (id 3) (at 50.8 26.67 0)
  3097. (effects (font (size 1.27 1.27)) hide)
  3098. )
  3099. (property "LCSC" "C15849" (id 4) (at 50.8 26.67 0)
  3100. (effects (font (size 1.27 1.27)) hide)
  3101. )
  3102. (pin "1" (uuid 1deaa61e-3273-4c13-af5e-5148fdc28c77))
  3103. (pin "2" (uuid d4ed563e-29e0-44f5-90a1-fc5e68c4efa4))
  3104. )
  3105. (symbol (lib_id "power:GND") (at 58.42 175.26 0) (unit 1)
  3106. (in_bom yes) (on_board yes)
  3107. (uuid 436f66d0-8540-456a-8d95-6afa125f4ad6)
  3108. (property "Reference" "#PWR0255" (id 0) (at 58.42 181.61 0)
  3109. (effects (font (size 1.27 1.27)) hide)
  3110. )
  3111. (property "Value" "GND" (id 1) (at 58.547 179.6542 0))
  3112. (property "Footprint" "" (id 2) (at 58.42 175.26 0)
  3113. (effects (font (size 1.27 1.27)) hide)
  3114. )
  3115. (property "Datasheet" "" (id 3) (at 58.42 175.26 0)
  3116. (effects (font (size 1.27 1.27)) hide)
  3117. )
  3118. (pin "1" (uuid 55f42b88-cc91-459c-97d6-dfc287af35a7))
  3119. )
  3120. (symbol (lib_id "power:GND") (at 142.24 130.81 0) (unit 1)
  3121. (in_bom yes) (on_board yes) (fields_autoplaced)
  3122. (uuid 45481b81-958c-402d-91eb-6b05620f4dce)
  3123. (property "Reference" "#PWR0221" (id 0) (at 142.24 137.16 0)
  3124. (effects (font (size 1.27 1.27)) hide)
  3125. )
  3126. (property "Value" "GND" (id 1) (at 142.24 135.89 0))
  3127. (property "Footprint" "" (id 2) (at 142.24 130.81 0)
  3128. (effects (font (size 1.27 1.27)) hide)
  3129. )
  3130. (property "Datasheet" "" (id 3) (at 142.24 130.81 0)
  3131. (effects (font (size 1.27 1.27)) hide)
  3132. )
  3133. (pin "1" (uuid 00e87a7e-de0b-4855-a6cb-b5b1ecddedaf))
  3134. )
  3135. (symbol (lib_id "power:GND") (at 125.73 31.75 0) (unit 1)
  3136. (in_bom yes) (on_board yes) (fields_autoplaced)
  3137. (uuid 4ca8148d-9c7e-41fc-aebf-4361f143746c)
  3138. (property "Reference" "#PWR0242" (id 0) (at 125.73 38.1 0)
  3139. (effects (font (size 1.27 1.27)) hide)
  3140. )
  3141. (property "Value" "GND" (id 1) (at 125.73 36.83 0))
  3142. (property "Footprint" "" (id 2) (at 125.73 31.75 0)
  3143. (effects (font (size 1.27 1.27)) hide)
  3144. )
  3145. (property "Datasheet" "" (id 3) (at 125.73 31.75 0)
  3146. (effects (font (size 1.27 1.27)) hide)
  3147. )
  3148. (pin "1" (uuid 273ef5d0-6eab-4f5f-9cff-b97a3200e64b))
  3149. )
  3150. (symbol (lib_id "Device:C_Small") (at 93.98 26.67 180) (unit 1)
  3151. (in_bom yes) (on_board yes)
  3152. (uuid 4d088351-f858-4705-8851-088dbf6ebc8d)
  3153. (property "Reference" "C85" (id 0) (at 93.98 24.13 0)
  3154. (effects (font (size 1.27 1.27)) (justify left))
  3155. )
  3156. (property "Value" "6800pF" (id 1) (at 93.98 31.75 90)
  3157. (effects (font (size 1.27 1.27)) (justify left))
  3158. )
  3159. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 93.98 26.67 0)
  3160. (effects (font (size 1.27 1.27)) hide)
  3161. )
  3162. (property "Datasheet" "~" (id 3) (at 93.98 26.67 0)
  3163. (effects (font (size 1.27 1.27)) hide)
  3164. )
  3165. (property "LCSC" "C1542" (id 4) (at 93.98 26.67 0)
  3166. (effects (font (size 1.27 1.27)) hide)
  3167. )
  3168. (pin "1" (uuid 8d02811d-d0b2-4651-a2db-1d3a48f19234))
  3169. (pin "2" (uuid adf61c07-641c-4716-9d49-4911a944fa48))
  3170. )
  3171. (symbol (lib_id "power:GND") (at 95.885 121.285 0) (unit 1)
  3172. (in_bom yes) (on_board yes) (fields_autoplaced)
  3173. (uuid 4d731e4f-ca60-4d17-b9ef-1fddddbf0d4c)
  3174. (property "Reference" "#PWR0260" (id 0) (at 95.885 127.635 0)
  3175. (effects (font (size 1.27 1.27)) hide)
  3176. )
  3177. (property "Value" "GND" (id 1) (at 95.885 125.73 0))
  3178. (property "Footprint" "" (id 2) (at 95.885 121.285 0)
  3179. (effects (font (size 1.27 1.27)) hide)
  3180. )
  3181. (property "Datasheet" "" (id 3) (at 95.885 121.285 0)
  3182. (effects (font (size 1.27 1.27)) hide)
  3183. )
  3184. (pin "1" (uuid c5c4ada3-b741-4b03-9b3d-1cfc97161ce2))
  3185. )
  3186. (symbol (lib_id "Device:C_Small") (at 140.97 26.67 0) (mirror x) (unit 1)
  3187. (in_bom yes) (on_board yes)
  3188. (uuid 4d9a9552-cfd6-498b-b548-ce5e6e4a1592)
  3189. (property "Reference" "C93" (id 0) (at 137.16 24.13 0)
  3190. (effects (font (size 1.27 1.27)) (justify left))
  3191. )
  3192. (property "Value" "1uF" (id 1) (at 140.97 31.75 90)
  3193. (effects (font (size 1.27 1.27)) (justify left))
  3194. )
  3195. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 140.97 26.67 0)
  3196. (effects (font (size 1.27 1.27)) hide)
  3197. )
  3198. (property "Datasheet" "~" (id 3) (at 140.97 26.67 0)
  3199. (effects (font (size 1.27 1.27)) hide)
  3200. )
  3201. (property "LCSC" "C15849" (id 4) (at 140.97 26.67 0)
  3202. (effects (font (size 1.27 1.27)) hide)
  3203. )
  3204. (pin "1" (uuid 996cbc27-2e83-4daa-a4d8-44719e3a4f25))
  3205. (pin "2" (uuid af3c39e9-f3fc-4b7a-b698-e1987181e9e3))
  3206. )
  3207. (symbol (lib_id "Device:R_Small") (at 208.28 78.74 270) (unit 1)
  3208. (in_bom yes) (on_board yes)
  3209. (uuid 4e231a97-8b64-41b1-8ccf-ea7da127c2e1)
  3210. (property "Reference" "R95" (id 0) (at 205.994 77.47 90)
  3211. (effects (font (size 1.27 1.27)) (justify right))
  3212. )
  3213. (property "Value" "33" (id 1) (at 213.36 77.47 90)
  3214. (effects (font (size 1.27 1.27)) (justify right))
  3215. )
  3216. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 78.74 0)
  3217. (effects (font (size 1.27 1.27)) hide)
  3218. )
  3219. (property "Datasheet" "~" (id 3) (at 208.28 78.74 0)
  3220. (effects (font (size 1.27 1.27)) hide)
  3221. )
  3222. (property "LCSC" "C25105" (id 4) (at 208.28 78.74 0)
  3223. (effects (font (size 1.27 1.27)) hide)
  3224. )
  3225. (pin "1" (uuid cf4aeeac-3e10-4a7a-8a94-8cb0e5fcdde3))
  3226. (pin "2" (uuid 6d209a94-0a57-451c-8275-a1c9d577d208))
  3227. )
  3228. (symbol (lib_id "power:GND") (at 209.55 151.13 0) (unit 1)
  3229. (in_bom yes) (on_board yes) (fields_autoplaced)
  3230. (uuid 4ecffab0-fd63-4249-9eaf-9c17f9c8dfa7)
  3231. (property "Reference" "#PWR0227" (id 0) (at 209.55 157.48 0)
  3232. (effects (font (size 1.27 1.27)) hide)
  3233. )
  3234. (property "Value" "GND" (id 1) (at 209.55 156.21 0))
  3235. (property "Footprint" "" (id 2) (at 209.55 151.13 0)
  3236. (effects (font (size 1.27 1.27)) hide)
  3237. )
  3238. (property "Datasheet" "" (id 3) (at 209.55 151.13 0)
  3239. (effects (font (size 1.27 1.27)) hide)
  3240. )
  3241. (pin "1" (uuid 964369ab-d23a-4dbe-8940-9458bff3e0bc))
  3242. )
  3243. (symbol (lib_id "Device:R_Small") (at 129.54 60.96 180) (unit 1)
  3244. (in_bom yes) (on_board yes) (fields_autoplaced)
  3245. (uuid 51247e4d-64f3-4cc9-8851-1cb58496eecd)
  3246. (property "Reference" "R79" (id 0) (at 132.08 59.6899 0)
  3247. (effects (font (size 1.27 1.27)) (justify right))
  3248. )
  3249. (property "Value" "10k" (id 1) (at 132.08 62.2299 0)
  3250. (effects (font (size 1.27 1.27)) (justify right))
  3251. )
  3252. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 129.54 60.96 0)
  3253. (effects (font (size 1.27 1.27)) hide)
  3254. )
  3255. (property "Datasheet" "~" (id 3) (at 129.54 60.96 0)
  3256. (effects (font (size 1.27 1.27)) hide)
  3257. )
  3258. (property "LCSC" "C25744" (id 4) (at 129.54 60.96 0)
  3259. (effects (font (size 1.27 1.27)) hide)
  3260. )
  3261. (pin "1" (uuid 1d45fbc9-9250-4be7-9ba6-06c4c21daf90))
  3262. (pin "2" (uuid 2f797aeb-2962-4722-8839-166b90b41bb4))
  3263. )
  3264. (symbol (lib_id "Device:Crystal_GND24") (at 135.89 121.92 180) (unit 1)
  3265. (in_bom yes) (on_board yes)
  3266. (uuid 534d131b-fa77-404d-a3be-44fb0807597e)
  3267. (property "Reference" "Y1" (id 0) (at 132.08 116.84 0))
  3268. (property "Value" "30 MHz" (id 1) (at 142.24 116.84 0))
  3269. (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm" (id 2) (at 135.89 121.92 0)
  3270. (effects (font (size 1.27 1.27)) hide)
  3271. )
  3272. (property "Datasheet" "~" (id 3) (at 135.89 121.92 0)
  3273. (effects (font (size 1.27 1.27)) hide)
  3274. )
  3275. (property "LCSC" "C252267" (id 4) (at 135.89 121.92 0)
  3276. (effects (font (size 1.27 1.27)) hide)
  3277. )
  3278. (pin "1" (uuid fd5b893b-201b-4909-ad63-7075c0434de3))
  3279. (pin "2" (uuid 13e62dbe-4e1e-4596-898d-a9a83c41f443))
  3280. (pin "3" (uuid db5026b5-e31a-4958-a926-0eeb764190dd))
  3281. (pin "4" (uuid ab22813c-9201-440c-b340-5b49d15a405b))
  3282. )
  3283. (symbol (lib_id "Switch:SW_SPST") (at 50.8 173.99 0) (unit 1)
  3284. (in_bom yes) (on_board yes)
  3285. (uuid 54df2ba8-5bb7-4320-a2d4-f98aeb31a817)
  3286. (property "Reference" "SW3" (id 0) (at 50.8 168.021 0))
  3287. (property "Value" "RESET" (id 1) (at 50.8 170.3324 0))
  3288. (property "Footprint" "Greaseweazle:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04" (id 2) (at 50.8 173.99 0)
  3289. (effects (font (size 1.27 1.27)) hide)
  3290. )
  3291. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811082113_Korean-Hroparts-Elec-K2-1102SP-C4SC-04_C127509.pdf" (id 3) (at 50.8 173.99 0)
  3292. (effects (font (size 1.27 1.27)) hide)
  3293. )
  3294. (property "LCSC" "C127509" (id 4) (at 50.8 173.99 0)
  3295. (effects (font (size 1.27 1.27)) hide)
  3296. )
  3297. (pin "1" (uuid a0213136-9e9d-43a0-a0ba-67d46814ec29))
  3298. (pin "2" (uuid 0fd2a1bd-2124-40b7-9457-02180c3ea74f))
  3299. )
  3300. (symbol (lib_id "power:+3V3") (at 121.92 133.35 0) (unit 1)
  3301. (in_bom yes) (on_board yes)
  3302. (uuid 5cfc5aa4-5938-4912-a168-63dcbd43fd24)
  3303. (property "Reference" "#PWR0228" (id 0) (at 121.92 137.16 0)
  3304. (effects (font (size 1.27 1.27)) hide)
  3305. )
  3306. (property "Value" "+3V3" (id 1) (at 118.11 130.81 0))
  3307. (property "Footprint" "" (id 2) (at 121.92 133.35 0)
  3308. (effects (font (size 1.27 1.27)) hide)
  3309. )
  3310. (property "Datasheet" "" (id 3) (at 121.92 133.35 0)
  3311. (effects (font (size 1.27 1.27)) hide)
  3312. )
  3313. (pin "1" (uuid ee121e32-5ea0-48c7-a171-a437b54565ea))
  3314. )
  3315. (symbol (lib_id "power:GND") (at 156.21 143.51 0) (unit 1)
  3316. (in_bom yes) (on_board yes) (fields_autoplaced)
  3317. (uuid 6258cfdd-be98-4049-94da-6c84ef897344)
  3318. (property "Reference" "#PWR0246" (id 0) (at 156.21 149.86 0)
  3319. (effects (font (size 1.27 1.27)) hide)
  3320. )
  3321. (property "Value" "GND" (id 1) (at 156.21 148.59 0))
  3322. (property "Footprint" "" (id 2) (at 156.21 143.51 0)
  3323. (effects (font (size 1.27 1.27)) hide)
  3324. )
  3325. (property "Datasheet" "" (id 3) (at 156.21 143.51 0)
  3326. (effects (font (size 1.27 1.27)) hide)
  3327. )
  3328. (pin "1" (uuid c5b584a3-be2d-4631-a2c3-ba2f1617b9c6))
  3329. )
  3330. (symbol (lib_id "power:+3V3") (at 201.93 30.48 0) (unit 1)
  3331. (in_bom yes) (on_board yes) (fields_autoplaced)
  3332. (uuid 67ff579f-1797-45a2-97ef-2719922260b6)
  3333. (property "Reference" "#PWR0217" (id 0) (at 201.93 34.29 0)
  3334. (effects (font (size 1.27 1.27)) hide)
  3335. )
  3336. (property "Value" "+3V3" (id 1) (at 201.93 25.4 0))
  3337. (property "Footprint" "" (id 2) (at 201.93 30.48 0)
  3338. (effects (font (size 1.27 1.27)) hide)
  3339. )
  3340. (property "Datasheet" "" (id 3) (at 201.93 30.48 0)
  3341. (effects (font (size 1.27 1.27)) hide)
  3342. )
  3343. (pin "1" (uuid 0d31186d-5144-495b-8912-c85acbd0a23f))
  3344. )
  3345. (symbol (lib_id "Device:R_Small") (at 143.51 56.515 180) (unit 1)
  3346. (in_bom yes) (on_board yes)
  3347. (uuid 68c972c1-d236-44d7-ba5d-fc564029f0e5)
  3348. (property "Reference" "R80" (id 0) (at 138.43 53.975 0)
  3349. (effects (font (size 1.27 1.27)) (justify right))
  3350. )
  3351. (property "Value" "10k" (id 1) (at 138.43 57.785 0)
  3352. (effects (font (size 1.27 1.27)) (justify right))
  3353. )
  3354. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 143.51 56.515 0)
  3355. (effects (font (size 1.27 1.27)) hide)
  3356. )
  3357. (property "Datasheet" "~" (id 3) (at 143.51 56.515 0)
  3358. (effects (font (size 1.27 1.27)) hide)
  3359. )
  3360. (property "LCSC" "C25744" (id 4) (at 143.51 56.515 0)
  3361. (effects (font (size 1.27 1.27)) hide)
  3362. )
  3363. (pin "1" (uuid 6816e346-739f-4394-bf2e-0f4d2f589a9f))
  3364. (pin "2" (uuid c3edc436-c270-4b27-a32c-0e406d6896e0))
  3365. )
  3366. (symbol (lib_id "Device:R_Small") (at 208.28 68.58 270) (unit 1)
  3367. (in_bom yes) (on_board yes)
  3368. (uuid 6c72395a-5432-4c20-a5d5-daea076c49e2)
  3369. (property "Reference" "R91" (id 0) (at 205.74 67.31 90)
  3370. (effects (font (size 1.27 1.27)) (justify right))
  3371. )
  3372. (property "Value" "33" (id 1) (at 213.36 67.31 90)
  3373. (effects (font (size 1.27 1.27)) (justify right))
  3374. )
  3375. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 68.58 0)
  3376. (effects (font (size 1.27 1.27)) hide)
  3377. )
  3378. (property "Datasheet" "~" (id 3) (at 208.28 68.58 0)
  3379. (effects (font (size 1.27 1.27)) hide)
  3380. )
  3381. (property "LCSC" "C25105" (id 4) (at 208.28 68.58 0)
  3382. (effects (font (size 1.27 1.27)) hide)
  3383. )
  3384. (pin "1" (uuid e2d0e113-c602-427b-9537-200441c746bd))
  3385. (pin "2" (uuid f0a340c9-b422-4db2-aba8-3ee7c19556a2))
  3386. )
  3387. (symbol (lib_id "Device:R_Small") (at 115.57 137.16 0) (unit 1)
  3388. (in_bom yes) (on_board yes)
  3389. (uuid 70509a60-a861-47e4-b268-49df395d9006)
  3390. (property "Reference" "R81" (id 0) (at 110.49 135.89 0)
  3391. (effects (font (size 1.27 1.27)) (justify left))
  3392. )
  3393. (property "Value" "3.24k" (id 1) (at 109.22 138.43 0)
  3394. (effects (font (size 1.27 1.27)) (justify left))
  3395. )
  3396. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 115.57 137.16 0)
  3397. (effects (font (size 1.27 1.27)) hide)
  3398. )
  3399. (property "Datasheet" "~" (id 3) (at 115.57 137.16 0)
  3400. (effects (font (size 1.27 1.27)) hide)
  3401. )
  3402. (property "LCSC" "C11457" (id 4) (at 115.57 137.16 0)
  3403. (effects (font (size 1.27 1.27)) hide)
  3404. )
  3405. (pin "1" (uuid a55c59e2-307e-4ae0-b766-25386a40f053))
  3406. (pin "2" (uuid bdabf060-25c1-4dd1-8045-a40ddc2321b8))
  3407. )
  3408. (symbol (lib_id "Device:R_Small") (at 44.45 167.64 180) (unit 1)
  3409. (in_bom yes) (on_board yes)
  3410. (uuid 717766a6-f88f-481f-9de7-c5fc5df0c2ba)
  3411. (property "Reference" "R82" (id 0) (at 39.37 165.1 0)
  3412. (effects (font (size 1.27 1.27)) (justify right))
  3413. )
  3414. (property "Value" "10k" (id 1) (at 39.37 168.91 0)
  3415. (effects (font (size 1.27 1.27)) (justify right))
  3416. )
  3417. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 44.45 167.64 0)
  3418. (effects (font (size 1.27 1.27)) hide)
  3419. )
  3420. (property "Datasheet" "~" (id 3) (at 44.45 167.64 0)
  3421. (effects (font (size 1.27 1.27)) hide)
  3422. )
  3423. (property "LCSC" "C25744" (id 4) (at 44.45 167.64 0)
  3424. (effects (font (size 1.27 1.27)) hide)
  3425. )
  3426. (pin "1" (uuid 340f9dd6-6205-4c4a-b451-866a1b4294a5))
  3427. (pin "2" (uuid ffaf90f1-f1a2-4e5e-b0ae-b917dafff1f1))
  3428. )
  3429. (symbol (lib_id "Device:C_Small") (at 40.64 26.67 180) (unit 1)
  3430. (in_bom yes) (on_board yes)
  3431. (uuid 719c630a-63ee-4403-be6b-abcb945c1232)
  3432. (property "Reference" "C78" (id 0) (at 40.64 24.13 0)
  3433. (effects (font (size 1.27 1.27)) (justify left))
  3434. )
  3435. (property "Value" "100nF" (id 1) (at 40.64 31.75 90)
  3436. (effects (font (size 1.27 1.27)) (justify left))
  3437. )
  3438. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 40.64 26.67 0)
  3439. (effects (font (size 1.27 1.27)) hide)
  3440. )
  3441. (property "Datasheet" "~" (id 3) (at 40.64 26.67 0)
  3442. (effects (font (size 1.27 1.27)) hide)
  3443. )
  3444. (property "LCSC" "C1525" (id 4) (at 40.64 26.67 0)
  3445. (effects (font (size 1.27 1.27)) hide)
  3446. )
  3447. (pin "1" (uuid b56cef24-aa98-471f-bd8e-4df453616b5b))
  3448. (pin "2" (uuid f7cb1f45-eaae-4722-b29a-9b750638e0f1))
  3449. )
  3450. (symbol (lib_id "Device:R_Small") (at 208.28 73.66 270) (unit 1)
  3451. (in_bom yes) (on_board yes)
  3452. (uuid 760ee491-0234-4c56-8c7c-df5c142a853f)
  3453. (property "Reference" "R93" (id 0) (at 205.74 72.644 90)
  3454. (effects (font (size 1.27 1.27)) (justify right))
  3455. )
  3456. (property "Value" "33" (id 1) (at 213.36 72.644 90)
  3457. (effects (font (size 1.27 1.27)) (justify right))
  3458. )
  3459. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 73.66 0)
  3460. (effects (font (size 1.27 1.27)) hide)
  3461. )
  3462. (property "Datasheet" "~" (id 3) (at 208.28 73.66 0)
  3463. (effects (font (size 1.27 1.27)) hide)
  3464. )
  3465. (property "LCSC" "C25105" (id 4) (at 208.28 73.66 0)
  3466. (effects (font (size 1.27 1.27)) hide)
  3467. )
  3468. (pin "1" (uuid a2bc0c34-4f53-428b-bed3-7fb23eddb40e))
  3469. (pin "2" (uuid 8fc34155-300b-41a8-ad45-3c0314acd23b))
  3470. )
  3471. (symbol (lib_id "Device:R_Small") (at 208.28 60.96 270) (unit 1)
  3472. (in_bom yes) (on_board yes)
  3473. (uuid 774d6f1c-4dd6-4970-bc0d-73d590f92396)
  3474. (property "Reference" "R88" (id 0) (at 205.74 59.69 90)
  3475. (effects (font (size 1.27 1.27)) (justify right))
  3476. )
  3477. (property "Value" "33" (id 1) (at 213.36 59.69 90)
  3478. (effects (font (size 1.27 1.27)) (justify right))
  3479. )
  3480. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 60.96 0)
  3481. (effects (font (size 1.27 1.27)) hide)
  3482. )
  3483. (property "Datasheet" "~" (id 3) (at 208.28 60.96 0)
  3484. (effects (font (size 1.27 1.27)) hide)
  3485. )
  3486. (property "LCSC" "C25105" (id 4) (at 208.28 60.96 0)
  3487. (effects (font (size 1.27 1.27)) hide)
  3488. )
  3489. (pin "1" (uuid a881b4eb-a9d1-4e3e-ba56-fedeb9b9a86b))
  3490. (pin "2" (uuid 76cfae43-b7b4-4197-9b4f-687b872f25c8))
  3491. )
  3492. (symbol (lib_id "Device:D_Schottky") (at 80.01 76.2 0) (unit 1)
  3493. (in_bom yes) (on_board yes)
  3494. (uuid 77c8ecad-2afb-4efe-9ccd-5517d87ebe40)
  3495. (property "Reference" "D17" (id 0) (at 77.47 72.39 0)
  3496. (effects (font (size 1.27 1.27)) (justify left))
  3497. )
  3498. (property "Value" "1N5819W" (id 1) (at 76.2 80.01 0)
  3499. (effects (font (size 1.27 1.27)) (justify left))
  3500. )
  3501. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 80.01 76.2 0)
  3502. (effects (font (size 1.27 1.27)) hide)
  3503. )
  3504. (property "Datasheet" "~" (id 3) (at 80.01 76.2 0)
  3505. (effects (font (size 1.27 1.27)) hide)
  3506. )
  3507. (property "LCSC" "C963381" (id 4) (at 80.01 76.2 90)
  3508. (effects (font (size 1.27 1.27)) hide)
  3509. )
  3510. (pin "1" (uuid bb1bb82b-12d3-478c-ab4b-fc4c10596906))
  3511. (pin "2" (uuid a3d1f9d6-cb20-48de-9e6a-2b09166327ef))
  3512. )
  3513. (symbol (lib_id "Device:R_Small") (at 208.28 58.42 270) (unit 1)
  3514. (in_bom yes) (on_board yes)
  3515. (uuid 79ab4f67-a09e-4106-bbd3-c81b95beefc0)
  3516. (property "Reference" "R87" (id 0) (at 205.74 57.15 90)
  3517. (effects (font (size 1.27 1.27)) (justify right))
  3518. )
  3519. (property "Value" "33" (id 1) (at 213.36 57.15 90)
  3520. (effects (font (size 1.27 1.27)) (justify right))
  3521. )
  3522. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 58.42 0)
  3523. (effects (font (size 1.27 1.27)) hide)
  3524. )
  3525. (property "Datasheet" "~" (id 3) (at 208.28 58.42 0)
  3526. (effects (font (size 1.27 1.27)) hide)
  3527. )
  3528. (property "LCSC" "C25105" (id 4) (at 208.28 58.42 0)
  3529. (effects (font (size 1.27 1.27)) hide)
  3530. )
  3531. (pin "1" (uuid 3eb20a21-c45e-4637-b326-864a3e8a7056))
  3532. (pin "2" (uuid edc9f17b-d668-4d6b-87c2-e982486a976d))
  3533. )
  3534. (symbol (lib_id "Device:C_Small") (at 110.49 88.9 90) (unit 1)
  3535. (in_bom yes) (on_board yes)
  3536. (uuid 7b91f57c-cb55-4826-abf2-3818754597d9)
  3537. (property "Reference" "C73" (id 0) (at 109.3216 86.5632 90)
  3538. (effects (font (size 1.27 1.27)) (justify left))
  3539. )
  3540. (property "Value" "100nF" (id 1) (at 118.11 86.36 90)
  3541. (effects (font (size 1.27 1.27)) (justify left))
  3542. )
  3543. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 110.49 88.9 0)
  3544. (effects (font (size 1.27 1.27)) hide)
  3545. )
  3546. (property "Datasheet" "~" (id 3) (at 110.49 88.9 0)
  3547. (effects (font (size 1.27 1.27)) hide)
  3548. )
  3549. (property "LCSC" "C1525" (id 4) (at 110.49 88.9 0)
  3550. (effects (font (size 1.27 1.27)) hide)
  3551. )
  3552. (pin "1" (uuid 0b8516f7-74c0-470c-ac94-55e9e070cab8))
  3553. (pin "2" (uuid 01205be1-00e2-4937-856d-c1021ac09a58))
  3554. )
  3555. (symbol (lib_id "Device:R_Small") (at 208.28 50.8 270) (unit 1)
  3556. (in_bom yes) (on_board yes)
  3557. (uuid 8301f38d-c178-492c-bf4b-301332f291f8)
  3558. (property "Reference" "R84" (id 0) (at 205.74 49.53 90)
  3559. (effects (font (size 1.27 1.27)) (justify right))
  3560. )
  3561. (property "Value" "33" (id 1) (at 213.36 49.53 90)
  3562. (effects (font (size 1.27 1.27)) (justify right))
  3563. )
  3564. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 50.8 0)
  3565. (effects (font (size 1.27 1.27)) hide)
  3566. )
  3567. (property "Datasheet" "~" (id 3) (at 208.28 50.8 0)
  3568. (effects (font (size 1.27 1.27)) hide)
  3569. )
  3570. (property "LCSC" "C25105" (id 4) (at 208.28 50.8 0)
  3571. (effects (font (size 1.27 1.27)) hide)
  3572. )
  3573. (pin "1" (uuid 1a254ed8-94db-485e-ab02-d5f9bc1a815a))
  3574. (pin "2" (uuid 40160b13-f596-443a-8dd6-513227aefd1c))
  3575. )
  3576. (symbol (lib_id "power:GND") (at 129.54 130.81 0) (unit 1)
  3577. (in_bom yes) (on_board yes) (fields_autoplaced)
  3578. (uuid 84bdff7a-5f16-44cb-bcd0-c7a0a2a826b3)
  3579. (property "Reference" "#PWR0220" (id 0) (at 129.54 137.16 0)
  3580. (effects (font (size 1.27 1.27)) hide)
  3581. )
  3582. (property "Value" "GND" (id 1) (at 129.54 135.89 0))
  3583. (property "Footprint" "" (id 2) (at 129.54 130.81 0)
  3584. (effects (font (size 1.27 1.27)) hide)
  3585. )
  3586. (property "Datasheet" "" (id 3) (at 129.54 130.81 0)
  3587. (effects (font (size 1.27 1.27)) hide)
  3588. )
  3589. (pin "1" (uuid 2af5da51-108f-423c-b812-af143639716b))
  3590. )
  3591. (symbol (lib_id "Device:R_Small") (at 156.21 139.7 180) (unit 1)
  3592. (in_bom yes) (on_board yes)
  3593. (uuid 85b2e19e-b45a-40ca-b4ab-a142e19b1bb5)
  3594. (property "Reference" "R76" (id 0) (at 157.48 138.43 0)
  3595. (effects (font (size 1.27 1.27)) (justify right))
  3596. )
  3597. (property "Value" "10k" (id 1) (at 157.48 140.97 0)
  3598. (effects (font (size 1.27 1.27)) (justify right))
  3599. )
  3600. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 156.21 139.7 0)
  3601. (effects (font (size 1.27 1.27)) hide)
  3602. )
  3603. (property "Datasheet" "~" (id 3) (at 156.21 139.7 0)
  3604. (effects (font (size 1.27 1.27)) hide)
  3605. )
  3606. (property "LCSC" "C25744" (id 4) (at 156.21 139.7 0)
  3607. (effects (font (size 1.27 1.27)) hide)
  3608. )
  3609. (pin "1" (uuid 49bd5577-d6ca-4757-9497-a738576488a8))
  3610. (pin "2" (uuid 83a09c15-3425-4a8e-b677-c2f5fb5a43b0))
  3611. )
  3612. (symbol (lib_id "Device:C_Small") (at 142.24 127 0) (unit 1)
  3613. (in_bom yes) (on_board yes) (fields_autoplaced)
  3614. (uuid 87c067ed-7584-46ea-a4ea-b71ec597ad3f)
  3615. (property "Reference" "C76" (id 0) (at 144.78 125.7362 0)
  3616. (effects (font (size 1.27 1.27)) (justify left))
  3617. )
  3618. (property "Value" "18pF" (id 1) (at 144.78 128.2762 0)
  3619. (effects (font (size 1.27 1.27)) (justify left))
  3620. )
  3621. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 142.24 127 0)
  3622. (effects (font (size 1.27 1.27)) hide)
  3623. )
  3624. (property "Datasheet" "~" (id 3) (at 142.24 127 0)
  3625. (effects (font (size 1.27 1.27)) hide)
  3626. )
  3627. (property "LCSC" "C1549" (id 4) (at 142.24 127 0)
  3628. (effects (font (size 1.27 1.27)) hide)
  3629. )
  3630. (pin "1" (uuid a9bd4c43-9fd5-438f-903c-62a058ee5694))
  3631. (pin "2" (uuid 7d5099ec-c28e-4ae5-93c3-585f35a8600e))
  3632. )
  3633. (symbol (lib_id "power:GND") (at 44.45 139.7 0) (unit 1)
  3634. (in_bom yes) (on_board yes) (fields_autoplaced)
  3635. (uuid 88431cd8-35c8-4f27-a56c-98e34ac94dee)
  3636. (property "Reference" "#PWR0218" (id 0) (at 44.45 146.05 0)
  3637. (effects (font (size 1.27 1.27)) hide)
  3638. )
  3639. (property "Value" "GND" (id 1) (at 44.45 144.78 0))
  3640. (property "Footprint" "" (id 2) (at 44.45 139.7 0)
  3641. (effects (font (size 1.27 1.27)) hide)
  3642. )
  3643. (property "Datasheet" "" (id 3) (at 44.45 139.7 0)
  3644. (effects (font (size 1.27 1.27)) hide)
  3645. )
  3646. (pin "1" (uuid e038a785-3dcd-4c0e-8cd1-14376d89e66d))
  3647. )
  3648. (symbol (lib_id "Device:R_Small") (at 208.28 66.04 270) (unit 1)
  3649. (in_bom yes) (on_board yes)
  3650. (uuid 885ad2b9-c10b-41ea-87a9-2ac1b602d3d1)
  3651. (property "Reference" "R90" (id 0) (at 205.74 64.77 90)
  3652. (effects (font (size 1.27 1.27)) (justify right))
  3653. )
  3654. (property "Value" "33" (id 1) (at 213.36 64.77 90)
  3655. (effects (font (size 1.27 1.27)) (justify right))
  3656. )
  3657. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 66.04 0)
  3658. (effects (font (size 1.27 1.27)) hide)
  3659. )
  3660. (property "Datasheet" "~" (id 3) (at 208.28 66.04 0)
  3661. (effects (font (size 1.27 1.27)) hide)
  3662. )
  3663. (property "LCSC" "C25105" (id 4) (at 208.28 66.04 0)
  3664. (effects (font (size 1.27 1.27)) hide)
  3665. )
  3666. (pin "1" (uuid b2a3a711-67b5-48fb-bafd-7458d099290e))
  3667. (pin "2" (uuid a4e307fa-c304-49c1-a7e2-c5609d27a549))
  3668. )
  3669. (symbol (lib_id "power:+3V3") (at 44.45 162.56 0) (unit 1)
  3670. (in_bom yes) (on_board yes) (fields_autoplaced)
  3671. (uuid 8b543612-7469-4968-8cce-8071e2619531)
  3672. (property "Reference" "#PWR0256" (id 0) (at 44.45 166.37 0)
  3673. (effects (font (size 1.27 1.27)) hide)
  3674. )
  3675. (property "Value" "+3V3" (id 1) (at 44.45 157.48 0))
  3676. (property "Footprint" "" (id 2) (at 44.45 162.56 0)
  3677. (effects (font (size 1.27 1.27)) hide)
  3678. )
  3679. (property "Datasheet" "" (id 3) (at 44.45 162.56 0)
  3680. (effects (font (size 1.27 1.27)) hide)
  3681. )
  3682. (pin "1" (uuid 96fb0b51-e8d8-4357-8421-5c0d829f6cc3))
  3683. )
  3684. (symbol (lib_id "Device:C_Small") (at 74.93 26.67 180) (unit 1)
  3685. (in_bom yes) (on_board yes)
  3686. (uuid 8c921dfd-9f2a-4b32-aee8-653411ecdb4e)
  3687. (property "Reference" "C94" (id 0) (at 74.93 24.13 0)
  3688. (effects (font (size 1.27 1.27)) (justify left))
  3689. )
  3690. (property "Value" "4.7uF" (id 1) (at 74.93 31.75 90)
  3691. (effects (font (size 1.27 1.27)) (justify left))
  3692. )
  3693. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 74.93 26.67 0)
  3694. (effects (font (size 1.27 1.27)) hide)
  3695. )
  3696. (property "Datasheet" "~" (id 3) (at 74.93 26.67 0)
  3697. (effects (font (size 1.27 1.27)) hide)
  3698. )
  3699. (property "LCSC" "C99229" (id 4) (at 74.93 26.67 0)
  3700. (effects (font (size 1.27 1.27)) hide)
  3701. )
  3702. (pin "1" (uuid 5393f585-b8f1-4969-b078-8e571ed6e8bd))
  3703. (pin "2" (uuid 2c4df746-b502-41e5-81c2-61e9ddc788c1))
  3704. )
  3705. (symbol (lib_id "Device:R_Small") (at 208.28 63.5 270) (unit 1)
  3706. (in_bom yes) (on_board yes)
  3707. (uuid 9b94bf1e-2e29-4ce9-aff6-87f613c116f7)
  3708. (property "Reference" "R89" (id 0) (at 205.74 62.23 90)
  3709. (effects (font (size 1.27 1.27)) (justify right))
  3710. )
  3711. (property "Value" "33" (id 1) (at 213.36 62.23 90)
  3712. (effects (font (size 1.27 1.27)) (justify right))
  3713. )
  3714. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 63.5 0)
  3715. (effects (font (size 1.27 1.27)) hide)
  3716. )
  3717. (property "Datasheet" "~" (id 3) (at 208.28 63.5 0)
  3718. (effects (font (size 1.27 1.27)) hide)
  3719. )
  3720. (property "LCSC" "C25105" (id 4) (at 208.28 63.5 0)
  3721. (effects (font (size 1.27 1.27)) hide)
  3722. )
  3723. (pin "1" (uuid b6449527-8990-4319-a51e-6b5e7845fd50))
  3724. (pin "2" (uuid de30c810-e2ba-436d-bdc8-9aebedab3de5))
  3725. )
  3726. (symbol (lib_id "Device:C_Small") (at 113.03 26.67 180) (unit 1)
  3727. (in_bom yes) (on_board yes)
  3728. (uuid 9f89b039-e78e-4fd5-89ea-1ff4780ae441)
  3729. (property "Reference" "C88" (id 0) (at 113.03 24.13 0)
  3730. (effects (font (size 1.27 1.27)) (justify left))
  3731. )
  3732. (property "Value" "100nF" (id 1) (at 113.03 31.75 90)
  3733. (effects (font (size 1.27 1.27)) (justify left))
  3734. )
  3735. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 113.03 26.67 0)
  3736. (effects (font (size 1.27 1.27)) hide)
  3737. )
  3738. (property "Datasheet" "~" (id 3) (at 113.03 26.67 0)
  3739. (effects (font (size 1.27 1.27)) hide)
  3740. )
  3741. (property "LCSC" "C1525" (id 4) (at 113.03 26.67 0)
  3742. (effects (font (size 1.27 1.27)) hide)
  3743. )
  3744. (pin "1" (uuid 41c04f1a-48a0-4bba-8c35-a1d28b51ffcb))
  3745. (pin "2" (uuid a8501d8e-ea13-440a-a225-d114c6476c27))
  3746. )
  3747. (symbol (lib_id "power:GND") (at 90.17 72.39 0) (unit 1)
  3748. (in_bom yes) (on_board yes) (fields_autoplaced)
  3749. (uuid a16bd792-2baf-4e92-844c-a5fbf8086093)
  3750. (property "Reference" "#PWR0219" (id 0) (at 90.17 78.74 0)
  3751. (effects (font (size 1.27 1.27)) hide)
  3752. )
  3753. (property "Value" "GND" (id 1) (at 90.17 77.47 0))
  3754. (property "Footprint" "" (id 2) (at 90.17 72.39 0)
  3755. (effects (font (size 1.27 1.27)) hide)
  3756. )
  3757. (property "Datasheet" "" (id 3) (at 90.17 72.39 0)
  3758. (effects (font (size 1.27 1.27)) hide)
  3759. )
  3760. (pin "1" (uuid 48991d50-6ac0-4dbd-8420-ad00ddeb0e89))
  3761. )
  3762. (symbol (lib_id "Device:C_Small") (at 62.23 26.67 180) (unit 1)
  3763. (in_bom yes) (on_board yes)
  3764. (uuid a38c58da-a242-4a84-9f98-4a7788f47e09)
  3765. (property "Reference" "C82" (id 0) (at 62.23 24.13 0)
  3766. (effects (font (size 1.27 1.27)) (justify left))
  3767. )
  3768. (property "Value" "1uF" (id 1) (at 62.23 31.75 90)
  3769. (effects (font (size 1.27 1.27)) (justify left))
  3770. )
  3771. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 62.23 26.67 0)
  3772. (effects (font (size 1.27 1.27)) hide)
  3773. )
  3774. (property "Datasheet" "~" (id 3) (at 62.23 26.67 0)
  3775. (effects (font (size 1.27 1.27)) hide)
  3776. )
  3777. (property "LCSC" "C15849" (id 4) (at 62.23 26.67 0)
  3778. (effects (font (size 1.27 1.27)) hide)
  3779. )
  3780. (pin "1" (uuid a570f9a6-1540-4224-bd0a-137ced3b92ca))
  3781. (pin "2" (uuid 5aef224f-624f-4743-997d-b63bafd86d24))
  3782. )
  3783. (symbol (lib_id "Device:R_Small") (at 208.28 76.2 270) (unit 1)
  3784. (in_bom yes) (on_board yes)
  3785. (uuid a6033b31-5726-42ca-a95e-15b7e97f36ae)
  3786. (property "Reference" "R94" (id 0) (at 205.994 75.184 90)
  3787. (effects (font (size 1.27 1.27)) (justify right))
  3788. )
  3789. (property "Value" "33" (id 1) (at 213.36 74.93 90)
  3790. (effects (font (size 1.27 1.27)) (justify right))
  3791. )
  3792. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 76.2 0)
  3793. (effects (font (size 1.27 1.27)) hide)
  3794. )
  3795. (property "Datasheet" "~" (id 3) (at 208.28 76.2 0)
  3796. (effects (font (size 1.27 1.27)) hide)
  3797. )
  3798. (property "LCSC" "C25105" (id 4) (at 208.28 76.2 0)
  3799. (effects (font (size 1.27 1.27)) hide)
  3800. )
  3801. (pin "1" (uuid cdca1f14-35ef-4370-acbe-1139563ab842))
  3802. (pin "2" (uuid c1da9498-9c40-42d6-84ef-06e5dde8c86c))
  3803. )
  3804. (symbol (lib_id "Device:R_Small") (at 208.28 71.12 270) (unit 1)
  3805. (in_bom yes) (on_board yes)
  3806. (uuid a787ca91-baaa-4893-ab57-4b6ed1cac1ff)
  3807. (property "Reference" "R92" (id 0) (at 205.74 69.85 90)
  3808. (effects (font (size 1.27 1.27)) (justify right))
  3809. )
  3810. (property "Value" "33" (id 1) (at 213.36 69.85 90)
  3811. (effects (font (size 1.27 1.27)) (justify right))
  3812. )
  3813. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 208.28 71.12 0)
  3814. (effects (font (size 1.27 1.27)) hide)
  3815. )
  3816. (property "Datasheet" "~" (id 3) (at 208.28 71.12 0)
  3817. (effects (font (size 1.27 1.27)) hide)
  3818. )
  3819. (property "LCSC" "C25105" (id 4) (at 208.28 71.12 0)
  3820. (effects (font (size 1.27 1.27)) hide)
  3821. )
  3822. (pin "1" (uuid 36af1e37-14e7-4ca3-bec5-3490b234f51d))
  3823. (pin "2" (uuid e62cc9d0-601f-4dae-b7ac-92ccd61c1b52))
  3824. )
  3825. (symbol (lib_id "Device:C_Small") (at 88.9 26.67 180) (unit 1)
  3826. (in_bom yes) (on_board yes)
  3827. (uuid aa48e07f-186b-45e6-9f82-394b42456b80)
  3828. (property "Reference" "C84" (id 0) (at 88.9 24.13 0)
  3829. (effects (font (size 1.27 1.27)) (justify left))
  3830. )
  3831. (property "Value" "100nF" (id 1) (at 88.9 31.75 90)
  3832. (effects (font (size 1.27 1.27)) (justify left))
  3833. )
  3834. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 88.9 26.67 0)
  3835. (effects (font (size 1.27 1.27)) hide)
  3836. )
  3837. (property "Datasheet" "~" (id 3) (at 88.9 26.67 0)
  3838. (effects (font (size 1.27 1.27)) hide)
  3839. )
  3840. (property "LCSC" "C1525" (id 4) (at 88.9 26.67 0)
  3841. (effects (font (size 1.27 1.27)) hide)
  3842. )
  3843. (pin "1" (uuid 8c73d9e1-3c0f-4300-81d1-cf8d427fb145))
  3844. (pin "2" (uuid 258e6627-1aad-4487-ae69-3cd02c738ad5))
  3845. )
  3846. (symbol (lib_id "power:GND") (at 35.56 31.75 0) (unit 1)
  3847. (in_bom yes) (on_board yes) (fields_autoplaced)
  3848. (uuid aa64d0a8-ded1-4c24-a1bd-623f73676f5a)
  3849. (property "Reference" "#PWR0231" (id 0) (at 35.56 38.1 0)
  3850. (effects (font (size 1.27 1.27)) hide)
  3851. )
  3852. (property "Value" "GND" (id 1) (at 35.56 36.83 0))
  3853. (property "Footprint" "" (id 2) (at 35.56 31.75 0)
  3854. (effects (font (size 1.27 1.27)) hide)
  3855. )
  3856. (property "Datasheet" "" (id 3) (at 35.56 31.75 0)
  3857. (effects (font (size 1.27 1.27)) hide)
  3858. )
  3859. (pin "1" (uuid d45d1825-ab1c-4037-bce8-152106c79c5e))
  3860. )
  3861. (symbol (lib_id "Device:D_Schottky") (at 69.85 73.66 0) (unit 1)
  3862. (in_bom yes) (on_board yes)
  3863. (uuid ae20d466-ac82-43b4-abc2-122d1c5f9b1c)
  3864. (property "Reference" "D16" (id 0) (at 64.77 71.12 0)
  3865. (effects (font (size 1.27 1.27)) (justify left))
  3866. )
  3867. (property "Value" "1N5819W" (id 1) (at 66.04 77.47 0)
  3868. (effects (font (size 1.27 1.27)) (justify left))
  3869. )
  3870. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 69.85 73.66 0)
  3871. (effects (font (size 1.27 1.27)) hide)
  3872. )
  3873. (property "Datasheet" "~" (id 3) (at 69.85 73.66 0)
  3874. (effects (font (size 1.27 1.27)) hide)
  3875. )
  3876. (property "LCSC" "C963381" (id 4) (at 69.85 73.66 90)
  3877. (effects (font (size 1.27 1.27)) hide)
  3878. )
  3879. (pin "1" (uuid ea175124-0c3d-4d4c-ac3a-f521c2951c71))
  3880. (pin "2" (uuid 4b5d7989-95cb-47df-950b-c34f19011e90))
  3881. )
  3882. (symbol (lib_id "power:GND") (at 76.2 132.08 0) (unit 1)
  3883. (in_bom yes) (on_board yes) (fields_autoplaced)
  3884. (uuid afa73031-ad9b-4633-a3de-1f8710a74d74)
  3885. (property "Reference" "#PWR0262" (id 0) (at 76.2 138.43 0)
  3886. (effects (font (size 1.27 1.27)) hide)
  3887. )
  3888. (property "Value" "GND" (id 1) (at 76.2 136.525 0))
  3889. (property "Footprint" "" (id 2) (at 76.2 132.08 0)
  3890. (effects (font (size 1.27 1.27)) hide)
  3891. )
  3892. (property "Datasheet" "" (id 3) (at 76.2 132.08 0)
  3893. (effects (font (size 1.27 1.27)) hide)
  3894. )
  3895. (pin "1" (uuid 74d15c2a-d8b9-483c-a07c-8d89202429e0))
  3896. )
  3897. (symbol (lib_id "Device:R_Small") (at 153.67 46.99 180) (unit 1)
  3898. (in_bom yes) (on_board yes)
  3899. (uuid b1fbba1e-518f-41f9-9ab2-18a766350f5e)
  3900. (property "Reference" "R78" (id 0) (at 154.94 44.45 0)
  3901. (effects (font (size 1.27 1.27)) (justify right))
  3902. )
  3903. (property "Value" "10k" (id 1) (at 154.94 48.26 0)
  3904. (effects (font (size 1.27 1.27)) (justify right))
  3905. )
  3906. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 153.67 46.99 0)
  3907. (effects (font (size 1.27 1.27)) hide)
  3908. )
  3909. (property "Datasheet" "~" (id 3) (at 153.67 46.99 0)
  3910. (effects (font (size 1.27 1.27)) hide)
  3911. )
  3912. (property "LCSC" "C25744" (id 4) (at 153.67 46.99 0)
  3913. (effects (font (size 1.27 1.27)) hide)
  3914. )
  3915. (pin "1" (uuid f0c46827-fbf5-4191-9e7d-e57021f4ba51))
  3916. (pin "2" (uuid 24c38e5a-9092-439f-af6c-d2f7fb7ad9ae))
  3917. )
  3918. (symbol (lib_id "Device:C_Small") (at 54.61 48.26 0) (mirror y) (unit 1)
  3919. (in_bom yes) (on_board yes)
  3920. (uuid b87cbef9-857c-4347-ad70-6bdd0df21822)
  3921. (property "Reference" "C96" (id 0) (at 59.69 46.99 0)
  3922. (effects (font (size 1.27 1.27)) (justify left))
  3923. )
  3924. (property "Value" "100nF" (id 1) (at 62.23 49.53 0)
  3925. (effects (font (size 1.27 1.27)) (justify left))
  3926. )
  3927. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 54.61 48.26 0)
  3928. (effects (font (size 1.27 1.27)) hide)
  3929. )
  3930. (property "Datasheet" "~" (id 3) (at 54.61 48.26 0)
  3931. (effects (font (size 1.27 1.27)) hide)
  3932. )
  3933. (property "LCSC" "C1525" (id 4) (at 54.61 48.26 0)
  3934. (effects (font (size 1.27 1.27)) hide)
  3935. )
  3936. (pin "1" (uuid bd0f6f21-388d-4148-a0ba-ed9f1909e35a))
  3937. (pin "2" (uuid ecd96479-f0fb-48d4-8fe8-162b431230ce))
  3938. )
  3939. (symbol (lib_id "power:PWR_FLAG") (at 118.11 22.86 0) (unit 1)
  3940. (in_bom yes) (on_board yes) (fields_autoplaced)
  3941. (uuid b9a9e427-e1af-4f15-8dfa-7e6722964a32)
  3942. (property "Reference" "#FLG0106" (id 0) (at 118.11 20.955 0)
  3943. (effects (font (size 1.27 1.27)) hide)
  3944. )
  3945. (property "Value" "PWR_FLAG" (id 1) (at 118.11 17.78 0))
  3946. (property "Footprint" "" (id 2) (at 118.11 22.86 0)
  3947. (effects (font (size 1.27 1.27)) hide)
  3948. )
  3949. (property "Datasheet" "~" (id 3) (at 118.11 22.86 0)
  3950. (effects (font (size 1.27 1.27)) hide)
  3951. )
  3952. (pin "1" (uuid edbb4c9c-0bb9-4c95-b112-8d702896e3cb))
  3953. )
  3954. (symbol (lib_id "power:+3V3") (at 115.57 133.35 0) (unit 1)
  3955. (in_bom yes) (on_board yes)
  3956. (uuid c31335b1-4eb3-4b22-ada7-ccf91437570c)
  3957. (property "Reference" "#PWR0254" (id 0) (at 115.57 137.16 0)
  3958. (effects (font (size 1.27 1.27)) hide)
  3959. )
  3960. (property "Value" "+3V3" (id 1) (at 111.76 130.81 0))
  3961. (property "Footprint" "" (id 2) (at 115.57 133.35 0)
  3962. (effects (font (size 1.27 1.27)) hide)
  3963. )
  3964. (property "Datasheet" "" (id 3) (at 115.57 133.35 0)
  3965. (effects (font (size 1.27 1.27)) hide)
  3966. )
  3967. (pin "1" (uuid 1edaeb66-6e3e-4a45-ae4d-df074d7d23fc))
  3968. )
  3969. (symbol (lib_id "power:GND") (at 118.11 167.64 0) (unit 1)
  3970. (in_bom yes) (on_board yes) (fields_autoplaced)
  3971. (uuid c519dd4f-a22b-4a03-b94c-46a9e39348df)
  3972. (property "Reference" "#PWR0229" (id 0) (at 118.11 173.99 0)
  3973. (effects (font (size 1.27 1.27)) hide)
  3974. )
  3975. (property "Value" "GND" (id 1) (at 118.11 172.72 0))
  3976. (property "Footprint" "" (id 2) (at 118.11 167.64 0)
  3977. (effects (font (size 1.27 1.27)) hide)
  3978. )
  3979. (property "Datasheet" "" (id 3) (at 118.11 167.64 0)
  3980. (effects (font (size 1.27 1.27)) hide)
  3981. )
  3982. (pin "1" (uuid 3d69e7b0-6a57-463d-ac71-2f83b55d36ae))
  3983. )
  3984. (symbol (lib_id "Device:R_Small") (at 149.86 83.82 270) (unit 1)
  3985. (in_bom yes) (on_board yes)
  3986. (uuid c7fc8421-8850-487e-9b4e-587fa22df1ca)
  3987. (property "Reference" "R83" (id 0) (at 147.32 81.28 90))
  3988. (property "Value" "1.6k" (id 1) (at 153.67 81.28 90))
  3989. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 149.86 83.82 0)
  3990. (effects (font (size 1.27 1.27)) hide)
  3991. )
  3992. (property "Datasheet" "~" (id 3) (at 149.86 83.82 0)
  3993. (effects (font (size 1.27 1.27)) hide)
  3994. )
  3995. (property "LCSC" "C25931" (id 4) (at 149.86 83.82 0)
  3996. (effects (font (size 1.27 1.27)) hide)
  3997. )
  3998. (pin "1" (uuid 6d70101b-99b0-49c2-a8e3-8333618f1aa0))
  3999. (pin "2" (uuid f1ddcd7b-590d-4ae0-aeac-58f32fdbefd4))
  4000. )
  4001. (symbol (lib_id "power:GND") (at 137.16 60.96 0) (unit 1)
  4002. (in_bom yes) (on_board yes)
  4003. (uuid ce0dd184-9f48-4058-80cb-ffbf993a7037)
  4004. (property "Reference" "#PWR0251" (id 0) (at 137.16 67.31 0)
  4005. (effects (font (size 1.27 1.27)) hide)
  4006. )
  4007. (property "Value" "GND" (id 1) (at 139.7 64.135 0))
  4008. (property "Footprint" "" (id 2) (at 137.16 60.96 0)
  4009. (effects (font (size 1.27 1.27)) hide)
  4010. )
  4011. (property "Datasheet" "" (id 3) (at 137.16 60.96 0)
  4012. (effects (font (size 1.27 1.27)) hide)
  4013. )
  4014. (pin "1" (uuid 0f6ceb67-3f58-40b1-a7da-79aba3cbb463))
  4015. )
  4016. (symbol (lib_id "Device:R_Small") (at 147.32 46.99 180) (unit 1)
  4017. (in_bom yes) (on_board yes)
  4018. (uuid cf6a1f13-5c3d-41fb-8d52-cc90c89efccb)
  4019. (property "Reference" "R77" (id 0) (at 147.32 44.45 0)
  4020. (effects (font (size 1.27 1.27)) (justify right))
  4021. )
  4022. (property "Value" "10k" (id 1) (at 148.59 48.26 0)
  4023. (effects (font (size 1.27 1.27)) (justify right))
  4024. )
  4025. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 147.32 46.99 0)
  4026. (effects (font (size 1.27 1.27)) hide)
  4027. )
  4028. (property "Datasheet" "~" (id 3) (at 147.32 46.99 0)
  4029. (effects (font (size 1.27 1.27)) hide)
  4030. )
  4031. (property "LCSC" "C25744" (id 4) (at 147.32 46.99 0)
  4032. (effects (font (size 1.27 1.27)) hide)
  4033. )
  4034. (pin "1" (uuid a74b3c25-1a8e-4ce4-9959-a11acf152607))
  4035. (pin "2" (uuid 16fc2f4f-0d49-49f9-9a9d-177d289cf625))
  4036. )
  4037. (symbol (lib_id "Device:L") (at 63.5 44.45 90) (unit 1)
  4038. (in_bom yes) (on_board yes)
  4039. (uuid d1f5be86-af55-48c4-bbeb-9815fbccdf78)
  4040. (property "Reference" "L5" (id 0) (at 63.5 39.624 90))
  4041. (property "Value" "100uH" (id 1) (at 63.5 41.9354 90))
  4042. (property "Footprint" "Greaseweazle:L_6.3x6.3_H3" (id 2) (at 63.5 44.45 0)
  4043. (effects (font (size 1.27 1.27)) hide)
  4044. )
  4045. (property "Datasheet" "~" (id 3) (at 63.5 44.45 0)
  4046. (effects (font (size 1.27 1.27)) hide)
  4047. )
  4048. (property "LCSC" "C434839" (id 4) (at 63.5 44.45 0)
  4049. (effects (font (size 1.27 1.27)) hide)
  4050. )
  4051. (pin "1" (uuid 97ce97c4-d8fe-461f-ae81-ba325c6dc767))
  4052. (pin "2" (uuid 807a1698-27d8-48c5-81b0-aaa779e7d7f3))
  4053. )
  4054. (symbol (lib_id "Device:C_Small") (at 130.81 26.67 180) (unit 1)
  4055. (in_bom yes) (on_board yes)
  4056. (uuid d6d2cb1a-f3d2-41fb-98d9-7a135a63ed1c)
  4057. (property "Reference" "C91" (id 0) (at 130.81 24.13 0)
  4058. (effects (font (size 1.27 1.27)) (justify left))
  4059. )
  4060. (property "Value" "100nF" (id 1) (at 130.81 31.75 90)
  4061. (effects (font (size 1.27 1.27)) (justify left))
  4062. )
  4063. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 130.81 26.67 0)
  4064. (effects (font (size 1.27 1.27)) hide)
  4065. )
  4066. (property "Datasheet" "~" (id 3) (at 130.81 26.67 0)
  4067. (effects (font (size 1.27 1.27)) hide)
  4068. )
  4069. (property "LCSC" "C1525" (id 4) (at 130.81 26.67 0)
  4070. (effects (font (size 1.27 1.27)) hide)
  4071. )
  4072. (pin "1" (uuid 8b3288a2-099f-4b81-b573-4485e4584689))
  4073. (pin "2" (uuid c29113d2-9957-4531-bf74-0112e6dfb739))
  4074. )
  4075. (symbol (lib_id "power:+3V3") (at 153.67 41.91 0) (unit 1)
  4076. (in_bom yes) (on_board yes) (fields_autoplaced)
  4077. (uuid d7b84b2f-7a32-4554-a4a0-2b4a73d91479)
  4078. (property "Reference" "#PWR0250" (id 0) (at 153.67 45.72 0)
  4079. (effects (font (size 1.27 1.27)) hide)
  4080. )
  4081. (property "Value" "+3V3" (id 1) (at 153.67 36.83 0))
  4082. (property "Footprint" "" (id 2) (at 153.67 41.91 0)
  4083. (effects (font (size 1.27 1.27)) hide)
  4084. )
  4085. (property "Datasheet" "" (id 3) (at 153.67 41.91 0)
  4086. (effects (font (size 1.27 1.27)) hide)
  4087. )
  4088. (pin "1" (uuid f8317e08-ac8d-4f92-9b50-30017e795fde))
  4089. )
  4090. (symbol (lib_id "Device:C_Small") (at 107.95 26.67 180) (unit 1)
  4091. (in_bom yes) (on_board yes)
  4092. (uuid d97a29f1-3127-4474-8e0b-83537eca46a3)
  4093. (property "Reference" "C87" (id 0) (at 107.95 24.13 0)
  4094. (effects (font (size 1.27 1.27)) (justify left))
  4095. )
  4096. (property "Value" "6800pF" (id 1) (at 107.95 31.75 90)
  4097. (effects (font (size 1.27 1.27)) (justify left))
  4098. )
  4099. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 107.95 26.67 0)
  4100. (effects (font (size 1.27 1.27)) hide)
  4101. )
  4102. (property "Datasheet" "~" (id 3) (at 107.95 26.67 0)
  4103. (effects (font (size 1.27 1.27)) hide)
  4104. )
  4105. (property "LCSC" "C1542" (id 4) (at 107.95 26.67 0)
  4106. (effects (font (size 1.27 1.27)) hide)
  4107. )
  4108. (pin "1" (uuid e360c518-a288-4759-b4ae-632512ce9140))
  4109. (pin "2" (uuid 13a057bc-37b1-46de-afb4-fa7f130d2e46))
  4110. )
  4111. (symbol (lib_id "74xGxx:74LVC2G04") (at 95.885 116.205 0) (mirror y) (unit 1)
  4112. (in_bom yes) (on_board yes)
  4113. (uuid dced2418-a24c-43d3-8166-e6512ca54b8b)
  4114. (property "Reference" "U13" (id 0) (at 100.33 111.125 0))
  4115. (property "Value" "74LVC2G04" (id 1) (at 88.9 112.395 0))
  4116. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 95.885 116.205 0)
  4117. (effects (font (size 1.27 1.27)) hide)
  4118. )
  4119. (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 95.885 116.205 0)
  4120. (effects (font (size 1.27 1.27)) hide)
  4121. )
  4122. (property "LCSC" "C460538" (id 4) (at 95.885 116.205 0)
  4123. (effects (font (size 1.27 1.27)) hide)
  4124. )
  4125. (pin "2" (uuid 699b7c60-2b14-411c-adc4-11911b037087))
  4126. (pin "5" (uuid 6e755fe2-772b-4be1-9030-d0612482a82c))
  4127. (pin "1" (uuid bf2b7f09-efdd-4f8b-9cd9-c7fc439e7509))
  4128. (pin "6" (uuid 27e51829-514e-447b-99ac-23d2ddc99892))
  4129. (pin "3" (uuid 4099aef7-068c-428d-9eef-0e1dec2319e9))
  4130. (pin "4" (uuid 0116862e-7aac-4bcc-a22a-14c2527624b7))
  4131. )
  4132. (symbol (lib_id "Device:R_Small") (at 129.54 161.29 90) (unit 1)
  4133. (in_bom yes) (on_board yes) (fields_autoplaced)
  4134. (uuid dde54e0d-3a65-4882-925e-9a1e80d910e1)
  4135. (property "Reference" "R74" (id 0) (at 129.54 154.94 90))
  4136. (property "Value" "100" (id 1) (at 129.54 157.48 90))
  4137. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 129.54 161.29 0)
  4138. (effects (font (size 1.27 1.27)) hide)
  4139. )
  4140. (property "Datasheet" "~" (id 3) (at 129.54 161.29 0)
  4141. (effects (font (size 1.27 1.27)) hide)
  4142. )
  4143. (property "LCSC" "C25076" (id 4) (at 129.54 161.29 0)
  4144. (effects (font (size 1.27 1.27)) hide)
  4145. )
  4146. (pin "1" (uuid 9438df98-2481-4921-a568-c7cf59fa6020))
  4147. (pin "2" (uuid 0d091673-1cc7-4d5d-aeaa-c3170f21453f))
  4148. )
  4149. (symbol (lib_id "Device:C_Small") (at 102.87 26.67 180) (unit 1)
  4150. (in_bom yes) (on_board yes)
  4151. (uuid e0c0fd97-0ef2-4aff-b4f5-598570ce6474)
  4152. (property "Reference" "C86" (id 0) (at 102.87 24.13 0)
  4153. (effects (font (size 1.27 1.27)) (justify left))
  4154. )
  4155. (property "Value" "100nF" (id 1) (at 102.87 29.21 0)
  4156. (effects (font (size 1.27 1.27)) (justify left))
  4157. )
  4158. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 102.87 26.67 0)
  4159. (effects (font (size 1.27 1.27)) hide)
  4160. )
  4161. (property "Datasheet" "~" (id 3) (at 102.87 26.67 0)
  4162. (effects (font (size 1.27 1.27)) hide)
  4163. )
  4164. (property "LCSC" "C1525" (id 4) (at 102.87 26.67 0)
  4165. (effects (font (size 1.27 1.27)) hide)
  4166. )
  4167. (pin "1" (uuid aaf4f11b-28f3-4620-aced-9638f22f2a1b))
  4168. (pin "2" (uuid f476208c-eb73-49c9-8458-6143a117bbbd))
  4169. )
  4170. (symbol (lib_id "Device:C_Small") (at 129.54 127 0) (unit 1)
  4171. (in_bom yes) (on_board yes)
  4172. (uuid e388f1ff-7709-4cec-a523-4bf1afec8889)
  4173. (property "Reference" "C75" (id 0) (at 124.46 124.46 0)
  4174. (effects (font (size 1.27 1.27)) (justify left))
  4175. )
  4176. (property "Value" "18pF" (id 1) (at 124.46 129.54 0)
  4177. (effects (font (size 1.27 1.27)) (justify left))
  4178. )
  4179. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 129.54 127 0)
  4180. (effects (font (size 1.27 1.27)) hide)
  4181. )
  4182. (property "Datasheet" "~" (id 3) (at 129.54 127 0)
  4183. (effects (font (size 1.27 1.27)) hide)
  4184. )
  4185. (property "LCSC" "C1549" (id 4) (at 129.54 127 0)
  4186. (effects (font (size 1.27 1.27)) hide)
  4187. )
  4188. (pin "1" (uuid fc6fc2af-8389-48a6-905b-35939516c202))
  4189. (pin "2" (uuid b1536ff5-6418-407c-9448-a286a45dc18b))
  4190. )
  4191. (symbol (lib_id "power:PWR_FLAG") (at 140.97 22.86 0) (unit 1)
  4192. (in_bom yes) (on_board yes) (fields_autoplaced)
  4193. (uuid e5ea224b-0e76-44c2-a5e6-4b4190be2a8e)
  4194. (property "Reference" "#FLG0104" (id 0) (at 140.97 20.955 0)
  4195. (effects (font (size 1.27 1.27)) hide)
  4196. )
  4197. (property "Value" "PWR_FLAG" (id 1) (at 140.97 17.78 0))
  4198. (property "Footprint" "" (id 2) (at 140.97 22.86 0)
  4199. (effects (font (size 1.27 1.27)) hide)
  4200. )
  4201. (property "Datasheet" "~" (id 3) (at 140.97 22.86 0)
  4202. (effects (font (size 1.27 1.27)) hide)
  4203. )
  4204. (pin "1" (uuid 6b031ae3-a33d-44ea-9df7-a157b5a98a87))
  4205. )
  4206. (symbol (lib_id "power:+3V3") (at 95.885 106.68 0) (unit 1)
  4207. (in_bom yes) (on_board yes)
  4208. (uuid ea0b4153-b639-445d-bc04-dccc5d549a5c)
  4209. (property "Reference" "#PWR0261" (id 0) (at 95.885 110.49 0)
  4210. (effects (font (size 1.27 1.27)) hide)
  4211. )
  4212. (property "Value" "+3V3" (id 1) (at 96.266 102.2858 0))
  4213. (property "Footprint" "" (id 2) (at 95.885 106.68 0)
  4214. (effects (font (size 1.27 1.27)) hide)
  4215. )
  4216. (property "Datasheet" "" (id 3) (at 95.885 106.68 0)
  4217. (effects (font (size 1.27 1.27)) hide)
  4218. )
  4219. (pin "1" (uuid ab23f298-c6be-4f5a-bd8b-6edf1f4a762f))
  4220. )
  4221. (symbol (lib_id "power:+3V3") (at 35.56 21.59 0) (unit 1)
  4222. (in_bom yes) (on_board yes) (fields_autoplaced)
  4223. (uuid ee09ac27-035c-4790-babe-b409ddd85d55)
  4224. (property "Reference" "#PWR0230" (id 0) (at 35.56 25.4 0)
  4225. (effects (font (size 1.27 1.27)) hide)
  4226. )
  4227. (property "Value" "+3V3" (id 1) (at 35.56 16.51 0))
  4228. (property "Footprint" "" (id 2) (at 35.56 21.59 0)
  4229. (effects (font (size 1.27 1.27)) hide)
  4230. )
  4231. (property "Datasheet" "" (id 3) (at 35.56 21.59 0)
  4232. (effects (font (size 1.27 1.27)) hide)
  4233. )
  4234. (pin "1" (uuid f723ef92-1e1e-42d8-84cc-e610aee03975))
  4235. )
  4236. (symbol (lib_id "Greaseweazle:FT601Q-B-T") (at 177.8 93.98 0) (unit 1)
  4237. (in_bom yes) (on_board yes) (fields_autoplaced)
  4238. (uuid eeab0e80-e6e5-44e5-8328-097faabb11ab)
  4239. (property "Reference" "U11" (id 0) (at 177.8 27.94 0))
  4240. (property "Value" "FT601Q-B-T" (id 1) (at 177.8 30.48 0))
  4241. (property "Footprint" "Package_DFN_QFN:QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm" (id 2) (at 177.8 93.98 0)
  4242. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  4243. )
  4244. (property "Datasheet" "" (id 3) (at 177.8 93.98 0)
  4245. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  4246. )
  4247. (pin "1" (uuid f4a67e73-2a9b-49ef-be2e-b339ad722c5e))
  4248. (pin "10" (uuid 0f60083e-c27d-4227-9caf-ca8b5e512f3b))
  4249. (pin "11" (uuid 3b1e4b77-2622-4bb1-801e-305ccedc728c))
  4250. (pin "12" (uuid 89786abc-0eef-49e7-8124-445e1bd79ea8))
  4251. (pin "13" (uuid 03901c86-1dea-405e-896d-c83260b6845b))
  4252. (pin "14" (uuid e7b28c7c-6c51-4481-ae6a-198341f9a3d2))
  4253. (pin "15" (uuid 152d39c6-1dd2-4ad5-a597-3d06bf26f6a4))
  4254. (pin "16" (uuid 17e0b660-c4de-4305-8058-b47bd71b1ee2))
  4255. (pin "17" (uuid b2f9bbaa-1c06-40dc-80cb-8e841759bc39))
  4256. (pin "18" (uuid 7ae30f08-19c1-4f5e-9bdd-9c276ec4fbe0))
  4257. (pin "2" (uuid e1f05b0f-7352-412b-9cd4-eed20554d561))
  4258. (pin "20" (uuid 5bf9d128-0b77-45e6-9e71-c66f189694e6))
  4259. (pin "21" (uuid 0217dbe2-313f-4fce-b0dd-ef625c130653))
  4260. (pin "22" (uuid 342c8377-0df1-406f-8f3a-0b97f4fca268))
  4261. (pin "23" (uuid 132114e1-f37a-4114-abb2-3c9c597dc485))
  4262. (pin "24" (uuid e92a0c80-bbcc-480f-af17-a6a31d0c8b7f))
  4263. (pin "25" (uuid 26279b35-0870-442d-ad1d-a9ecee761138))
  4264. (pin "26" (uuid a6091aea-e5b1-4e59-8280-6cdff156d15e))
  4265. (pin "27" (uuid c234eaf3-1d8f-45e3-bbb9-6fa81709e713))
  4266. (pin "28" (uuid 00df3299-502e-41d4-8ba7-8200639e38cc))
  4267. (pin "29" (uuid ba515b01-8e8b-4be6-8aa2-398df15673a8))
  4268. (pin "3" (uuid aa1a874e-c3be-4dc7-812d-81ce8fe21b24))
  4269. (pin "30" (uuid 794b47b6-3740-41e3-a2cc-84938a418a4c))
  4270. (pin "31" (uuid 2a5d22aa-8ce7-4268-b24c-1c80043f9c25))
  4271. (pin "32" (uuid 6444d47d-8d98-4253-a0ee-ecc7328ab8a8))
  4272. (pin "33" (uuid 858a697a-9c25-4fb3-913c-2fd8b7786239))
  4273. (pin "34" (uuid acf04657-db06-4da1-b726-6d1623592e23))
  4274. (pin "35" (uuid 373d5d7d-705e-4cfe-a9e6-7b992e2e10db))
  4275. (pin "36" (uuid 24345689-c52f-48b7-989a-66c44dbf3b92))
  4276. (pin "37" (uuid 2e1ba940-b008-4725-81b3-df09c2675c04))
  4277. (pin "38" (uuid cda07a42-f683-4734-9b83-e4d63010579d))
  4278. (pin "39" (uuid 52b56a00-59dc-4faf-bcc9-4c822f925a4a))
  4279. (pin "4" (uuid 11f59ffd-e2c9-4d63-9ce0-d04d00cd8e9a))
  4280. (pin "40" (uuid 077f7fd3-da2a-47b2-a4a0-f505c0c14964))
  4281. (pin "41" (uuid 2283ebb3-62aa-4142-b3d9-e821aa3a0ddd))
  4282. (pin "42" (uuid dca701fa-2aed-4d7c-bb52-3637f84702fb))
  4283. (pin "43" (uuid 77045a63-292d-42eb-b25e-5ba30585619f))
  4284. (pin "44" (uuid 908b1aaa-2122-4f83-86ca-fc9b5fe3237c))
  4285. (pin "45" (uuid 81d1cd32-4ec4-4710-bff5-54ed13356e41))
  4286. (pin "46" (uuid 93f67708-b4b3-4783-a540-20b5864af8e5))
  4287. (pin "47" (uuid 90120227-93fe-4b2c-a160-cfef7a31c233))
  4288. (pin "48" (uuid a67e884b-3fe3-4338-8042-b1ed40fe5545))
  4289. (pin "49" (uuid c06261ad-fa85-48bb-bfb5-7213130e4822))
  4290. (pin "5" (uuid 12633a38-6301-4e71-bd4f-e289c1c528db))
  4291. (pin "50" (uuid 06637a1f-50c1-43b6-a27e-702f2fd76f8d))
  4292. (pin "51" (uuid 06a5736b-4b50-4069-94e7-fbb4f5fa6726))
  4293. (pin "52" (uuid 9186f595-64e2-46a9-afaf-19a82a0ab32b))
  4294. (pin "53" (uuid 6cf334b2-ce9b-4700-9270-14044fcfa6a6))
  4295. (pin "54" (uuid 25bfa923-fdff-4249-a841-bc82b77871c2))
  4296. (pin "55" (uuid 0cc86bd0-a229-4ed3-9276-6a5e0206ef6b))
  4297. (pin "56" (uuid 1a4120ca-d512-4649-9f04-1e54dc2fbc6d))
  4298. (pin "57" (uuid 1194adad-c02f-419f-95f2-a8215b9c9ecb))
  4299. (pin "58" (uuid 08cef58f-b88b-452a-8b22-7cb6741ba9c1))
  4300. (pin "59" (uuid df7546f1-eada-41bd-94a1-ac58d7d26b2e))
  4301. (pin "6" (uuid f24a5dbc-85f1-44ee-a5f4-fea672796482))
  4302. (pin "60" (uuid c5992a43-8c58-4b7b-b751-c3b129e0c4ea))
  4303. (pin "61" (uuid bee263c9-254d-489a-9fb8-70b048681752))
  4304. (pin "62" (uuid a4f7c5c5-c6c8-458e-8f21-f52a91573926))
  4305. (pin "63" (uuid 87bcf79e-5760-4718-bef7-cac93b09ec6a))
  4306. (pin "64" (uuid 7fb1954a-f019-4f93-ac9d-10db1542fff6))
  4307. (pin "65" (uuid f6bdb4d7-4867-40d2-ab32-852cbcbf7ec7))
  4308. (pin "66" (uuid 0ee38f8c-ed07-4f8b-9909-bc0fef142694))
  4309. (pin "67" (uuid 85587ec7-9088-4073-bd9b-de1c446d7ed2))
  4310. (pin "68" (uuid 9f234d5a-3d93-48ba-bc3b-2ae6b6f0823f))
  4311. (pin "69" (uuid 08e56123-1c44-4f0e-8463-198d253c3ee4))
  4312. (pin "7" (uuid 1eae750a-12fa-4a0f-8953-7753bfeee027))
  4313. (pin "70" (uuid f706ffed-d5fe-4325-b983-ba204ef44895))
  4314. (pin "71" (uuid 10ed41f5-74ee-4d19-b11f-5fcab80631a8))
  4315. (pin "72" (uuid 6470217a-9db5-4c86-a290-464a4fc33d8b))
  4316. (pin "73" (uuid 61ff3893-361f-469e-bbcc-938c50c85786))
  4317. (pin "74" (uuid b7d32adb-12b7-4afb-bdc6-30348e0d15d7))
  4318. (pin "75" (uuid 9b8cbe97-26eb-4b88-91cd-2a61ef3783fa))
  4319. (pin "76" (uuid 61f35e42-700a-44ab-89ed-a6c9c0d5bc7d))
  4320. (pin "77" (uuid 2d52eb27-0c58-4a35-8f77-ed6f9f4a6dc7))
  4321. (pin "8" (uuid 20bca66b-dc79-4034-95ce-7bedef1cc83a))
  4322. (pin "9" (uuid 83558273-94c3-4d3a-818a-13b5b17df022))
  4323. )
  4324. (symbol (lib_id "power:GND") (at 49.53 52.07 0) (unit 1)
  4325. (in_bom yes) (on_board yes) (fields_autoplaced)
  4326. (uuid f7086363-842e-4f81-871d-20d4f23719d0)
  4327. (property "Reference" "#PWR0245" (id 0) (at 49.53 58.42 0)
  4328. (effects (font (size 1.27 1.27)) hide)
  4329. )
  4330. (property "Value" "GND" (id 1) (at 49.53 57.15 0))
  4331. (property "Footprint" "" (id 2) (at 49.53 52.07 0)
  4332. (effects (font (size 1.27 1.27)) hide)
  4333. )
  4334. (property "Datasheet" "" (id 3) (at 49.53 52.07 0)
  4335. (effects (font (size 1.27 1.27)) hide)
  4336. )
  4337. (pin "1" (uuid 466a50a3-2cab-4b24-8828-b89a53408500))
  4338. )
  4339. (symbol (lib_id "Device:C_Small") (at 118.11 91.44 90) (unit 1)
  4340. (in_bom yes) (on_board yes)
  4341. (uuid f9a295b3-49bd-4542-bce7-702ac63e14ed)
  4342. (property "Reference" "C74" (id 0) (at 116.84 90.17 90)
  4343. (effects (font (size 1.27 1.27)) (justify left))
  4344. )
  4345. (property "Value" "100nF" (id 1) (at 125.73 90.17 90)
  4346. (effects (font (size 1.27 1.27)) (justify left))
  4347. )
  4348. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 118.11 91.44 0)
  4349. (effects (font (size 1.27 1.27)) hide)
  4350. )
  4351. (property "Datasheet" "~" (id 3) (at 118.11 91.44 0)
  4352. (effects (font (size 1.27 1.27)) hide)
  4353. )
  4354. (property "LCSC" "C1525" (id 4) (at 118.11 91.44 0)
  4355. (effects (font (size 1.27 1.27)) hide)
  4356. )
  4357. (pin "1" (uuid 478e9ace-e09b-41a5-bfe4-48565e916a0f))
  4358. (pin "2" (uuid 97e52466-0774-4a6d-85ed-bb1f9a592b1e))
  4359. )
  4360. (symbol (lib_id "Connector:Conn_01x03_Male") (at 107.95 161.29 0) (unit 1)
  4361. (in_bom yes) (on_board yes)
  4362. (uuid fb9ce2a9-1dc3-4813-ab09-573cfd0b87a4)
  4363. (property "Reference" "J16" (id 0) (at 106.68 157.48 0))
  4364. (property "Value" "GPIO1" (id 1) (at 102.87 161.29 0))
  4365. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (id 2) (at 107.95 161.29 0)
  4366. (effects (font (size 1.27 1.27)) hide)
  4367. )
  4368. (property "Datasheet" "~" (id 3) (at 107.95 161.29 0)
  4369. (effects (font (size 1.27 1.27)) hide)
  4370. )
  4371. (pin "1" (uuid f91f4d3c-2451-43c5-b255-edc8068a93bd))
  4372. (pin "2" (uuid 586f1540-e1c9-4133-aae4-46161e8e6b53))
  4373. (pin "3" (uuid a26eab31-93b0-48d2-8da0-6b540c797e80))
  4374. )
  4375. (symbol (lib_id "Connector:USB_C_Receptacle") (at 48.26 93.98 0) (unit 1)
  4376. (in_bom yes) (on_board yes)
  4377. (uuid ff2bd700-3acd-4ff9-91eb-6c52d2dde82a)
  4378. (property "Reference" "USB3" (id 0) (at 39.37 58.3438 0)
  4379. (effects (font (size 1.524 1.524)))
  4380. )
  4381. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at 48.26 64.77 0)
  4382. (effects (font (size 1.524 1.524)))
  4383. )
  4384. (property "Footprint" "Greaseweazle:USB_C_Receptacle_Amphenol_12401548E4-2A" (id 2) (at 52.07 93.98 0)
  4385. (effects (font (size 1.27 1.27)) hide)
  4386. )
  4387. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 52.07 93.98 0)
  4388. (effects (font (size 1.27 1.27)) hide)
  4389. )
  4390. (property "LCSC" "C165948" (id 4) (at 48.26 93.98 0)
  4391. (effects (font (size 1.27 1.27)) hide)
  4392. )
  4393. (pin "A1" (uuid 30d85f0d-9335-457a-bd50-678b172d87ce))
  4394. (pin "A10" (uuid 40c8bf8c-3968-4d67-a8b5-3d7a52364555))
  4395. (pin "A11" (uuid 9292b9cc-642c-446e-901d-a7be2bd7e804))
  4396. (pin "A12" (uuid dd057b43-61bf-428e-86d4-f62ac291f253))
  4397. (pin "A2" (uuid 175f5f66-8201-4390-a4e7-ce620d66ef1d))
  4398. (pin "A3" (uuid 72b298f3-c57c-43a7-9e45-3f80d21fd18b))
  4399. (pin "A4" (uuid aaf5d8cd-3ad6-41a5-a882-7219617b5fa7))
  4400. (pin "A5" (uuid b02c778b-c0b7-4a1d-9ac7-adb302be0ea8))
  4401. (pin "A6" (uuid 968801f4-17bf-44a6-ae05-3d8e2dd26adf))
  4402. (pin "A7" (uuid 52748024-a74d-49c3-bd36-0940b2472ac9))
  4403. (pin "A8" (uuid ef58421e-2a93-48d5-a1a3-e65ad47c8ecf))
  4404. (pin "A9" (uuid 37afe372-abf1-4d57-9a76-0da3d496310c))
  4405. (pin "B1" (uuid 30a849a4-3f67-4bae-b6e5-e672fe6f1e8a))
  4406. (pin "B10" (uuid 253c5a63-567a-4da0-9a8f-e979a11f6098))
  4407. (pin "B11" (uuid d2dacae4-102c-4bde-b81a-51c34f137dc9))
  4408. (pin "B12" (uuid f639a48b-0074-41ec-9a9f-af31ca7886df))
  4409. (pin "B2" (uuid 768bb677-59c1-44f0-9875-2e2de1b6997f))
  4410. (pin "B3" (uuid fd8a3a52-765f-46f0-9cbb-9c1e9c87f8c5))
  4411. (pin "B4" (uuid b928d27b-906a-4a66-9390-46b1ff38281d))
  4412. (pin "B5" (uuid 51d685d5-c532-49e7-8e77-f5157aa3ddf8))
  4413. (pin "B6" (uuid 4dca5b37-6503-4816-a06f-1da95140ee42))
  4414. (pin "B7" (uuid 9a286acd-433d-4c75-ba34-9354fe1c4507))
  4415. (pin "B8" (uuid 7d3406c4-4b01-44ed-9945-0293a5d6e9c7))
  4416. (pin "B9" (uuid 901938eb-3045-47f0-8199-2aeeca98a84f))
  4417. (pin "S1" (uuid 926b9543-d8b5-4be8-8d71-8dea369ecc1e))
  4418. )
  4419. )