ad.kicad_sch 183 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 31e453ed-c999-4f32-9a0d-aa347ea73dda)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "AnalogFluxReader-rescue:CP_Small-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  6. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  7. (effects (font (size 1.27 1.27)) (justify left))
  8. )
  9. (property "Value" "CP_Small-Device" (id 1) (at 0.254 -2.032 0)
  10. (effects (font (size 1.27 1.27)) (justify left))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "" (id 3) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (symbol "CP_Small-Device_0_1"
  22. (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
  23. (stroke (width 0) (type default) (color 0 0 0 0))
  24. (fill (type outline))
  25. )
  26. (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
  27. (stroke (width 0) (type default) (color 0 0 0 0))
  28. (fill (type none))
  29. )
  30. (polyline
  31. (pts
  32. (xy -1.27 1.524)
  33. (xy -0.762 1.524)
  34. )
  35. (stroke (width 0) (type default) (color 0 0 0 0))
  36. (fill (type none))
  37. )
  38. (polyline
  39. (pts
  40. (xy -1.016 1.27)
  41. (xy -1.016 1.778)
  42. )
  43. (stroke (width 0) (type default) (color 0 0 0 0))
  44. (fill (type none))
  45. )
  46. )
  47. (symbol "CP_Small-Device_1_1"
  48. (pin passive line (at 0 2.54 270) (length 1.8542)
  49. (name "~" (effects (font (size 1.27 1.27))))
  50. (number "1" (effects (font (size 1.27 1.27))))
  51. )
  52. (pin passive line (at 0 -2.54 90) (length 1.8542)
  53. (name "~" (effects (font (size 1.27 1.27))))
  54. (number "2" (effects (font (size 1.27 1.27))))
  55. )
  56. )
  57. )
  58. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  59. (property "Reference" "J" (id 0) (at 0 5.08 0)
  60. (effects (font (size 1.27 1.27)))
  61. )
  62. (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
  63. (effects (font (size 1.27 1.27)))
  64. )
  65. (property "Footprint" "" (id 2) (at 0 0 0)
  66. (effects (font (size 1.27 1.27)) hide)
  67. )
  68. (property "Datasheet" "~" (id 3) (at 0 0 0)
  69. (effects (font (size 1.27 1.27)) hide)
  70. )
  71. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  72. (effects (font (size 1.27 1.27)) hide)
  73. )
  74. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  75. (effects (font (size 1.27 1.27)) hide)
  76. )
  77. (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
  78. (effects (font (size 1.27 1.27)) hide)
  79. )
  80. (symbol "Conn_01x03_Male_1_1"
  81. (polyline
  82. (pts
  83. (xy 1.27 -2.54)
  84. (xy 0.8636 -2.54)
  85. )
  86. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  87. (fill (type none))
  88. )
  89. (polyline
  90. (pts
  91. (xy 1.27 0)
  92. (xy 0.8636 0)
  93. )
  94. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  95. (fill (type none))
  96. )
  97. (polyline
  98. (pts
  99. (xy 1.27 2.54)
  100. (xy 0.8636 2.54)
  101. )
  102. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  103. (fill (type none))
  104. )
  105. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  106. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  107. (fill (type outline))
  108. )
  109. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  110. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  111. (fill (type outline))
  112. )
  113. (rectangle (start 0.8636 2.667) (end 0 2.413)
  114. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  115. (fill (type outline))
  116. )
  117. (pin passive line (at 5.08 2.54 180) (length 3.81)
  118. (name "Pin_1" (effects (font (size 1.27 1.27))))
  119. (number "1" (effects (font (size 1.27 1.27))))
  120. )
  121. (pin passive line (at 5.08 0 180) (length 3.81)
  122. (name "Pin_2" (effects (font (size 1.27 1.27))))
  123. (number "2" (effects (font (size 1.27 1.27))))
  124. )
  125. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  126. (name "Pin_3" (effects (font (size 1.27 1.27))))
  127. (number "3" (effects (font (size 1.27 1.27))))
  128. )
  129. )
  130. )
  131. (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  132. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  133. (effects (font (size 1.27 1.27)) (justify left))
  134. )
  135. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  136. (effects (font (size 1.27 1.27)) (justify left))
  137. )
  138. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  139. (effects (font (size 1.27 1.27)) hide)
  140. )
  141. (property "Datasheet" "~" (id 3) (at 0 0 0)
  142. (effects (font (size 1.27 1.27)) hide)
  143. )
  144. (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
  145. (effects (font (size 1.27 1.27)) hide)
  146. )
  147. (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
  148. (effects (font (size 1.27 1.27)) hide)
  149. )
  150. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  151. (effects (font (size 1.27 1.27)) hide)
  152. )
  153. (symbol "C_0_1"
  154. (polyline
  155. (pts
  156. (xy -2.032 -0.762)
  157. (xy 2.032 -0.762)
  158. )
  159. (stroke (width 0.508) (type default) (color 0 0 0 0))
  160. (fill (type none))
  161. )
  162. (polyline
  163. (pts
  164. (xy -2.032 0.762)
  165. (xy 2.032 0.762)
  166. )
  167. (stroke (width 0.508) (type default) (color 0 0 0 0))
  168. (fill (type none))
  169. )
  170. )
  171. (symbol "C_1_1"
  172. (pin passive line (at 0 3.81 270) (length 2.794)
  173. (name "~" (effects (font (size 1.27 1.27))))
  174. (number "1" (effects (font (size 1.27 1.27))))
  175. )
  176. (pin passive line (at 0 -3.81 90) (length 2.794)
  177. (name "~" (effects (font (size 1.27 1.27))))
  178. (number "2" (effects (font (size 1.27 1.27))))
  179. )
  180. )
  181. )
  182. (symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  183. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  184. (effects (font (size 1.27 1.27)) (justify left))
  185. )
  186. (property "Value" "C_Polarized_Small" (id 1) (at 0.254 -2.032 0)
  187. (effects (font (size 1.27 1.27)) (justify left))
  188. )
  189. (property "Footprint" "" (id 2) (at 0 0 0)
  190. (effects (font (size 1.27 1.27)) hide)
  191. )
  192. (property "Datasheet" "~" (id 3) (at 0 0 0)
  193. (effects (font (size 1.27 1.27)) hide)
  194. )
  195. (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
  196. (effects (font (size 1.27 1.27)) hide)
  197. )
  198. (property "ki_description" "Polarized capacitor, small symbol" (id 5) (at 0 0 0)
  199. (effects (font (size 1.27 1.27)) hide)
  200. )
  201. (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
  202. (effects (font (size 1.27 1.27)) hide)
  203. )
  204. (symbol "C_Polarized_Small_0_1"
  205. (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
  206. (stroke (width 0) (type default) (color 0 0 0 0))
  207. (fill (type outline))
  208. )
  209. (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
  210. (stroke (width 0) (type default) (color 0 0 0 0))
  211. (fill (type none))
  212. )
  213. (polyline
  214. (pts
  215. (xy -1.27 1.524)
  216. (xy -0.762 1.524)
  217. )
  218. (stroke (width 0) (type default) (color 0 0 0 0))
  219. (fill (type none))
  220. )
  221. (polyline
  222. (pts
  223. (xy -1.016 1.27)
  224. (xy -1.016 1.778)
  225. )
  226. (stroke (width 0) (type default) (color 0 0 0 0))
  227. (fill (type none))
  228. )
  229. )
  230. (symbol "C_Polarized_Small_1_1"
  231. (pin passive line (at 0 2.54 270) (length 1.8542)
  232. (name "~" (effects (font (size 1.27 1.27))))
  233. (number "1" (effects (font (size 1.27 1.27))))
  234. )
  235. (pin passive line (at 0 -2.54 90) (length 1.8542)
  236. (name "~" (effects (font (size 1.27 1.27))))
  237. (number "2" (effects (font (size 1.27 1.27))))
  238. )
  239. )
  240. )
  241. (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  242. (property "Reference" "L" (id 0) (at -1.27 0 90)
  243. (effects (font (size 1.27 1.27)))
  244. )
  245. (property "Value" "L" (id 1) (at 1.905 0 90)
  246. (effects (font (size 1.27 1.27)))
  247. )
  248. (property "Footprint" "" (id 2) (at 0 0 0)
  249. (effects (font (size 1.27 1.27)) hide)
  250. )
  251. (property "Datasheet" "~" (id 3) (at 0 0 0)
  252. (effects (font (size 1.27 1.27)) hide)
  253. )
  254. (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
  255. (effects (font (size 1.27 1.27)) hide)
  256. )
  257. (property "ki_description" "Inductor" (id 5) (at 0 0 0)
  258. (effects (font (size 1.27 1.27)) hide)
  259. )
  260. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
  261. (effects (font (size 1.27 1.27)) hide)
  262. )
  263. (symbol "L_0_1"
  264. (arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
  265. (stroke (width 0) (type default) (color 0 0 0 0))
  266. (fill (type none))
  267. )
  268. (arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
  269. (stroke (width 0) (type default) (color 0 0 0 0))
  270. (fill (type none))
  271. )
  272. (arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
  273. (stroke (width 0) (type default) (color 0 0 0 0))
  274. (fill (type none))
  275. )
  276. (arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
  277. (stroke (width 0) (type default) (color 0 0 0 0))
  278. (fill (type none))
  279. )
  280. )
  281. (symbol "L_1_1"
  282. (pin passive line (at 0 3.81 270) (length 1.27)
  283. (name "1" (effects (font (size 1.27 1.27))))
  284. (number "1" (effects (font (size 1.27 1.27))))
  285. )
  286. (pin passive line (at 0 -3.81 90) (length 1.27)
  287. (name "2" (effects (font (size 1.27 1.27))))
  288. (number "2" (effects (font (size 1.27 1.27))))
  289. )
  290. )
  291. )
  292. (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  293. (property "Reference" "R" (id 0) (at 2.032 0 90)
  294. (effects (font (size 1.27 1.27)))
  295. )
  296. (property "Value" "R" (id 1) (at 0 0 90)
  297. (effects (font (size 1.27 1.27)))
  298. )
  299. (property "Footprint" "" (id 2) (at -1.778 0 90)
  300. (effects (font (size 1.27 1.27)) hide)
  301. )
  302. (property "Datasheet" "~" (id 3) (at 0 0 0)
  303. (effects (font (size 1.27 1.27)) hide)
  304. )
  305. (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
  306. (effects (font (size 1.27 1.27)) hide)
  307. )
  308. (property "ki_description" "Resistor" (id 5) (at 0 0 0)
  309. (effects (font (size 1.27 1.27)) hide)
  310. )
  311. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  312. (effects (font (size 1.27 1.27)) hide)
  313. )
  314. (symbol "R_0_1"
  315. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  316. (stroke (width 0.254) (type default) (color 0 0 0 0))
  317. (fill (type none))
  318. )
  319. )
  320. (symbol "R_1_1"
  321. (pin passive line (at 0 3.81 270) (length 1.27)
  322. (name "~" (effects (font (size 1.27 1.27))))
  323. (number "1" (effects (font (size 1.27 1.27))))
  324. )
  325. (pin passive line (at 0 -3.81 90) (length 1.27)
  326. (name "~" (effects (font (size 1.27 1.27))))
  327. (number "2" (effects (font (size 1.27 1.27))))
  328. )
  329. )
  330. )
  331. (symbol "Greaseweazle:AD8138-ad8138" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  332. (property "Reference" "IC" (id 0) (at -7.62 10.16 0)
  333. (effects (font (size 1.27 1.27)) (justify left))
  334. )
  335. (property "Value" "AD8138-ad8138" (id 1) (at -7.62 -10.16 0)
  336. (effects (font (size 1.27 1.27)) (justify left))
  337. )
  338. (property "Footprint" "agg:SOIC-8" (id 2) (at -7.62 -12.7 0)
  339. (effects (font (size 1.27 1.27)) (justify left) hide)
  340. )
  341. (property "Datasheet" "http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf" (id 3) (at -7.62 -15.24 0)
  342. (effects (font (size 1.27 1.27)) (justify left) hide)
  343. )
  344. (property "Farnell" "2725700" (id 4) (at -7.62 -17.78 0)
  345. (effects (font (size 1.27 1.27)) (justify left) hide)
  346. )
  347. (symbol "AD8138-ad8138_0_0"
  348. (pin input line (at -10.16 -5.08 0) (length 2.54)
  349. (name "-IN" (effects (font (size 1.27 1.27))))
  350. (number "1" (effects (font (size 1.27 1.27))))
  351. )
  352. (pin input line (at -10.16 -2.54 0) (length 2.54)
  353. (name "VOCM" (effects (font (size 1.27 1.27))))
  354. (number "2" (effects (font (size 1.27 1.27))))
  355. )
  356. (pin power_in line (at -10.16 7.62 0) (length 2.54)
  357. (name "V+" (effects (font (size 1.27 1.27))))
  358. (number "3" (effects (font (size 1.27 1.27))))
  359. )
  360. (pin output line (at 10.16 0 180) (length 2.54)
  361. (name "+OUT" (effects (font (size 1.27 1.27))))
  362. (number "4" (effects (font (size 1.27 1.27))))
  363. )
  364. (pin output line (at 10.16 2.54 180) (length 2.54)
  365. (name "-OUT" (effects (font (size 1.27 1.27))))
  366. (number "5" (effects (font (size 1.27 1.27))))
  367. )
  368. (pin power_in line (at -10.16 5.08 0) (length 2.54)
  369. (name "V-" (effects (font (size 1.27 1.27))))
  370. (number "6" (effects (font (size 1.27 1.27))))
  371. )
  372. (pin no_connect line (at 10.16 7.62 180) (length 2.54)
  373. (name "NC" (effects (font (size 1.27 1.27))))
  374. (number "7" (effects (font (size 1.27 1.27))))
  375. )
  376. (pin input line (at -10.16 0 0) (length 2.54)
  377. (name "+IN" (effects (font (size 1.27 1.27))))
  378. (number "8" (effects (font (size 1.27 1.27))))
  379. )
  380. )
  381. (symbol "AD8138-ad8138_0_1"
  382. (rectangle (start -7.62 8.89) (end 7.62 -8.89)
  383. (stroke (width 0) (type default) (color 0 0 0 0))
  384. (fill (type background))
  385. )
  386. )
  387. )
  388. (symbol "Greaseweazle:AD9235BR-ad9235" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  389. (property "Reference" "U" (id 0) (at 2.54 26.67 0)
  390. (effects (font (size 1.27 1.27)))
  391. )
  392. (property "Value" "AD9235BR-ad9235" (id 1) (at 6.35 24.13 0)
  393. (effects (font (size 1.27 1.27)))
  394. )
  395. (property "Footprint" "" (id 2) (at -13.97 0 0)
  396. (effects (font (size 1.27 1.27)) hide)
  397. )
  398. (property "Datasheet" "" (id 3) (at -13.97 0 0)
  399. (effects (font (size 1.27 1.27)) hide)
  400. )
  401. (property "ki_fp_filters" "TSSOP28* LFCSP32*" (id 4) (at 0 0 0)
  402. (effects (font (size 1.27 1.27)) hide)
  403. )
  404. (symbol "AD9235BR-ad9235_1_0"
  405. (polyline
  406. (pts
  407. (xy -12.7 -25.4)
  408. (xy -12.7 22.86)
  409. )
  410. (stroke (width 0) (type default) (color 0 0 0 0))
  411. (fill (type none))
  412. )
  413. (polyline
  414. (pts
  415. (xy -12.7 22.86)
  416. (xy 11.43 22.86)
  417. )
  418. (stroke (width 0) (type default) (color 0 0 0 0))
  419. (fill (type none))
  420. )
  421. (polyline
  422. (pts
  423. (xy 11.43 -25.4)
  424. (xy -12.7 -25.4)
  425. )
  426. (stroke (width 0) (type default) (color 0 0 0 0))
  427. (fill (type none))
  428. )
  429. (polyline
  430. (pts
  431. (xy 11.43 22.86)
  432. (xy 11.43 -25.4)
  433. )
  434. (stroke (width 0) (type default) (color 0 0 0 0))
  435. (fill (type none))
  436. )
  437. (text "AD9235" (at 0 6.35 0)
  438. (effects (font (size 2.54 2.54)))
  439. )
  440. )
  441. (symbol "AD9235BR-ad9235_1_1"
  442. (pin output line (at 13.97 11.43 180) (length 2.54)
  443. (name "OTR" (effects (font (size 1.016 1.016))))
  444. (number "1" (effects (font (size 1.016 1.016))))
  445. )
  446. (pin input line (at -15.24 7.62 0) (length 2.54)
  447. (name "VIN-" (effects (font (size 1.016 1.016))))
  448. (number "10" (effects (font (size 1.016 1.016))))
  449. )
  450. (pin power_in line (at 1.27 -27.94 90) (length 2.54)
  451. (name "AGND@2" (effects (font (size 1.016 1.016))))
  452. (number "11" (effects (font (size 1.016 1.016))))
  453. )
  454. (pin power_in line (at -10.16 25.4 270) (length 2.54)
  455. (name "AVDD@2" (effects (font (size 1.016 1.016))))
  456. (number "12" (effects (font (size 1.016 1.016))))
  457. )
  458. (pin input line (at -15.24 1.27 0) (length 2.54)
  459. (name "CLK" (effects (font (size 1.016 1.016))))
  460. (number "13" (effects (font (size 1.016 1.016))))
  461. )
  462. (pin input line (at -15.24 -3.81 0) (length 2.54)
  463. (name "PDWN" (effects (font (size 1.016 1.016))))
  464. (number "14" (effects (font (size 1.016 1.016))))
  465. )
  466. (pin output line (at 13.97 -22.86 180) (length 2.54)
  467. (name "D0" (effects (font (size 1.016 1.016))))
  468. (number "15" (effects (font (size 1.016 1.016))))
  469. )
  470. (pin output line (at 13.97 -20.32 180) (length 2.54)
  471. (name "D1" (effects (font (size 1.016 1.016))))
  472. (number "16" (effects (font (size 1.016 1.016))))
  473. )
  474. (pin output line (at 13.97 -17.78 180) (length 2.54)
  475. (name "D2" (effects (font (size 1.016 1.016))))
  476. (number "17" (effects (font (size 1.016 1.016))))
  477. )
  478. (pin output line (at 13.97 -15.24 180) (length 2.54)
  479. (name "D3" (effects (font (size 1.016 1.016))))
  480. (number "18" (effects (font (size 1.016 1.016))))
  481. )
  482. (pin output line (at 13.97 -12.7 180) (length 2.54)
  483. (name "D4" (effects (font (size 1.016 1.016))))
  484. (number "19" (effects (font (size 1.016 1.016))))
  485. )
  486. (pin input line (at -15.24 3.81 0) (length 2.54)
  487. (name "MODE" (effects (font (size 1.016 1.016))))
  488. (number "2" (effects (font (size 1.016 1.016))))
  489. )
  490. (pin output line (at 13.97 -10.16 180) (length 2.54)
  491. (name "D5" (effects (font (size 1.016 1.016))))
  492. (number "20" (effects (font (size 1.016 1.016))))
  493. )
  494. (pin output line (at 13.97 -7.62 180) (length 2.54)
  495. (name "D6" (effects (font (size 1.016 1.016))))
  496. (number "21" (effects (font (size 1.016 1.016))))
  497. )
  498. (pin output line (at 13.97 -5.08 180) (length 2.54)
  499. (name "D7" (effects (font (size 1.016 1.016))))
  500. (number "22" (effects (font (size 1.016 1.016))))
  501. )
  502. (pin power_in line (at 3.81 -27.94 90) (length 2.54)
  503. (name "DGND" (effects (font (size 1.016 1.016))))
  504. (number "23" (effects (font (size 1.016 1.016))))
  505. )
  506. (pin power_in line (at -5.08 25.4 270) (length 2.54)
  507. (name "DRVDD" (effects (font (size 1.016 1.016))))
  508. (number "24" (effects (font (size 1.016 1.016))))
  509. )
  510. (pin output line (at 13.97 -2.54 180) (length 2.54)
  511. (name "D8" (effects (font (size 1.016 1.016))))
  512. (number "25" (effects (font (size 1.016 1.016))))
  513. )
  514. (pin output line (at 13.97 0 180) (length 2.54)
  515. (name "D9" (effects (font (size 1.016 1.016))))
  516. (number "26" (effects (font (size 1.016 1.016))))
  517. )
  518. (pin output line (at 13.97 2.54 180) (length 2.54)
  519. (name "D10" (effects (font (size 1.016 1.016))))
  520. (number "27" (effects (font (size 1.016 1.016))))
  521. )
  522. (pin output line (at 13.97 5.08 180) (length 2.54)
  523. (name "D11" (effects (font (size 1.016 1.016))))
  524. (number "28" (effects (font (size 1.016 1.016))))
  525. )
  526. (pin input line (at -15.24 -20.32 0) (length 2.54)
  527. (name "SENSE" (effects (font (size 1.016 1.016))))
  528. (number "3" (effects (font (size 1.016 1.016))))
  529. )
  530. (pin input line (at -15.24 -7.62 0) (length 2.54)
  531. (name "VREF" (effects (font (size 1.016 1.016))))
  532. (number "4" (effects (font (size 1.016 1.016))))
  533. )
  534. (pin output line (at 13.97 13.97 180) (length 2.54)
  535. (name "REFB" (effects (font (size 1.016 1.016))))
  536. (number "5" (effects (font (size 1.016 1.016))))
  537. )
  538. (pin output line (at 13.97 20.32 180) (length 2.54)
  539. (name "REFT" (effects (font (size 1.016 1.016))))
  540. (number "6" (effects (font (size 1.016 1.016))))
  541. )
  542. (pin power_in line (at -7.62 25.4 270) (length 2.54)
  543. (name "AVDD@1" (effects (font (size 1.016 1.016))))
  544. (number "7" (effects (font (size 1.016 1.016))))
  545. )
  546. (pin power_in line (at -1.27 -27.94 90) (length 2.54)
  547. (name "AGND@1" (effects (font (size 1.016 1.016))))
  548. (number "8" (effects (font (size 1.016 1.016))))
  549. )
  550. (pin input line (at -15.24 12.7 0) (length 2.54)
  551. (name "VIN+" (effects (font (size 1.016 1.016))))
  552. (number "9" (effects (font (size 1.016 1.016))))
  553. )
  554. )
  555. )
  556. (symbol "Greaseweazle:CP_Small-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  557. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  558. (effects (font (size 1.27 1.27)) (justify left))
  559. )
  560. (property "Value" "CP_Small-Device" (id 1) (at 0.254 -2.032 0)
  561. (effects (font (size 1.27 1.27)) (justify left))
  562. )
  563. (property "Footprint" "" (id 2) (at 0 0 0)
  564. (effects (font (size 1.27 1.27)) hide)
  565. )
  566. (property "Datasheet" "" (id 3) (at 0 0 0)
  567. (effects (font (size 1.27 1.27)) hide)
  568. )
  569. (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0)
  570. (effects (font (size 1.27 1.27)) hide)
  571. )
  572. (symbol "CP_Small-Device_0_1"
  573. (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
  574. (stroke (width 0) (type default) (color 0 0 0 0))
  575. (fill (type outline))
  576. )
  577. (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
  578. (stroke (width 0) (type default) (color 0 0 0 0))
  579. (fill (type none))
  580. )
  581. (polyline
  582. (pts
  583. (xy -1.27 1.524)
  584. (xy -0.762 1.524)
  585. )
  586. (stroke (width 0) (type default) (color 0 0 0 0))
  587. (fill (type none))
  588. )
  589. (polyline
  590. (pts
  591. (xy -1.016 1.27)
  592. (xy -1.016 1.778)
  593. )
  594. (stroke (width 0) (type default) (color 0 0 0 0))
  595. (fill (type none))
  596. )
  597. )
  598. (symbol "CP_Small-Device_1_1"
  599. (pin passive line (at 0 2.54 270) (length 1.8542)
  600. (name "~" (effects (font (size 1.27 1.27))))
  601. (number "1" (effects (font (size 1.27 1.27))))
  602. )
  603. (pin passive line (at 0 -2.54 90) (length 1.8542)
  604. (name "~" (effects (font (size 1.27 1.27))))
  605. (number "2" (effects (font (size 1.27 1.27))))
  606. )
  607. )
  608. )
  609. (symbol "Greaseweazle:LM2664-tinkerforge" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  610. (property "Reference" "U" (id 0) (at -6.35 6.35 0)
  611. (effects (font (size 1.524 1.524)))
  612. )
  613. (property "Value" "LM2664-tinkerforge" (id 1) (at 0 -6.35 0)
  614. (effects (font (size 1.524 1.524)))
  615. )
  616. (property "Footprint" "" (id 2) (at -19.05 -25.4 0)
  617. (effects (font (size 1.524 1.524)))
  618. )
  619. (property "Datasheet" "" (id 3) (at -19.05 -25.4 0)
  620. (effects (font (size 1.524 1.524)))
  621. )
  622. (symbol "LM2664-tinkerforge_0_1"
  623. (rectangle (start -7.62 5.08) (end 7.62 -5.08)
  624. (stroke (width 0) (type default) (color 0 0 0 0))
  625. (fill (type none))
  626. )
  627. )
  628. (symbol "LM2664-tinkerforge_1_1"
  629. (pin input line (at -11.43 -3.81 0) (length 3.81)
  630. (name "GND" (effects (font (size 1.524 1.524))))
  631. (number "1" (effects (font (size 1.524 1.524))))
  632. )
  633. (pin input line (at 11.43 -3.81 180) (length 3.81)
  634. (name "OUT" (effects (font (size 1.524 1.524))))
  635. (number "2" (effects (font (size 1.524 1.524))))
  636. )
  637. (pin input line (at 11.43 0 180) (length 3.81)
  638. (name "CAP-" (effects (font (size 1.524 1.524))))
  639. (number "3" (effects (font (size 1.524 1.524))))
  640. )
  641. (pin input line (at -11.43 0 0) (length 3.81)
  642. (name "nSD" (effects (font (size 1.524 1.524))))
  643. (number "4" (effects (font (size 1.524 1.524))))
  644. )
  645. (pin input line (at -11.43 3.81 0) (length 3.81)
  646. (name "V+" (effects (font (size 1.524 1.524))))
  647. (number "5" (effects (font (size 1.524 1.524))))
  648. )
  649. (pin input line (at 11.43 3.81 180) (length 3.81)
  650. (name "CAP+" (effects (font (size 1.524 1.524))))
  651. (number "6" (effects (font (size 1.524 1.524))))
  652. )
  653. )
  654. )
  655. (symbol "Oscillator:ASCO" (in_bom yes) (on_board yes)
  656. (property "Reference" "X" (id 0) (at -7.62 6.35 0)
  657. (effects (font (size 1.27 1.27)) (justify left))
  658. )
  659. (property "Value" "ASCO" (id 1) (at 1.27 -6.35 0)
  660. (effects (font (size 1.27 1.27)) (justify left))
  661. )
  662. (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm" (id 2) (at 2.54 -8.89 0)
  663. (effects (font (size 1.27 1.27)) hide)
  664. )
  665. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at -5.715 3.175 0)
  666. (effects (font (size 1.27 1.27)) hide)
  667. )
  668. (property "ki_keywords" "Crystal Clock Oscillator" (id 4) (at 0 0 0)
  669. (effects (font (size 1.27 1.27)) hide)
  670. )
  671. (property "ki_description" "Crystal Clock Oscillator, Abracon ASCO" (id 5) (at 0 0 0)
  672. (effects (font (size 1.27 1.27)) hide)
  673. )
  674. (property "ki_fp_filters" "Oscillator*Abracon*ASCO*1.6x1.2mm*" (id 6) (at 0 0 0)
  675. (effects (font (size 1.27 1.27)) hide)
  676. )
  677. (symbol "ASCO_0_1"
  678. (rectangle (start -7.62 5.08) (end 7.62 -5.08)
  679. (stroke (width 0.254) (type default) (color 0 0 0 0))
  680. (fill (type background))
  681. )
  682. (polyline
  683. (pts
  684. (xy -5.715 2.54)
  685. (xy -5.08 2.54)
  686. (xy -5.08 3.81)
  687. (xy -4.445 3.81)
  688. (xy -4.445 2.54)
  689. (xy -3.81 2.54)
  690. (xy -3.81 3.81)
  691. (xy -3.175 3.81)
  692. (xy -3.175 2.54)
  693. )
  694. (stroke (width 0) (type default) (color 0 0 0 0))
  695. (fill (type none))
  696. )
  697. )
  698. (symbol "ASCO_1_1"
  699. (pin input line (at -10.16 0 0) (length 2.54)
  700. (name "Tri-State" (effects (font (size 1.27 1.27))))
  701. (number "1" (effects (font (size 1.27 1.27))))
  702. )
  703. (pin power_in line (at 0 -7.62 90) (length 2.54)
  704. (name "GND" (effects (font (size 1.27 1.27))))
  705. (number "2" (effects (font (size 1.27 1.27))))
  706. )
  707. (pin output line (at 10.16 0 180) (length 2.54)
  708. (name "OUT" (effects (font (size 1.27 1.27))))
  709. (number "3" (effects (font (size 1.27 1.27))))
  710. )
  711. (pin power_in line (at 0 7.62 270) (length 2.54)
  712. (name "VDD" (effects (font (size 1.27 1.27))))
  713. (number "4" (effects (font (size 1.27 1.27))))
  714. )
  715. )
  716. )
  717. (symbol "power:+3.3VADC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  718. (property "Reference" "#PWR" (id 0) (at 3.81 -1.27 0)
  719. (effects (font (size 1.27 1.27)) hide)
  720. )
  721. (property "Value" "+3.3VADC" (id 1) (at 0 2.54 0)
  722. (effects (font (size 1.27 1.27)))
  723. )
  724. (property "Footprint" "" (id 2) (at 0 0 0)
  725. (effects (font (size 1.27 1.27)) hide)
  726. )
  727. (property "Datasheet" "" (id 3) (at 0 0 0)
  728. (effects (font (size 1.27 1.27)) hide)
  729. )
  730. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  731. (effects (font (size 1.27 1.27)) hide)
  732. )
  733. (property "ki_description" "Power symbol creates a global label with name \"+3.3VADC\"" (id 5) (at 0 0 0)
  734. (effects (font (size 1.27 1.27)) hide)
  735. )
  736. (symbol "+3.3VADC_0_0"
  737. (pin power_in line (at 0 0 90) (length 0) hide
  738. (name "+3.3VADC" (effects (font (size 1.27 1.27))))
  739. (number "1" (effects (font (size 1.27 1.27))))
  740. )
  741. )
  742. (symbol "+3.3VADC_0_1"
  743. (polyline
  744. (pts
  745. (xy -0.762 1.27)
  746. (xy 0 2.54)
  747. )
  748. (stroke (width 0) (type default) (color 0 0 0 0))
  749. (fill (type none))
  750. )
  751. (polyline
  752. (pts
  753. (xy 0 0)
  754. (xy 0 2.54)
  755. )
  756. (stroke (width 0) (type default) (color 0 0 0 0))
  757. (fill (type none))
  758. )
  759. (polyline
  760. (pts
  761. (xy 0 2.54)
  762. (xy 0.762 1.27)
  763. )
  764. (stroke (width 0) (type default) (color 0 0 0 0))
  765. (fill (type none))
  766. )
  767. )
  768. )
  769. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  770. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  771. (effects (font (size 1.27 1.27)) hide)
  772. )
  773. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  774. (effects (font (size 1.27 1.27)))
  775. )
  776. (property "Footprint" "" (id 2) (at 0 0 0)
  777. (effects (font (size 1.27 1.27)) hide)
  778. )
  779. (property "Datasheet" "" (id 3) (at 0 0 0)
  780. (effects (font (size 1.27 1.27)) hide)
  781. )
  782. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  783. (effects (font (size 1.27 1.27)) hide)
  784. )
  785. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  786. (effects (font (size 1.27 1.27)) hide)
  787. )
  788. (symbol "+3V3_0_1"
  789. (polyline
  790. (pts
  791. (xy -0.762 1.27)
  792. (xy 0 2.54)
  793. )
  794. (stroke (width 0) (type default) (color 0 0 0 0))
  795. (fill (type none))
  796. )
  797. (polyline
  798. (pts
  799. (xy 0 0)
  800. (xy 0 2.54)
  801. )
  802. (stroke (width 0) (type default) (color 0 0 0 0))
  803. (fill (type none))
  804. )
  805. (polyline
  806. (pts
  807. (xy 0 2.54)
  808. (xy 0.762 1.27)
  809. )
  810. (stroke (width 0) (type default) (color 0 0 0 0))
  811. (fill (type none))
  812. )
  813. )
  814. (symbol "+3V3_1_1"
  815. (pin power_in line (at 0 0 90) (length 0) hide
  816. (name "+3V3" (effects (font (size 1.27 1.27))))
  817. (number "1" (effects (font (size 1.27 1.27))))
  818. )
  819. )
  820. )
  821. (symbol "power:-3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  822. (property "Reference" "#PWR" (id 0) (at 0 2.54 0)
  823. (effects (font (size 1.27 1.27)) hide)
  824. )
  825. (property "Value" "-3V3" (id 1) (at 0 3.81 0)
  826. (effects (font (size 1.27 1.27)))
  827. )
  828. (property "Footprint" "" (id 2) (at 0 0 0)
  829. (effects (font (size 1.27 1.27)) hide)
  830. )
  831. (property "Datasheet" "" (id 3) (at 0 0 0)
  832. (effects (font (size 1.27 1.27)) hide)
  833. )
  834. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  835. (effects (font (size 1.27 1.27)) hide)
  836. )
  837. (property "ki_description" "Power symbol creates a global label with name \"-3V3\"" (id 5) (at 0 0 0)
  838. (effects (font (size 1.27 1.27)) hide)
  839. )
  840. (symbol "-3V3_0_0"
  841. (pin power_in line (at 0 0 90) (length 0) hide
  842. (name "-3V3" (effects (font (size 1.27 1.27))))
  843. (number "1" (effects (font (size 1.27 1.27))))
  844. )
  845. )
  846. (symbol "-3V3_0_1"
  847. (polyline
  848. (pts
  849. (xy 0 0)
  850. (xy 0 1.27)
  851. (xy 0.762 1.27)
  852. (xy 0 2.54)
  853. (xy -0.762 1.27)
  854. (xy 0 1.27)
  855. )
  856. (stroke (width 0) (type default) (color 0 0 0 0))
  857. (fill (type outline))
  858. )
  859. )
  860. )
  861. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  862. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  863. (effects (font (size 1.27 1.27)) hide)
  864. )
  865. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  866. (effects (font (size 1.27 1.27)))
  867. )
  868. (property "Footprint" "" (id 2) (at 0 0 0)
  869. (effects (font (size 1.27 1.27)) hide)
  870. )
  871. (property "Datasheet" "" (id 3) (at 0 0 0)
  872. (effects (font (size 1.27 1.27)) hide)
  873. )
  874. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  875. (effects (font (size 1.27 1.27)) hide)
  876. )
  877. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  878. (effects (font (size 1.27 1.27)) hide)
  879. )
  880. (symbol "GND_0_1"
  881. (polyline
  882. (pts
  883. (xy 0 0)
  884. (xy 0 -1.27)
  885. (xy 1.27 -1.27)
  886. (xy 0 -2.54)
  887. (xy -1.27 -1.27)
  888. (xy 0 -1.27)
  889. )
  890. (stroke (width 0) (type default) (color 0 0 0 0))
  891. (fill (type none))
  892. )
  893. )
  894. (symbol "GND_1_1"
  895. (pin power_in line (at 0 0 270) (length 0) hide
  896. (name "GND" (effects (font (size 1.27 1.27))))
  897. (number "1" (effects (font (size 1.27 1.27))))
  898. )
  899. )
  900. )
  901. (symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  902. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  903. (effects (font (size 1.27 1.27)) hide)
  904. )
  905. (property "Value" "GNDA" (id 1) (at 0 -3.81 0)
  906. (effects (font (size 1.27 1.27)))
  907. )
  908. (property "Footprint" "" (id 2) (at 0 0 0)
  909. (effects (font (size 1.27 1.27)) hide)
  910. )
  911. (property "Datasheet" "" (id 3) (at 0 0 0)
  912. (effects (font (size 1.27 1.27)) hide)
  913. )
  914. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  915. (effects (font (size 1.27 1.27)) hide)
  916. )
  917. (property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0)
  918. (effects (font (size 1.27 1.27)) hide)
  919. )
  920. (symbol "GNDA_0_1"
  921. (polyline
  922. (pts
  923. (xy 0 0)
  924. (xy 0 -1.27)
  925. (xy 1.27 -1.27)
  926. (xy 0 -2.54)
  927. (xy -1.27 -1.27)
  928. (xy 0 -1.27)
  929. )
  930. (stroke (width 0) (type default) (color 0 0 0 0))
  931. (fill (type none))
  932. )
  933. )
  934. (symbol "GNDA_1_1"
  935. (pin power_in line (at 0 0 270) (length 0) hide
  936. (name "GNDA" (effects (font (size 1.27 1.27))))
  937. (number "1" (effects (font (size 1.27 1.27))))
  938. )
  939. )
  940. )
  941. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  942. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  943. (effects (font (size 1.27 1.27)) hide)
  944. )
  945. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  946. (effects (font (size 1.27 1.27)))
  947. )
  948. (property "Footprint" "" (id 2) (at 0 0 0)
  949. (effects (font (size 1.27 1.27)) hide)
  950. )
  951. (property "Datasheet" "~" (id 3) (at 0 0 0)
  952. (effects (font (size 1.27 1.27)) hide)
  953. )
  954. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  955. (effects (font (size 1.27 1.27)) hide)
  956. )
  957. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  958. (effects (font (size 1.27 1.27)) hide)
  959. )
  960. (symbol "PWR_FLAG_0_0"
  961. (pin power_out line (at 0 0 90) (length 0)
  962. (name "pwr" (effects (font (size 1.27 1.27))))
  963. (number "1" (effects (font (size 1.27 1.27))))
  964. )
  965. )
  966. (symbol "PWR_FLAG_0_1"
  967. (polyline
  968. (pts
  969. (xy 0 0)
  970. (xy 0 1.27)
  971. (xy -1.016 1.905)
  972. (xy 0 2.54)
  973. (xy 1.016 1.905)
  974. (xy 0 1.27)
  975. )
  976. (stroke (width 0) (type default) (color 0 0 0 0))
  977. (fill (type none))
  978. )
  979. )
  980. )
  981. )
  982. (junction (at 158.75 35.56) (diameter 0) (color 0 0 0 0)
  983. (uuid 04b6a4c7-0ce1-47dd-b426-8e85922c6821)
  984. )
  985. (junction (at 158.75 114.3) (diameter 0) (color 0 0 0 0)
  986. (uuid 06b2d4dd-39e4-432a-bcb6-0af4ebf45ce3)
  987. )
  988. (junction (at 74.93 143.51) (diameter 0) (color 0 0 0 0)
  989. (uuid 07cc6e36-1d17-4649-b36a-96f15df150e0)
  990. )
  991. (junction (at 105.41 44.45) (diameter 0) (color 0 0 0 0)
  992. (uuid 09309782-347a-4592-bdcb-6cb314dd8059)
  993. )
  994. (junction (at 63.5 143.51) (diameter 0) (color 0 0 0 0)
  995. (uuid 105efbbb-e7c8-4982-b1bd-3746402663da)
  996. )
  997. (junction (at 109.22 143.51) (diameter 0) (color 0 0 0 0)
  998. (uuid 17e3ddf1-cf8b-407d-a1aa-f33cf01d2c0b)
  999. )
  1000. (junction (at 256.54 44.45) (diameter 0) (color 0 0 0 0)
  1001. (uuid 1c6e6764-204a-49db-8662-c2dd21affd48)
  1002. )
  1003. (junction (at 90.17 44.45) (diameter 0) (color 0 0 0 0)
  1004. (uuid 212b66ef-3c6b-4ca5-8b7e-9638373b42c0)
  1005. )
  1006. (junction (at 156.21 121.92) (diameter 0) (color 0 0 0 0)
  1007. (uuid 24eb8c31-67db-4be2-b0f2-278e7dbe5402)
  1008. )
  1009. (junction (at 208.28 36.83) (diameter 0) (color 0 0 0 0)
  1010. (uuid 31764a6f-b6a9-47ee-8226-47d6f3ab5399)
  1011. )
  1012. (junction (at 156.21 43.18) (diameter 0) (color 0 0 0 0)
  1013. (uuid 39a8e1c7-d388-4939-aad8-668b2e08967c)
  1014. )
  1015. (junction (at 267.97 44.45) (diameter 0) (color 0 0 0 0)
  1016. (uuid 3c21e653-0dac-4514-b58c-db3fc663891f)
  1017. )
  1018. (junction (at 90.17 123.19) (diameter 0) (color 0 0 0 0)
  1019. (uuid 3cf7a420-a773-4d82-b128-02b10111dbfb)
  1020. )
  1021. (junction (at 74.93 64.77) (diameter 0) (color 0 0 0 0)
  1022. (uuid 3e2cc1a0-a64b-4c3a-84fa-0d52a12b8060)
  1023. )
  1024. (junction (at 90.17 128.27) (diameter 0) (color 0 0 0 0)
  1025. (uuid 3f524cea-979c-4412-99ab-e0571074e25f)
  1026. )
  1027. (junction (at 46.99 57.15) (diameter 0) (color 0 0 0 0)
  1028. (uuid 4966b391-5a0c-4cb9-99ae-1176e797815b)
  1029. )
  1030. (junction (at 105.41 123.19) (diameter 0) (color 0 0 0 0)
  1031. (uuid 4cb1a32d-aff2-4768-8d4f-bcc5faf54054)
  1032. )
  1033. (junction (at 148.59 114.3) (diameter 0) (color 0 0 0 0)
  1034. (uuid 4e85542c-39af-4674-855f-f4cfb99a94c9)
  1035. )
  1036. (junction (at 124.46 163.83) (diameter 0) (color 0 0 0 0)
  1037. (uuid 4efd0b3d-92b4-4527-b56a-a903181eb3e6)
  1038. )
  1039. (junction (at 148.59 43.18) (diameter 0) (color 0 0 0 0)
  1040. (uuid 4fe2d384-3d38-424d-a7b1-c54905a9a9bd)
  1041. )
  1042. (junction (at 124.46 85.09) (diameter 0) (color 0 0 0 0)
  1043. (uuid 604a047b-ed4e-44d6-a495-0780cb6995b7)
  1044. )
  1045. (junction (at 102.87 105.41) (diameter 0) (color 0 0 0 0)
  1046. (uuid 65418b8c-486c-49c0-af86-17cd71318f2c)
  1047. )
  1048. (junction (at 243.84 44.45) (diameter 0) (color 0 0 0 0)
  1049. (uuid 699c9984-4762-4608-889c-ef6d70220782)
  1050. )
  1051. (junction (at 102.87 49.53) (diameter 0) (color 0 0 0 0)
  1052. (uuid 8772c2d7-c9e3-4559-9dff-f72fb2489ed5)
  1053. )
  1054. (junction (at 46.99 46.99) (diameter 0) (color 0 0 0 0)
  1055. (uuid 97fca2c2-d53e-4e3a-8ec9-eddf76102e52)
  1056. )
  1057. (junction (at 193.04 92.71) (diameter 0) (color 0 0 0 0)
  1058. (uuid a479f594-cb90-4d67-a22e-61119f359192)
  1059. )
  1060. (junction (at 148.59 35.56) (diameter 0) (color 0 0 0 0)
  1061. (uuid ad4b47d9-db55-4f1a-b242-8dec583b8b9f)
  1062. )
  1063. (junction (at 115.57 30.48) (diameter 0) (color 0 0 0 0)
  1064. (uuid bb60fd5b-33f6-4857-b78a-2f1c48f4966d)
  1065. )
  1066. (junction (at 102.87 26.67) (diameter 0) (color 0 0 0 0)
  1067. (uuid c355145a-d83a-438e-ad0b-57124bb10ec7)
  1068. )
  1069. (junction (at 208.28 40.64) (diameter 0) (color 0 0 0 0)
  1070. (uuid c618d995-8ff9-424a-8245-0966b93f843e)
  1071. )
  1072. (junction (at 46.99 125.73) (diameter 0) (color 0 0 0 0)
  1073. (uuid d1fd1eb9-fc57-432b-9724-4b6395d0aca9)
  1074. )
  1075. (junction (at 203.2 92.71) (diameter 0) (color 0 0 0 0)
  1076. (uuid d4187ae4-8c4a-4ee8-9878-db9c27a21bb0)
  1077. )
  1078. (junction (at 198.12 44.45) (diameter 0) (color 0 0 0 0)
  1079. (uuid d7d34096-95cb-4e33-a451-6fce0d48a866)
  1080. )
  1081. (junction (at 102.87 128.27) (diameter 0) (color 0 0 0 0)
  1082. (uuid da87d9f2-e2d2-4de4-b1c4-835dcb073cb1)
  1083. )
  1084. (junction (at 109.22 64.77) (diameter 0) (color 0 0 0 0)
  1085. (uuid db131bb7-ba8f-4b45-a095-e256b17df503)
  1086. )
  1087. (junction (at 194.31 92.71) (diameter 0) (color 0 0 0 0)
  1088. (uuid e6a5d661-e10f-49ab-b328-7bd8e0967d1b)
  1089. )
  1090. (junction (at 148.59 121.92) (diameter 0) (color 0 0 0 0)
  1091. (uuid e81b9b60-3ed8-4254-acd8-6614ec9aeb5d)
  1092. )
  1093. (junction (at 115.57 109.22) (diameter 0) (color 0 0 0 0)
  1094. (uuid eaac60f2-daaf-442e-bf07-0a370bd12b1e)
  1095. )
  1096. (junction (at 46.99 135.89) (diameter 0) (color 0 0 0 0)
  1097. (uuid eadf4190-1e08-4fbd-b45b-c82b9fe484a6)
  1098. )
  1099. (junction (at 63.5 64.77) (diameter 0) (color 0 0 0 0)
  1100. (uuid ebd18d2c-4840-42ea-ac2b-2cc99c4de81b)
  1101. )
  1102. (junction (at 90.17 49.53) (diameter 0) (color 0 0 0 0)
  1103. (uuid f46ddd0e-ceba-48b1-a7e6-c1a340811f37)
  1104. )
  1105. (junction (at 180.34 92.71) (diameter 0) (color 0 0 0 0)
  1106. (uuid ff26b2b3-54c1-4247-b5f9-18084af407f4)
  1107. )
  1108. (no_connect (at 238.76 135.89) (uuid 075dfb45-730b-400d-9419-522cf0a8b9a2))
  1109. (no_connect (at 139.7 45.72) (uuid 38c3f28a-91e2-4455-bd0b-be6c9eae057f))
  1110. (no_connect (at 139.7 124.46) (uuid 90e2ba75-6a82-43d5-b39a-bd7fbb55bc04))
  1111. (bus_entry (at 144.78 77.47) (size 2.54 2.54)
  1112. (stroke (width 0) (type default) (color 0 0 0 0))
  1113. (uuid 04d42d64-27a1-43a6-87bb-3090ea9cc9ad)
  1114. )
  1115. (bus_entry (at 144.78 62.23) (size 2.54 2.54)
  1116. (stroke (width 0) (type default) (color 0 0 0 0))
  1117. (uuid 090b784a-f725-44e7-aa9c-1da916a3d99b)
  1118. )
  1119. (bus_entry (at 144.78 74.93) (size 2.54 2.54)
  1120. (stroke (width 0) (type default) (color 0 0 0 0))
  1121. (uuid 1bbe2e16-a66d-4e9d-aa24-4234b1df6c54)
  1122. )
  1123. (bus_entry (at 144.78 138.43) (size 2.54 2.54)
  1124. (stroke (width 0) (type default) (color 0 0 0 0))
  1125. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c307280e)
  1126. )
  1127. (bus_entry (at 144.78 140.97) (size 2.54 2.54)
  1128. (stroke (width 0) (type default) (color 0 0 0 0))
  1129. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c307280f)
  1130. )
  1131. (bus_entry (at 144.78 143.51) (size 2.54 2.54)
  1132. (stroke (width 0) (type default) (color 0 0 0 0))
  1133. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072810)
  1134. )
  1135. (bus_entry (at 144.78 151.13) (size 2.54 2.54)
  1136. (stroke (width 0) (type default) (color 0 0 0 0))
  1137. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072811)
  1138. )
  1139. (bus_entry (at 144.78 153.67) (size 2.54 2.54)
  1140. (stroke (width 0) (type default) (color 0 0 0 0))
  1141. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072812)
  1142. )
  1143. (bus_entry (at 144.78 156.21) (size 2.54 2.54)
  1144. (stroke (width 0) (type default) (color 0 0 0 0))
  1145. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072813)
  1146. )
  1147. (bus_entry (at 144.78 158.75) (size 2.54 2.54)
  1148. (stroke (width 0) (type default) (color 0 0 0 0))
  1149. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072814)
  1150. )
  1151. (bus_entry (at 144.78 130.81) (size 2.54 2.54)
  1152. (stroke (width 0) (type default) (color 0 0 0 0))
  1153. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072815)
  1154. )
  1155. (bus_entry (at 144.78 133.35) (size 2.54 2.54)
  1156. (stroke (width 0) (type default) (color 0 0 0 0))
  1157. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072816)
  1158. )
  1159. (bus_entry (at 144.78 135.89) (size 2.54 2.54)
  1160. (stroke (width 0) (type default) (color 0 0 0 0))
  1161. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072817)
  1162. )
  1163. (bus_entry (at 144.78 148.59) (size 2.54 2.54)
  1164. (stroke (width 0) (type default) (color 0 0 0 0))
  1165. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072818)
  1166. )
  1167. (bus_entry (at 144.78 146.05) (size 2.54 2.54)
  1168. (stroke (width 0) (type default) (color 0 0 0 0))
  1169. (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072819)
  1170. )
  1171. (bus_entry (at 144.78 67.31) (size 2.54 2.54)
  1172. (stroke (width 0) (type default) (color 0 0 0 0))
  1173. (uuid 1cf529b3-bf01-454c-8393-bf700548a338)
  1174. )
  1175. (bus_entry (at 144.78 80.01) (size 2.54 2.54)
  1176. (stroke (width 0) (type default) (color 0 0 0 0))
  1177. (uuid 3ffff2a0-935b-4116-bbb5-4ed5578179b9)
  1178. )
  1179. (bus_entry (at 144.78 52.07) (size 2.54 2.54)
  1180. (stroke (width 0) (type default) (color 0 0 0 0))
  1181. (uuid 485002a9-9963-4d9d-a244-7127efde70fe)
  1182. )
  1183. (bus_entry (at 144.78 54.61) (size 2.54 2.54)
  1184. (stroke (width 0) (type default) (color 0 0 0 0))
  1185. (uuid 7d2128b3-5869-4d24-8a17-f303400e7778)
  1186. )
  1187. (bus_entry (at 144.78 64.77) (size 2.54 2.54)
  1188. (stroke (width 0) (type default) (color 0 0 0 0))
  1189. (uuid ae45ca91-ca6e-4873-87fe-1e65fa5580f9)
  1190. )
  1191. (bus_entry (at 144.78 72.39) (size 2.54 2.54)
  1192. (stroke (width 0) (type default) (color 0 0 0 0))
  1193. (uuid b0622cdc-9cf9-4d01-ae33-51f85ce2f21f)
  1194. )
  1195. (bus_entry (at 144.78 57.15) (size 2.54 2.54)
  1196. (stroke (width 0) (type default) (color 0 0 0 0))
  1197. (uuid c8c5de88-4805-4537-a7b8-c6c75d24c14a)
  1198. )
  1199. (bus_entry (at 144.78 59.69) (size 2.54 2.54)
  1200. (stroke (width 0) (type default) (color 0 0 0 0))
  1201. (uuid e0ff4320-f8c4-41cd-9752-fca265238368)
  1202. )
  1203. (bus_entry (at 144.78 69.85) (size 2.54 2.54)
  1204. (stroke (width 0) (type default) (color 0 0 0 0))
  1205. (uuid eeebce48-da3e-40ce-8071-703025c7a239)
  1206. )
  1207. (wire (pts (xy 107.95 26.67) (xy 107.95 53.34))
  1208. (stroke (width 0) (type default) (color 0 0 0 0))
  1209. (uuid 003ebd75-7776-4b30-9066-77e0adf921a5)
  1210. )
  1211. (wire (pts (xy 105.41 139.7) (xy 110.49 139.7))
  1212. (stroke (width 0) (type default) (color 0 0 0 0))
  1213. (uuid 01243e97-8b06-431a-aa8e-7c55932f4f9b)
  1214. )
  1215. (wire (pts (xy 120.65 31.75) (xy 120.65 24.13))
  1216. (stroke (width 0) (type default) (color 0 0 0 0))
  1217. (uuid 01724a9a-1814-4f8d-8a88-0cec697e5066)
  1218. )
  1219. (wire (pts (xy 68.58 43.18) (xy 57.15 43.18))
  1220. (stroke (width 0) (type default) (color 0 0 0 0))
  1221. (uuid 0283dd04-2d16-4bbd-b687-8d2fa0b4c43f)
  1222. )
  1223. (wire (pts (xy 148.59 121.92) (xy 156.21 121.92))
  1224. (stroke (width 0) (type default) (color 0 0 0 0))
  1225. (uuid 02bcb57b-02a3-4713-9a04-3c161f58c05b)
  1226. )
  1227. (wire (pts (xy 93.98 128.27) (xy 90.17 128.27))
  1228. (stroke (width 0) (type default) (color 0 0 0 0))
  1229. (uuid 03f47f27-ece8-40d9-8787-e42323816c50)
  1230. )
  1231. (wire (pts (xy 46.99 27.94) (xy 48.26 27.94))
  1232. (stroke (width 0) (type default) (color 0 0 0 0))
  1233. (uuid 04b2b388-cefc-47c1-8c4c-575e3920c9b9)
  1234. )
  1235. (wire (pts (xy 243.84 53.34) (xy 243.84 57.15))
  1236. (stroke (width 0) (type default) (color 0 0 0 0))
  1237. (uuid 05191a4e-c865-4ad5-893c-bd49e03261ca)
  1238. )
  1239. (wire (pts (xy 203.2 92.71) (xy 203.2 88.9))
  1240. (stroke (width 0) (type default) (color 0 0 0 0))
  1241. (uuid 063dd4a5-4309-4260-ad09-c21e2e9f1b44)
  1242. )
  1243. (wire (pts (xy 64.77 40.64) (xy 64.77 36.83))
  1244. (stroke (width 0) (type default) (color 0 0 0 0))
  1245. (uuid 074e753c-0769-4746-b381-a188f9ccf112)
  1246. )
  1247. (wire (pts (xy 139.7 43.18) (xy 148.59 43.18))
  1248. (stroke (width 0) (type default) (color 0 0 0 0))
  1249. (uuid 075c40b6-7a0f-4446-8d81-60b8a82409d7)
  1250. )
  1251. (wire (pts (xy 274.32 44.45) (xy 267.97 44.45))
  1252. (stroke (width 0) (type default) (color 0 0 0 0))
  1253. (uuid 0785df82-be98-41a2-85fd-dd859970c401)
  1254. )
  1255. (wire (pts (xy 105.41 123.19) (xy 110.49 123.19))
  1256. (stroke (width 0) (type default) (color 0 0 0 0))
  1257. (uuid 092c71db-f94f-46b0-9d68-b413b8a31808)
  1258. )
  1259. (wire (pts (xy 208.28 36.83) (xy 208.28 35.56))
  1260. (stroke (width 0) (type default) (color 0 0 0 0))
  1261. (uuid 094967e9-1eab-490e-8dc1-788e59d5d863)
  1262. )
  1263. (wire (pts (xy 55.88 62.23) (xy 90.17 62.23))
  1264. (stroke (width 0) (type default) (color 0 0 0 0))
  1265. (uuid 096a29d4-9b4a-4211-8d0c-081565bdba5a)
  1266. )
  1267. (wire (pts (xy 120.65 110.49) (xy 120.65 102.87))
  1268. (stroke (width 0) (type default) (color 0 0 0 0))
  1269. (uuid 0bf041c5-beee-47c5-b347-763fe47bcb0d)
  1270. )
  1271. (wire (pts (xy 90.17 106.68) (xy 55.88 106.68))
  1272. (stroke (width 0) (type default) (color 0 0 0 0))
  1273. (uuid 0ef5fcda-f018-4ff0-84ac-def75fee4037)
  1274. )
  1275. (wire (pts (xy 148.59 35.56) (xy 158.75 35.56))
  1276. (stroke (width 0) (type default) (color 0 0 0 0))
  1277. (uuid 0f3884ea-c028-4caf-b62a-013520c8f8ca)
  1278. )
  1279. (wire (pts (xy 115.57 110.49) (xy 115.57 109.22))
  1280. (stroke (width 0) (type default) (color 0 0 0 0))
  1281. (uuid 0ffc638c-04ba-4267-8b0b-11eca3a861d9)
  1282. )
  1283. (wire (pts (xy 158.75 35.56) (xy 168.91 35.56))
  1284. (stroke (width 0) (type default) (color 0 0 0 0))
  1285. (uuid 10325e04-82f4-4c9a-abb1-2d08d4429483)
  1286. )
  1287. (wire (pts (xy 105.41 132.08) (xy 105.41 123.19))
  1288. (stroke (width 0) (type default) (color 0 0 0 0))
  1289. (uuid 10837679-f5bd-4237-8ad2-e94aa2f454b8)
  1290. )
  1291. (wire (pts (xy 90.17 45.72) (xy 90.17 44.45))
  1292. (stroke (width 0) (type default) (color 0 0 0 0))
  1293. (uuid 120be663-7036-4f23-ad6b-916e766bf8b7)
  1294. )
  1295. (bus (pts (xy 147.32 64.77) (xy 147.32 67.31))
  1296. (stroke (width 0) (type default) (color 0 0 0 0))
  1297. (uuid 16391842-41f9-43e1-8a7c-ea3cbfd751ac)
  1298. )
  1299. (wire (pts (xy 109.22 64.77) (xy 110.49 64.77))
  1300. (stroke (width 0) (type default) (color 0 0 0 0))
  1301. (uuid 176078c5-9a75-45b5-8770-35b8822eded8)
  1302. )
  1303. (bus (pts (xy 147.32 130.81) (xy 147.32 133.35))
  1304. (stroke (width 0) (type default) (color 0 0 0 0))
  1305. (uuid 184266a9-d3e0-40de-a326-44f17d90c856)
  1306. )
  1307. (wire (pts (xy 105.41 60.96) (xy 110.49 60.96))
  1308. (stroke (width 0) (type default) (color 0 0 0 0))
  1309. (uuid 1a160505-4c1d-471a-8fb4-8946463af79a)
  1310. )
  1311. (wire (pts (xy 243.84 36.83) (xy 246.38 36.83))
  1312. (stroke (width 0) (type default) (color 0 0 0 0))
  1313. (uuid 1b70b768-feae-450e-98a2-49460d219153)
  1314. )
  1315. (wire (pts (xy 74.93 151.13) (xy 74.93 148.59))
  1316. (stroke (width 0) (type default) (color 0 0 0 0))
  1317. (uuid 1cc70879-6f01-408e-ba5d-f68f68dec7a5)
  1318. )
  1319. (wire (pts (xy 148.59 43.18) (xy 156.21 43.18))
  1320. (stroke (width 0) (type default) (color 0 0 0 0))
  1321. (uuid 1cf571b4-3091-4a62-a8d2-ee483379101a)
  1322. )
  1323. (wire (pts (xy 63.5 143.51) (xy 74.93 143.51))
  1324. (stroke (width 0) (type default) (color 0 0 0 0))
  1325. (uuid 1d7f6659-17f0-4eca-be59-122f1c9aeac8)
  1326. )
  1327. (wire (pts (xy 105.41 44.45) (xy 101.6 44.45))
  1328. (stroke (width 0) (type default) (color 0 0 0 0))
  1329. (uuid 1fe42478-1a84-48d0-b961-5566d4efdd45)
  1330. )
  1331. (wire (pts (xy 63.5 50.8) (xy 68.58 50.8))
  1332. (stroke (width 0) (type default) (color 0 0 0 0))
  1333. (uuid 2409f17c-91c7-4cf5-a8d0-aba1d45e281f)
  1334. )
  1335. (wire (pts (xy 127 85.09) (xy 124.46 85.09))
  1336. (stroke (width 0) (type default) (color 0 0 0 0))
  1337. (uuid 244842df-0367-4b87-bfb1-c10040a28854)
  1338. )
  1339. (wire (pts (xy 139.7 135.89) (xy 144.78 135.89))
  1340. (stroke (width 0) (type default) (color 0 0 0 0))
  1341. (uuid 244b3608-3661-44ff-a8a7-61abda679437)
  1342. )
  1343. (wire (pts (xy 139.7 69.85) (xy 144.78 69.85))
  1344. (stroke (width 0) (type default) (color 0 0 0 0))
  1345. (uuid 260d1a0f-5419-49ac-ab26-ad818affc966)
  1346. )
  1347. (wire (pts (xy 102.87 147.32) (xy 102.87 128.27))
  1348. (stroke (width 0) (type default) (color 0 0 0 0))
  1349. (uuid 26dc74c9-e910-46d3-abdf-77f907378c43)
  1350. )
  1351. (wire (pts (xy 233.68 36.83) (xy 238.76 36.83))
  1352. (stroke (width 0) (type default) (color 0 0 0 0))
  1353. (uuid 26e568b0-496a-4ca5-aacc-0f45742cd00d)
  1354. )
  1355. (wire (pts (xy 139.7 138.43) (xy 144.78 138.43))
  1356. (stroke (width 0) (type default) (color 0 0 0 0))
  1357. (uuid 275bbd3c-603b-4e4e-ab1b-f39df69645c9)
  1358. )
  1359. (wire (pts (xy 74.93 143.51) (xy 109.22 143.51))
  1360. (stroke (width 0) (type default) (color 0 0 0 0))
  1361. (uuid 27a70580-b60f-46fe-8074-147c50f94439)
  1362. )
  1363. (wire (pts (xy 74.93 72.39) (xy 74.93 69.85))
  1364. (stroke (width 0) (type default) (color 0 0 0 0))
  1365. (uuid 27c11d57-8590-4387-a01a-b03430b74b3d)
  1366. )
  1367. (wire (pts (xy 168.91 35.56) (xy 168.91 46.99))
  1368. (stroke (width 0) (type default) (color 0 0 0 0))
  1369. (uuid 2a64a1fe-073c-45b2-874b-cfb84482ab2c)
  1370. )
  1371. (wire (pts (xy 180.34 92.71) (xy 182.88 92.71))
  1372. (stroke (width 0) (type default) (color 0 0 0 0))
  1373. (uuid 2a9cf587-abfb-494c-b897-565e6fe366be)
  1374. )
  1375. (wire (pts (xy 63.5 143.51) (xy 63.5 129.54))
  1376. (stroke (width 0) (type default) (color 0 0 0 0))
  1377. (uuid 2bec04ae-e9c6-4775-8638-f052ad2d9a84)
  1378. )
  1379. (wire (pts (xy 124.46 87.63) (xy 124.46 85.09))
  1380. (stroke (width 0) (type default) (color 0 0 0 0))
  1381. (uuid 2bed65ab-6efd-4383-86ca-6b29689d010a)
  1382. )
  1383. (wire (pts (xy 203.2 93.98) (xy 203.2 92.71))
  1384. (stroke (width 0) (type default) (color 0 0 0 0))
  1385. (uuid 2c339699-6fbd-480f-ae92-124a79a15a40)
  1386. )
  1387. (wire (pts (xy 46.99 140.97) (xy 46.99 135.89))
  1388. (stroke (width 0) (type default) (color 0 0 0 0))
  1389. (uuid 2cab1984-c148-4468-a051-3a980f0f8bad)
  1390. )
  1391. (wire (pts (xy 124.46 166.37) (xy 124.46 163.83))
  1392. (stroke (width 0) (type default) (color 0 0 0 0))
  1393. (uuid 2d138610-8d75-4709-af16-f6ec3e2b8d76)
  1394. )
  1395. (wire (pts (xy 90.17 123.19) (xy 90.17 106.68))
  1396. (stroke (width 0) (type default) (color 0 0 0 0))
  1397. (uuid 2ee90598-5a1d-4438-9c84-b95faee22ef4)
  1398. )
  1399. (wire (pts (xy 243.84 44.45) (xy 246.38 44.45))
  1400. (stroke (width 0) (type default) (color 0 0 0 0))
  1401. (uuid 32f063d1-7bfa-4e3f-8449-c94e2644f008)
  1402. )
  1403. (wire (pts (xy 88.9 134.62) (xy 110.49 134.62))
  1404. (stroke (width 0) (type default) (color 0 0 0 0))
  1405. (uuid 3307d1d5-4275-4f49-b318-d426f31b463b)
  1406. )
  1407. (wire (pts (xy 63.5 64.77) (xy 63.5 50.8))
  1408. (stroke (width 0) (type default) (color 0 0 0 0))
  1409. (uuid 33662d4a-b16b-40c3-96f0-0e88fda690c9)
  1410. )
  1411. (wire (pts (xy 63.5 129.54) (xy 68.58 129.54))
  1412. (stroke (width 0) (type default) (color 0 0 0 0))
  1413. (uuid 357a53b6-2517-44a8-bd00-97afbab96bd6)
  1414. )
  1415. (bus (pts (xy 147.32 135.89) (xy 147.32 138.43))
  1416. (stroke (width 0) (type default) (color 0 0 0 0))
  1417. (uuid 35e29f82-52dc-4bb2-9403-f57ef6d4c99c)
  1418. )
  1419. (wire (pts (xy 139.7 54.61) (xy 144.78 54.61))
  1420. (stroke (width 0) (type default) (color 0 0 0 0))
  1421. (uuid 377cea7b-02a0-4a97-ba44-c853a84a68a5)
  1422. )
  1423. (wire (pts (xy 210.82 36.83) (xy 208.28 36.83))
  1424. (stroke (width 0) (type default) (color 0 0 0 0))
  1425. (uuid 38da352b-61a7-48d9-86bb-85815faf6164)
  1426. )
  1427. (wire (pts (xy 208.28 44.45) (xy 210.82 44.45))
  1428. (stroke (width 0) (type default) (color 0 0 0 0))
  1429. (uuid 39c2426f-030d-48b9-8818-50fd5313f136)
  1430. )
  1431. (wire (pts (xy 40.64 46.99) (xy 46.99 46.99))
  1432. (stroke (width 0) (type default) (color 0 0 0 0))
  1433. (uuid 39cd34c2-4932-4974-87e1-2576f2eff2ce)
  1434. )
  1435. (wire (pts (xy 102.87 128.27) (xy 110.49 128.27))
  1436. (stroke (width 0) (type default) (color 0 0 0 0))
  1437. (uuid 3a346a10-e41a-45d3-9d5d-60dbe3df92cf)
  1438. )
  1439. (wire (pts (xy 148.59 36.83) (xy 148.59 35.56))
  1440. (stroke (width 0) (type default) (color 0 0 0 0))
  1441. (uuid 3a726666-4c52-4ae4-91bc-0f2f5ee20783)
  1442. )
  1443. (wire (pts (xy 139.7 151.13) (xy 144.78 151.13))
  1444. (stroke (width 0) (type default) (color 0 0 0 0))
  1445. (uuid 3bf01212-1402-41c3-8b0e-0290409948a3)
  1446. )
  1447. (wire (pts (xy 193.04 102.87) (xy 193.04 100.33))
  1448. (stroke (width 0) (type default) (color 0 0 0 0))
  1449. (uuid 3cff8059-07bc-4735-b6a3-eb6fde2d69ce)
  1450. )
  1451. (bus (pts (xy 147.32 67.31) (xy 147.32 69.85))
  1452. (stroke (width 0) (type default) (color 0 0 0 0))
  1453. (uuid 3e24e8ad-7fcf-42aa-b70b-a7aec93e47bb)
  1454. )
  1455. (wire (pts (xy 68.58 119.38) (xy 64.77 119.38))
  1456. (stroke (width 0) (type default) (color 0 0 0 0))
  1457. (uuid 3e9a4060-3308-4f3c-8aac-1ce0f630c4a4)
  1458. )
  1459. (wire (pts (xy 109.22 143.51) (xy 110.49 143.51))
  1460. (stroke (width 0) (type default) (color 0 0 0 0))
  1461. (uuid 420c02f2-bb4a-4815-adf5-19b2d85b2a45)
  1462. )
  1463. (wire (pts (xy 90.17 124.46) (xy 90.17 123.19))
  1464. (stroke (width 0) (type default) (color 0 0 0 0))
  1465. (uuid 444e92c5-5857-4256-9fa6-4964d6e90359)
  1466. )
  1467. (wire (pts (xy 203.2 99.06) (xy 203.2 102.87))
  1468. (stroke (width 0) (type default) (color 0 0 0 0))
  1469. (uuid 44e263b5-1c87-4e1c-bd54-c8f11f5a2832)
  1470. )
  1471. (wire (pts (xy 142.24 35.56) (xy 148.59 35.56))
  1472. (stroke (width 0) (type default) (color 0 0 0 0))
  1473. (uuid 4743d89a-15e5-4563-99d6-1842a9bf2c15)
  1474. )
  1475. (wire (pts (xy 109.22 143.51) (xy 109.22 156.21))
  1476. (stroke (width 0) (type default) (color 0 0 0 0))
  1477. (uuid 4796591d-8dbd-4f92-8843-7a875a0dc47c)
  1478. )
  1479. (wire (pts (xy 90.17 49.53) (xy 90.17 48.26))
  1480. (stroke (width 0) (type default) (color 0 0 0 0))
  1481. (uuid 4ef79864-2d8f-4a2c-9798-dac6fb5c4bfb)
  1482. )
  1483. (bus (pts (xy 147.32 72.39) (xy 147.32 74.93))
  1484. (stroke (width 0) (type default) (color 0 0 0 0))
  1485. (uuid 4f12132e-eb16-4ac9-9908-ce11b8da056d)
  1486. )
  1487. (wire (pts (xy 193.04 92.71) (xy 194.31 92.71))
  1488. (stroke (width 0) (type default) (color 0 0 0 0))
  1489. (uuid 4f6fe5c4-4ead-444a-bb45-f66a9a2736d8)
  1490. )
  1491. (bus (pts (xy 147.32 52.07) (xy 147.32 54.61))
  1492. (stroke (width 0) (type default) (color 0 0 0 0))
  1493. (uuid 4f78e0d4-c76b-4be2-8a50-dc0e085947d5)
  1494. )
  1495. (wire (pts (xy 156.21 125.73) (xy 156.21 121.92))
  1496. (stroke (width 0) (type default) (color 0 0 0 0))
  1497. (uuid 50087860-6a4e-45aa-955d-a7b86b00bd1f)
  1498. )
  1499. (wire (pts (xy 105.41 44.45) (xy 110.49 44.45))
  1500. (stroke (width 0) (type default) (color 0 0 0 0))
  1501. (uuid 5085474b-fc92-43ea-83f7-098c3b27efb2)
  1502. )
  1503. (wire (pts (xy 148.59 115.57) (xy 148.59 114.3))
  1504. (stroke (width 0) (type default) (color 0 0 0 0))
  1505. (uuid 51217eed-53db-450f-a427-ad84defbf3f5)
  1506. )
  1507. (bus (pts (xy 147.32 80.01) (xy 147.32 82.55))
  1508. (stroke (width 0) (type default) (color 0 0 0 0))
  1509. (uuid 5259a5c6-1ae3-4b33-9966-b10b697ccfc5)
  1510. )
  1511. (wire (pts (xy 24.13 125.73) (xy 24.13 128.27))
  1512. (stroke (width 0) (type default) (color 0 0 0 0))
  1513. (uuid 53810c5c-3a59-4ce3-a5e9-eb9b73afcaa2)
  1514. )
  1515. (bus (pts (xy 147.32 158.75) (xy 147.32 161.29))
  1516. (stroke (width 0) (type default) (color 0 0 0 0))
  1517. (uuid 5387460a-9dd2-432d-9ee9-fcd31b34a65b)
  1518. )
  1519. (wire (pts (xy 90.17 44.45) (xy 90.17 27.94))
  1520. (stroke (width 0) (type default) (color 0 0 0 0))
  1521. (uuid 53bc3435-2749-454b-8b03-85bde7b94608)
  1522. )
  1523. (wire (pts (xy 92.71 53.34) (xy 105.41 53.34))
  1524. (stroke (width 0) (type default) (color 0 0 0 0))
  1525. (uuid 53c8ef81-819b-47b8-aaf8-7c00a4337172)
  1526. )
  1527. (wire (pts (xy 107.95 105.41) (xy 107.95 132.08))
  1528. (stroke (width 0) (type default) (color 0 0 0 0))
  1529. (uuid 552a2b0b-260f-4bdb-be93-cdb8b4dee546)
  1530. )
  1531. (wire (pts (xy 102.87 49.53) (xy 101.6 49.53))
  1532. (stroke (width 0) (type default) (color 0 0 0 0))
  1533. (uuid 553ef767-d435-4f82-b405-34eab888490d)
  1534. )
  1535. (wire (pts (xy 63.5 64.77) (xy 74.93 64.77))
  1536. (stroke (width 0) (type default) (color 0 0 0 0))
  1537. (uuid 593e432d-f481-4a3c-b729-bb54688de2d1)
  1538. )
  1539. (wire (pts (xy 78.74 138.43) (xy 88.9 138.43))
  1540. (stroke (width 0) (type default) (color 0 0 0 0))
  1541. (uuid 59a58d5e-b21f-4a44-a3b5-cd0a00a5bfdf)
  1542. )
  1543. (wire (pts (xy 256.54 53.34) (xy 256.54 57.15))
  1544. (stroke (width 0) (type default) (color 0 0 0 0))
  1545. (uuid 5c97eb19-1b26-416a-883c-48b95f9ca42f)
  1546. )
  1547. (wire (pts (xy 24.13 46.99) (xy 24.13 49.53))
  1548. (stroke (width 0) (type default) (color 0 0 0 0))
  1549. (uuid 5e03dc20-830c-4f8f-9201-1d1dac4e8127)
  1550. )
  1551. (wire (pts (xy 256.54 44.45) (xy 256.54 48.26))
  1552. (stroke (width 0) (type default) (color 0 0 0 0))
  1553. (uuid 5e5a2be6-6028-4e31-815f-8548df07f711)
  1554. )
  1555. (wire (pts (xy 139.7 133.35) (xy 144.78 133.35))
  1556. (stroke (width 0) (type default) (color 0 0 0 0))
  1557. (uuid 5e8132a6-6cb0-41d9-a79f-54713e72c901)
  1558. )
  1559. (wire (pts (xy 102.87 105.41) (xy 107.95 105.41))
  1560. (stroke (width 0) (type default) (color 0 0 0 0))
  1561. (uuid 5fbbe786-9c97-42c3-8d84-d8984b053011)
  1562. )
  1563. (wire (pts (xy 58.42 57.15) (xy 46.99 57.15))
  1564. (stroke (width 0) (type default) (color 0 0 0 0))
  1565. (uuid 5ff2fc62-9447-4480-a937-347196405d36)
  1566. )
  1567. (wire (pts (xy 180.34 97.79) (xy 180.34 102.87))
  1568. (stroke (width 0) (type default) (color 0 0 0 0))
  1569. (uuid 60512c78-64f9-4ec6-b197-f5ca03a7c0cc)
  1570. )
  1571. (wire (pts (xy 139.7 121.92) (xy 148.59 121.92))
  1572. (stroke (width 0) (type default) (color 0 0 0 0))
  1573. (uuid 6117adba-1ee4-425d-92d4-4ad1dce2d302)
  1574. )
  1575. (wire (pts (xy 139.7 148.59) (xy 144.78 148.59))
  1576. (stroke (width 0) (type default) (color 0 0 0 0))
  1577. (uuid 6176d85c-2f26-4635-89dc-ea7cf062c995)
  1578. )
  1579. (wire (pts (xy 186.69 44.45) (xy 186.69 48.26))
  1580. (stroke (width 0) (type default) (color 0 0 0 0))
  1581. (uuid 6187da17-826a-4051-9577-5049014453da)
  1582. )
  1583. (wire (pts (xy 156.21 121.92) (xy 158.75 121.92))
  1584. (stroke (width 0) (type default) (color 0 0 0 0))
  1585. (uuid 6234967d-ef45-4d5d-a28c-20bf2c8ea1a4)
  1586. )
  1587. (wire (pts (xy 88.9 45.72) (xy 90.17 45.72))
  1588. (stroke (width 0) (type default) (color 0 0 0 0))
  1589. (uuid 631b4ad7-114f-4065-96f1-c7782a13a389)
  1590. )
  1591. (wire (pts (xy 109.22 77.47) (xy 110.49 77.47))
  1592. (stroke (width 0) (type default) (color 0 0 0 0))
  1593. (uuid 6325aba2-5ec2-463a-b594-fda65c65baa8)
  1594. )
  1595. (wire (pts (xy 24.13 54.61) (xy 24.13 57.15))
  1596. (stroke (width 0) (type default) (color 0 0 0 0))
  1597. (uuid 672cfc10-61e9-4e34-8a8b-c8d3e759125c)
  1598. )
  1599. (wire (pts (xy 267.97 44.45) (xy 256.54 44.45))
  1600. (stroke (width 0) (type default) (color 0 0 0 0))
  1601. (uuid 67d2e852-3b3a-4ac1-8b48-a431e0fdd150)
  1602. )
  1603. (bus (pts (xy 147.32 59.69) (xy 147.32 62.23))
  1604. (stroke (width 0) (type default) (color 0 0 0 0))
  1605. (uuid 6830d6de-1fff-444c-b81f-6a0fbde327dd)
  1606. )
  1607. (wire (pts (xy 90.17 127) (xy 88.9 127))
  1608. (stroke (width 0) (type default) (color 0 0 0 0))
  1609. (uuid 688b328c-ab6b-4ab5-99ca-2e3bc1f4a23c)
  1610. )
  1611. (wire (pts (xy 68.58 40.64) (xy 64.77 40.64))
  1612. (stroke (width 0) (type default) (color 0 0 0 0))
  1613. (uuid 691a84a9-30b1-4311-af9f-a373d6d6c542)
  1614. )
  1615. (wire (pts (xy 68.58 121.92) (xy 57.15 121.92))
  1616. (stroke (width 0) (type default) (color 0 0 0 0))
  1617. (uuid 69342519-2602-484e-bcf9-ab3508ceb625)
  1618. )
  1619. (wire (pts (xy 92.71 132.08) (xy 105.41 132.08))
  1620. (stroke (width 0) (type default) (color 0 0 0 0))
  1621. (uuid 69bc22f5-2639-49d0-87f7-bed66c010c00)
  1622. )
  1623. (wire (pts (xy 55.88 140.97) (xy 90.17 140.97))
  1624. (stroke (width 0) (type default) (color 0 0 0 0))
  1625. (uuid 6b259859-ce22-4c77-80a1-82f4a3c136a1)
  1626. )
  1627. (wire (pts (xy 210.82 40.64) (xy 208.28 40.64))
  1628. (stroke (width 0) (type default) (color 0 0 0 0))
  1629. (uuid 6c1e299a-0839-4e5e-a987-64ba0169df8d)
  1630. )
  1631. (wire (pts (xy 46.99 125.73) (xy 58.42 125.73))
  1632. (stroke (width 0) (type default) (color 0 0 0 0))
  1633. (uuid 6c3605ea-c257-4817-a08d-8ebc0247bdd8)
  1634. )
  1635. (wire (pts (xy 186.69 44.45) (xy 198.12 44.45))
  1636. (stroke (width 0) (type default) (color 0 0 0 0))
  1637. (uuid 6c45c715-0a40-4884-a090-d1d77f87f089)
  1638. )
  1639. (wire (pts (xy 139.7 57.15) (xy 144.78 57.15))
  1640. (stroke (width 0) (type default) (color 0 0 0 0))
  1641. (uuid 6dc19a4b-85c5-4f38-a043-b51b357abe67)
  1642. )
  1643. (wire (pts (xy 243.84 44.45) (xy 243.84 48.26))
  1644. (stroke (width 0) (type default) (color 0 0 0 0))
  1645. (uuid 6ef012ae-f195-42de-a6d2-75920ea45b40)
  1646. )
  1647. (wire (pts (xy 217.17 135.89) (xy 218.44 135.89))
  1648. (stroke (width 0) (type default) (color 0 0 0 0))
  1649. (uuid 6f1da77c-3a6e-491e-8dfe-728e28e62d38)
  1650. )
  1651. (wire (pts (xy 58.42 127) (xy 68.58 127))
  1652. (stroke (width 0) (type default) (color 0 0 0 0))
  1653. (uuid 710b5f7f-c724-4abc-ae57-115e24a22c18)
  1654. )
  1655. (bus (pts (xy 147.32 133.35) (xy 147.32 135.89))
  1656. (stroke (width 0) (type default) (color 0 0 0 0))
  1657. (uuid 73804012-2be5-4423-b372-06a1052d50e3)
  1658. )
  1659. (wire (pts (xy 48.26 140.97) (xy 46.99 140.97))
  1660. (stroke (width 0) (type default) (color 0 0 0 0))
  1661. (uuid 7420263c-208e-49e1-aa3e-2d396b2547e3)
  1662. )
  1663. (wire (pts (xy 186.69 53.34) (xy 186.69 57.15))
  1664. (stroke (width 0) (type default) (color 0 0 0 0))
  1665. (uuid 74527b00-09b2-48de-955b-cc80a76704c6)
  1666. )
  1667. (wire (pts (xy 228.6 104.14) (xy 228.6 101.6))
  1668. (stroke (width 0) (type default) (color 0 0 0 0))
  1669. (uuid 7510cdd5-c25d-4d8c-9b0b-98260205f564)
  1670. )
  1671. (wire (pts (xy 246.38 40.64) (xy 233.68 40.64))
  1672. (stroke (width 0) (type default) (color 0 0 0 0))
  1673. (uuid 75e00f75-30d6-4f59-8e7c-f7b2b51230be)
  1674. )
  1675. (wire (pts (xy 127 163.83) (xy 124.46 163.83))
  1676. (stroke (width 0) (type default) (color 0 0 0 0))
  1677. (uuid 75fce8e1-aae4-4022-9e23-7fcf75a2ebc4)
  1678. )
  1679. (wire (pts (xy 198.12 46.99) (xy 198.12 44.45))
  1680. (stroke (width 0) (type default) (color 0 0 0 0))
  1681. (uuid 761500d4-eddc-4be1-9d1c-a1d3652e192d)
  1682. )
  1683. (wire (pts (xy 115.57 30.48) (xy 115.57 29.21))
  1684. (stroke (width 0) (type default) (color 0 0 0 0))
  1685. (uuid 7685a96e-5ddc-4623-b8d1-c85815a490b4)
  1686. )
  1687. (bus (pts (xy 147.32 140.97) (xy 147.32 143.51))
  1688. (stroke (width 0) (type default) (color 0 0 0 0))
  1689. (uuid 77f690bd-e0e5-4579-9579-a3e533cf5e64)
  1690. )
  1691. (wire (pts (xy 46.99 106.68) (xy 48.26 106.68))
  1692. (stroke (width 0) (type default) (color 0 0 0 0))
  1693. (uuid 7861cf2d-6f5a-4533-b1a9-865616468331)
  1694. )
  1695. (wire (pts (xy 180.34 91.44) (xy 180.34 92.71))
  1696. (stroke (width 0) (type default) (color 0 0 0 0))
  1697. (uuid 78dd059e-bf69-4cda-927b-12ac6566e193)
  1698. )
  1699. (wire (pts (xy 198.12 44.45) (xy 198.12 40.64))
  1700. (stroke (width 0) (type default) (color 0 0 0 0))
  1701. (uuid 7a47d704-840a-497d-8b88-e4642bc1171a)
  1702. )
  1703. (bus (pts (xy 147.32 54.61) (xy 147.32 57.15))
  1704. (stroke (width 0) (type default) (color 0 0 0 0))
  1705. (uuid 7b29fb2f-e666-4234-b36e-472faaf963fc)
  1706. )
  1707. (wire (pts (xy 90.17 140.97) (xy 90.17 128.27))
  1708. (stroke (width 0) (type default) (color 0 0 0 0))
  1709. (uuid 7c074347-e6ee-4274-9ce6-6ddc77b4afa1)
  1710. )
  1711. (wire (pts (xy 58.42 48.26) (xy 68.58 48.26))
  1712. (stroke (width 0) (type default) (color 0 0 0 0))
  1713. (uuid 7c2aed71-65ee-4f54-9b88-ad4fdd044680)
  1714. )
  1715. (wire (pts (xy 129.54 87.63) (xy 129.54 85.09))
  1716. (stroke (width 0) (type default) (color 0 0 0 0))
  1717. (uuid 7c726bdd-249f-41f5-9693-2941b06dce50)
  1718. )
  1719. (wire (pts (xy 212.09 100.33) (xy 212.09 102.87))
  1720. (stroke (width 0) (type default) (color 0 0 0 0))
  1721. (uuid 7c88c976-1898-44a6-a5a4-f122690bdde7)
  1722. )
  1723. (wire (pts (xy 243.84 44.45) (xy 233.68 44.45))
  1724. (stroke (width 0) (type default) (color 0 0 0 0))
  1725. (uuid 7cd28375-0653-4b47-938c-687a8ef2860a)
  1726. )
  1727. (wire (pts (xy 139.7 146.05) (xy 144.78 146.05))
  1728. (stroke (width 0) (type default) (color 0 0 0 0))
  1729. (uuid 7f17e1ae-7db4-46fb-907c-4f741f92ae68)
  1730. )
  1731. (wire (pts (xy 57.15 43.18) (xy 57.15 38.1))
  1732. (stroke (width 0) (type default) (color 0 0 0 0))
  1733. (uuid 83a27295-74f9-4ab9-8f03-bf747f7af079)
  1734. )
  1735. (wire (pts (xy 90.17 48.26) (xy 88.9 48.26))
  1736. (stroke (width 0) (type default) (color 0 0 0 0))
  1737. (uuid 85e63325-0515-4648-8ed3-a77acc3c50ea)
  1738. )
  1739. (wire (pts (xy 68.58 132.08) (xy 58.42 132.08))
  1740. (stroke (width 0) (type default) (color 0 0 0 0))
  1741. (uuid 8703a7c0-6199-4ef9-8a38-3b4b12a0484d)
  1742. )
  1743. (bus (pts (xy 147.32 156.21) (xy 147.32 158.75))
  1744. (stroke (width 0) (type default) (color 0 0 0 0))
  1745. (uuid 87548668-f14f-4c49-880c-c8f92244f08c)
  1746. )
  1747. (wire (pts (xy 58.42 125.73) (xy 58.42 127))
  1748. (stroke (width 0) (type default) (color 0 0 0 0))
  1749. (uuid 887e8835-5fbf-4859-90b1-3094d24ce7f6)
  1750. )
  1751. (wire (pts (xy 139.7 74.93) (xy 144.78 74.93))
  1752. (stroke (width 0) (type default) (color 0 0 0 0))
  1753. (uuid 88862230-1722-432c-a0b3-f34b88efe36f)
  1754. )
  1755. (wire (pts (xy 208.28 46.99) (xy 208.28 44.45))
  1756. (stroke (width 0) (type default) (color 0 0 0 0))
  1757. (uuid 89dff3e7-37ac-4cfe-8100-0c2e9b13fcd5)
  1758. )
  1759. (bus (pts (xy 147.32 74.93) (xy 147.32 77.47))
  1760. (stroke (width 0) (type default) (color 0 0 0 0))
  1761. (uuid 8a5490bf-c72d-4797-a7c2-f6d906e5fa1b)
  1762. )
  1763. (wire (pts (xy 46.99 46.99) (xy 46.99 27.94))
  1764. (stroke (width 0) (type default) (color 0 0 0 0))
  1765. (uuid 8ec3a9fb-5447-4904-80c4-dc29e33e7f87)
  1766. )
  1767. (wire (pts (xy 139.7 130.81) (xy 144.78 130.81))
  1768. (stroke (width 0) (type default) (color 0 0 0 0))
  1769. (uuid 8ef24b7b-bd10-44dd-8db0-c9f0c06af2ac)
  1770. )
  1771. (wire (pts (xy 139.7 143.51) (xy 144.78 143.51))
  1772. (stroke (width 0) (type default) (color 0 0 0 0))
  1773. (uuid 8f9da272-cc63-492e-9bcf-c45410c949f9)
  1774. )
  1775. (wire (pts (xy 129.54 166.37) (xy 129.54 163.83))
  1776. (stroke (width 0) (type default) (color 0 0 0 0))
  1777. (uuid 8f9fb961-c88a-4dec-a2db-637442b772fe)
  1778. )
  1779. (wire (pts (xy 78.74 59.69) (xy 88.9 59.69))
  1780. (stroke (width 0) (type default) (color 0 0 0 0))
  1781. (uuid 90386f46-2044-493e-9671-60d1bc81d645)
  1782. )
  1783. (wire (pts (xy 68.58 53.34) (xy 58.42 53.34))
  1784. (stroke (width 0) (type default) (color 0 0 0 0))
  1785. (uuid 91b5a15b-63fa-455d-9289-2cc567ee8ce9)
  1786. )
  1787. (wire (pts (xy 115.57 31.75) (xy 115.57 30.48))
  1788. (stroke (width 0) (type default) (color 0 0 0 0))
  1789. (uuid 92a39183-f2ab-41d0-b7f7-6ef31a6cc9c1)
  1790. )
  1791. (wire (pts (xy 105.41 123.19) (xy 101.6 123.19))
  1792. (stroke (width 0) (type default) (color 0 0 0 0))
  1793. (uuid 9548b383-e158-4d40-90de-d8f7f62758fa)
  1794. )
  1795. (wire (pts (xy 48.26 62.23) (xy 46.99 62.23))
  1796. (stroke (width 0) (type default) (color 0 0 0 0))
  1797. (uuid 955a197b-a623-4a38-b2c3-fa78d222a0eb)
  1798. )
  1799. (wire (pts (xy 156.21 46.99) (xy 156.21 43.18))
  1800. (stroke (width 0) (type default) (color 0 0 0 0))
  1801. (uuid 960256a1-355c-4098-baca-2742ef3f90f4)
  1802. )
  1803. (bus (pts (xy 147.32 77.47) (xy 147.32 80.01))
  1804. (stroke (width 0) (type default) (color 0 0 0 0))
  1805. (uuid 97c5d141-11bc-4c02-821c-3d83abdbb8da)
  1806. )
  1807. (wire (pts (xy 198.12 40.64) (xy 208.28 40.64))
  1808. (stroke (width 0) (type default) (color 0 0 0 0))
  1809. (uuid 98b4862a-3a4d-4b0f-95ab-00f09ae20493)
  1810. )
  1811. (wire (pts (xy 148.59 120.65) (xy 148.59 121.92))
  1812. (stroke (width 0) (type default) (color 0 0 0 0))
  1813. (uuid 9958c7b6-049f-4bf8-95a7-2130bae6ff54)
  1814. )
  1815. (wire (pts (xy 107.95 53.34) (xy 110.49 53.34))
  1816. (stroke (width 0) (type default) (color 0 0 0 0))
  1817. (uuid 9a758154-8721-4e87-9e6b-c31c61faf69f)
  1818. )
  1819. (wire (pts (xy 142.24 114.3) (xy 148.59 114.3))
  1820. (stroke (width 0) (type default) (color 0 0 0 0))
  1821. (uuid 9a837dd8-5dfc-43d4-8872-9c3d577e8dc5)
  1822. )
  1823. (wire (pts (xy 88.9 55.88) (xy 110.49 55.88))
  1824. (stroke (width 0) (type default) (color 0 0 0 0))
  1825. (uuid 9ab74100-d7ae-4618-9cbd-ce517c630741)
  1826. )
  1827. (wire (pts (xy 88.9 59.69) (xy 88.9 55.88))
  1828. (stroke (width 0) (type default) (color 0 0 0 0))
  1829. (uuid 9cdf4655-338c-4564-84b1-f8347a4cfdbd)
  1830. )
  1831. (wire (pts (xy 203.2 92.71) (xy 212.09 92.71))
  1832. (stroke (width 0) (type default) (color 0 0 0 0))
  1833. (uuid 9f48873b-204d-4c84-b2af-bf99af9ce009)
  1834. )
  1835. (wire (pts (xy 102.87 26.67) (xy 107.95 26.67))
  1836. (stroke (width 0) (type default) (color 0 0 0 0))
  1837. (uuid 9f66aef9-b991-45d3-8353-a72cb459afe7)
  1838. )
  1839. (wire (pts (xy 118.11 31.75) (xy 118.11 30.48))
  1840. (stroke (width 0) (type default) (color 0 0 0 0))
  1841. (uuid 9fa3d568-9aed-4bf0-8ed4-1c7a1c4c7092)
  1842. )
  1843. (wire (pts (xy 142.24 36.83) (xy 142.24 35.56))
  1844. (stroke (width 0) (type default) (color 0 0 0 0))
  1845. (uuid a07becbb-dceb-40f1-a241-86591a15ef4b)
  1846. )
  1847. (wire (pts (xy 198.12 57.15) (xy 198.12 54.61))
  1848. (stroke (width 0) (type default) (color 0 0 0 0))
  1849. (uuid a195c0eb-5c2e-432e-8a78-a20f3da90b20)
  1850. )
  1851. (wire (pts (xy 93.98 44.45) (xy 90.17 44.45))
  1852. (stroke (width 0) (type default) (color 0 0 0 0))
  1853. (uuid a24b0e81-ae2f-4d8f-a566-35d158289635)
  1854. )
  1855. (bus (pts (xy 147.32 57.15) (xy 147.32 59.69))
  1856. (stroke (width 0) (type default) (color 0 0 0 0))
  1857. (uuid a25a9f14-1ec8-4cad-bb8a-657bcbaa608c)
  1858. )
  1859. (bus (pts (xy 147.32 143.51) (xy 147.32 146.05))
  1860. (stroke (width 0) (type default) (color 0 0 0 0))
  1861. (uuid a3f00348-78c8-4c47-8883-e74cfd819bec)
  1862. )
  1863. (wire (pts (xy 88.9 124.46) (xy 90.17 124.46))
  1864. (stroke (width 0) (type default) (color 0 0 0 0))
  1865. (uuid a72f9140-e063-43d0-9b56-cbeb572e2879)
  1866. )
  1867. (wire (pts (xy 139.7 64.77) (xy 144.78 64.77))
  1868. (stroke (width 0) (type default) (color 0 0 0 0))
  1869. (uuid a8149cf9-ddee-4ea9-9d5a-157fbac44725)
  1870. )
  1871. (wire (pts (xy 27.94 52.07) (xy 24.13 52.07))
  1872. (stroke (width 0) (type default) (color 0 0 0 0))
  1873. (uuid a8336e37-ec41-475a-877e-78ab8bf1ef49)
  1874. )
  1875. (wire (pts (xy 105.41 53.34) (xy 105.41 44.45))
  1876. (stroke (width 0) (type default) (color 0 0 0 0))
  1877. (uuid a85b2782-9ca8-47f9-aedc-7b9e4e4ee43f)
  1878. )
  1879. (wire (pts (xy 102.87 49.53) (xy 110.49 49.53))
  1880. (stroke (width 0) (type default) (color 0 0 0 0))
  1881. (uuid a911262d-eebd-4c5d-8d66-a564b4181554)
  1882. )
  1883. (wire (pts (xy 267.97 46.99) (xy 267.97 44.45))
  1884. (stroke (width 0) (type default) (color 0 0 0 0))
  1885. (uuid a9ca8cb2-f90a-496d-8a6c-5d3636f10b70)
  1886. )
  1887. (wire (pts (xy 246.38 36.83) (xy 246.38 40.64))
  1888. (stroke (width 0) (type default) (color 0 0 0 0))
  1889. (uuid ac2bef67-ab9a-448d-ae96-6ae08d4aca05)
  1890. )
  1891. (wire (pts (xy 228.6 143.51) (xy 228.6 146.05))
  1892. (stroke (width 0) (type default) (color 0 0 0 0))
  1893. (uuid ac8fc34e-55ea-49dd-9069-86efbb6a0a0b)
  1894. )
  1895. (wire (pts (xy 168.91 114.3) (xy 168.91 125.73))
  1896. (stroke (width 0) (type default) (color 0 0 0 0))
  1897. (uuid adc01fa5-9d3e-4a38-89c7-1c164e0e1b88)
  1898. )
  1899. (wire (pts (xy 24.13 46.99) (xy 33.02 46.99))
  1900. (stroke (width 0) (type default) (color 0 0 0 0))
  1901. (uuid ae2ee269-bab9-422c-9352-6479ab6c1b0d)
  1902. )
  1903. (wire (pts (xy 33.02 57.15) (xy 24.13 57.15))
  1904. (stroke (width 0) (type default) (color 0 0 0 0))
  1905. (uuid ae9a70e8-6627-41d3-957d-83bfe01d0953)
  1906. )
  1907. (wire (pts (xy 46.99 62.23) (xy 46.99 57.15))
  1908. (stroke (width 0) (type default) (color 0 0 0 0))
  1909. (uuid b1ddb26a-68d2-4137-bfc7-26904de29a80)
  1910. )
  1911. (wire (pts (xy 115.57 109.22) (xy 115.57 107.95))
  1912. (stroke (width 0) (type default) (color 0 0 0 0))
  1913. (uuid b3967552-540a-412c-9349-dcdbc0c75112)
  1914. )
  1915. (wire (pts (xy 92.71 68.58) (xy 92.71 53.34))
  1916. (stroke (width 0) (type default) (color 0 0 0 0))
  1917. (uuid b3b9cca7-2004-48ad-9eab-a9065fe580ae)
  1918. )
  1919. (wire (pts (xy 139.7 156.21) (xy 144.78 156.21))
  1920. (stroke (width 0) (type default) (color 0 0 0 0))
  1921. (uuid b42be2d1-a9d9-4fe1-a21f-e566b7e86d12)
  1922. )
  1923. (wire (pts (xy 267.97 57.15) (xy 267.97 54.61))
  1924. (stroke (width 0) (type default) (color 0 0 0 0))
  1925. (uuid b45f0aa9-20f6-4585-89a3-ae50d0269197)
  1926. )
  1927. (wire (pts (xy 93.98 123.19) (xy 90.17 123.19))
  1928. (stroke (width 0) (type default) (color 0 0 0 0))
  1929. (uuid b4705c88-e1ed-4ccd-8d6e-22333662acf9)
  1930. )
  1931. (wire (pts (xy 142.24 115.57) (xy 142.24 114.3))
  1932. (stroke (width 0) (type default) (color 0 0 0 0))
  1933. (uuid b4de1e4e-1db2-4ea2-8739-486d706e67ed)
  1934. )
  1935. (wire (pts (xy 46.99 46.99) (xy 58.42 46.99))
  1936. (stroke (width 0) (type default) (color 0 0 0 0))
  1937. (uuid ba3d912c-5219-4f30-b434-73493c880e0e)
  1938. )
  1939. (wire (pts (xy 118.11 109.22) (xy 115.57 109.22))
  1940. (stroke (width 0) (type default) (color 0 0 0 0))
  1941. (uuid bc39f092-4138-4d5a-84a4-3d946363c1d8)
  1942. )
  1943. (wire (pts (xy 139.7 36.83) (xy 142.24 36.83))
  1944. (stroke (width 0) (type default) (color 0 0 0 0))
  1945. (uuid bc571c34-f4e9-4792-ba16-b033850a55b3)
  1946. )
  1947. (wire (pts (xy 33.02 135.89) (xy 24.13 135.89))
  1948. (stroke (width 0) (type default) (color 0 0 0 0))
  1949. (uuid c0d8e2cf-1009-4b24-bfd6-984ebaff563e)
  1950. )
  1951. (wire (pts (xy 64.77 119.38) (xy 64.77 115.57))
  1952. (stroke (width 0) (type default) (color 0 0 0 0))
  1953. (uuid c1295aa7-41a8-47d4-bf86-a49c6ada9877)
  1954. )
  1955. (wire (pts (xy 88.9 138.43) (xy 88.9 134.62))
  1956. (stroke (width 0) (type default) (color 0 0 0 0))
  1957. (uuid c2f861f7-1e75-4a7a-b89b-65e64fa0465e)
  1958. )
  1959. (wire (pts (xy 40.64 125.73) (xy 46.99 125.73))
  1960. (stroke (width 0) (type default) (color 0 0 0 0))
  1961. (uuid c3d990e1-2fb5-4d17-bf65-b9e11ec79026)
  1962. )
  1963. (wire (pts (xy 58.42 132.08) (xy 58.42 135.89))
  1964. (stroke (width 0) (type default) (color 0 0 0 0))
  1965. (uuid c5874219-9671-4b37-90f8-e0f29f61292f)
  1966. )
  1967. (wire (pts (xy 109.22 64.77) (xy 109.22 77.47))
  1968. (stroke (width 0) (type default) (color 0 0 0 0))
  1969. (uuid c58fa057-6484-486d-bc3b-8dabc8f82f4b)
  1970. )
  1971. (wire (pts (xy 46.99 57.15) (xy 40.64 57.15))
  1972. (stroke (width 0) (type default) (color 0 0 0 0))
  1973. (uuid c6582fbf-3bea-4ffa-9118-ee7a51f0c2b7)
  1974. )
  1975. (wire (pts (xy 58.42 135.89) (xy 46.99 135.89))
  1976. (stroke (width 0) (type default) (color 0 0 0 0))
  1977. (uuid ca763ba2-8676-4bf3-a105-fd01b25b898e)
  1978. )
  1979. (bus (pts (xy 147.32 146.05) (xy 147.32 148.59))
  1980. (stroke (width 0) (type default) (color 0 0 0 0))
  1981. (uuid caa228b4-0e3d-46a8-a593-169e38cd2503)
  1982. )
  1983. (wire (pts (xy 27.94 139.7) (xy 27.94 130.81))
  1984. (stroke (width 0) (type default) (color 0 0 0 0))
  1985. (uuid caef0fd3-ed46-4541-9b93-6eb058b826a8)
  1986. )
  1987. (wire (pts (xy 102.87 128.27) (xy 101.6 128.27))
  1988. (stroke (width 0) (type default) (color 0 0 0 0))
  1989. (uuid cbd48053-e393-4238-b923-1bb495692c98)
  1990. )
  1991. (wire (pts (xy 139.7 77.47) (xy 144.78 77.47))
  1992. (stroke (width 0) (type default) (color 0 0 0 0))
  1993. (uuid ccdfad74-9ae7-40e6-9d12-1385ab95f3bd)
  1994. )
  1995. (bus (pts (xy 147.32 62.23) (xy 147.32 64.77))
  1996. (stroke (width 0) (type default) (color 0 0 0 0))
  1997. (uuid cdf0589d-1a1c-40fa-8bd4-5ca3dda963ab)
  1998. )
  1999. (wire (pts (xy 27.94 60.96) (xy 27.94 52.07))
  2000. (stroke (width 0) (type default) (color 0 0 0 0))
  2001. (uuid ce8533f1-3478-468a-aa3b-604b67f0cb9f)
  2002. )
  2003. (wire (pts (xy 139.7 80.01) (xy 144.78 80.01))
  2004. (stroke (width 0) (type default) (color 0 0 0 0))
  2005. (uuid cf57d402-d25d-4b09-b1e5-0d64841febb0)
  2006. )
  2007. (wire (pts (xy 139.7 140.97) (xy 144.78 140.97))
  2008. (stroke (width 0) (type default) (color 0 0 0 0))
  2009. (uuid cf8031a3-049b-48e0-ac12-f6e6b9d8aee7)
  2010. )
  2011. (wire (pts (xy 58.42 46.99) (xy 58.42 48.26))
  2012. (stroke (width 0) (type default) (color 0 0 0 0))
  2013. (uuid d1923603-c28f-43d1-968b-0a4d3ae695f1)
  2014. )
  2015. (bus (pts (xy 147.32 148.59) (xy 147.32 151.13))
  2016. (stroke (width 0) (type default) (color 0 0 0 0))
  2017. (uuid d1f50351-0265-47a2-ac1f-aec7f90906cf)
  2018. )
  2019. (wire (pts (xy 46.99 125.73) (xy 46.99 106.68))
  2020. (stroke (width 0) (type default) (color 0 0 0 0))
  2021. (uuid d234ab5b-37f3-4ce8-8ab8-6c1ad8fe3665)
  2022. )
  2023. (wire (pts (xy 90.17 128.27) (xy 90.17 127))
  2024. (stroke (width 0) (type default) (color 0 0 0 0))
  2025. (uuid d2f04497-0bff-4d4e-a79b-392a071c0c38)
  2026. )
  2027. (wire (pts (xy 46.99 135.89) (xy 40.64 135.89))
  2028. (stroke (width 0) (type default) (color 0 0 0 0))
  2029. (uuid d34b7e60-077e-4a4d-aa89-d0693e4a95b4)
  2030. )
  2031. (wire (pts (xy 102.87 68.58) (xy 102.87 49.53))
  2032. (stroke (width 0) (type default) (color 0 0 0 0))
  2033. (uuid d3a5582e-7550-4a56-a371-67830679981a)
  2034. )
  2035. (wire (pts (xy 156.21 43.18) (xy 158.75 43.18))
  2036. (stroke (width 0) (type default) (color 0 0 0 0))
  2037. (uuid d50aa17b-6b15-421f-bd24-f5f7668be7cd)
  2038. )
  2039. (wire (pts (xy 256.54 44.45) (xy 254 44.45))
  2040. (stroke (width 0) (type default) (color 0 0 0 0))
  2041. (uuid d57b45be-7c99-40be-9f17-5814719fc42a)
  2042. )
  2043. (wire (pts (xy 228.6 101.6) (xy 236.22 101.6))
  2044. (stroke (width 0) (type default) (color 0 0 0 0))
  2045. (uuid d7151fa6-554c-43a7-9b1f-a53dcec90564)
  2046. )
  2047. (bus (pts (xy 147.32 69.85) (xy 147.32 72.39))
  2048. (stroke (width 0) (type default) (color 0 0 0 0))
  2049. (uuid d75cba47-005e-437c-b455-a3ccb217e6f2)
  2050. )
  2051. (wire (pts (xy 236.22 101.6) (xy 236.22 104.14))
  2052. (stroke (width 0) (type default) (color 0 0 0 0))
  2053. (uuid dc56b0f1-54e4-4530-b364-544e853476e1)
  2054. )
  2055. (wire (pts (xy 118.11 30.48) (xy 115.57 30.48))
  2056. (stroke (width 0) (type default) (color 0 0 0 0))
  2057. (uuid dda3124c-bcc2-4331-9d0b-9d8cf6dc91bc)
  2058. )
  2059. (wire (pts (xy 139.7 67.31) (xy 144.78 67.31))
  2060. (stroke (width 0) (type default) (color 0 0 0 0))
  2061. (uuid de544d92-592f-4077-8d02-780b0cf58c81)
  2062. )
  2063. (wire (pts (xy 109.22 156.21) (xy 110.49 156.21))
  2064. (stroke (width 0) (type default) (color 0 0 0 0))
  2065. (uuid de919fd1-c053-4012-af92-2547057287e4)
  2066. )
  2067. (wire (pts (xy 92.71 147.32) (xy 92.71 132.08))
  2068. (stroke (width 0) (type default) (color 0 0 0 0))
  2069. (uuid df6ba44e-ba7e-4c1c-91d0-21a6a45849fd)
  2070. )
  2071. (wire (pts (xy 228.6 125.73) (xy 228.6 128.27))
  2072. (stroke (width 0) (type default) (color 0 0 0 0))
  2073. (uuid df87fdfd-c0a5-4e02-88d9-43c8ada6ab98)
  2074. )
  2075. (wire (pts (xy 118.11 110.49) (xy 118.11 109.22))
  2076. (stroke (width 0) (type default) (color 0 0 0 0))
  2077. (uuid e0cfbbbb-cf9f-4250-b380-6e6fcee71c81)
  2078. )
  2079. (wire (pts (xy 58.42 53.34) (xy 58.42 57.15))
  2080. (stroke (width 0) (type default) (color 0 0 0 0))
  2081. (uuid e149c3c4-d7b9-47bb-86ed-9300af243568)
  2082. )
  2083. (bus (pts (xy 147.32 153.67) (xy 147.32 156.21))
  2084. (stroke (width 0) (type default) (color 0 0 0 0))
  2085. (uuid e15c7d42-c69b-4570-aaf2-037b80b45f6b)
  2086. )
  2087. (wire (pts (xy 139.7 153.67) (xy 144.78 153.67))
  2088. (stroke (width 0) (type default) (color 0 0 0 0))
  2089. (uuid e1d18b63-c2f7-4441-8066-dc59036bb959)
  2090. )
  2091. (wire (pts (xy 57.15 121.92) (xy 57.15 116.84))
  2092. (stroke (width 0) (type default) (color 0 0 0 0))
  2093. (uuid e1e8943f-1542-49b9-8a77-4e058d3b27bd)
  2094. )
  2095. (wire (pts (xy 139.7 59.69) (xy 144.78 59.69))
  2096. (stroke (width 0) (type default) (color 0 0 0 0))
  2097. (uuid e22a8c14-409b-4c0d-9ea6-f798fd2a64fb)
  2098. )
  2099. (wire (pts (xy 139.7 62.23) (xy 144.78 62.23))
  2100. (stroke (width 0) (type default) (color 0 0 0 0))
  2101. (uuid e254966a-fd4c-4b92-8c1e-e6f2dea920e3)
  2102. )
  2103. (wire (pts (xy 74.93 64.77) (xy 109.22 64.77))
  2104. (stroke (width 0) (type default) (color 0 0 0 0))
  2105. (uuid e71d85dc-c578-42ca-a9ba-15a9955ae0d7)
  2106. )
  2107. (wire (pts (xy 148.59 114.3) (xy 158.75 114.3))
  2108. (stroke (width 0) (type default) (color 0 0 0 0))
  2109. (uuid e7b1edb6-0937-4481-ba4d-fdf1421f1eee)
  2110. )
  2111. (wire (pts (xy 148.59 41.91) (xy 148.59 43.18))
  2112. (stroke (width 0) (type default) (color 0 0 0 0))
  2113. (uuid e8b5f4f4-cf8f-4d14-b338-7bfe8879c74a)
  2114. )
  2115. (wire (pts (xy 208.28 40.64) (xy 208.28 36.83))
  2116. (stroke (width 0) (type default) (color 0 0 0 0))
  2117. (uuid e9408a8f-9f63-49f1-8fa2-6f0bf1500547)
  2118. )
  2119. (wire (pts (xy 194.31 92.71) (xy 203.2 92.71))
  2120. (stroke (width 0) (type default) (color 0 0 0 0))
  2121. (uuid e9ef4f98-d23c-4f06-9b63-e4329152b262)
  2122. )
  2123. (wire (pts (xy 24.13 125.73) (xy 33.02 125.73))
  2124. (stroke (width 0) (type default) (color 0 0 0 0))
  2125. (uuid e9f595e0-98f8-4ac1-9f2f-f11fa467f653)
  2126. )
  2127. (bus (pts (xy 147.32 151.13) (xy 147.32 153.67))
  2128. (stroke (width 0) (type default) (color 0 0 0 0))
  2129. (uuid ebbdf9a9-6b74-4607-ac06-97cac5a8c5df)
  2130. )
  2131. (wire (pts (xy 107.95 132.08) (xy 110.49 132.08))
  2132. (stroke (width 0) (type default) (color 0 0 0 0))
  2133. (uuid ed1c9f34-abde-40fe-8665-ce7c00669956)
  2134. )
  2135. (wire (pts (xy 139.7 115.57) (xy 142.24 115.57))
  2136. (stroke (width 0) (type default) (color 0 0 0 0))
  2137. (uuid eea68845-7360-463b-ac85-c2b8af19ea8e)
  2138. )
  2139. (bus (pts (xy 147.32 138.43) (xy 147.32 140.97))
  2140. (stroke (width 0) (type default) (color 0 0 0 0))
  2141. (uuid f1ff0376-df87-46d7-8d9b-343303ef4cb5)
  2142. )
  2143. (wire (pts (xy 24.13 133.35) (xy 24.13 135.89))
  2144. (stroke (width 0) (type default) (color 0 0 0 0))
  2145. (uuid f38d5394-08d7-4d3c-b3cc-d93c334a1833)
  2146. )
  2147. (wire (pts (xy 190.5 92.71) (xy 193.04 92.71))
  2148. (stroke (width 0) (type default) (color 0 0 0 0))
  2149. (uuid f3ba7fd6-0d76-44dc-8ce3-6e549563da17)
  2150. )
  2151. (wire (pts (xy 194.31 88.9) (xy 194.31 92.71))
  2152. (stroke (width 0) (type default) (color 0 0 0 0))
  2153. (uuid f536a404-a3fc-4844-9517-c991b69e54fb)
  2154. )
  2155. (wire (pts (xy 90.17 62.23) (xy 90.17 49.53))
  2156. (stroke (width 0) (type default) (color 0 0 0 0))
  2157. (uuid f5e9c3d6-4232-447f-a21e-b30aba35562a)
  2158. )
  2159. (wire (pts (xy 158.75 114.3) (xy 168.91 114.3))
  2160. (stroke (width 0) (type default) (color 0 0 0 0))
  2161. (uuid f5fea6ea-1a82-4835-95fa-9b144be747c5)
  2162. )
  2163. (wire (pts (xy 139.7 52.07) (xy 144.78 52.07))
  2164. (stroke (width 0) (type default) (color 0 0 0 0))
  2165. (uuid f79785a5-208a-4235-9391-5b7711374489)
  2166. )
  2167. (wire (pts (xy 90.17 27.94) (xy 55.88 27.94))
  2168. (stroke (width 0) (type default) (color 0 0 0 0))
  2169. (uuid fa636e24-fcab-4fc3-8ae8-b9a72e31bb95)
  2170. )
  2171. (wire (pts (xy 27.94 130.81) (xy 24.13 130.81))
  2172. (stroke (width 0) (type default) (color 0 0 0 0))
  2173. (uuid fa8de533-2bba-4164-af3e-bb56c1e09e6f)
  2174. )
  2175. (wire (pts (xy 139.7 158.75) (xy 144.78 158.75))
  2176. (stroke (width 0) (type default) (color 0 0 0 0))
  2177. (uuid fb52a73d-06b0-4037-9dc2-748fc1eab25b)
  2178. )
  2179. (wire (pts (xy 93.98 49.53) (xy 90.17 49.53))
  2180. (stroke (width 0) (type default) (color 0 0 0 0))
  2181. (uuid fdea7d22-fa7f-4a2b-bc88-82df93475657)
  2182. )
  2183. (wire (pts (xy 139.7 72.39) (xy 144.78 72.39))
  2184. (stroke (width 0) (type default) (color 0 0 0 0))
  2185. (uuid ffffbbd3-6160-41b8-9fc3-8da38ac2e29d)
  2186. )
  2187. (label "PA7" (at 140.97 140.97 0)
  2188. (effects (font (size 1.27 1.27)) (justify left bottom))
  2189. (uuid 013d417b-1f74-445c-bd66-a6e15d78d8ae)
  2190. )
  2191. (label "PA4" (at 140.97 148.59 0)
  2192. (effects (font (size 1.27 1.27)) (justify left bottom))
  2193. (uuid 11c572bc-df03-48c0-809c-3790d7d53628)
  2194. )
  2195. (label "PA2" (at 140.97 153.67 0)
  2196. (effects (font (size 1.27 1.27)) (justify left bottom))
  2197. (uuid 120b403a-38cd-4d65-bd5c-44946b7260d7)
  2198. )
  2199. (label "PB7" (at 140.97 62.23 0)
  2200. (effects (font (size 1.27 1.27)) (justify left bottom))
  2201. (uuid 1a173796-2720-4210-935c-7620cb7202f7)
  2202. )
  2203. (label "PB1" (at 140.97 77.47 0)
  2204. (effects (font (size 1.27 1.27)) (justify left bottom))
  2205. (uuid 21b43e9b-53fe-489e-86ab-968ece63ff57)
  2206. )
  2207. (label "PA11" (at 140.97 130.81 0)
  2208. (effects (font (size 1.27 1.27)) (justify left bottom))
  2209. (uuid 30dd6440-1030-4569-beb3-6cfa98c1d7e4)
  2210. )
  2211. (label "PB11" (at 140.97 52.07 0)
  2212. (effects (font (size 1.27 1.27)) (justify left bottom))
  2213. (uuid 4a09b9ea-fa7c-47ea-8264-5633d7b2ec00)
  2214. )
  2215. (label "PB0" (at 140.97 80.01 0)
  2216. (effects (font (size 1.27 1.27)) (justify left bottom))
  2217. (uuid 4a500c8f-6b06-4826-8b2a-6f7aed73082c)
  2218. )
  2219. (label "PB8" (at 140.97 59.69 0)
  2220. (effects (font (size 1.27 1.27)) (justify left bottom))
  2221. (uuid 4b2a89eb-132c-44a5-aea9-fff356df8dce)
  2222. )
  2223. (label "PA5" (at 140.97 146.05 0)
  2224. (effects (font (size 1.27 1.27)) (justify left bottom))
  2225. (uuid 4b59ee4b-5dc8-4de5-9668-bf833e2e8487)
  2226. )
  2227. (label "PB10" (at 140.97 54.61 0)
  2228. (effects (font (size 1.27 1.27)) (justify left bottom))
  2229. (uuid 5793d64a-b146-4013-9476-9aa7eba42937)
  2230. )
  2231. (label "PA10" (at 140.97 133.35 0)
  2232. (effects (font (size 1.27 1.27)) (justify left bottom))
  2233. (uuid 584558d4-5e67-4d91-bcac-329fa29e6462)
  2234. )
  2235. (label "PB5" (at 140.97 67.31 0)
  2236. (effects (font (size 1.27 1.27)) (justify left bottom))
  2237. (uuid 5df97e5e-5a90-42a7-b5bd-2a6b01d2c37c)
  2238. )
  2239. (label "PB[0..11]" (at 147.32 80.01 0)
  2240. (effects (font (size 1.27 1.27)) (justify left bottom))
  2241. (uuid 85d95999-0759-4009-8310-08852ded4141)
  2242. )
  2243. (label "PA3" (at 140.97 151.13 0)
  2244. (effects (font (size 1.27 1.27)) (justify left bottom))
  2245. (uuid a54bc8df-c6bc-4ebe-af80-22e10bde45e2)
  2246. )
  2247. (label "PA8" (at 140.97 138.43 0)
  2248. (effects (font (size 1.27 1.27)) (justify left bottom))
  2249. (uuid aa7c0edf-20b3-4789-a939-d075c9201961)
  2250. )
  2251. (label "PB2" (at 140.97 74.93 0)
  2252. (effects (font (size 1.27 1.27)) (justify left bottom))
  2253. (uuid ac594f69-1c14-4942-9d89-a8580c80758c)
  2254. )
  2255. (label "PB3" (at 140.97 72.39 0)
  2256. (effects (font (size 1.27 1.27)) (justify left bottom))
  2257. (uuid aff8eb21-be3a-44fb-a05b-76b2effce17b)
  2258. )
  2259. (label "PA0" (at 140.97 158.75 0)
  2260. (effects (font (size 1.27 1.27)) (justify left bottom))
  2261. (uuid b2315f52-093e-4e89-a45a-9f669e456131)
  2262. )
  2263. (label "PA9" (at 140.97 135.89 0)
  2264. (effects (font (size 1.27 1.27)) (justify left bottom))
  2265. (uuid cec9da1c-e738-46a7-851b-85e1314228b4)
  2266. )
  2267. (label "PB9" (at 140.97 57.15 0)
  2268. (effects (font (size 1.27 1.27)) (justify left bottom))
  2269. (uuid d63ccd15-67fd-4065-be3c-9306fa39db61)
  2270. )
  2271. (label "PB4" (at 140.97 69.85 0)
  2272. (effects (font (size 1.27 1.27)) (justify left bottom))
  2273. (uuid dc15e679-7802-40cf-b2d9-d1daf874cd5d)
  2274. )
  2275. (label "PA1" (at 140.97 156.21 0)
  2276. (effects (font (size 1.27 1.27)) (justify left bottom))
  2277. (uuid e0ac013c-0047-4d58-890b-86000532296d)
  2278. )
  2279. (label "PB6" (at 140.97 64.77 0)
  2280. (effects (font (size 1.27 1.27)) (justify left bottom))
  2281. (uuid e1560324-7fd3-4c2a-a532-5ecbd1aa5964)
  2282. )
  2283. (label "PA[0..11]" (at 147.32 158.75 0)
  2284. (effects (font (size 1.27 1.27)) (justify left bottom))
  2285. (uuid e5124d27-d652-469c-be72-d5b549989566)
  2286. )
  2287. (label "PA6" (at 140.97 143.51 0)
  2288. (effects (font (size 1.27 1.27)) (justify left bottom))
  2289. (uuid e6fb1c0f-c0d0-4744-b26d-cff5eac56eaf)
  2290. )
  2291. (hierarchical_label "CLK_60MHz" (shape input) (at 78.74 59.69 180)
  2292. (effects (font (size 1.27 1.27)) (justify right))
  2293. (uuid 49cfc9c9-3fb2-430a-b873-dc3fea4e94d6)
  2294. )
  2295. (hierarchical_label "CLK_60MHz" (shape input) (at 78.74 138.43 180)
  2296. (effects (font (size 1.27 1.27)) (justify right))
  2297. (uuid 519161f5-d8aa-483a-9af6-b2725d96f02e)
  2298. )
  2299. (hierarchical_label "PA[0..11]" (shape input) (at 147.32 161.29 0)
  2300. (effects (font (size 1.27 1.27)) (justify left))
  2301. (uuid 775034c0-2789-453a-ac9b-0768fde0da60)
  2302. )
  2303. (hierarchical_label "PB[0..11]" (shape input) (at 147.32 82.55 0)
  2304. (effects (font (size 1.27 1.27)) (justify left))
  2305. (uuid dee4d7d7-faac-4ebe-9751-fa130e81655d)
  2306. )
  2307. (hierarchical_label "CLK_60MHz" (shape input) (at 217.17 135.89 180)
  2308. (effects (font (size 1.27 1.27)) (justify right))
  2309. (uuid e1234f9b-3c6a-4e84-91c1-56a26ea9875a)
  2310. )
  2311. (symbol (lib_id "power:+3.3VADC") (at 115.57 107.95 0) (unit 1)
  2312. (in_bom yes) (on_board yes)
  2313. (uuid 0073505c-a814-46df-b863-e34c87cae6cf)
  2314. (property "Reference" "#PWR0210" (id 0) (at 119.38 109.22 0)
  2315. (effects (font (size 1.27 1.27)) hide)
  2316. )
  2317. (property "Value" "+3.3VADC" (id 1) (at 116.078 104.3178 0))
  2318. (property "Footprint" "" (id 2) (at 115.57 107.95 0)
  2319. (effects (font (size 1.27 1.27)) hide)
  2320. )
  2321. (property "Datasheet" "" (id 3) (at 115.57 107.95 0)
  2322. (effects (font (size 1.27 1.27)) hide)
  2323. )
  2324. (pin "1" (uuid bb68f42d-7f06-48cb-9e94-2243008f2aa5))
  2325. )
  2326. (symbol (lib_id "Device:R") (at 97.79 44.45 270) (unit 1)
  2327. (in_bom yes) (on_board yes)
  2328. (uuid 04a8b46f-a99a-42a7-af65-f98a8345abfc)
  2329. (property "Reference" "R60" (id 0) (at 93.98 41.91 90))
  2330. (property "Value" "22" (id 1) (at 101.6 41.91 90))
  2331. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 42.672 90)
  2332. (effects (font (size 1.27 1.27)) hide)
  2333. )
  2334. (property "Datasheet" "~" (id 3) (at 97.79 44.45 0)
  2335. (effects (font (size 1.27 1.27)) hide)
  2336. )
  2337. (property "LCSC" "C25092" (id 4) (at 97.79 44.45 0)
  2338. (effects (font (size 1.27 1.27)) hide)
  2339. )
  2340. (pin "1" (uuid fb1f66f3-af8a-4bf9-849c-21772e9d75b5))
  2341. (pin "2" (uuid 54f01037-c99f-413c-b5d8-826e967d06ef))
  2342. )
  2343. (symbol (lib_id "power:GND") (at 105.41 60.96 0) (unit 1)
  2344. (in_bom yes) (on_board yes)
  2345. (uuid 09b9d37c-f3b8-419a-9cc7-28197aab4e7f)
  2346. (property "Reference" "#PWR0237" (id 0) (at 105.41 67.31 0)
  2347. (effects (font (size 1.27 1.27)) hide)
  2348. )
  2349. (property "Value" "GND" (id 1) (at 105.537 65.3542 0))
  2350. (property "Footprint" "" (id 2) (at 105.41 60.96 0)
  2351. (effects (font (size 1.27 1.27)) hide)
  2352. )
  2353. (property "Datasheet" "" (id 3) (at 105.41 60.96 0)
  2354. (effects (font (size 1.27 1.27)) hide)
  2355. )
  2356. (pin "1" (uuid 59e205a0-0aaf-4336-a758-85c99545dc64))
  2357. )
  2358. (symbol (lib_id "Device:C") (at 63.5 147.32 180) (unit 1)
  2359. (in_bom yes) (on_board yes)
  2360. (uuid 0b98176c-f35e-4f33-aaa2-9c6b5da0eecd)
  2361. (property "Reference" "C44" (id 0) (at 66.421 146.1516 0)
  2362. (effects (font (size 1.27 1.27)) (justify right))
  2363. )
  2364. (property "Value" "100nF" (id 1) (at 66.421 148.463 0)
  2365. (effects (font (size 1.27 1.27)) (justify right))
  2366. )
  2367. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 62.5348 143.51 0)
  2368. (effects (font (size 1.27 1.27)) hide)
  2369. )
  2370. (property "Datasheet" "~" (id 3) (at 63.5 147.32 0)
  2371. (effects (font (size 1.27 1.27)) hide)
  2372. )
  2373. (property "LCSC" "C1525" (id 4) (at 63.5 147.32 0)
  2374. (effects (font (size 1.27 1.27)) hide)
  2375. )
  2376. (pin "1" (uuid 4a5a8ab0-ced1-42ca-94ea-610139740e6c))
  2377. (pin "2" (uuid 9c10a592-f854-4d32-a475-39c17fbe2389))
  2378. )
  2379. (symbol (lib_id "Device:L") (at 186.69 92.71 90) (unit 1)
  2380. (in_bom yes) (on_board yes)
  2381. (uuid 0e088394-8c5a-44be-ac98-14bc2dc355fb)
  2382. (property "Reference" "L2" (id 0) (at 186.69 87.884 90))
  2383. (property "Value" "100uH" (id 1) (at 186.69 90.1954 90))
  2384. (property "Footprint" "Greaseweazle:L_6.3x6.3_H3" (id 2) (at 186.69 92.71 0)
  2385. (effects (font (size 1.27 1.27)) hide)
  2386. )
  2387. (property "Datasheet" "~" (id 3) (at 186.69 92.71 0)
  2388. (effects (font (size 1.27 1.27)) hide)
  2389. )
  2390. (property "LCSC" "C434839" (id 4) (at 186.69 92.71 0)
  2391. (effects (font (size 1.27 1.27)) hide)
  2392. )
  2393. (pin "1" (uuid 944a3c17-918d-4202-bbe4-9db871780cba))
  2394. (pin "2" (uuid 068ba11b-ee45-4493-9a81-1a21276b4028))
  2395. )
  2396. (symbol (lib_id "power:GNDA") (at 74.93 151.13 0) (unit 1)
  2397. (in_bom yes) (on_board yes)
  2398. (uuid 0e117833-f253-45cc-981e-737ef0e2df43)
  2399. (property "Reference" "#PWR0195" (id 0) (at 74.93 157.48 0)
  2400. (effects (font (size 1.27 1.27)) hide)
  2401. )
  2402. (property "Value" "GNDA" (id 1) (at 75.057 155.5242 0))
  2403. (property "Footprint" "" (id 2) (at 74.93 151.13 0)
  2404. (effects (font (size 1.27 1.27)) hide)
  2405. )
  2406. (property "Datasheet" "" (id 3) (at 74.93 151.13 0)
  2407. (effects (font (size 1.27 1.27)) hide)
  2408. )
  2409. (pin "1" (uuid fb225054-e6fe-4662-a609-9ebd4d6c3512))
  2410. )
  2411. (symbol (lib_id "Greaseweazle:CP_Small-Device") (at 148.59 118.11 0) (unit 1)
  2412. (in_bom yes) (on_board yes)
  2413. (uuid 0f0a097f-1e00-488c-a3a7-2a1967026c19)
  2414. (property "Reference" "C61" (id 0) (at 150.8252 116.9416 0)
  2415. (effects (font (size 1.27 1.27)) (justify left))
  2416. )
  2417. (property "Value" "47uF" (id 1) (at 150.8252 119.253 0)
  2418. (effects (font (size 1.27 1.27)) (justify left))
  2419. )
  2420. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 148.59 118.11 0)
  2421. (effects (font (size 1.27 1.27)) hide)
  2422. )
  2423. (property "Datasheet" "~" (id 3) (at 148.59 118.11 0)
  2424. (effects (font (size 1.27 1.27)) hide)
  2425. )
  2426. (property "LCSC" "C140782" (id 4) (at 148.59 118.11 0)
  2427. (effects (font (size 1.27 1.27)) hide)
  2428. )
  2429. (pin "1" (uuid a2d4439e-56de-4165-aacb-96aed7b447de))
  2430. (pin "2" (uuid 460ebdac-374b-409b-9db1-5be4cbf58e0c))
  2431. )
  2432. (symbol (lib_id "power:GNDA") (at 102.87 76.2 0) (unit 1)
  2433. (in_bom yes) (on_board yes)
  2434. (uuid 170d5544-5d57-4ed1-bad2-499a01f94eb0)
  2435. (property "Reference" "#PWR0243" (id 0) (at 102.87 82.55 0)
  2436. (effects (font (size 1.27 1.27)) hide)
  2437. )
  2438. (property "Value" "GNDA" (id 1) (at 102.997 80.5942 0))
  2439. (property "Footprint" "" (id 2) (at 102.87 76.2 0)
  2440. (effects (font (size 1.27 1.27)) hide)
  2441. )
  2442. (property "Datasheet" "" (id 3) (at 102.87 76.2 0)
  2443. (effects (font (size 1.27 1.27)) hide)
  2444. )
  2445. (pin "1" (uuid 681b4030-53a3-4adb-87cd-afe8674c4a2d))
  2446. )
  2447. (symbol (lib_id "Device:C_Polarized_Small") (at 243.84 50.8 180) (unit 1)
  2448. (in_bom yes) (on_board yes)
  2449. (uuid 19a96f21-b011-4a2d-8cd2-5048cd043ae5)
  2450. (property "Reference" "C63" (id 0) (at 240.919 51.9684 0)
  2451. (effects (font (size 1.27 1.27)) (justify left))
  2452. )
  2453. (property "Value" "3.3uF" (id 1) (at 240.919 49.657 0)
  2454. (effects (font (size 1.27 1.27)) (justify left))
  2455. )
  2456. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 243.84 50.8 0)
  2457. (effects (font (size 1.27 1.27)) hide)
  2458. )
  2459. (property "Datasheet" "~" (id 3) (at 243.84 50.8 0)
  2460. (effects (font (size 1.27 1.27)) hide)
  2461. )
  2462. (property "LCSC" "C87864" (id 4) (at 243.84 50.8 0)
  2463. (effects (font (size 1.27 1.27)) hide)
  2464. )
  2465. (pin "1" (uuid 3313e1f7-22d7-4e45-b856-478e2647a583))
  2466. (pin "2" (uuid 6adb311f-e7e8-4d6d-8178-2b2ebb0a42e7))
  2467. )
  2468. (symbol (lib_id "power:GNDA") (at 124.46 166.37 0) (unit 1)
  2469. (in_bom yes) (on_board yes)
  2470. (uuid 1a0db7ac-3a63-4703-b6a1-569c421c930d)
  2471. (property "Reference" "#PWR0212" (id 0) (at 124.46 172.72 0)
  2472. (effects (font (size 1.27 1.27)) hide)
  2473. )
  2474. (property "Value" "GNDA" (id 1) (at 124.587 170.7642 0))
  2475. (property "Footprint" "" (id 2) (at 124.46 166.37 0)
  2476. (effects (font (size 1.27 1.27)) hide)
  2477. )
  2478. (property "Datasheet" "" (id 3) (at 124.46 166.37 0)
  2479. (effects (font (size 1.27 1.27)) hide)
  2480. )
  2481. (pin "1" (uuid c5e2fdd6-192c-41da-86f8-130ce4877c68))
  2482. )
  2483. (symbol (lib_id "power:GND") (at 186.69 57.15 0) (unit 1)
  2484. (in_bom yes) (on_board yes)
  2485. (uuid 1b529824-337e-4f41-8aae-49b6ae00652d)
  2486. (property "Reference" "#PWR0192" (id 0) (at 186.69 63.5 0)
  2487. (effects (font (size 1.27 1.27)) hide)
  2488. )
  2489. (property "Value" "GND" (id 1) (at 186.817 61.5442 0))
  2490. (property "Footprint" "" (id 2) (at 186.69 57.15 0)
  2491. (effects (font (size 1.27 1.27)) hide)
  2492. )
  2493. (property "Datasheet" "" (id 3) (at 186.69 57.15 0)
  2494. (effects (font (size 1.27 1.27)) hide)
  2495. )
  2496. (pin "1" (uuid d8bcca08-2cea-4af2-93a9-b02b9cd32fd1))
  2497. )
  2498. (symbol (lib_id "Device:R") (at 52.07 106.68 270) (unit 1)
  2499. (in_bom yes) (on_board yes)
  2500. (uuid 1b5747a6-762a-4b6e-8f91-1aa90cbd0339)
  2501. (property "Reference" "R67" (id 0) (at 52.07 101.4222 90))
  2502. (property "Value" "1k" (id 1) (at 52.07 103.7336 90))
  2503. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 104.902 90)
  2504. (effects (font (size 1.27 1.27)) hide)
  2505. )
  2506. (property "Datasheet" "~" (id 3) (at 52.07 106.68 0)
  2507. (effects (font (size 1.27 1.27)) hide)
  2508. )
  2509. (property "LCSC" "C11702" (id 4) (at 52.07 106.68 0)
  2510. (effects (font (size 1.27 1.27)) hide)
  2511. )
  2512. (pin "1" (uuid 30626291-3ba9-4d29-b915-bfe01c50f50a))
  2513. (pin "2" (uuid d76c55be-6853-47cd-b030-4915d190f6b4))
  2514. )
  2515. (symbol (lib_id "power:PWR_FLAG") (at 274.32 44.45 0) (unit 1)
  2516. (in_bom yes) (on_board yes)
  2517. (uuid 1d3f356b-b244-426b-8b1c-39ae6c5a4b4e)
  2518. (property "Reference" "#FLG0102" (id 0) (at 274.32 42.545 0)
  2519. (effects (font (size 1.27 1.27)) hide)
  2520. )
  2521. (property "Value" "PWR_FLAG" (id 1) (at 274.32 40.0304 0))
  2522. (property "Footprint" "" (id 2) (at 274.32 44.45 0)
  2523. (effects (font (size 1.27 1.27)) hide)
  2524. )
  2525. (property "Datasheet" "~" (id 3) (at 274.32 44.45 0)
  2526. (effects (font (size 1.27 1.27)) hide)
  2527. )
  2528. (pin "1" (uuid 43579b38-23bb-48b5-a4f4-d4b1dea3f50a))
  2529. )
  2530. (symbol (lib_id "power:GNDA") (at 27.94 139.7 0) (unit 1)
  2531. (in_bom yes) (on_board yes)
  2532. (uuid 20dbb1dd-fd1c-48bd-9224-700eadf6ff96)
  2533. (property "Reference" "#PWR0205" (id 0) (at 27.94 146.05 0)
  2534. (effects (font (size 1.27 1.27)) hide)
  2535. )
  2536. (property "Value" "GNDA" (id 1) (at 28.067 144.0942 0))
  2537. (property "Footprint" "" (id 2) (at 27.94 139.7 0)
  2538. (effects (font (size 1.27 1.27)) hide)
  2539. )
  2540. (property "Datasheet" "" (id 3) (at 27.94 139.7 0)
  2541. (effects (font (size 1.27 1.27)) hide)
  2542. )
  2543. (pin "1" (uuid 879ef72d-b5ca-4d9a-ae02-da064c709ab7))
  2544. )
  2545. (symbol (lib_id "power:GNDA") (at 27.94 60.96 0) (unit 1)
  2546. (in_bom yes) (on_board yes)
  2547. (uuid 28122e99-85f9-4440-8a10-eee271bd6ca9)
  2548. (property "Reference" "#PWR0247" (id 0) (at 27.94 67.31 0)
  2549. (effects (font (size 1.27 1.27)) hide)
  2550. )
  2551. (property "Value" "GNDA" (id 1) (at 28.067 65.3542 0))
  2552. (property "Footprint" "" (id 2) (at 27.94 60.96 0)
  2553. (effects (font (size 1.27 1.27)) hide)
  2554. )
  2555. (property "Datasheet" "" (id 3) (at 27.94 60.96 0)
  2556. (effects (font (size 1.27 1.27)) hide)
  2557. )
  2558. (pin "1" (uuid 6720fdd4-3798-4881-a00c-584c7659eae3))
  2559. )
  2560. (symbol (lib_id "Device:C_Polarized_Small") (at 186.69 50.8 0) (unit 1)
  2561. (in_bom yes) (on_board yes)
  2562. (uuid 292eecaa-1713-4c27-a066-538c5ee44376)
  2563. (property "Reference" "C55" (id 0) (at 189.611 49.6316 0)
  2564. (effects (font (size 1.27 1.27)) (justify left))
  2565. )
  2566. (property "Value" "3.3uF" (id 1) (at 189.611 51.943 0)
  2567. (effects (font (size 1.27 1.27)) (justify left))
  2568. )
  2569. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 186.69 50.8 0)
  2570. (effects (font (size 1.27 1.27)) hide)
  2571. )
  2572. (property "Datasheet" "~" (id 3) (at 186.69 50.8 0)
  2573. (effects (font (size 1.27 1.27)) hide)
  2574. )
  2575. (property "LCSC" "C87864" (id 4) (at 186.69 50.8 0)
  2576. (effects (font (size 1.27 1.27)) hide)
  2577. )
  2578. (pin "1" (uuid 8ac1dc63-c9f8-428f-bb01-1494ff534a0d))
  2579. (pin "2" (uuid cda29353-796a-4eb7-9d62-28deea5871e5))
  2580. )
  2581. (symbol (lib_id "power:GNDA") (at 63.5 72.39 0) (unit 1)
  2582. (in_bom yes) (on_board yes)
  2583. (uuid 29939c5d-d0d4-47ef-960c-1fd924a994de)
  2584. (property "Reference" "#PWR0233" (id 0) (at 63.5 78.74 0)
  2585. (effects (font (size 1.27 1.27)) hide)
  2586. )
  2587. (property "Value" "GNDA" (id 1) (at 63.627 76.7842 0))
  2588. (property "Footprint" "" (id 2) (at 63.5 72.39 0)
  2589. (effects (font (size 1.27 1.27)) hide)
  2590. )
  2591. (property "Datasheet" "" (id 3) (at 63.5 72.39 0)
  2592. (effects (font (size 1.27 1.27)) hide)
  2593. )
  2594. (pin "1" (uuid ccb29ce9-5c1f-4058-b794-ce393f68c622))
  2595. )
  2596. (symbol (lib_id "power:-3V3") (at 57.15 116.84 0) (unit 1)
  2597. (in_bom yes) (on_board yes)
  2598. (uuid 29b617e8-701d-4c6d-a11f-ec26e65094f0)
  2599. (property "Reference" "#PWR0207" (id 0) (at 57.15 114.3 0)
  2600. (effects (font (size 1.27 1.27)) hide)
  2601. )
  2602. (property "Value" "-3V3" (id 1) (at 57.531 112.4458 0))
  2603. (property "Footprint" "" (id 2) (at 57.15 116.84 0)
  2604. (effects (font (size 1.27 1.27)) hide)
  2605. )
  2606. (property "Datasheet" "" (id 3) (at 57.15 116.84 0)
  2607. (effects (font (size 1.27 1.27)) hide)
  2608. )
  2609. (pin "1" (uuid 0dbba712-366a-4c7c-bef1-f25f022e173d))
  2610. )
  2611. (symbol (lib_id "Device:C") (at 168.91 129.54 180) (unit 1)
  2612. (in_bom yes) (on_board yes)
  2613. (uuid 2a3aa0e4-74df-4ebb-9b71-9df5a99f9b47)
  2614. (property "Reference" "C72" (id 0) (at 171.831 128.3716 0)
  2615. (effects (font (size 1.27 1.27)) (justify right))
  2616. )
  2617. (property "Value" "100nF" (id 1) (at 171.831 130.683 0)
  2618. (effects (font (size 1.27 1.27)) (justify right))
  2619. )
  2620. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 167.9448 125.73 0)
  2621. (effects (font (size 1.27 1.27)) hide)
  2622. )
  2623. (property "Datasheet" "~" (id 3) (at 168.91 129.54 0)
  2624. (effects (font (size 1.27 1.27)) hide)
  2625. )
  2626. (property "LCSC" "C1525" (id 4) (at 168.91 129.54 0)
  2627. (effects (font (size 1.27 1.27)) hide)
  2628. )
  2629. (pin "1" (uuid bf62b637-a9b2-4ac7-82a9-942faa9fa708))
  2630. (pin "2" (uuid cf80babb-c4fc-43b0-9783-0eb41e4a0dd4))
  2631. )
  2632. (symbol (lib_id "power:GNDA") (at 256.54 57.15 0) (unit 1)
  2633. (in_bom yes) (on_board yes)
  2634. (uuid 2ba0cfff-1796-4cd2-b9b4-0ee05bc768ef)
  2635. (property "Reference" "#PWR0188" (id 0) (at 256.54 63.5 0)
  2636. (effects (font (size 1.27 1.27)) hide)
  2637. )
  2638. (property "Value" "GNDA" (id 1) (at 256.667 61.5442 0))
  2639. (property "Footprint" "" (id 2) (at 256.54 57.15 0)
  2640. (effects (font (size 1.27 1.27)) hide)
  2641. )
  2642. (property "Datasheet" "" (id 3) (at 256.54 57.15 0)
  2643. (effects (font (size 1.27 1.27)) hide)
  2644. )
  2645. (pin "1" (uuid 0162bd50-6b29-4153-9252-cdf2033ff21e))
  2646. )
  2647. (symbol (lib_id "Device:C") (at 92.71 72.39 180) (unit 1)
  2648. (in_bom yes) (on_board yes)
  2649. (uuid 31880848-2d7e-47ad-8623-f94e3a0c4cbb)
  2650. (property "Reference" "C59" (id 0) (at 93.98 69.85 0)
  2651. (effects (font (size 1.27 1.27)) (justify right))
  2652. )
  2653. (property "Value" "18pF" (id 1) (at 93.98 74.93 0)
  2654. (effects (font (size 1.27 1.27)) (justify right))
  2655. )
  2656. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 91.7448 68.58 0)
  2657. (effects (font (size 1.27 1.27)) hide)
  2658. )
  2659. (property "Datasheet" "~" (id 3) (at 92.71 72.39 0)
  2660. (effects (font (size 1.27 1.27)) hide)
  2661. )
  2662. (property "LCSC" "C1549" (id 4) (at 92.71 72.39 0)
  2663. (effects (font (size 1.27 1.27)) hide)
  2664. )
  2665. (pin "1" (uuid deddb53b-96c2-484b-9bbf-a78763195b66))
  2666. (pin "2" (uuid 9db3a66c-2d1b-4584-a5b0-f006f3cb290f))
  2667. )
  2668. (symbol (lib_id "power:GND") (at 228.6 146.05 0) (unit 1)
  2669. (in_bom yes) (on_board yes)
  2670. (uuid 32d2ac55-cc63-4901-8668-24b71663069f)
  2671. (property "Reference" "#PWR0253" (id 0) (at 228.6 152.4 0)
  2672. (effects (font (size 1.27 1.27)) hide)
  2673. )
  2674. (property "Value" "GND" (id 1) (at 228.727 150.4442 0))
  2675. (property "Footprint" "" (id 2) (at 228.6 146.05 0)
  2676. (effects (font (size 1.27 1.27)) hide)
  2677. )
  2678. (property "Datasheet" "" (id 3) (at 228.6 146.05 0)
  2679. (effects (font (size 1.27 1.27)) hide)
  2680. )
  2681. (pin "1" (uuid 6e75788b-2832-4b40-b21a-03631fb4c8c5))
  2682. )
  2683. (symbol (lib_id "Device:C") (at 198.12 50.8 0) (unit 1)
  2684. (in_bom yes) (on_board yes)
  2685. (uuid 3451e0b8-e5cc-4bd4-9ee5-586832783336)
  2686. (property "Reference" "C57" (id 0) (at 201.041 49.6316 0)
  2687. (effects (font (size 1.27 1.27)) (justify left))
  2688. )
  2689. (property "Value" "100nF" (id 1) (at 201.041 51.943 0)
  2690. (effects (font (size 1.27 1.27)) (justify left))
  2691. )
  2692. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 199.0852 54.61 0)
  2693. (effects (font (size 1.27 1.27)) hide)
  2694. )
  2695. (property "Datasheet" "~" (id 3) (at 198.12 50.8 0)
  2696. (effects (font (size 1.27 1.27)) hide)
  2697. )
  2698. (property "LCSC" "C1525" (id 4) (at 198.12 50.8 0)
  2699. (effects (font (size 1.27 1.27)) hide)
  2700. )
  2701. (pin "1" (uuid e3b3bdb5-8e1a-4d04-921c-019aa07fd8e9))
  2702. (pin "2" (uuid 1cb3ec4c-1105-40f6-9e94-81f1270b1f6e))
  2703. )
  2704. (symbol (lib_id "power:GND") (at 105.41 139.7 0) (unit 1)
  2705. (in_bom yes) (on_board yes)
  2706. (uuid 37191450-a834-4171-80df-9fee91b104fd)
  2707. (property "Reference" "#PWR0191" (id 0) (at 105.41 146.05 0)
  2708. (effects (font (size 1.27 1.27)) hide)
  2709. )
  2710. (property "Value" "GND" (id 1) (at 105.537 144.0942 0))
  2711. (property "Footprint" "" (id 2) (at 105.41 139.7 0)
  2712. (effects (font (size 1.27 1.27)) hide)
  2713. )
  2714. (property "Datasheet" "" (id 3) (at 105.41 139.7 0)
  2715. (effects (font (size 1.27 1.27)) hide)
  2716. )
  2717. (pin "1" (uuid 69a65e47-e837-483a-bd2b-f412a2c11ef0))
  2718. )
  2719. (symbol (lib_id "Device:R") (at 52.07 62.23 270) (unit 1)
  2720. (in_bom yes) (on_board yes)
  2721. (uuid 376504a8-15f0-43da-95a7-b6fc08c06053)
  2722. (property "Reference" "R59" (id 0) (at 50.8 59.69 90))
  2723. (property "Value" "1k" (id 1) (at 55.88 59.69 90))
  2724. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 60.452 90)
  2725. (effects (font (size 1.27 1.27)) hide)
  2726. )
  2727. (property "Datasheet" "~" (id 3) (at 52.07 62.23 0)
  2728. (effects (font (size 1.27 1.27)) hide)
  2729. )
  2730. (property "LCSC" "C11702" (id 4) (at 52.07 62.23 0)
  2731. (effects (font (size 1.27 1.27)) hide)
  2732. )
  2733. (pin "1" (uuid eb97e33a-05d8-478d-9735-59d4fe89eda1))
  2734. (pin "2" (uuid cb3b4fff-88a7-4d52-a377-3bd733aaae99))
  2735. )
  2736. (symbol (lib_id "power:GNDA") (at 156.21 54.61 0) (unit 1)
  2737. (in_bom yes) (on_board yes)
  2738. (uuid 37eddccd-66cd-4aae-afaa-68dcc9005132)
  2739. (property "Reference" "#PWR0240" (id 0) (at 156.21 60.96 0)
  2740. (effects (font (size 1.27 1.27)) hide)
  2741. )
  2742. (property "Value" "GNDA" (id 1) (at 156.337 59.0042 0))
  2743. (property "Footprint" "" (id 2) (at 156.21 54.61 0)
  2744. (effects (font (size 1.27 1.27)) hide)
  2745. )
  2746. (property "Datasheet" "" (id 3) (at 156.21 54.61 0)
  2747. (effects (font (size 1.27 1.27)) hide)
  2748. )
  2749. (pin "1" (uuid d48d0988-1a90-4e49-a0e4-8c75376681c0))
  2750. )
  2751. (symbol (lib_id "power:+3V3") (at 228.6 125.73 0) (unit 1)
  2752. (in_bom yes) (on_board yes)
  2753. (uuid 39be1a80-3abf-4cc9-a03f-277d4498dff6)
  2754. (property "Reference" "#PWR0252" (id 0) (at 228.6 129.54 0)
  2755. (effects (font (size 1.27 1.27)) hide)
  2756. )
  2757. (property "Value" "+3V3" (id 1) (at 228.981 121.3358 0))
  2758. (property "Footprint" "" (id 2) (at 228.6 125.73 0)
  2759. (effects (font (size 1.27 1.27)) hide)
  2760. )
  2761. (property "Datasheet" "" (id 3) (at 228.6 125.73 0)
  2762. (effects (font (size 1.27 1.27)) hide)
  2763. )
  2764. (pin "1" (uuid a85725c3-8402-44d8-97a4-256028888dbd))
  2765. )
  2766. (symbol (lib_id "power:+3.3VADC") (at 64.77 36.83 0) (unit 1)
  2767. (in_bom yes) (on_board yes)
  2768. (uuid 3c0f3210-25b2-405c-98da-8abdc48a0da4)
  2769. (property "Reference" "#PWR0249" (id 0) (at 68.58 38.1 0)
  2770. (effects (font (size 1.27 1.27)) hide)
  2771. )
  2772. (property "Value" "+3.3VADC" (id 1) (at 65.278 33.1978 0))
  2773. (property "Footprint" "" (id 2) (at 64.77 36.83 0)
  2774. (effects (font (size 1.27 1.27)) hide)
  2775. )
  2776. (property "Datasheet" "" (id 3) (at 64.77 36.83 0)
  2777. (effects (font (size 1.27 1.27)) hide)
  2778. )
  2779. (pin "1" (uuid 12b4641d-c2b6-4d4b-88cc-fd4b73ae7d98))
  2780. )
  2781. (symbol (lib_id "Device:C") (at 102.87 72.39 180) (unit 1)
  2782. (in_bom yes) (on_board yes)
  2783. (uuid 3f8bce2f-f092-4b69-a2f7-7ebff8165487)
  2784. (property "Reference" "C60" (id 0) (at 104.14 69.85 0)
  2785. (effects (font (size 1.27 1.27)) (justify right))
  2786. )
  2787. (property "Value" "18pF" (id 1) (at 104.14 74.93 0)
  2788. (effects (font (size 1.27 1.27)) (justify right))
  2789. )
  2790. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 101.9048 68.58 0)
  2791. (effects (font (size 1.27 1.27)) hide)
  2792. )
  2793. (property "Datasheet" "~" (id 3) (at 102.87 72.39 0)
  2794. (effects (font (size 1.27 1.27)) hide)
  2795. )
  2796. (property "LCSC" "C1549" (id 4) (at 102.87 72.39 0)
  2797. (effects (font (size 1.27 1.27)) hide)
  2798. )
  2799. (pin "1" (uuid 98893e1a-8043-4a29-b959-364bec7b743b))
  2800. (pin "2" (uuid 1ef8d051-42bb-43b4-aca9-1d13b188e1ed))
  2801. )
  2802. (symbol (lib_id "power:+3V3") (at 120.65 24.13 0) (unit 1)
  2803. (in_bom yes) (on_board yes)
  2804. (uuid 3fb74797-86cc-4b2b-bcc9-333f56933c4c)
  2805. (property "Reference" "#PWR0235" (id 0) (at 120.65 27.94 0)
  2806. (effects (font (size 1.27 1.27)) hide)
  2807. )
  2808. (property "Value" "+3V3" (id 1) (at 121.031 19.7358 0))
  2809. (property "Footprint" "" (id 2) (at 120.65 24.13 0)
  2810. (effects (font (size 1.27 1.27)) hide)
  2811. )
  2812. (property "Datasheet" "" (id 3) (at 120.65 24.13 0)
  2813. (effects (font (size 1.27 1.27)) hide)
  2814. )
  2815. (pin "1" (uuid 9cd72f16-ea8c-494e-aadf-6467928fac0d))
  2816. )
  2817. (symbol (lib_id "Device:R") (at 36.83 135.89 270) (unit 1)
  2818. (in_bom yes) (on_board yes)
  2819. (uuid 40ba2de4-e92f-4d99-9118-a68407bb88ff)
  2820. (property "Reference" "R66" (id 0) (at 36.83 130.6322 90))
  2821. (property "Value" "1k" (id 1) (at 36.83 132.9436 90))
  2822. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 134.112 90)
  2823. (effects (font (size 1.27 1.27)) hide)
  2824. )
  2825. (property "Datasheet" "~" (id 3) (at 36.83 135.89 0)
  2826. (effects (font (size 1.27 1.27)) hide)
  2827. )
  2828. (property "LCSC" "C11702" (id 4) (at 36.83 135.89 0)
  2829. (effects (font (size 1.27 1.27)) hide)
  2830. )
  2831. (pin "1" (uuid d0542f4e-ae03-4339-a72b-e810d417e75c))
  2832. (pin "2" (uuid 4142e150-0155-4c03-8963-8cfbbca03939))
  2833. )
  2834. (symbol (lib_id "power:GNDA") (at 212.09 102.87 0) (unit 1)
  2835. (in_bom yes) (on_board yes)
  2836. (uuid 4520838b-b386-4c1a-ae61-0999e4bb0c70)
  2837. (property "Reference" "#PWR0199" (id 0) (at 212.09 109.22 0)
  2838. (effects (font (size 1.27 1.27)) hide)
  2839. )
  2840. (property "Value" "GNDA" (id 1) (at 212.217 107.2642 0))
  2841. (property "Footprint" "" (id 2) (at 212.09 102.87 0)
  2842. (effects (font (size 1.27 1.27)) hide)
  2843. )
  2844. (property "Datasheet" "" (id 3) (at 212.09 102.87 0)
  2845. (effects (font (size 1.27 1.27)) hide)
  2846. )
  2847. (pin "1" (uuid 2222cea1-32b2-4088-970d-b48750d85806))
  2848. )
  2849. (symbol (lib_id "Device:R") (at 52.07 27.94 270) (unit 1)
  2850. (in_bom yes) (on_board yes)
  2851. (uuid 46617fbe-d99c-4562-8e6d-b69c8cd6a29e)
  2852. (property "Reference" "R58" (id 0) (at 52.07 22.6822 90))
  2853. (property "Value" "1k" (id 1) (at 52.07 24.9936 90))
  2854. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 26.162 90)
  2855. (effects (font (size 1.27 1.27)) hide)
  2856. )
  2857. (property "Datasheet" "~" (id 3) (at 52.07 27.94 0)
  2858. (effects (font (size 1.27 1.27)) hide)
  2859. )
  2860. (property "LCSC" "C11702" (id 4) (at 52.07 27.94 0)
  2861. (effects (font (size 1.27 1.27)) hide)
  2862. )
  2863. (pin "1" (uuid 33df4e5a-a31b-46c3-889c-d9617c6a97a3))
  2864. (pin "2" (uuid 96117d00-f55b-4275-9b56-80253338dc1c))
  2865. )
  2866. (symbol (lib_id "Greaseweazle:AD8138-ad8138") (at 78.74 127 0) (unit 1)
  2867. (in_bom yes) (on_board yes)
  2868. (uuid 483f3754-695f-4639-a7d4-e12085459452)
  2869. (property "Reference" "U9" (id 0) (at 78.74 113.665 0))
  2870. (property "Value" "AD8138ARZ-R7" (id 1) (at 78.74 115.9764 0))
  2871. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 71.12 139.7 0)
  2872. (effects (font (size 1.27 1.27)) (justify left) hide)
  2873. )
  2874. (property "Datasheet" "http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf" (id 3) (at 71.12 142.24 0)
  2875. (effects (font (size 1.27 1.27)) (justify left) hide)
  2876. )
  2877. (property "Farnell" "2725700" (id 4) (at 71.12 144.78 0)
  2878. (effects (font (size 1.27 1.27)) (justify left) hide)
  2879. )
  2880. (pin "1" (uuid 421963e3-c4d9-45a6-a858-7510689811cb))
  2881. (pin "2" (uuid aeaeca6e-737e-4911-b61f-6ac3ab48cd9d))
  2882. (pin "3" (uuid 7e2d0869-e4b5-4aaf-b7dc-4bb91371c711))
  2883. (pin "4" (uuid 8c0f041b-c225-48e4-af73-fd07366ad93d))
  2884. (pin "5" (uuid 669af895-5f0e-46a5-81d6-0d914ce156f4))
  2885. (pin "6" (uuid bdd53c4e-70cb-4da3-9938-f2845cccd432))
  2886. (pin "7" (uuid 3cec015d-d1fa-4633-8b10-dbf5b4a973e7))
  2887. (pin "8" (uuid 2df97751-26f5-49e1-b7b7-3eb26a3ceb55))
  2888. )
  2889. (symbol (lib_id "Device:C") (at 156.21 129.54 180) (unit 1)
  2890. (in_bom yes) (on_board yes)
  2891. (uuid 494bf120-7732-48b5-a8d5-04599731a5ad)
  2892. (property "Reference" "C70" (id 0) (at 159.131 128.3716 0)
  2893. (effects (font (size 1.27 1.27)) (justify right))
  2894. )
  2895. (property "Value" "100nF" (id 1) (at 159.131 130.683 0)
  2896. (effects (font (size 1.27 1.27)) (justify right))
  2897. )
  2898. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 155.2448 125.73 0)
  2899. (effects (font (size 1.27 1.27)) hide)
  2900. )
  2901. (property "Datasheet" "~" (id 3) (at 156.21 129.54 0)
  2902. (effects (font (size 1.27 1.27)) hide)
  2903. )
  2904. (property "LCSC" "C1525" (id 4) (at 156.21 129.54 0)
  2905. (effects (font (size 1.27 1.27)) hide)
  2906. )
  2907. (pin "1" (uuid 8b9c903a-a1b7-40a7-addb-8e88734521e1))
  2908. (pin "2" (uuid 2bf67420-d466-4370-92dd-a2f430d91e45))
  2909. )
  2910. (symbol (lib_id "Device:R") (at 97.79 49.53 270) (unit 1)
  2911. (in_bom yes) (on_board yes)
  2912. (uuid 4d519c3a-abc8-4421-803d-ced69e37d9f7)
  2913. (property "Reference" "R61" (id 0) (at 92.71 46.99 90))
  2914. (property "Value" "22" (id 1) (at 101.6 46.99 90))
  2915. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 47.752 90)
  2916. (effects (font (size 1.27 1.27)) hide)
  2917. )
  2918. (property "Datasheet" "~" (id 3) (at 97.79 49.53 0)
  2919. (effects (font (size 1.27 1.27)) hide)
  2920. )
  2921. (property "LCSC" "C25092" (id 4) (at 97.79 49.53 0)
  2922. (effects (font (size 1.27 1.27)) hide)
  2923. )
  2924. (pin "1" (uuid d0787549-a728-4ff6-b4bb-264b3a96755c))
  2925. (pin "2" (uuid e22252f8-d606-4a0b-9230-a9e8317bc21b))
  2926. )
  2927. (symbol (lib_id "power:-3V3") (at 57.15 38.1 0) (unit 1)
  2928. (in_bom yes) (on_board yes)
  2929. (uuid 4d71b557-d950-40f1-9a8f-35bdf0b88b9a)
  2930. (property "Reference" "#PWR0248" (id 0) (at 57.15 35.56 0)
  2931. (effects (font (size 1.27 1.27)) hide)
  2932. )
  2933. (property "Value" "-3V3" (id 1) (at 57.531 33.7058 0))
  2934. (property "Footprint" "" (id 2) (at 57.15 38.1 0)
  2935. (effects (font (size 1.27 1.27)) hide)
  2936. )
  2937. (property "Datasheet" "" (id 3) (at 57.15 38.1 0)
  2938. (effects (font (size 1.27 1.27)) hide)
  2939. )
  2940. (pin "1" (uuid 8bd054af-151a-4863-91aa-7f5241170492))
  2941. )
  2942. (symbol (lib_id "Greaseweazle:CP_Small-Device") (at 148.59 39.37 0) (unit 1)
  2943. (in_bom yes) (on_board yes)
  2944. (uuid 4dbb4c65-f29c-4e56-a3ae-edd9ec7100ab)
  2945. (property "Reference" "C64" (id 0) (at 150.8252 38.2016 0)
  2946. (effects (font (size 1.27 1.27)) (justify left))
  2947. )
  2948. (property "Value" "47uF" (id 1) (at 150.8252 40.513 0)
  2949. (effects (font (size 1.27 1.27)) (justify left))
  2950. )
  2951. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 148.59 39.37 0)
  2952. (effects (font (size 1.27 1.27)) hide)
  2953. )
  2954. (property "Datasheet" "~" (id 3) (at 148.59 39.37 0)
  2955. (effects (font (size 1.27 1.27)) hide)
  2956. )
  2957. (property "LCSC" "C140782" (id 4) (at 148.59 39.37 0)
  2958. (effects (font (size 1.27 1.27)) hide)
  2959. )
  2960. (pin "1" (uuid 5712eb39-f5a4-42bc-82f3-3678a9fc07f6))
  2961. (pin "2" (uuid 87f8744c-22ba-43f8-a180-c60f26a70f95))
  2962. )
  2963. (symbol (lib_id "power:GNDA") (at 203.2 102.87 0) (unit 1)
  2964. (in_bom yes) (on_board yes)
  2965. (uuid 4deb904e-fd2d-4d48-8ca1-9d6a1354ae8d)
  2966. (property "Reference" "#PWR0183" (id 0) (at 203.2 109.22 0)
  2967. (effects (font (size 1.27 1.27)) hide)
  2968. )
  2969. (property "Value" "GNDA" (id 1) (at 203.327 107.2642 0))
  2970. (property "Footprint" "" (id 2) (at 203.2 102.87 0)
  2971. (effects (font (size 1.27 1.27)) hide)
  2972. )
  2973. (property "Datasheet" "" (id 3) (at 203.2 102.87 0)
  2974. (effects (font (size 1.27 1.27)) hide)
  2975. )
  2976. (pin "1" (uuid 92b401d4-4029-44b2-973a-5ed09d14a032))
  2977. )
  2978. (symbol (lib_id "Device:C") (at 168.91 50.8 180) (unit 1)
  2979. (in_bom yes) (on_board yes)
  2980. (uuid 4e2e1f17-b513-4179-b43e-f34d94712930)
  2981. (property "Reference" "C69" (id 0) (at 171.831 49.6316 0)
  2982. (effects (font (size 1.27 1.27)) (justify right))
  2983. )
  2984. (property "Value" "100nF" (id 1) (at 171.831 51.943 0)
  2985. (effects (font (size 1.27 1.27)) (justify right))
  2986. )
  2987. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 167.9448 46.99 0)
  2988. (effects (font (size 1.27 1.27)) hide)
  2989. )
  2990. (property "Datasheet" "~" (id 3) (at 168.91 50.8 0)
  2991. (effects (font (size 1.27 1.27)) hide)
  2992. )
  2993. (property "LCSC" "C1525" (id 4) (at 168.91 50.8 0)
  2994. (effects (font (size 1.27 1.27)) hide)
  2995. )
  2996. (pin "1" (uuid b3bfbbd9-031b-474d-a57d-5331244510bf))
  2997. (pin "2" (uuid 766f03e8-f246-4bae-86bd-56dabf555c57))
  2998. )
  2999. (symbol (lib_id "power:GNDA") (at 92.71 154.94 0) (unit 1)
  3000. (in_bom yes) (on_board yes)
  3001. (uuid 50eda5fa-93e9-477a-9ecd-081aa0fb8923)
  3002. (property "Reference" "#PWR0194" (id 0) (at 92.71 161.29 0)
  3003. (effects (font (size 1.27 1.27)) hide)
  3004. )
  3005. (property "Value" "GNDA" (id 1) (at 92.837 159.3342 0))
  3006. (property "Footprint" "" (id 2) (at 92.71 154.94 0)
  3007. (effects (font (size 1.27 1.27)) hide)
  3008. )
  3009. (property "Datasheet" "" (id 3) (at 92.71 154.94 0)
  3010. (effects (font (size 1.27 1.27)) hide)
  3011. )
  3012. (pin "1" (uuid ec63d9f0-094b-482f-9234-3187f4ba9e6b))
  3013. )
  3014. (symbol (lib_id "Greaseweazle:LM2664-tinkerforge") (at 222.25 40.64 0) (unit 1)
  3015. (in_bom yes) (on_board yes)
  3016. (uuid 530796e2-7331-4204-8f24-dcc33f1230f9)
  3017. (property "Reference" "U14" (id 0) (at 222.25 30.2768 0)
  3018. (effects (font (size 1.524 1.524)))
  3019. )
  3020. (property "Value" "LM2664" (id 1) (at 222.25 32.9692 0)
  3021. (effects (font (size 1.524 1.524)))
  3022. )
  3023. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 203.2 66.04 0)
  3024. (effects (font (size 1.524 1.524)))
  3025. )
  3026. (property "Datasheet" "" (id 3) (at 203.2 66.04 0)
  3027. (effects (font (size 1.524 1.524)))
  3028. )
  3029. (property "LCSC" "C840095" (id 4) (at 222.25 40.64 0)
  3030. (effects (font (size 1.27 1.27)) hide)
  3031. )
  3032. (pin "1" (uuid b41e696a-a7eb-4b70-98ad-f2a8f41945ec))
  3033. (pin "2" (uuid bafbdfad-c206-495d-9c2c-618e11170b65))
  3034. (pin "3" (uuid f16f5d78-4c7d-460a-882c-6ef282940218))
  3035. (pin "4" (uuid cd16ba71-d159-496c-b18d-1b782968d1d9))
  3036. (pin "5" (uuid 8be89ae9-e198-42ab-9c71-6f71417ddbc5))
  3037. (pin "6" (uuid 3c304074-f87f-463b-b572-6e81cfd8df98))
  3038. )
  3039. (symbol (lib_id "power:+3V3") (at 180.34 91.44 0) (unit 1)
  3040. (in_bom yes) (on_board yes)
  3041. (uuid 54d04f66-b81d-46aa-89e0-c9e6591e7c8d)
  3042. (property "Reference" "#PWR0189" (id 0) (at 180.34 95.25 0)
  3043. (effects (font (size 1.27 1.27)) hide)
  3044. )
  3045. (property "Value" "+3V3" (id 1) (at 180.721 87.0458 0))
  3046. (property "Footprint" "" (id 2) (at 180.34 91.44 0)
  3047. (effects (font (size 1.27 1.27)) hide)
  3048. )
  3049. (property "Datasheet" "" (id 3) (at 180.34 91.44 0)
  3050. (effects (font (size 1.27 1.27)) hide)
  3051. )
  3052. (pin "1" (uuid 3ee28ef7-7d9d-4cb9-8251-afe3aaa07396))
  3053. )
  3054. (symbol (lib_id "power:+3.3VADC") (at 64.77 115.57 0) (unit 1)
  3055. (in_bom yes) (on_board yes)
  3056. (uuid 56cf5c35-6aa6-4082-ba0d-e6c3653bc82c)
  3057. (property "Reference" "#PWR0203" (id 0) (at 68.58 116.84 0)
  3058. (effects (font (size 1.27 1.27)) hide)
  3059. )
  3060. (property "Value" "+3.3VADC" (id 1) (at 65.278 111.9378 0))
  3061. (property "Footprint" "" (id 2) (at 64.77 115.57 0)
  3062. (effects (font (size 1.27 1.27)) hide)
  3063. )
  3064. (property "Datasheet" "" (id 3) (at 64.77 115.57 0)
  3065. (effects (font (size 1.27 1.27)) hide)
  3066. )
  3067. (pin "1" (uuid df8054a8-3657-48cf-8f67-6249cd897592))
  3068. )
  3069. (symbol (lib_id "Device:C") (at 158.75 39.37 180) (unit 1)
  3070. (in_bom yes) (on_board yes)
  3071. (uuid 62b2e931-73fe-4a9d-8601-8cb8563b3f67)
  3072. (property "Reference" "C67" (id 0) (at 161.671 38.2016 0)
  3073. (effects (font (size 1.27 1.27)) (justify right))
  3074. )
  3075. (property "Value" "100nF" (id 1) (at 161.671 40.513 0)
  3076. (effects (font (size 1.27 1.27)) (justify right))
  3077. )
  3078. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 157.7848 35.56 0)
  3079. (effects (font (size 1.27 1.27)) hide)
  3080. )
  3081. (property "Datasheet" "~" (id 3) (at 158.75 39.37 0)
  3082. (effects (font (size 1.27 1.27)) hide)
  3083. )
  3084. (property "LCSC" "C1525" (id 4) (at 158.75 39.37 0)
  3085. (effects (font (size 1.27 1.27)) hide)
  3086. )
  3087. (pin "1" (uuid 86f253d0-96e9-4942-9cec-26776fa83239))
  3088. (pin "2" (uuid 2403e689-bd13-4f66-a950-989dc9204bf6))
  3089. )
  3090. (symbol (lib_id "Oscillator:ASCO") (at 228.6 135.89 0) (mirror y) (unit 1)
  3091. (in_bom yes) (on_board yes)
  3092. (uuid 656588a1-55c1-4d4d-8c13-9231f5e2846a)
  3093. (property "Reference" "X2" (id 0) (at 239.8776 134.7216 0)
  3094. (effects (font (size 1.27 1.27)) (justify right))
  3095. )
  3096. (property "Value" "ASFLMB-60.000MHZ-LC-T" (id 1) (at 239.8776 137.033 0)
  3097. (effects (font (size 1.27 1.27)) (justify right))
  3098. )
  3099. (property "Footprint" "Oscillator:Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm" (id 2) (at 226.06 144.78 0)
  3100. (effects (font (size 1.27 1.27)) hide)
  3101. )
  3102. (property "Datasheet" "https://datasheet.lcsc.com/lcsc/1810170931_Yangxing-Tech-O705065MEDA4SC_C62025.pdf" (id 3) (at 234.315 132.715 0)
  3103. (effects (font (size 1.27 1.27)) hide)
  3104. )
  3105. (property "MOUSER" "" (id 4) (at 228.6 135.89 0)
  3106. (effects (font (size 1.27 1.27)) hide)
  3107. )
  3108. (property "LCSC" "C62025" (id 5) (at 228.6 135.89 0)
  3109. (effects (font (size 1.27 1.27)) hide)
  3110. )
  3111. (pin "1" (uuid 6e9e4e60-1ea2-4028-9787-f6d07a407eed))
  3112. (pin "2" (uuid e8382691-5416-4301-a49b-79f5a2fa9684))
  3113. (pin "3" (uuid 2fee1669-fbda-44d9-a035-9cd90629dc2b))
  3114. (pin "4" (uuid b0bd54c7-965a-45dd-930d-83148d8af081))
  3115. )
  3116. (symbol (lib_id "power:GND") (at 102.87 113.03 0) (unit 1)
  3117. (in_bom yes) (on_board yes)
  3118. (uuid 660ec9e9-a96b-418b-bf77-78b1133eaaa7)
  3119. (property "Reference" "#PWR0211" (id 0) (at 102.87 119.38 0)
  3120. (effects (font (size 1.27 1.27)) hide)
  3121. )
  3122. (property "Value" "GND" (id 1) (at 102.997 117.4242 0))
  3123. (property "Footprint" "" (id 2) (at 102.87 113.03 0)
  3124. (effects (font (size 1.27 1.27)) hide)
  3125. )
  3126. (property "Datasheet" "" (id 3) (at 102.87 113.03 0)
  3127. (effects (font (size 1.27 1.27)) hide)
  3128. )
  3129. (pin "1" (uuid b10756aa-2e06-4939-9446-6151225b3a4e))
  3130. )
  3131. (symbol (lib_id "Greaseweazle:CP_Small-Device") (at 203.2 96.52 0) (unit 1)
  3132. (in_bom yes) (on_board yes)
  3133. (uuid 690cc8a8-660a-4d68-85d8-28464242ed6c)
  3134. (property "Reference" "C56" (id 0) (at 205.4352 95.3516 0)
  3135. (effects (font (size 1.27 1.27)) (justify left))
  3136. )
  3137. (property "Value" "47uF" (id 1) (at 205.4352 97.663 0)
  3138. (effects (font (size 1.27 1.27)) (justify left))
  3139. )
  3140. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 203.2 96.52 0)
  3141. (effects (font (size 1.27 1.27)) hide)
  3142. )
  3143. (property "Datasheet" "~" (id 3) (at 203.2 96.52 0)
  3144. (effects (font (size 1.27 1.27)) hide)
  3145. )
  3146. (property "LCSC" "C140782" (id 4) (at 203.2 96.52 0)
  3147. (effects (font (size 1.27 1.27)) hide)
  3148. )
  3149. (pin "1" (uuid 380faec0-7ae0-470a-ae1a-a27c5003ecf2))
  3150. (pin "2" (uuid 207a02e2-26cf-48bb-86cf-bc2dbce25656))
  3151. )
  3152. (symbol (lib_id "Device:C") (at 63.5 68.58 180) (unit 1)
  3153. (in_bom yes) (on_board yes)
  3154. (uuid 6eaa4b52-7e9e-469f-809c-5821d7afb4a1)
  3155. (property "Reference" "C52" (id 0) (at 66.421 67.4116 0)
  3156. (effects (font (size 1.27 1.27)) (justify right))
  3157. )
  3158. (property "Value" "100nF" (id 1) (at 66.421 69.723 0)
  3159. (effects (font (size 1.27 1.27)) (justify right))
  3160. )
  3161. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 62.5348 64.77 0)
  3162. (effects (font (size 1.27 1.27)) hide)
  3163. )
  3164. (property "Datasheet" "~" (id 3) (at 63.5 68.58 0)
  3165. (effects (font (size 1.27 1.27)) hide)
  3166. )
  3167. (property "LCSC" "C1525" (id 4) (at 63.5 68.58 0)
  3168. (effects (font (size 1.27 1.27)) hide)
  3169. )
  3170. (pin "1" (uuid 240baf7e-6f2e-4ef8-a99c-f5e1a6da97b8))
  3171. (pin "2" (uuid 842acb61-f992-462f-a29a-65c85881fa0d))
  3172. )
  3173. (symbol (lib_id "power:GNDA") (at 124.46 87.63 0) (unit 1)
  3174. (in_bom yes) (on_board yes)
  3175. (uuid 71f39067-782c-458e-889e-e78f7a279a0a)
  3176. (property "Reference" "#PWR0200" (id 0) (at 124.46 93.98 0)
  3177. (effects (font (size 1.27 1.27)) hide)
  3178. )
  3179. (property "Value" "GNDA" (id 1) (at 124.587 92.0242 0))
  3180. (property "Footprint" "" (id 2) (at 124.46 87.63 0)
  3181. (effects (font (size 1.27 1.27)) hide)
  3182. )
  3183. (property "Datasheet" "" (id 3) (at 124.46 87.63 0)
  3184. (effects (font (size 1.27 1.27)) hide)
  3185. )
  3186. (pin "1" (uuid 88daac98-6887-4c62-9221-05b834848a2f))
  3187. )
  3188. (symbol (lib_id "Greaseweazle:CP_Small-Device") (at 180.34 95.25 0) (unit 1)
  3189. (in_bom yes) (on_board yes)
  3190. (uuid 74c6cdf0-1811-4024-880f-2fc2fbce716a)
  3191. (property "Reference" "C49" (id 0) (at 182.5752 94.0816 0)
  3192. (effects (font (size 1.27 1.27)) (justify left))
  3193. )
  3194. (property "Value" "47uF" (id 1) (at 182.5752 96.393 0)
  3195. (effects (font (size 1.27 1.27)) (justify left))
  3196. )
  3197. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 180.34 95.25 0)
  3198. (effects (font (size 1.27 1.27)) hide)
  3199. )
  3200. (property "Datasheet" "~" (id 3) (at 180.34 95.25 0)
  3201. (effects (font (size 1.27 1.27)) hide)
  3202. )
  3203. (property "LCSC" "C140782" (id 4) (at 180.34 95.25 0)
  3204. (effects (font (size 1.27 1.27)) hide)
  3205. )
  3206. (pin "1" (uuid c63e6346-30bc-4a75-8ce0-332575bbadf6))
  3207. (pin "2" (uuid 82117aad-5819-40c6-9dae-f51d791a04d0))
  3208. )
  3209. (symbol (lib_id "Device:R") (at 52.07 140.97 270) (unit 1)
  3210. (in_bom yes) (on_board yes)
  3211. (uuid 756b0a26-47b6-45ab-9b00-76ddfba740d4)
  3212. (property "Reference" "R68" (id 0) (at 49.53 138.43 90))
  3213. (property "Value" "1k" (id 1) (at 54.61 138.43 90))
  3214. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 139.192 90)
  3215. (effects (font (size 1.27 1.27)) hide)
  3216. )
  3217. (property "Datasheet" "~" (id 3) (at 52.07 140.97 0)
  3218. (effects (font (size 1.27 1.27)) hide)
  3219. )
  3220. (property "LCSC" "C11702" (id 4) (at 52.07 140.97 0)
  3221. (effects (font (size 1.27 1.27)) hide)
  3222. )
  3223. (pin "1" (uuid 7654e945-76e8-4fca-a400-60064077e553))
  3224. (pin "2" (uuid 4c06db55-4bab-4b90-a899-00f5ff0a019a))
  3225. )
  3226. (symbol (lib_id "power:GNDA") (at 156.21 133.35 0) (unit 1)
  3227. (in_bom yes) (on_board yes)
  3228. (uuid 77286fe1-c01a-4d48-94a1-e4ecfcbede1f)
  3229. (property "Reference" "#PWR0215" (id 0) (at 156.21 139.7 0)
  3230. (effects (font (size 1.27 1.27)) hide)
  3231. )
  3232. (property "Value" "GNDA" (id 1) (at 156.337 137.7442 0))
  3233. (property "Footprint" "" (id 2) (at 156.21 133.35 0)
  3234. (effects (font (size 1.27 1.27)) hide)
  3235. )
  3236. (property "Datasheet" "" (id 3) (at 156.21 133.35 0)
  3237. (effects (font (size 1.27 1.27)) hide)
  3238. )
  3239. (pin "1" (uuid dfc59c19-d5b7-479d-89d2-5ea60930bc0f))
  3240. )
  3241. (symbol (lib_id "power:+3V3") (at 120.65 102.87 0) (unit 1)
  3242. (in_bom yes) (on_board yes)
  3243. (uuid 7be74137-1904-41a3-b044-50d9530ffcd8)
  3244. (property "Reference" "#PWR0209" (id 0) (at 120.65 106.68 0)
  3245. (effects (font (size 1.27 1.27)) hide)
  3246. )
  3247. (property "Value" "+3V3" (id 1) (at 121.031 98.4758 0))
  3248. (property "Footprint" "" (id 2) (at 120.65 102.87 0)
  3249. (effects (font (size 1.27 1.27)) hide)
  3250. )
  3251. (property "Datasheet" "" (id 3) (at 120.65 102.87 0)
  3252. (effects (font (size 1.27 1.27)) hide)
  3253. )
  3254. (pin "1" (uuid 28d79330-7def-4d53-b47d-39cda0c181bc))
  3255. )
  3256. (symbol (lib_id "Device:C_Polarized_Small") (at 256.54 50.8 0) (unit 1)
  3257. (in_bom yes) (on_board yes)
  3258. (uuid 7da573c9-2ed3-46bd-9520-ce143e314f93)
  3259. (property "Reference" "C65" (id 0) (at 253.619 51.9684 0)
  3260. (effects (font (size 1.27 1.27)) (justify right))
  3261. )
  3262. (property "Value" "3.3uF" (id 1) (at 253.619 49.657 0)
  3263. (effects (font (size 1.27 1.27)) (justify right))
  3264. )
  3265. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 256.54 50.8 0)
  3266. (effects (font (size 1.27 1.27)) hide)
  3267. )
  3268. (property "Datasheet" "~" (id 3) (at 256.54 50.8 0)
  3269. (effects (font (size 1.27 1.27)) hide)
  3270. )
  3271. (property "LCSC" "C87864" (id 4) (at 256.54 50.8 0)
  3272. (effects (font (size 1.27 1.27)) hide)
  3273. )
  3274. (pin "1" (uuid 8622a3df-302b-4a9d-8e32-722512ac5de6))
  3275. (pin "2" (uuid 6f6e6b04-7157-48cc-9171-e7e00a10db6c))
  3276. )
  3277. (symbol (lib_id "Greaseweazle:AD9235BR-ad9235") (at 125.73 135.89 0) (unit 1)
  3278. (in_bom yes) (on_board yes)
  3279. (uuid 85fd9882-f192-4cf4-a9fb-2e6abbcba5e2)
  3280. (property "Reference" "U10" (id 0) (at 128.27 109.22 0))
  3281. (property "Value" "AD9235BRUZ-65" (id 1) (at 132.08 111.76 0))
  3282. (property "Footprint" "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm" (id 2) (at 111.76 135.89 0)
  3283. (effects (font (size 1.27 1.27)) hide)
  3284. )
  3285. (property "Datasheet" "" (id 3) (at 111.76 135.89 0)
  3286. (effects (font (size 1.27 1.27)) hide)
  3287. )
  3288. (pin "1" (uuid bff4c2fd-2ef8-4228-8c84-1782bde579d3))
  3289. (pin "10" (uuid 5c6012f2-3a1e-4c7a-b2c3-aa94c8afb2ca))
  3290. (pin "11" (uuid d0b7ebb9-b0de-4ed7-85bc-b198cc46fd3e))
  3291. (pin "12" (uuid f4797f2b-7628-44af-b42e-ea7a122b3ebd))
  3292. (pin "13" (uuid 01c81964-8055-477f-ad7a-ab9d57c69b23))
  3293. (pin "14" (uuid c2fabdbd-76ec-4123-92ca-60a8169ffceb))
  3294. (pin "15" (uuid 2803325f-6a44-46d0-bd49-8ed5d9e2a6ba))
  3295. (pin "16" (uuid 0bc41fbf-e3a3-4b86-8db7-995daf941e14))
  3296. (pin "17" (uuid fe2088aa-e2c8-4e2c-83ff-ffcdb89b2925))
  3297. (pin "18" (uuid 7a65f7c4-b720-417a-bbab-c9e4bfc26961))
  3298. (pin "19" (uuid 3d42e81a-527e-42c4-8fcc-f5cd6eb93c8a))
  3299. (pin "2" (uuid 68431a9e-841e-40be-841f-2fa9993a1c3b))
  3300. (pin "20" (uuid b754cd22-efd1-4aef-91b6-3428e81102dd))
  3301. (pin "21" (uuid d2a79010-9458-49ec-bbca-13003b91e995))
  3302. (pin "22" (uuid 4614dfe2-4102-4db4-8d5e-8d466ab80308))
  3303. (pin "23" (uuid d5509717-e0af-4270-aede-ff85e7991de8))
  3304. (pin "24" (uuid cb3cd281-41ad-489c-9622-c198a4b6f5f9))
  3305. (pin "25" (uuid 6d748516-a8be-4e5f-92c5-e33009447865))
  3306. (pin "26" (uuid c14cff43-b67f-4e6d-b6ff-03ba4ba3761c))
  3307. (pin "27" (uuid 341ab06a-66d5-4f64-9742-90361546c7c0))
  3308. (pin "28" (uuid 4aef2f2a-289d-49e6-ab9f-4592b3a02283))
  3309. (pin "3" (uuid 1ac7777d-f186-4dbd-a90e-aa8615be215c))
  3310. (pin "4" (uuid 57b6227d-56d4-4daa-a6a9-4ffd4051883c))
  3311. (pin "5" (uuid 3959242b-ea54-4426-9701-cf780754fd66))
  3312. (pin "6" (uuid 1fbb7453-cc20-4a32-84b2-be743ca1a95c))
  3313. (pin "7" (uuid 41430edc-db5c-41e4-8d33-828c9e32995b))
  3314. (pin "8" (uuid 10a04fca-45ef-42c2-98bb-237d52387975))
  3315. (pin "9" (uuid 55a81d5c-131f-48ef-8686-0498e698bb75))
  3316. )
  3317. (symbol (lib_id "power:GND") (at 228.6 104.14 0) (unit 1)
  3318. (in_bom yes) (on_board yes)
  3319. (uuid 8745a1d9-71fe-4b5f-a509-2ed0c97c06df)
  3320. (property "Reference" "#PWR0259" (id 0) (at 228.6 110.49 0)
  3321. (effects (font (size 1.27 1.27)) hide)
  3322. )
  3323. (property "Value" "GND" (id 1) (at 228.6 109.22 0))
  3324. (property "Footprint" "" (id 2) (at 228.6 104.14 0)
  3325. (effects (font (size 1.27 1.27)) hide)
  3326. )
  3327. (property "Datasheet" "" (id 3) (at 228.6 104.14 0)
  3328. (effects (font (size 1.27 1.27)) hide)
  3329. )
  3330. (pin "1" (uuid 07bc6a79-794c-4ca4-9176-35803f2a6a81))
  3331. )
  3332. (symbol (lib_id "Greaseweazle:AD9235BR-ad9235") (at 125.73 57.15 0) (unit 1)
  3333. (in_bom yes) (on_board yes)
  3334. (uuid 88b45647-4a30-4371-8202-00f0cba17aa0)
  3335. (property "Reference" "U15" (id 0) (at 128.27 30.48 0))
  3336. (property "Value" "AD9235BRUZ-65" (id 1) (at 132.08 33.02 0))
  3337. (property "Footprint" "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm" (id 2) (at 111.76 57.15 0)
  3338. (effects (font (size 1.27 1.27)) hide)
  3339. )
  3340. (property "Datasheet" "" (id 3) (at 111.76 57.15 0)
  3341. (effects (font (size 1.27 1.27)) hide)
  3342. )
  3343. (pin "1" (uuid 70e8d5ab-b105-4f19-864f-337ebfe9ca88))
  3344. (pin "10" (uuid 03799776-4323-46ce-9dcb-7d94dd9f75cd))
  3345. (pin "11" (uuid 91210497-91ce-45b5-bb50-5d9b860d782b))
  3346. (pin "12" (uuid 501bd998-3688-474f-9b24-4394804eab9f))
  3347. (pin "13" (uuid 7e9cc2bc-9d4a-44c8-9ddf-2ad218fe11d5))
  3348. (pin "14" (uuid 74e606c4-24a2-4a53-999c-2e5da91d1508))
  3349. (pin "15" (uuid bdd9ff82-48f4-4def-b8ba-001aa681823c))
  3350. (pin "16" (uuid 9ce0d460-3ff1-464c-b3af-910c3cff3c34))
  3351. (pin "17" (uuid c55c7f39-d4ff-41b9-b820-ec45b9b3caa5))
  3352. (pin "18" (uuid 866cc43c-92b3-4020-acb1-58fe84b0ec88))
  3353. (pin "19" (uuid 7d0b6438-0a0d-42f4-8508-3202aaa4b2db))
  3354. (pin "2" (uuid 4aa96a9f-6b14-42a9-83be-d6be5852f31e))
  3355. (pin "20" (uuid 3c08add0-1884-4a50-932a-ddc36919eb54))
  3356. (pin "21" (uuid 4aadaf4a-dfb6-430e-9ce2-c852317b61ad))
  3357. (pin "22" (uuid 234a2c3d-8f5b-4807-a1ce-0ec84d3096c6))
  3358. (pin "23" (uuid cd4ef58f-416b-4a7e-8d6f-0dba18db77c4))
  3359. (pin "24" (uuid ee8d87b5-8076-4607-aa0d-d188497ea96d))
  3360. (pin "25" (uuid 1a113d33-d6ad-4b3e-ba30-fdb4a8db2a8a))
  3361. (pin "26" (uuid e4a1be57-4159-4c6b-9951-87e1d5781010))
  3362. (pin "27" (uuid 062be8b5-1fe1-4c54-9524-0165750bf97a))
  3363. (pin "28" (uuid 85a5668c-71f0-4b39-a07b-d9009820de81))
  3364. (pin "3" (uuid a46d19ae-4278-4bc6-b154-aedcd5e19ce3))
  3365. (pin "4" (uuid bc95273d-07cd-406c-8c72-61b77bfaf526))
  3366. (pin "5" (uuid 640c1cb6-079f-4292-bfc7-d49fc2115641))
  3367. (pin "6" (uuid a955775b-da66-4bd0-9c62-192e218a7119))
  3368. (pin "7" (uuid c50ca0e4-453d-4dac-a954-f6a1ea2b1484))
  3369. (pin "8" (uuid 9b401a9b-1f30-47bb-a7ed-49096c6dc057))
  3370. (pin "9" (uuid 3df4570b-4c8f-43ad-b4e6-b6e546d8957d))
  3371. )
  3372. (symbol (lib_id "Device:C") (at 212.09 96.52 0) (unit 1)
  3373. (in_bom yes) (on_board yes)
  3374. (uuid 90ec0fa0-8653-4b41-aa06-80c30336e014)
  3375. (property "Reference" "C58" (id 0) (at 215.011 95.3516 0)
  3376. (effects (font (size 1.27 1.27)) (justify left))
  3377. )
  3378. (property "Value" "100nF" (id 1) (at 215.011 97.663 0)
  3379. (effects (font (size 1.27 1.27)) (justify left))
  3380. )
  3381. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 213.0552 100.33 0)
  3382. (effects (font (size 1.27 1.27)) hide)
  3383. )
  3384. (property "Datasheet" "~" (id 3) (at 212.09 96.52 0)
  3385. (effects (font (size 1.27 1.27)) hide)
  3386. )
  3387. (property "LCSC" "C1525" (id 4) (at 212.09 96.52 0)
  3388. (effects (font (size 1.27 1.27)) hide)
  3389. )
  3390. (pin "1" (uuid 446ccf02-33e4-4167-8ea8-d0e8f9510b21))
  3391. (pin "2" (uuid 75b200d2-b24b-4a42-8f47-b1d381f10ed0))
  3392. )
  3393. (symbol (lib_id "Device:C") (at 267.97 50.8 0) (unit 1)
  3394. (in_bom yes) (on_board yes)
  3395. (uuid 925eea5a-795f-4716-bbbb-1e1b6a567a73)
  3396. (property "Reference" "C68" (id 0) (at 270.891 49.6316 0)
  3397. (effects (font (size 1.27 1.27)) (justify left))
  3398. )
  3399. (property "Value" "100nF" (id 1) (at 270.891 51.943 0)
  3400. (effects (font (size 1.27 1.27)) (justify left))
  3401. )
  3402. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 268.9352 54.61 0)
  3403. (effects (font (size 1.27 1.27)) hide)
  3404. )
  3405. (property "Datasheet" "~" (id 3) (at 267.97 50.8 0)
  3406. (effects (font (size 1.27 1.27)) hide)
  3407. )
  3408. (property "LCSC" "C1525" (id 4) (at 267.97 50.8 0)
  3409. (effects (font (size 1.27 1.27)) hide)
  3410. )
  3411. (pin "1" (uuid a936a2ad-0727-44c1-a6ad-b6a111289f80))
  3412. (pin "2" (uuid 82cd93d7-3fd7-492d-98fb-651fb0fa1b29))
  3413. )
  3414. (symbol (lib_id "power:GND") (at 129.54 87.63 0) (unit 1)
  3415. (in_bom yes) (on_board yes)
  3416. (uuid 94c7b6b8-12f7-4936-a936-7dc672feb5ee)
  3417. (property "Reference" "#PWR0201" (id 0) (at 129.54 93.98 0)
  3418. (effects (font (size 1.27 1.27)) hide)
  3419. )
  3420. (property "Value" "GND" (id 1) (at 129.667 92.0242 0))
  3421. (property "Footprint" "" (id 2) (at 129.54 87.63 0)
  3422. (effects (font (size 1.27 1.27)) hide)
  3423. )
  3424. (property "Datasheet" "" (id 3) (at 129.54 87.63 0)
  3425. (effects (font (size 1.27 1.27)) hide)
  3426. )
  3427. (pin "1" (uuid fbc43b96-219b-4612-9d84-2ddb7a3d9582))
  3428. )
  3429. (symbol (lib_id "Device:C") (at 156.21 50.8 180) (unit 1)
  3430. (in_bom yes) (on_board yes)
  3431. (uuid 9ab79c72-a815-4fd5-bbaf-5a52783d05ce)
  3432. (property "Reference" "C66" (id 0) (at 159.131 49.6316 0)
  3433. (effects (font (size 1.27 1.27)) (justify right))
  3434. )
  3435. (property "Value" "100nF" (id 1) (at 159.131 51.943 0)
  3436. (effects (font (size 1.27 1.27)) (justify right))
  3437. )
  3438. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 155.2448 46.99 0)
  3439. (effects (font (size 1.27 1.27)) hide)
  3440. )
  3441. (property "Datasheet" "~" (id 3) (at 156.21 50.8 0)
  3442. (effects (font (size 1.27 1.27)) hide)
  3443. )
  3444. (property "LCSC" "C1525" (id 4) (at 156.21 50.8 0)
  3445. (effects (font (size 1.27 1.27)) hide)
  3446. )
  3447. (pin "1" (uuid fc18ea79-2273-422c-92b8-ecff344a19d6))
  3448. (pin "2" (uuid 93241bf1-6ce0-4a2d-86b4-2c87bc880049))
  3449. )
  3450. (symbol (lib_id "Device:C_Polarized_Small") (at 241.3 36.83 90) (unit 1)
  3451. (in_bom yes) (on_board yes)
  3452. (uuid 9feecfcf-7d25-40cf-ad2d-488769ee4aad)
  3453. (property "Reference" "C62" (id 0) (at 241.3 43.2308 90))
  3454. (property "Value" "3.3uF" (id 1) (at 241.3 40.9194 90))
  3455. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 241.3 36.83 0)
  3456. (effects (font (size 1.27 1.27)) hide)
  3457. )
  3458. (property "Datasheet" "~" (id 3) (at 241.3 36.83 0)
  3459. (effects (font (size 1.27 1.27)) hide)
  3460. )
  3461. (property "LCSC" "C87864" (id 4) (at 241.3 36.83 0)
  3462. (effects (font (size 1.27 1.27)) hide)
  3463. )
  3464. (pin "1" (uuid ecf81949-fcc3-4ccd-a6af-11d2b1fc7b77))
  3465. (pin "2" (uuid 0dc9b52d-f09a-4f62-91cd-b7501164c2e6))
  3466. )
  3467. (symbol (lib_id "Device:R") (at 97.79 123.19 270) (unit 1)
  3468. (in_bom yes) (on_board yes)
  3469. (uuid a0b4b5f9-8033-4f4a-b05f-6a9cf7772979)
  3470. (property "Reference" "R69" (id 0) (at 93.98 120.65 90))
  3471. (property "Value" "22" (id 1) (at 101.6 120.65 90))
  3472. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 121.412 90)
  3473. (effects (font (size 1.27 1.27)) hide)
  3474. )
  3475. (property "Datasheet" "~" (id 3) (at 97.79 123.19 0)
  3476. (effects (font (size 1.27 1.27)) hide)
  3477. )
  3478. (property "LCSC" "C25092" (id 4) (at 97.79 123.19 0)
  3479. (effects (font (size 1.27 1.27)) hide)
  3480. )
  3481. (pin "1" (uuid 0099ac25-e5ba-4f21-8370-bb4d60c7aa57))
  3482. (pin "2" (uuid 4e605b44-88d7-4d11-b078-621bba644033))
  3483. )
  3484. (symbol (lib_id "power:GNDA") (at 92.71 76.2 0) (unit 1)
  3485. (in_bom yes) (on_board yes)
  3486. (uuid a3aeb7d3-55b8-43c9-8d53-5192d486c987)
  3487. (property "Reference" "#PWR0244" (id 0) (at 92.71 82.55 0)
  3488. (effects (font (size 1.27 1.27)) hide)
  3489. )
  3490. (property "Value" "GNDA" (id 1) (at 92.837 80.5942 0))
  3491. (property "Footprint" "" (id 2) (at 92.71 76.2 0)
  3492. (effects (font (size 1.27 1.27)) hide)
  3493. )
  3494. (property "Datasheet" "" (id 3) (at 92.71 76.2 0)
  3495. (effects (font (size 1.27 1.27)) hide)
  3496. )
  3497. (pin "1" (uuid a2e4ac2d-7d7a-43cc-9059-c4f5119a5671))
  3498. )
  3499. (symbol (lib_id "power:GND") (at 129.54 166.37 0) (unit 1)
  3500. (in_bom yes) (on_board yes)
  3501. (uuid a3b7dfab-9d62-4ac7-97a3-e2e31b3f84ba)
  3502. (property "Reference" "#PWR0214" (id 0) (at 129.54 172.72 0)
  3503. (effects (font (size 1.27 1.27)) hide)
  3504. )
  3505. (property "Value" "GND" (id 1) (at 129.667 170.7642 0))
  3506. (property "Footprint" "" (id 2) (at 129.54 166.37 0)
  3507. (effects (font (size 1.27 1.27)) hide)
  3508. )
  3509. (property "Datasheet" "" (id 3) (at 129.54 166.37 0)
  3510. (effects (font (size 1.27 1.27)) hide)
  3511. )
  3512. (pin "1" (uuid d55df681-b9c9-4dbc-a643-b119b9899cfa))
  3513. )
  3514. (symbol (lib_id "power:GND") (at 208.28 46.99 0) (unit 1)
  3515. (in_bom yes) (on_board yes)
  3516. (uuid ae23faac-f730-4d4b-a62c-3c8216cd43d3)
  3517. (property "Reference" "#PWR0197" (id 0) (at 208.28 53.34 0)
  3518. (effects (font (size 1.27 1.27)) hide)
  3519. )
  3520. (property "Value" "GND" (id 1) (at 212.09 49.53 0))
  3521. (property "Footprint" "" (id 2) (at 208.28 46.99 0)
  3522. (effects (font (size 1.27 1.27)) hide)
  3523. )
  3524. (property "Datasheet" "" (id 3) (at 208.28 46.99 0)
  3525. (effects (font (size 1.27 1.27)) hide)
  3526. )
  3527. (pin "1" (uuid 4b26d7a2-26dc-45b6-9857-d9fb35dd9be8))
  3528. )
  3529. (symbol (lib_id "Connector:Conn_01x03_Male") (at 19.05 130.81 0) (unit 1)
  3530. (in_bom yes) (on_board yes)
  3531. (uuid b1301c60-ff7e-469f-b090-63f6a467a427)
  3532. (property "Reference" "J17" (id 0) (at 21.7424 126.2888 0))
  3533. (property "Value" "FLOPPY-SIDE-0" (id 1) (at 22.86 123.19 0))
  3534. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 19.05 130.81 0)
  3535. (effects (font (size 1.27 1.27)) hide)
  3536. )
  3537. (property "Datasheet" "~" (id 3) (at 19.05 130.81 0)
  3538. (effects (font (size 1.27 1.27)) hide)
  3539. )
  3540. (pin "1" (uuid d691f162-750b-482e-a2a4-5a1f5f430bd5))
  3541. (pin "2" (uuid 25c413b9-74fe-4c32-b6e7-a086a6a57f5a))
  3542. (pin "3" (uuid ae4acb2f-cb55-42d5-ab77-c22a075902be))
  3543. )
  3544. (symbol (lib_id "Device:C") (at 102.87 151.13 180) (unit 1)
  3545. (in_bom yes) (on_board yes)
  3546. (uuid b45c8235-0e72-46e9-b581-1e9ec7ba5169)
  3547. (property "Reference" "C51" (id 0) (at 104.14 148.59 0)
  3548. (effects (font (size 1.27 1.27)) (justify right))
  3549. )
  3550. (property "Value" "18pF" (id 1) (at 104.14 153.67 0)
  3551. (effects (font (size 1.27 1.27)) (justify right))
  3552. )
  3553. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 101.9048 147.32 0)
  3554. (effects (font (size 1.27 1.27)) hide)
  3555. )
  3556. (property "Datasheet" "~" (id 3) (at 102.87 151.13 0)
  3557. (effects (font (size 1.27 1.27)) hide)
  3558. )
  3559. (property "LCSC" "C1549" (id 4) (at 102.87 151.13 0)
  3560. (effects (font (size 1.27 1.27)) hide)
  3561. )
  3562. (pin "1" (uuid 0185b174-ea09-4d96-9d6c-686fc2bef238))
  3563. (pin "2" (uuid d56d6c90-ec10-42dc-a55f-baf173dc2e04))
  3564. )
  3565. (symbol (lib_id "Device:C") (at 92.71 151.13 180) (unit 1)
  3566. (in_bom yes) (on_board yes)
  3567. (uuid b49381b7-86d8-4468-9408-0d3f72bf79fd)
  3568. (property "Reference" "C50" (id 0) (at 93.98 148.59 0)
  3569. (effects (font (size 1.27 1.27)) (justify right))
  3570. )
  3571. (property "Value" "18pF" (id 1) (at 93.98 153.67 0)
  3572. (effects (font (size 1.27 1.27)) (justify right))
  3573. )
  3574. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 91.7448 147.32 0)
  3575. (effects (font (size 1.27 1.27)) hide)
  3576. )
  3577. (property "Datasheet" "~" (id 3) (at 92.71 151.13 0)
  3578. (effects (font (size 1.27 1.27)) hide)
  3579. )
  3580. (property "LCSC" "C1549" (id 4) (at 92.71 151.13 0)
  3581. (effects (font (size 1.27 1.27)) hide)
  3582. )
  3583. (pin "1" (uuid 496aedaf-696f-4b6c-b578-c198614f3415))
  3584. (pin "2" (uuid 63b00eae-4c5b-422c-a7b6-8cc09d35701c))
  3585. )
  3586. (symbol (lib_id "Device:R") (at 102.87 30.48 180) (unit 1)
  3587. (in_bom yes) (on_board yes)
  3588. (uuid b4981be0-4d5c-4698-bfe3-c33355328d33)
  3589. (property "Reference" "R63" (id 0) (at 97.79 29.21 0)
  3590. (effects (font (size 1.27 1.27)) (justify right))
  3591. )
  3592. (property "Value" "2k" (id 1) (at 99.06 31.75 0)
  3593. (effects (font (size 1.27 1.27)) (justify right))
  3594. )
  3595. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 104.648 30.48 90)
  3596. (effects (font (size 1.27 1.27)) hide)
  3597. )
  3598. (property "Datasheet" "~" (id 3) (at 102.87 30.48 0)
  3599. (effects (font (size 1.27 1.27)) hide)
  3600. )
  3601. (property "LCSC" "C4109" (id 4) (at 102.87 30.48 0)
  3602. (effects (font (size 1.27 1.27)) hide)
  3603. )
  3604. (pin "1" (uuid 74e7f55d-8bef-4769-a557-60b4472867c1))
  3605. (pin "2" (uuid 30ed9266-7e77-463a-9f92-a333601be4ac))
  3606. )
  3607. (symbol (lib_id "Device:R") (at 97.79 128.27 270) (unit 1)
  3608. (in_bom yes) (on_board yes)
  3609. (uuid b62a4fb1-6880-4226-9be9-56d9577fb96f)
  3610. (property "Reference" "R70" (id 0) (at 93.98 125.73 90))
  3611. (property "Value" "22" (id 1) (at 101.6 125.73 90))
  3612. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 126.492 90)
  3613. (effects (font (size 1.27 1.27)) hide)
  3614. )
  3615. (property "Datasheet" "~" (id 3) (at 97.79 128.27 0)
  3616. (effects (font (size 1.27 1.27)) hide)
  3617. )
  3618. (property "LCSC" "C25092" (id 4) (at 97.79 128.27 0)
  3619. (effects (font (size 1.27 1.27)) hide)
  3620. )
  3621. (pin "1" (uuid b2472114-4a51-4f5f-826e-bab3c8936801))
  3622. (pin "2" (uuid 812eae82-6d3a-4db6-a3e9-54762c1497d2))
  3623. )
  3624. (symbol (lib_id "power:+3V3") (at 102.87 19.05 0) (unit 1)
  3625. (in_bom yes) (on_board yes)
  3626. (uuid b8258162-88b0-4f4d-8180-41d50177f4d6)
  3627. (property "Reference" "#PWR0239" (id 0) (at 102.87 22.86 0)
  3628. (effects (font (size 1.27 1.27)) hide)
  3629. )
  3630. (property "Value" "+3V3" (id 1) (at 103.251 14.6558 0))
  3631. (property "Footprint" "" (id 2) (at 102.87 19.05 0)
  3632. (effects (font (size 1.27 1.27)) hide)
  3633. )
  3634. (property "Datasheet" "" (id 3) (at 102.87 19.05 0)
  3635. (effects (font (size 1.27 1.27)) hide)
  3636. )
  3637. (pin "1" (uuid 12fe1a12-bab9-4c38-b58d-a18ac94dc37f))
  3638. )
  3639. (symbol (lib_id "power:GNDA") (at 74.93 72.39 0) (unit 1)
  3640. (in_bom yes) (on_board yes)
  3641. (uuid b9908ee4-2959-4eaf-a1e7-a2f3914d7ae8)
  3642. (property "Reference" "#PWR0234" (id 0) (at 74.93 78.74 0)
  3643. (effects (font (size 1.27 1.27)) hide)
  3644. )
  3645. (property "Value" "GNDA" (id 1) (at 75.057 76.7842 0))
  3646. (property "Footprint" "" (id 2) (at 74.93 72.39 0)
  3647. (effects (font (size 1.27 1.27)) hide)
  3648. )
  3649. (property "Datasheet" "" (id 3) (at 74.93 72.39 0)
  3650. (effects (font (size 1.27 1.27)) hide)
  3651. )
  3652. (pin "1" (uuid e156f821-facc-4435-829d-4b2d5a4fe0ff))
  3653. )
  3654. (symbol (lib_id "power:GND") (at 198.12 57.15 0) (unit 1)
  3655. (in_bom yes) (on_board yes)
  3656. (uuid b9a5576a-8f1f-407b-8db8-2597d5ccf48b)
  3657. (property "Reference" "#PWR0198" (id 0) (at 198.12 63.5 0)
  3658. (effects (font (size 1.27 1.27)) hide)
  3659. )
  3660. (property "Value" "GND" (id 1) (at 198.247 61.5442 0))
  3661. (property "Footprint" "" (id 2) (at 198.12 57.15 0)
  3662. (effects (font (size 1.27 1.27)) hide)
  3663. )
  3664. (property "Datasheet" "" (id 3) (at 198.12 57.15 0)
  3665. (effects (font (size 1.27 1.27)) hide)
  3666. )
  3667. (pin "1" (uuid e00139d5-5193-45ae-ba35-842cff58a2ff))
  3668. )
  3669. (symbol (lib_id "power:GNDA") (at 168.91 54.61 0) (unit 1)
  3670. (in_bom yes) (on_board yes)
  3671. (uuid baa41b16-fe89-4046-aead-081c4c338957)
  3672. (property "Reference" "#PWR0213" (id 0) (at 168.91 60.96 0)
  3673. (effects (font (size 1.27 1.27)) hide)
  3674. )
  3675. (property "Value" "GNDA" (id 1) (at 169.037 59.0042 0))
  3676. (property "Footprint" "" (id 2) (at 168.91 54.61 0)
  3677. (effects (font (size 1.27 1.27)) hide)
  3678. )
  3679. (property "Datasheet" "" (id 3) (at 168.91 54.61 0)
  3680. (effects (font (size 1.27 1.27)) hide)
  3681. )
  3682. (pin "1" (uuid d2d3b3ef-7530-473f-9bcd-b7730a7ad41a))
  3683. )
  3684. (symbol (lib_id "Device:R") (at 102.87 109.22 180) (unit 1)
  3685. (in_bom yes) (on_board yes)
  3686. (uuid badea698-84a4-43e3-b805-1a4cd74cddd7)
  3687. (property "Reference" "R72" (id 0) (at 97.79 107.95 0)
  3688. (effects (font (size 1.27 1.27)) (justify right))
  3689. )
  3690. (property "Value" "2k" (id 1) (at 99.06 110.49 0)
  3691. (effects (font (size 1.27 1.27)) (justify right))
  3692. )
  3693. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 104.648 109.22 90)
  3694. (effects (font (size 1.27 1.27)) hide)
  3695. )
  3696. (property "Datasheet" "~" (id 3) (at 102.87 109.22 0)
  3697. (effects (font (size 1.27 1.27)) hide)
  3698. )
  3699. (property "LCSC" "C4109" (id 4) (at 102.87 109.22 0)
  3700. (effects (font (size 1.27 1.27)) hide)
  3701. )
  3702. (pin "1" (uuid c3cd5365-7a1d-48bd-b4fd-c414a05e6d9a))
  3703. (pin "2" (uuid 840d8e92-59fd-4358-8fab-cbe8610efeb4))
  3704. )
  3705. (symbol (lib_id "power:GNDA") (at 102.87 154.94 0) (unit 1)
  3706. (in_bom yes) (on_board yes)
  3707. (uuid bd2cb2aa-a578-4ea4-83ab-829eeaee310a)
  3708. (property "Reference" "#PWR0193" (id 0) (at 102.87 161.29 0)
  3709. (effects (font (size 1.27 1.27)) hide)
  3710. )
  3711. (property "Value" "GNDA" (id 1) (at 102.997 159.3342 0))
  3712. (property "Footprint" "" (id 2) (at 102.87 154.94 0)
  3713. (effects (font (size 1.27 1.27)) hide)
  3714. )
  3715. (property "Datasheet" "" (id 3) (at 102.87 154.94 0)
  3716. (effects (font (size 1.27 1.27)) hide)
  3717. )
  3718. (pin "1" (uuid 81bce148-d6a5-482d-b677-64d9be6160c3))
  3719. )
  3720. (symbol (lib_id "power:+3V3") (at 102.87 97.79 0) (unit 1)
  3721. (in_bom yes) (on_board yes)
  3722. (uuid bdb85bdc-171e-4460-aebf-8d0d5c5d34a2)
  3723. (property "Reference" "#PWR0208" (id 0) (at 102.87 101.6 0)
  3724. (effects (font (size 1.27 1.27)) hide)
  3725. )
  3726. (property "Value" "+3V3" (id 1) (at 103.251 93.3958 0))
  3727. (property "Footprint" "" (id 2) (at 102.87 97.79 0)
  3728. (effects (font (size 1.27 1.27)) hide)
  3729. )
  3730. (property "Datasheet" "" (id 3) (at 102.87 97.79 0)
  3731. (effects (font (size 1.27 1.27)) hide)
  3732. )
  3733. (pin "1" (uuid 155ac39d-72ff-4d68-bb83-2d564b04c303))
  3734. )
  3735. (symbol (lib_id "Connector:Conn_01x03_Male") (at 19.05 52.07 0) (unit 1)
  3736. (in_bom yes) (on_board yes)
  3737. (uuid c44eb0b7-9260-4b83-a166-21f9ddc296fb)
  3738. (property "Reference" "J14" (id 0) (at 21.7424 47.5488 0))
  3739. (property "Value" "FLOPPY-GND" (id 1) (at 21.7424 49.8602 0))
  3740. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 19.05 52.07 0)
  3741. (effects (font (size 1.27 1.27)) hide)
  3742. )
  3743. (property "Datasheet" "~" (id 3) (at 19.05 52.07 0)
  3744. (effects (font (size 1.27 1.27)) hide)
  3745. )
  3746. (pin "1" (uuid 0c9e6899-45d8-476c-bc75-d2755ba6195c))
  3747. (pin "2" (uuid 27e992e2-b4e8-4409-8081-734626f5ebda))
  3748. (pin "3" (uuid 8c6b816c-6512-4c04-a5eb-5a999990520c))
  3749. )
  3750. (symbol (lib_id "power:GNDA") (at 168.91 133.35 0) (unit 1)
  3751. (in_bom yes) (on_board yes)
  3752. (uuid c88011a8-c447-40cf-ae4a-39b4de961c04)
  3753. (property "Reference" "#PWR0216" (id 0) (at 168.91 139.7 0)
  3754. (effects (font (size 1.27 1.27)) hide)
  3755. )
  3756. (property "Value" "GNDA" (id 1) (at 169.037 137.7442 0))
  3757. (property "Footprint" "" (id 2) (at 168.91 133.35 0)
  3758. (effects (font (size 1.27 1.27)) hide)
  3759. )
  3760. (property "Datasheet" "" (id 3) (at 168.91 133.35 0)
  3761. (effects (font (size 1.27 1.27)) hide)
  3762. )
  3763. (pin "1" (uuid 49b94203-3b94-4848-995c-a61657dcc582))
  3764. )
  3765. (symbol (lib_id "power:GND") (at 102.87 34.29 0) (unit 1)
  3766. (in_bom yes) (on_board yes)
  3767. (uuid c9319b83-cc89-49ae-bb43-b86703b863eb)
  3768. (property "Reference" "#PWR0238" (id 0) (at 102.87 40.64 0)
  3769. (effects (font (size 1.27 1.27)) hide)
  3770. )
  3771. (property "Value" "GND" (id 1) (at 102.997 38.6842 0))
  3772. (property "Footprint" "" (id 2) (at 102.87 34.29 0)
  3773. (effects (font (size 1.27 1.27)) hide)
  3774. )
  3775. (property "Datasheet" "" (id 3) (at 102.87 34.29 0)
  3776. (effects (font (size 1.27 1.27)) hide)
  3777. )
  3778. (pin "1" (uuid 47e15088-6780-4ffe-a8ff-3e7bfcbd7323))
  3779. )
  3780. (symbol (lib_id "Device:R") (at 102.87 101.6 180) (unit 1)
  3781. (in_bom yes) (on_board yes)
  3782. (uuid cbabf5a1-56c1-4765-8f8f-ba34e1fcd706)
  3783. (property "Reference" "R71" (id 0) (at 97.79 100.33 0)
  3784. (effects (font (size 1.27 1.27)) (justify right))
  3785. )
  3786. (property "Value" "1k" (id 1) (at 99.06 102.87 0)
  3787. (effects (font (size 1.27 1.27)) (justify right))
  3788. )
  3789. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 104.648 101.6 90)
  3790. (effects (font (size 1.27 1.27)) hide)
  3791. )
  3792. (property "Datasheet" "~" (id 3) (at 102.87 101.6 0)
  3793. (effects (font (size 1.27 1.27)) hide)
  3794. )
  3795. (property "LCSC" "C11702" (id 4) (at 102.87 101.6 0)
  3796. (effects (font (size 1.27 1.27)) hide)
  3797. )
  3798. (pin "1" (uuid dc6fc934-44db-4ca8-9c74-d7de30a2f685))
  3799. (pin "2" (uuid 10d6590c-df8f-47cf-b4ad-55e89248be6f))
  3800. )
  3801. (symbol (lib_id "Device:R") (at 36.83 46.99 270) (unit 1)
  3802. (in_bom yes) (on_board yes)
  3803. (uuid cd7ebafb-fcbb-4229-adc5-b9407a585ed9)
  3804. (property "Reference" "R56" (id 0) (at 36.83 41.7322 90))
  3805. (property "Value" "1k" (id 1) (at 36.83 44.0436 90))
  3806. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 45.212 90)
  3807. (effects (font (size 1.27 1.27)) hide)
  3808. )
  3809. (property "Datasheet" "~" (id 3) (at 36.83 46.99 0)
  3810. (effects (font (size 1.27 1.27)) hide)
  3811. )
  3812. (property "LCSC" "C11702" (id 4) (at 36.83 46.99 0)
  3813. (effects (font (size 1.27 1.27)) hide)
  3814. )
  3815. (pin "1" (uuid ee7a25a3-9d91-4fe4-be8f-5b9b4e60e7ea))
  3816. (pin "2" (uuid 609120b5-f05e-4dd7-b792-e4bc12bf4a92))
  3817. )
  3818. (symbol (lib_id "Device:L") (at 250.19 44.45 90) (unit 1)
  3819. (in_bom yes) (on_board yes)
  3820. (uuid cff86929-ce63-4508-8edc-a0fb9eb66289)
  3821. (property "Reference" "L4" (id 0) (at 250.19 39.624 90))
  3822. (property "Value" "100uH" (id 1) (at 250.19 41.9354 90))
  3823. (property "Footprint" "Greaseweazle:L_6.3x6.3_H3" (id 2) (at 250.19 44.45 0)
  3824. (effects (font (size 1.27 1.27)) hide)
  3825. )
  3826. (property "Datasheet" "~" (id 3) (at 250.19 44.45 0)
  3827. (effects (font (size 1.27 1.27)) hide)
  3828. )
  3829. (property "LCSC" "C434839" (id 4) (at 250.19 44.45 0)
  3830. (effects (font (size 1.27 1.27)) hide)
  3831. )
  3832. (pin "1" (uuid c4f76870-2059-4614-aa38-10eb64d8992c))
  3833. (pin "2" (uuid ed73bde9-dfb9-41f9-9778-fdeb98714f32))
  3834. )
  3835. (symbol (lib_id "Device:C") (at 193.04 96.52 0) (unit 1)
  3836. (in_bom yes) (on_board yes)
  3837. (uuid d0e4d675-6dec-4855-84b2-3dd0bb949370)
  3838. (property "Reference" "C53" (id 0) (at 195.961 95.3516 0)
  3839. (effects (font (size 1.27 1.27)) (justify left))
  3840. )
  3841. (property "Value" "100nF" (id 1) (at 195.961 97.663 0)
  3842. (effects (font (size 1.27 1.27)) (justify left))
  3843. )
  3844. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 194.0052 100.33 0)
  3845. (effects (font (size 1.27 1.27)) hide)
  3846. )
  3847. (property "Datasheet" "~" (id 3) (at 193.04 96.52 0)
  3848. (effects (font (size 1.27 1.27)) hide)
  3849. )
  3850. (property "LCSC" "C1525" (id 4) (at 193.04 96.52 0)
  3851. (effects (font (size 1.27 1.27)) hide)
  3852. )
  3853. (pin "1" (uuid f8670335-ddce-4b21-bf12-ea4fb4691d97))
  3854. (pin "2" (uuid 740d42a4-c137-4bb8-862d-3560748efca8))
  3855. )
  3856. (symbol (lib_id "Greaseweazle:AD8138-ad8138") (at 78.74 48.26 0) (unit 1)
  3857. (in_bom yes) (on_board yes)
  3858. (uuid d24c061c-67bd-4714-97be-eb58b1700e60)
  3859. (property "Reference" "U12" (id 0) (at 78.74 34.925 0))
  3860. (property "Value" "AD8138ARZ-R7" (id 1) (at 78.74 37.2364 0))
  3861. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 71.12 60.96 0)
  3862. (effects (font (size 1.27 1.27)) (justify left) hide)
  3863. )
  3864. (property "Datasheet" "http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf" (id 3) (at 71.12 63.5 0)
  3865. (effects (font (size 1.27 1.27)) (justify left) hide)
  3866. )
  3867. (property "Farnell" "" (id 4) (at 71.12 66.04 0)
  3868. (effects (font (size 1.27 1.27)) (justify left) hide)
  3869. )
  3870. (pin "1" (uuid aae09d49-963b-4e74-9c87-48398fa0bef4))
  3871. (pin "2" (uuid 3dde72c7-cb21-499a-94be-a0ae45941f3f))
  3872. (pin "3" (uuid 92552a7c-b5e6-4f2a-8df8-d82ba1a1de49))
  3873. (pin "4" (uuid 3aacc9f1-a937-4e2d-b46d-8825ccc0b345))
  3874. (pin "5" (uuid 81dd53eb-e070-4f67-b5b0-c807171dd4ef))
  3875. (pin "6" (uuid 48533a57-d9b4-4814-ac03-cbc1c5c4cba2))
  3876. (pin "7" (uuid bef7a174-50ef-4ad0-b38f-3c61c50175a2))
  3877. (pin "8" (uuid 86c15fc7-511a-4309-8b16-35ba2cae759b))
  3878. )
  3879. (symbol (lib_id "power:-3V3") (at 256.54 44.45 0) (unit 1)
  3880. (in_bom yes) (on_board yes)
  3881. (uuid d84ef48d-75f6-4f2a-bbb4-6b10fa08f99d)
  3882. (property "Reference" "#PWR0206" (id 0) (at 256.54 41.91 0)
  3883. (effects (font (size 1.27 1.27)) hide)
  3884. )
  3885. (property "Value" "-3V3" (id 1) (at 256.921 40.0558 0))
  3886. (property "Footprint" "" (id 2) (at 256.54 44.45 0)
  3887. (effects (font (size 1.27 1.27)) hide)
  3888. )
  3889. (property "Datasheet" "" (id 3) (at 256.54 44.45 0)
  3890. (effects (font (size 1.27 1.27)) hide)
  3891. )
  3892. (pin "1" (uuid d86e6062-0ed9-4cc8-90ca-316592b34f81))
  3893. )
  3894. (symbol (lib_id "power:GNDA") (at 193.04 102.87 0) (unit 1)
  3895. (in_bom yes) (on_board yes)
  3896. (uuid db86c91b-5306-439e-923d-f0a0603bec55)
  3897. (property "Reference" "#PWR0184" (id 0) (at 193.04 109.22 0)
  3898. (effects (font (size 1.27 1.27)) hide)
  3899. )
  3900. (property "Value" "GNDA" (id 1) (at 193.167 107.2642 0))
  3901. (property "Footprint" "" (id 2) (at 193.04 102.87 0)
  3902. (effects (font (size 1.27 1.27)) hide)
  3903. )
  3904. (property "Datasheet" "" (id 3) (at 193.04 102.87 0)
  3905. (effects (font (size 1.27 1.27)) hide)
  3906. )
  3907. (pin "1" (uuid 606576fe-8641-42eb-8d27-332abdc46dea))
  3908. )
  3909. (symbol (lib_id "power:GNDA") (at 267.97 57.15 0) (unit 1)
  3910. (in_bom yes) (on_board yes)
  3911. (uuid dbea19a7-d3cf-4adf-910d-4ca6d1d43f18)
  3912. (property "Reference" "#PWR0187" (id 0) (at 267.97 63.5 0)
  3913. (effects (font (size 1.27 1.27)) hide)
  3914. )
  3915. (property "Value" "GNDA" (id 1) (at 268.097 61.5442 0))
  3916. (property "Footprint" "" (id 2) (at 267.97 57.15 0)
  3917. (effects (font (size 1.27 1.27)) hide)
  3918. )
  3919. (property "Datasheet" "" (id 3) (at 267.97 57.15 0)
  3920. (effects (font (size 1.27 1.27)) hide)
  3921. )
  3922. (pin "1" (uuid 53a9c5af-f078-486e-8eb3-607e6e7daad7))
  3923. )
  3924. (symbol (lib_id "power:GNDA") (at 236.22 104.14 0) (unit 1)
  3925. (in_bom yes) (on_board yes)
  3926. (uuid e078b70d-e62d-4a0d-8422-652097a4c099)
  3927. (property "Reference" "#PWR0258" (id 0) (at 236.22 110.49 0)
  3928. (effects (font (size 1.27 1.27)) hide)
  3929. )
  3930. (property "Value" "GNDA" (id 1) (at 236.22 109.22 0))
  3931. (property "Footprint" "" (id 2) (at 236.22 104.14 0)
  3932. (effects (font (size 1.27 1.27)) hide)
  3933. )
  3934. (property "Datasheet" "" (id 3) (at 236.22 104.14 0)
  3935. (effects (font (size 1.27 1.27)) hide)
  3936. )
  3937. (pin "1" (uuid c2530457-a764-49c1-91cf-4275c5912406))
  3938. )
  3939. (symbol (lib_id "Device:R") (at 36.83 57.15 270) (unit 1)
  3940. (in_bom yes) (on_board yes)
  3941. (uuid e12e12b8-bd55-4675-8170-62b4affa5540)
  3942. (property "Reference" "R57" (id 0) (at 36.83 51.8922 90))
  3943. (property "Value" "1k" (id 1) (at 36.83 54.2036 90))
  3944. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 55.372 90)
  3945. (effects (font (size 1.27 1.27)) hide)
  3946. )
  3947. (property "Datasheet" "~" (id 3) (at 36.83 57.15 0)
  3948. (effects (font (size 1.27 1.27)) hide)
  3949. )
  3950. (property "LCSC" "C11702" (id 4) (at 36.83 57.15 0)
  3951. (effects (font (size 1.27 1.27)) hide)
  3952. )
  3953. (pin "1" (uuid e8923134-79b9-4f55-abdc-4b01a39d9ff7))
  3954. (pin "2" (uuid fedc46c6-e739-4ed7-9661-4d8405b277d3))
  3955. )
  3956. (symbol (lib_id "power:+3.3VADC") (at 203.2 88.9 0) (unit 1)
  3957. (in_bom yes) (on_board yes)
  3958. (uuid e28a05db-55cf-4f3b-8a53-7501eb154f18)
  3959. (property "Reference" "#PWR0186" (id 0) (at 207.01 90.17 0)
  3960. (effects (font (size 1.27 1.27)) hide)
  3961. )
  3962. (property "Value" "+3.3VADC" (id 1) (at 203.708 85.2678 0))
  3963. (property "Footprint" "" (id 2) (at 203.2 88.9 0)
  3964. (effects (font (size 1.27 1.27)) hide)
  3965. )
  3966. (property "Datasheet" "" (id 3) (at 203.2 88.9 0)
  3967. (effects (font (size 1.27 1.27)) hide)
  3968. )
  3969. (pin "1" (uuid 7ec2d9ee-0697-404f-bdbc-3fd98652139d))
  3970. )
  3971. (symbol (lib_id "power:+3V3") (at 208.28 35.56 0) (unit 1)
  3972. (in_bom yes) (on_board yes)
  3973. (uuid e504f737-afa3-4e8f-813d-636cac6e64c2)
  3974. (property "Reference" "#PWR0196" (id 0) (at 208.28 39.37 0)
  3975. (effects (font (size 1.27 1.27)) hide)
  3976. )
  3977. (property "Value" "+3V3" (id 1) (at 208.661 31.1658 0))
  3978. (property "Footprint" "" (id 2) (at 208.28 35.56 0)
  3979. (effects (font (size 1.27 1.27)) hide)
  3980. )
  3981. (property "Datasheet" "" (id 3) (at 208.28 35.56 0)
  3982. (effects (font (size 1.27 1.27)) hide)
  3983. )
  3984. (pin "1" (uuid 66feeb29-fde1-42db-bfc6-d2da7e9e90d1))
  3985. )
  3986. (symbol (lib_id "AnalogFluxReader-rescue:CP_Small-Device") (at 74.93 146.05 0) (unit 1)
  3987. (in_bom yes) (on_board yes)
  3988. (uuid e6fe311c-62ea-4949-9548-07e5a2a2fbf5)
  3989. (property "Reference" "C48" (id 0) (at 77.1652 144.8816 0)
  3990. (effects (font (size 1.27 1.27)) (justify left))
  3991. )
  3992. (property "Value" "47uF" (id 1) (at 77.1652 147.193 0)
  3993. (effects (font (size 1.27 1.27)) (justify left))
  3994. )
  3995. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 74.93 146.05 0)
  3996. (effects (font (size 1.27 1.27)) hide)
  3997. )
  3998. (property "Datasheet" "~" (id 3) (at 74.93 146.05 0)
  3999. (effects (font (size 1.27 1.27)) hide)
  4000. )
  4001. (property "LCSC" "C140782" (id 4) (at 74.93 146.05 0)
  4002. (effects (font (size 1.27 1.27)) hide)
  4003. )
  4004. (pin "1" (uuid 5fb4066f-eaf0-4c53-9d84-ae26ab226f67))
  4005. (pin "2" (uuid 5ff206f2-1ccb-4d6a-98c3-d9e20c6e310e))
  4006. )
  4007. (symbol (lib_id "Device:R") (at 36.83 125.73 270) (unit 1)
  4008. (in_bom yes) (on_board yes)
  4009. (uuid e7ccc987-ceaf-4508-8dbc-ea6b1d931777)
  4010. (property "Reference" "R65" (id 0) (at 36.83 120.4722 90))
  4011. (property "Value" "1k" (id 1) (at 36.83 122.7836 90))
  4012. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 123.952 90)
  4013. (effects (font (size 1.27 1.27)) hide)
  4014. )
  4015. (property "Datasheet" "~" (id 3) (at 36.83 125.73 0)
  4016. (effects (font (size 1.27 1.27)) hide)
  4017. )
  4018. (property "LCSC" "C11702" (id 4) (at 36.83 125.73 0)
  4019. (effects (font (size 1.27 1.27)) hide)
  4020. )
  4021. (pin "1" (uuid 3b2097ba-5312-4b2d-bbca-87144d6584fc))
  4022. (pin "2" (uuid f54cf17d-ac4a-49cc-bf4c-516ee1063503))
  4023. )
  4024. (symbol (lib_id "Device:C") (at 158.75 118.11 180) (unit 1)
  4025. (in_bom yes) (on_board yes)
  4026. (uuid e8d93bc9-2d59-4913-8099-f98850f69c17)
  4027. (property "Reference" "C71" (id 0) (at 161.671 116.9416 0)
  4028. (effects (font (size 1.27 1.27)) (justify right))
  4029. )
  4030. (property "Value" "100nF" (id 1) (at 161.671 119.253 0)
  4031. (effects (font (size 1.27 1.27)) (justify right))
  4032. )
  4033. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 157.7848 114.3 0)
  4034. (effects (font (size 1.27 1.27)) hide)
  4035. )
  4036. (property "Datasheet" "~" (id 3) (at 158.75 118.11 0)
  4037. (effects (font (size 1.27 1.27)) hide)
  4038. )
  4039. (property "LCSC" "C1525" (id 4) (at 158.75 118.11 0)
  4040. (effects (font (size 1.27 1.27)) hide)
  4041. )
  4042. (pin "1" (uuid 39186f39-e254-450c-90ed-9e1081cb0601))
  4043. (pin "2" (uuid dba8b7e3-9651-4e3e-9850-6a587ae61507))
  4044. )
  4045. (symbol (lib_id "Device:R") (at 102.87 22.86 180) (unit 1)
  4046. (in_bom yes) (on_board yes)
  4047. (uuid ecc88c66-df50-4406-98a5-56d24055f0c5)
  4048. (property "Reference" "R62" (id 0) (at 97.79 21.59 0)
  4049. (effects (font (size 1.27 1.27)) (justify right))
  4050. )
  4051. (property "Value" "1k" (id 1) (at 99.06 24.13 0)
  4052. (effects (font (size 1.27 1.27)) (justify right))
  4053. )
  4054. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 104.648 22.86 90)
  4055. (effects (font (size 1.27 1.27)) hide)
  4056. )
  4057. (property "Datasheet" "~" (id 3) (at 102.87 22.86 0)
  4058. (effects (font (size 1.27 1.27)) hide)
  4059. )
  4060. (property "LCSC" "C11702" (id 4) (at 102.87 22.86 0)
  4061. (effects (font (size 1.27 1.27)) hide)
  4062. )
  4063. (pin "1" (uuid e3202640-1cd5-4d39-81e4-ad0cc3e2c316))
  4064. (pin "2" (uuid 3193f412-d83e-4208-a5ae-9a5f8739c09f))
  4065. )
  4066. (symbol (lib_id "power:GND") (at 243.84 57.15 0) (unit 1)
  4067. (in_bom yes) (on_board yes)
  4068. (uuid ed632bc7-7448-4fcc-b2cb-45c037bf88b8)
  4069. (property "Reference" "#PWR0204" (id 0) (at 243.84 63.5 0)
  4070. (effects (font (size 1.27 1.27)) hide)
  4071. )
  4072. (property "Value" "GND" (id 1) (at 243.967 61.5442 0))
  4073. (property "Footprint" "" (id 2) (at 243.84 57.15 0)
  4074. (effects (font (size 1.27 1.27)) hide)
  4075. )
  4076. (property "Datasheet" "" (id 3) (at 243.84 57.15 0)
  4077. (effects (font (size 1.27 1.27)) hide)
  4078. )
  4079. (pin "1" (uuid 3bf5a0b8-4fb0-4c19-9790-3b6daf160d1a))
  4080. )
  4081. (symbol (lib_id "AnalogFluxReader-rescue:CP_Small-Device") (at 74.93 67.31 0) (unit 1)
  4082. (in_bom yes) (on_board yes)
  4083. (uuid f015ad2c-3080-4147-bb24-2dc075a03e15)
  4084. (property "Reference" "C54" (id 0) (at 77.1652 66.1416 0)
  4085. (effects (font (size 1.27 1.27)) (justify left))
  4086. )
  4087. (property "Value" "47uF" (id 1) (at 77.1652 68.453 0)
  4088. (effects (font (size 1.27 1.27)) (justify left))
  4089. )
  4090. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 74.93 67.31 0)
  4091. (effects (font (size 1.27 1.27)) hide)
  4092. )
  4093. (property "Datasheet" "~" (id 3) (at 74.93 67.31 0)
  4094. (effects (font (size 1.27 1.27)) hide)
  4095. )
  4096. (property "LCSC" "C140782" (id 4) (at 74.93 67.31 0)
  4097. (effects (font (size 1.27 1.27)) hide)
  4098. )
  4099. (pin "1" (uuid b47fa16f-a6e0-4da8-adac-05e6f9dda077))
  4100. (pin "2" (uuid 9a01dcdc-ac4e-47f2-9f35-314982cab16a))
  4101. )
  4102. (symbol (lib_id "power:PWR_FLAG") (at 194.31 88.9 0) (unit 1)
  4103. (in_bom yes) (on_board yes)
  4104. (uuid f5496f64-fa88-46b0-96c0-0a7db8062989)
  4105. (property "Reference" "#FLG0101" (id 0) (at 194.31 86.995 0)
  4106. (effects (font (size 1.27 1.27)) hide)
  4107. )
  4108. (property "Value" "PWR_FLAG" (id 1) (at 194.31 84.4804 0))
  4109. (property "Footprint" "" (id 2) (at 194.31 88.9 0)
  4110. (effects (font (size 1.27 1.27)) hide)
  4111. )
  4112. (property "Datasheet" "~" (id 3) (at 194.31 88.9 0)
  4113. (effects (font (size 1.27 1.27)) hide)
  4114. )
  4115. (pin "1" (uuid 09e84763-2145-4343-b8d6-112c5bc1a4c9))
  4116. )
  4117. (symbol (lib_id "power:+3.3VADC") (at 115.57 29.21 0) (unit 1)
  4118. (in_bom yes) (on_board yes)
  4119. (uuid f7bba936-eaf0-487f-b62b-1d6e52cc7ab5)
  4120. (property "Reference" "#PWR0236" (id 0) (at 119.38 30.48 0)
  4121. (effects (font (size 1.27 1.27)) hide)
  4122. )
  4123. (property "Value" "+3.3VADC" (id 1) (at 115.57 25.4 0))
  4124. (property "Footprint" "" (id 2) (at 115.57 29.21 0)
  4125. (effects (font (size 1.27 1.27)) hide)
  4126. )
  4127. (property "Datasheet" "" (id 3) (at 115.57 29.21 0)
  4128. (effects (font (size 1.27 1.27)) hide)
  4129. )
  4130. (pin "1" (uuid 2c49a5ed-130b-4d8f-80a6-5061184c3e94))
  4131. )
  4132. (symbol (lib_id "power:GND") (at 180.34 102.87 0) (unit 1)
  4133. (in_bom yes) (on_board yes)
  4134. (uuid f8943277-c0ad-4703-bab4-a2905995b5cd)
  4135. (property "Reference" "#PWR0177" (id 0) (at 180.34 109.22 0)
  4136. (effects (font (size 1.27 1.27)) hide)
  4137. )
  4138. (property "Value" "GND" (id 1) (at 180.467 107.2642 0))
  4139. (property "Footprint" "" (id 2) (at 180.34 102.87 0)
  4140. (effects (font (size 1.27 1.27)) hide)
  4141. )
  4142. (property "Datasheet" "" (id 3) (at 180.34 102.87 0)
  4143. (effects (font (size 1.27 1.27)) hide)
  4144. )
  4145. (pin "1" (uuid 1feb6be6-1ac0-47a1-ba63-74e88d393715))
  4146. )
  4147. (symbol (lib_id "power:GNDA") (at 63.5 151.13 0) (unit 1)
  4148. (in_bom yes) (on_board yes)
  4149. (uuid fb0b8725-c9f5-4019-8f2d-5d01dc6047a1)
  4150. (property "Reference" "#PWR0202" (id 0) (at 63.5 157.48 0)
  4151. (effects (font (size 1.27 1.27)) hide)
  4152. )
  4153. (property "Value" "GNDA" (id 1) (at 63.627 155.5242 0))
  4154. (property "Footprint" "" (id 2) (at 63.5 151.13 0)
  4155. (effects (font (size 1.27 1.27)) hide)
  4156. )
  4157. (property "Datasheet" "" (id 3) (at 63.5 151.13 0)
  4158. (effects (font (size 1.27 1.27)) hide)
  4159. )
  4160. (pin "1" (uuid c32b69c5-b821-4da8-9860-0a252e78e86e))
  4161. )
  4162. (sheet_instances
  4163. (path "/" (page "1"))
  4164. )
  4165. (symbol_instances
  4166. (path "/00000000-0000-0000-0000-00005cde74b8"
  4167. (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "")
  4168. )
  4169. (path "/00000000-0000-0000-0000-00005cd2c575"
  4170. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  4171. )
  4172. (path "/00000000-0000-0000-0000-00005cd5d664"
  4173. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  4174. )
  4175. (path "/00000000-0000-0000-0000-00005cd7f637"
  4176. (reference "#FLG0104") (unit 1) (value "PWR_FLAG") (footprint "")
  4177. )
  4178. (path "/00000000-0000-0000-0000-00005cd7fa07"
  4179. (reference "#FLG0105") (unit 1) (value "PWR_FLAG") (footprint "")
  4180. )
  4181. (path "/00000000-0000-0000-0000-0000601e4296"
  4182. (reference "#PWR01") (unit 1) (value "GND") (footprint "")
  4183. )
  4184. (path "/00000000-0000-0000-0000-000067f36108"
  4185. (reference "#PWR02") (unit 1) (value "GND") (footprint "")
  4186. )
  4187. (path "/00000000-0000-0000-0000-000067f33bf4"
  4188. (reference "#PWR03") (unit 1) (value "+3V3") (footprint "")
  4189. )
  4190. (path "/00000000-0000-0000-0000-000067f33642"
  4191. (reference "#PWR04") (unit 1) (value "GND") (footprint "")
  4192. )
  4193. (path "/00000000-0000-0000-0000-00006811b79d"
  4194. (reference "#PWR05") (unit 1) (value "GNDA") (footprint "")
  4195. )
  4196. (path "/00000000-0000-0000-0000-000067f33c76"
  4197. (reference "#PWR06") (unit 1) (value "GNDA") (footprint "")
  4198. )
  4199. (path "/00000000-0000-0000-0000-0000601e430f"
  4200. (reference "#PWR07") (unit 1) (value "GND") (footprint "")
  4201. )
  4202. (path "/00000000-0000-0000-0000-000067f354c5"
  4203. (reference "#PWR08") (unit 1) (value "+3.3VADC") (footprint "")
  4204. )
  4205. (path "/00000000-0000-0000-0000-000067f35476"
  4206. (reference "#PWR09") (unit 1) (value "GNDA") (footprint "")
  4207. )
  4208. (path "/00000000-0000-0000-0000-000067f35943"
  4209. (reference "#PWR010") (unit 1) (value "+3V3") (footprint "")
  4210. )
  4211. (path "/00000000-0000-0000-0000-000067f36144"
  4212. (reference "#PWR011") (unit 1) (value "GND") (footprint "")
  4213. )
  4214. (path "/00000000-0000-0000-0000-000067f38597"
  4215. (reference "#PWR012") (unit 1) (value "-3V3") (footprint "")
  4216. )
  4217. (path "/00000000-0000-0000-0000-00006811ac8b"
  4218. (reference "#PWR013") (unit 1) (value "GNDA") (footprint "")
  4219. )
  4220. (path "/00000000-0000-0000-0000-000067f385c0"
  4221. (reference "#PWR014") (unit 1) (value "+3.3VADC") (footprint "")
  4222. )
  4223. (path "/00000000-0000-0000-0000-0000682a5ac8"
  4224. (reference "#PWR015") (unit 1) (value "GNDA") (footprint "")
  4225. )
  4226. (path "/00000000-0000-0000-0000-0000681fcfb5"
  4227. (reference "#PWR017") (unit 1) (value "GNDA") (footprint "")
  4228. )
  4229. (path "/00000000-0000-0000-0000-000068310a3c"
  4230. (reference "#PWR018") (unit 1) (value "+3V3") (footprint "")
  4231. )
  4232. (path "/00000000-0000-0000-0000-00006831097d"
  4233. (reference "#PWR019") (unit 1) (value "GND") (footprint "")
  4234. )
  4235. (path "/00000000-0000-0000-0000-0000681fd02a"
  4236. (reference "#PWR020") (unit 1) (value "GNDA") (footprint "")
  4237. )
  4238. (path "/00000000-0000-0000-0000-000067f33827"
  4239. (reference "#PWR021") (unit 1) (value "-3V3") (footprint "")
  4240. )
  4241. (path "/00000000-0000-0000-0000-000067f3370a"
  4242. (reference "#PWR022") (unit 1) (value "GNDA") (footprint "")
  4243. )
  4244. (path "/00000000-0000-0000-0000-0000682e11cf"
  4245. (reference "#PWR023") (unit 1) (value "GND") (footprint "")
  4246. )
  4247. (path "/00000000-0000-0000-0000-000067f36f98"
  4248. (reference "#PWR024") (unit 1) (value "+3.3VADC") (footprint "")
  4249. )
  4250. (path "/00000000-0000-0000-0000-000067f36f6f"
  4251. (reference "#PWR025") (unit 1) (value "+3V3") (footprint "")
  4252. )
  4253. (path "/00000000-0000-0000-0000-000067f33e7d"
  4254. (reference "#PWR026") (unit 1) (value "GNDA") (footprint "")
  4255. )
  4256. (path "/00000000-0000-0000-0000-000067f33f08"
  4257. (reference "#PWR027") (unit 1) (value "GND") (footprint "")
  4258. )
  4259. (path "/00000000-0000-0000-0000-0000682a5940"
  4260. (reference "#PWR028") (unit 1) (value "GNDA") (footprint "")
  4261. )
  4262. (path "/00000000-0000-0000-0000-0000682a58c5"
  4263. (reference "#PWR029") (unit 1) (value "GNDA") (footprint "")
  4264. )
  4265. (path "/00000000-0000-0000-0000-000067f4311d"
  4266. (reference "#PWR030") (unit 1) (value "GND") (footprint "")
  4267. )
  4268. (path "/00000000-0000-0000-0000-000067ff8963"
  4269. (reference "#PWR031") (unit 1) (value "GND") (footprint "")
  4270. )
  4271. (path "/00000000-0000-0000-0000-000068044f78"
  4272. (reference "#PWR032") (unit 1) (value "+3V3") (footprint "")
  4273. )
  4274. (path "/00000000-0000-0000-0000-000067f61744"
  4275. (reference "#PWR033") (unit 1) (value "GND") (footprint "")
  4276. )
  4277. (path "/00000000-0000-0000-0000-000067f6794a"
  4278. (reference "#PWR034") (unit 1) (value "+3V3") (footprint "")
  4279. )
  4280. (path "/00000000-0000-0000-0000-00006080bd70"
  4281. (reference "#PWR035") (unit 1) (value "GNDA") (footprint "")
  4282. )
  4283. (path "/00000000-0000-0000-0000-00005ce21ab3"
  4284. (reference "#PWR036") (unit 1) (value "GND") (footprint "")
  4285. )
  4286. (path "/00000000-0000-0000-0000-0000601e4388"
  4287. (reference "#PWR037") (unit 1) (value "GND") (footprint "")
  4288. )
  4289. (path "/00000000-0000-0000-0000-0000601e4401"
  4290. (reference "#PWR038") (unit 1) (value "GND") (footprint "")
  4291. )
  4292. (path "/00000000-0000-0000-0000-0000601e447a"
  4293. (reference "#PWR039") (unit 1) (value "GND") (footprint "")
  4294. )
  4295. (path "/00000000-0000-0000-0000-0000603d1a3d"
  4296. (reference "#PWR040") (unit 1) (value "+3V3") (footprint "")
  4297. )
  4298. (path "/00000000-0000-0000-0000-0000602f360d"
  4299. (reference "#PWR041") (unit 1) (value "+3V3") (footprint "")
  4300. )
  4301. (path "/00000000-0000-0000-0000-00006031ee7f"
  4302. (reference "#PWR042") (unit 1) (value "GND") (footprint "")
  4303. )
  4304. (path "/00000000-0000-0000-0000-0000603a4701"
  4305. (reference "#PWR043") (unit 1) (value "+3V3") (footprint "")
  4306. )
  4307. (path "/00000000-0000-0000-0000-00006034b31d"
  4308. (reference "#PWR044") (unit 1) (value "+3V3") (footprint "")
  4309. )
  4310. (path "/00000000-0000-0000-0000-0000604166c1"
  4311. (reference "#PWR045") (unit 1) (value "+3V3") (footprint "")
  4312. )
  4313. (path "/00000000-0000-0000-0000-00006045b881"
  4314. (reference "#PWR046") (unit 1) (value "+3V3") (footprint "")
  4315. )
  4316. (path "/00000000-0000-0000-0000-00006045b7c2"
  4317. (reference "#PWR047") (unit 1) (value "GND") (footprint "")
  4318. )
  4319. (path "/00000000-0000-0000-0000-00006058b065"
  4320. (reference "#PWR048") (unit 1) (value "GND") (footprint "")
  4321. )
  4322. (path "/00000000-0000-0000-0000-00006058afa0"
  4323. (reference "#PWR049") (unit 1) (value "GND") (footprint "")
  4324. )
  4325. (path "/00000000-0000-0000-0000-0000605ec611"
  4326. (reference "#PWR050") (unit 1) (value "GND") (footprint "")
  4327. )
  4328. (path "/00000000-0000-0000-0000-000060886783"
  4329. (reference "#PWR051") (unit 1) (value "GNDA") (footprint "")
  4330. )
  4331. (path "/00000000-0000-0000-0000-00006091c048"
  4332. (reference "#PWR052") (unit 1) (value "GND") (footprint "")
  4333. )
  4334. (path "/00000000-0000-0000-0000-00006091bfb5"
  4335. (reference "#PWR053") (unit 1) (value "GND") (footprint "")
  4336. )
  4337. (path "/00000000-0000-0000-0000-000060ccc11d"
  4338. (reference "#PWR054") (unit 1) (value "GND") (footprint "")
  4339. )
  4340. (path "/00000000-0000-0000-0000-000060dcae98"
  4341. (reference "#PWR055") (unit 1) (value "GND") (footprint "")
  4342. )
  4343. (path "/00000000-0000-0000-0000-000060dcaf37"
  4344. (reference "#PWR056") (unit 1) (value "GND") (footprint "")
  4345. )
  4346. (path "/00000000-0000-0000-0000-00005cd6e712"
  4347. (reference "#PWR0101") (unit 1) (value "GNDA") (footprint "")
  4348. )
  4349. (path "/00000000-0000-0000-0000-00005cd6e7d1"
  4350. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  4351. )
  4352. (path "/00000000-0000-0000-0000-00005cee703a"
  4353. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  4354. )
  4355. (path "/00000000-0000-0000-0000-00006016fd10"
  4356. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  4357. )
  4358. (path "/00000000-0000-0000-0000-00006016ff1c"
  4359. (reference "#PWR0105") (unit 1) (value "+3V3") (footprint "")
  4360. )
  4361. (path "/00000000-0000-0000-0000-0000601906cb"
  4362. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  4363. )
  4364. (path "/00000000-0000-0000-0000-0000601e6807"
  4365. (reference "#PWR0107") (unit 1) (value "+3V3") (footprint "")
  4366. )
  4367. (path "/00000000-0000-0000-0000-0000602eb547"
  4368. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  4369. )
  4370. (path "/00000000-0000-0000-0000-0000602eb5b8"
  4371. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  4372. )
  4373. (path "/00000000-0000-0000-0000-0000603f3ee5"
  4374. (reference "#PWR0110") (unit 1) (value "+3V3") (footprint "")
  4375. )
  4376. (path "/00000000-0000-0000-0000-000060b1cc1c"
  4377. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  4378. )
  4379. (path "/00000000-0000-0000-0000-000060b50ff9"
  4380. (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
  4381. )
  4382. (path "/00000000-0000-0000-0000-000060b860c6"
  4383. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  4384. )
  4385. (path "/00000000-0000-0000-0000-000060b86161"
  4386. (reference "#PWR0114") (unit 1) (value "GND") (footprint "")
  4387. )
  4388. (path "/00000000-0000-0000-0000-000060e41116"
  4389. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  4390. )
  4391. (path "/00000000-0000-0000-0000-000067f33505"
  4392. (reference "C1") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4393. )
  4394. (path "/00000000-0000-0000-0000-000067f3618f"
  4395. (reference "C2") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4396. )
  4397. (path "/00000000-0000-0000-0000-000067f333c2"
  4398. (reference "C3") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4399. )
  4400. (path "/00000000-0000-0000-0000-000067f33983"
  4401. (reference "C4") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4402. )
  4403. (path "/00000000-0000-0000-0000-000060573243"
  4404. (reference "C5") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4405. )
  4406. (path "/00000000-0000-0000-0000-0000605d3dde"
  4407. (reference "C6") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4408. )
  4409. (path "/00000000-0000-0000-0000-000067f35ad5"
  4410. (reference "C7") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4411. )
  4412. (path "/00000000-0000-0000-0000-00006811abcd"
  4413. (reference "C8") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4414. )
  4415. (path "/00000000-0000-0000-0000-0000682a5ef5"
  4416. (reference "C9") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4417. )
  4418. (path "/00000000-0000-0000-0000-00006817bac3"
  4419. (reference "C10") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4420. )
  4421. (path "/00000000-0000-0000-0000-00006817bb7f"
  4422. (reference "C11") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4423. )
  4424. (path "/00000000-0000-0000-0000-0000682a5e0b"
  4425. (reference "C12") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4426. )
  4427. (path "/00000000-0000-0000-0000-00006826e6ea"
  4428. (reference "C13") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4429. )
  4430. (path "/00000000-0000-0000-0000-00006826e5ae"
  4431. (reference "C14") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4432. )
  4433. (path "/00000000-0000-0000-0000-00006826e658"
  4434. (reference "C15") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4435. )
  4436. (path "/00000000-0000-0000-0000-0000605a3749"
  4437. (reference "C16") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4438. )
  4439. (path "/00000000-0000-0000-0000-0000605733e7"
  4440. (reference "C17") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4441. )
  4442. (path "/00000000-0000-0000-0000-0000605ec422"
  4443. (reference "C18") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4444. )
  4445. (path "/00000000-0000-0000-0000-00006080bb6d"
  4446. (reference "C19") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4447. )
  4448. (path "/00000000-0000-0000-0000-0000608866d1"
  4449. (reference "C20") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4450. )
  4451. (path "/00000000-0000-0000-0000-00006091be4b"
  4452. (reference "C21") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4453. )
  4454. (path "/00000000-0000-0000-0000-00006091bf05"
  4455. (reference "C22") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4456. )
  4457. (path "/00000000-0000-0000-0000-000060dcad0e"
  4458. (reference "C23") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4459. )
  4460. (path "/00000000-0000-0000-0000-000060dcadd6"
  4461. (reference "C24") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4462. )
  4463. (path "/00000000-0000-0000-0000-0000607a7b49"
  4464. (reference "J1") (unit 1) (value "Conn_02x10_Odd_Even") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical")
  4465. )
  4466. (path "/00000000-0000-0000-0000-0000607bfe64"
  4467. (reference "J2") (unit 1) (value "Conn_02x10_Odd_Even") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical")
  4468. )
  4469. (path "/00000000-0000-0000-0000-000060a99ea0"
  4470. (reference "J3") (unit 1) (value "Conn_02x05_Top_Bottom") (footprint "")
  4471. )
  4472. (path "/00000000-0000-0000-0000-00006075c457"
  4473. (reference "J4") (unit 1) (value "FLOPPY+") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  4474. )
  4475. (path "/00000000-0000-0000-0000-00006075c549"
  4476. (reference "J5") (unit 1) (value "FLOPPY-GND") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  4477. )
  4478. (path "/00000000-0000-0000-0000-00006075c86c"
  4479. (reference "J6") (unit 1) (value "FLOPPY-") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  4480. )
  4481. (path "/00000000-0000-0000-0000-000067f33478"
  4482. (reference "L1") (unit 1) (value "100u") (footprint "AnalogFluxReader:1007")
  4483. )
  4484. (path "/00000000-0000-0000-0000-000067f339d4"
  4485. (reference "L2") (unit 1) (value "100u") (footprint "AnalogFluxReader:1007")
  4486. )
  4487. (path "/00000000-0000-0000-0000-000067ffd36b"
  4488. (reference "R1") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4489. )
  4490. (path "/00000000-0000-0000-0000-000067ffd287"
  4491. (reference "R2") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4492. )
  4493. (path "/00000000-0000-0000-0000-0000601e4212"
  4494. (reference "R3") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4495. )
  4496. (path "/00000000-0000-0000-0000-000067ffd3cd"
  4497. (reference "R4") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4498. )
  4499. (path "/00000000-0000-0000-0000-000068124e90"
  4500. (reference "R5") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4501. )
  4502. (path "/00000000-0000-0000-0000-00006812500f"
  4503. (reference "R6") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4504. )
  4505. (path "/00000000-0000-0000-0000-000068125111"
  4506. (reference "R7") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4507. )
  4508. (path "/00000000-0000-0000-0000-000068125089"
  4509. (reference "R8") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4510. )
  4511. (path "/00000000-0000-0000-0000-0000681fce61"
  4512. (reference "R9") (unit 1) (value "22") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4513. )
  4514. (path "/00000000-0000-0000-0000-0000681fcf33"
  4515. (reference "R10") (unit 1) (value "22") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4516. )
  4517. (path "/00000000-0000-0000-0000-0000682d1ca8"
  4518. (reference "R11") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4519. )
  4520. (path "/00000000-0000-0000-0000-0000682d1b98"
  4521. (reference "R12") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4522. )
  4523. (path "/00000000-0000-0000-0000-00005cdb3fe6"
  4524. (reference "R13") (unit 1) (value "0") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4525. )
  4526. (path "/00000000-0000-0000-0000-0000601e4190"
  4527. (reference "R14") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4528. )
  4529. (path "/00000000-0000-0000-0000-0000601e410c"
  4530. (reference "R15") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4531. )
  4532. (path "/00000000-0000-0000-0000-0000601e4076"
  4533. (reference "R16") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4534. )
  4535. (path "/00000000-0000-0000-0000-0000601e3d20"
  4536. (reference "R17") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4537. )
  4538. (path "/00000000-0000-0000-0000-0000603d19a7"
  4539. (reference "R18") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4540. )
  4541. (path "/00000000-0000-0000-0000-0000603090fe"
  4542. (reference "R19") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4543. )
  4544. (path "/00000000-0000-0000-0000-0000603a4631"
  4545. (reference "R20") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4546. )
  4547. (path "/00000000-0000-0000-0000-00006034b20f"
  4548. (reference "R21") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4549. )
  4550. (path "/00000000-0000-0000-0000-000060416617"
  4551. (reference "R22") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4552. )
  4553. (path "/00000000-0000-0000-0000-000067f2fabd"
  4554. (reference "U1") (unit 1) (value "AD9235BR") (footprint "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm")
  4555. )
  4556. (path "/00000000-0000-0000-0000-000060066c9f"
  4557. (reference "U2") (unit 1) (value "74AC163") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  4558. )
  4559. (path "/00000000-0000-0000-0000-000067f2dfb3"
  4560. (reference "U3") (unit 1) (value "AD8138") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  4561. )
  4562. (path "/00000000-0000-0000-0000-000067ffcfca"
  4563. (reference "U4") (unit 1) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4564. )
  4565. (path "/00000000-0000-0000-0000-000067ffd148"
  4566. (reference "U4") (unit 2) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4567. )
  4568. (path "/00000000-0000-0000-0000-000067ffd1a4"
  4569. (reference "U4") (unit 3) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4570. )
  4571. (path "/00000000-0000-0000-0000-000060b50f2b"
  4572. (reference "U4") (unit 4) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4573. )
  4574. (path "/00000000-0000-0000-0000-000060b85f26"
  4575. (reference "U4") (unit 5) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4576. )
  4577. (path "/00000000-0000-0000-0000-000060b85ffe"
  4578. (reference "U4") (unit 6) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4579. )
  4580. (path "/00000000-0000-0000-0000-00005ceb04ef"
  4581. (reference "U4") (unit 7) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4582. )
  4583. (path "/00000000-0000-0000-0000-00006003ebe7"
  4584. (reference "U5") (unit 1) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4585. )
  4586. (path "/00000000-0000-0000-0000-000068081084"
  4587. (reference "U5") (unit 2) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4588. )
  4589. (path "/00000000-0000-0000-0000-0000680810f8"
  4590. (reference "U5") (unit 3) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4591. )
  4592. (path "/00000000-0000-0000-0000-000068081170"
  4593. (reference "U5") (unit 4) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4594. )
  4595. (path "/00000000-0000-0000-0000-0000680811f4"
  4596. (reference "U5") (unit 5) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4597. )
  4598. (path "/00000000-0000-0000-0000-000060b1c5f9"
  4599. (reference "U5") (unit 6) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4600. )
  4601. (path "/00000000-0000-0000-0000-00005ce570f5"
  4602. (reference "U5") (unit 7) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4603. )
  4604. (path "/00000000-0000-0000-0000-000067f2e1a8"
  4605. (reference "U6") (unit 1) (value "LM2664") (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering")
  4606. )
  4607. (path "/00000000-0000-0000-0000-00006026b111"
  4608. (reference "U8") (unit 1) (value "74AC153") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  4609. )
  4610. (path "/00000000-0000-0000-0000-000060133146"
  4611. (reference "U9") (unit 1) (value "MCP23017_SP") (footprint "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm")
  4612. )
  4613. )
  4614. )