ad.kicad_sch 203 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 31e453ed-c999-4f32-9a0d-aa347ea73dda)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "74xx:74LS153" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at -7.62 21.59 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "74LS153" (id 1) (at -7.62 -24.13 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS153" (id 3) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "ki_locked" "" (id 4) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)))
  20. )
  21. (property "ki_keywords" "TTL Mux4" (id 5) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_description" "Dual Multiplexer 4 to 1" (id 6) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_fp_filters" "DIP?16*" (id 7) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (symbol "74LS153_1_0"
  31. (pin input inverted (at -12.7 5.08 0) (length 5.08)
  32. (name "Ea" (effects (font (size 1.27 1.27))))
  33. (number "1" (effects (font (size 1.27 1.27))))
  34. )
  35. (pin input line (at -12.7 0 0) (length 5.08)
  36. (name "I0b" (effects (font (size 1.27 1.27))))
  37. (number "10" (effects (font (size 1.27 1.27))))
  38. )
  39. (pin input line (at -12.7 -2.54 0) (length 5.08)
  40. (name "I1b" (effects (font (size 1.27 1.27))))
  41. (number "11" (effects (font (size 1.27 1.27))))
  42. )
  43. (pin input line (at -12.7 -5.08 0) (length 5.08)
  44. (name "I2b" (effects (font (size 1.27 1.27))))
  45. (number "12" (effects (font (size 1.27 1.27))))
  46. )
  47. (pin input line (at -12.7 -7.62 0) (length 5.08)
  48. (name "I3b" (effects (font (size 1.27 1.27))))
  49. (number "13" (effects (font (size 1.27 1.27))))
  50. )
  51. (pin input line (at -12.7 -17.78 0) (length 5.08)
  52. (name "S0" (effects (font (size 1.27 1.27))))
  53. (number "14" (effects (font (size 1.27 1.27))))
  54. )
  55. (pin input inverted (at -12.7 -12.7 0) (length 5.08)
  56. (name "Eb" (effects (font (size 1.27 1.27))))
  57. (number "15" (effects (font (size 1.27 1.27))))
  58. )
  59. (pin power_in line (at 0 25.4 270) (length 5.08)
  60. (name "VCC" (effects (font (size 1.27 1.27))))
  61. (number "16" (effects (font (size 1.27 1.27))))
  62. )
  63. (pin input line (at -12.7 -20.32 0) (length 5.08)
  64. (name "S1" (effects (font (size 1.27 1.27))))
  65. (number "2" (effects (font (size 1.27 1.27))))
  66. )
  67. (pin input line (at -12.7 10.16 0) (length 5.08)
  68. (name "I3a" (effects (font (size 1.27 1.27))))
  69. (number "3" (effects (font (size 1.27 1.27))))
  70. )
  71. (pin input line (at -12.7 12.7 0) (length 5.08)
  72. (name "I2a" (effects (font (size 1.27 1.27))))
  73. (number "4" (effects (font (size 1.27 1.27))))
  74. )
  75. (pin input line (at -12.7 15.24 0) (length 5.08)
  76. (name "I1a" (effects (font (size 1.27 1.27))))
  77. (number "5" (effects (font (size 1.27 1.27))))
  78. )
  79. (pin input line (at -12.7 17.78 0) (length 5.08)
  80. (name "I0a" (effects (font (size 1.27 1.27))))
  81. (number "6" (effects (font (size 1.27 1.27))))
  82. )
  83. (pin output line (at 12.7 17.78 180) (length 5.08)
  84. (name "Za" (effects (font (size 1.27 1.27))))
  85. (number "7" (effects (font (size 1.27 1.27))))
  86. )
  87. (pin power_in line (at 0 -27.94 90) (length 5.08)
  88. (name "GND" (effects (font (size 1.27 1.27))))
  89. (number "8" (effects (font (size 1.27 1.27))))
  90. )
  91. (pin output line (at 12.7 0 180) (length 5.08)
  92. (name "Zb" (effects (font (size 1.27 1.27))))
  93. (number "9" (effects (font (size 1.27 1.27))))
  94. )
  95. )
  96. (symbol "74LS153_1_1"
  97. (rectangle (start -7.62 20.32) (end 7.62 -22.86)
  98. (stroke (width 0.254) (type default) (color 0 0 0 0))
  99. (fill (type background))
  100. )
  101. )
  102. )
  103. (symbol "74xx:74LS163" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  104. (property "Reference" "U" (id 0) (at -7.62 16.51 0)
  105. (effects (font (size 1.27 1.27)))
  106. )
  107. (property "Value" "74LS163" (id 1) (at -7.62 -16.51 0)
  108. (effects (font (size 1.27 1.27)))
  109. )
  110. (property "Footprint" "" (id 2) (at 0 0 0)
  111. (effects (font (size 1.27 1.27)) hide)
  112. )
  113. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS163" (id 3) (at 0 0 0)
  114. (effects (font (size 1.27 1.27)) hide)
  115. )
  116. (property "ki_locked" "" (id 4) (at 0 0 0)
  117. (effects (font (size 1.27 1.27)))
  118. )
  119. (property "ki_keywords" "TTL CNT CNT4" (id 5) (at 0 0 0)
  120. (effects (font (size 1.27 1.27)) hide)
  121. )
  122. (property "ki_description" "Synchronous 4-bit programmable binary Counter" (id 6) (at 0 0 0)
  123. (effects (font (size 1.27 1.27)) hide)
  124. )
  125. (property "ki_fp_filters" "DIP?16*" (id 7) (at 0 0 0)
  126. (effects (font (size 1.27 1.27)) hide)
  127. )
  128. (symbol "74LS163_1_0"
  129. (pin input line (at -12.7 -12.7 0) (length 5.08)
  130. (name "~{MR}" (effects (font (size 1.27 1.27))))
  131. (number "1" (effects (font (size 1.27 1.27))))
  132. )
  133. (pin input line (at -12.7 -5.08 0) (length 5.08)
  134. (name "CET" (effects (font (size 1.27 1.27))))
  135. (number "10" (effects (font (size 1.27 1.27))))
  136. )
  137. (pin output line (at 12.7 5.08 180) (length 5.08)
  138. (name "Q3" (effects (font (size 1.27 1.27))))
  139. (number "11" (effects (font (size 1.27 1.27))))
  140. )
  141. (pin output line (at 12.7 7.62 180) (length 5.08)
  142. (name "Q2" (effects (font (size 1.27 1.27))))
  143. (number "12" (effects (font (size 1.27 1.27))))
  144. )
  145. (pin output line (at 12.7 10.16 180) (length 5.08)
  146. (name "Q1" (effects (font (size 1.27 1.27))))
  147. (number "13" (effects (font (size 1.27 1.27))))
  148. )
  149. (pin output line (at 12.7 12.7 180) (length 5.08)
  150. (name "Q0" (effects (font (size 1.27 1.27))))
  151. (number "14" (effects (font (size 1.27 1.27))))
  152. )
  153. (pin output line (at 12.7 0 180) (length 5.08)
  154. (name "TC" (effects (font (size 1.27 1.27))))
  155. (number "15" (effects (font (size 1.27 1.27))))
  156. )
  157. (pin power_in line (at 0 20.32 270) (length 5.08)
  158. (name "VCC" (effects (font (size 1.27 1.27))))
  159. (number "16" (effects (font (size 1.27 1.27))))
  160. )
  161. (pin input line (at -12.7 -7.62 0) (length 5.08)
  162. (name "CP" (effects (font (size 1.27 1.27))))
  163. (number "2" (effects (font (size 1.27 1.27))))
  164. )
  165. (pin input line (at -12.7 12.7 0) (length 5.08)
  166. (name "D0" (effects (font (size 1.27 1.27))))
  167. (number "3" (effects (font (size 1.27 1.27))))
  168. )
  169. (pin input line (at -12.7 10.16 0) (length 5.08)
  170. (name "D1" (effects (font (size 1.27 1.27))))
  171. (number "4" (effects (font (size 1.27 1.27))))
  172. )
  173. (pin input line (at -12.7 7.62 0) (length 5.08)
  174. (name "D2" (effects (font (size 1.27 1.27))))
  175. (number "5" (effects (font (size 1.27 1.27))))
  176. )
  177. (pin input line (at -12.7 5.08 0) (length 5.08)
  178. (name "D3" (effects (font (size 1.27 1.27))))
  179. (number "6" (effects (font (size 1.27 1.27))))
  180. )
  181. (pin input line (at -12.7 -2.54 0) (length 5.08)
  182. (name "CEP" (effects (font (size 1.27 1.27))))
  183. (number "7" (effects (font (size 1.27 1.27))))
  184. )
  185. (pin power_in line (at 0 -20.32 90) (length 5.08)
  186. (name "GND" (effects (font (size 1.27 1.27))))
  187. (number "8" (effects (font (size 1.27 1.27))))
  188. )
  189. (pin input line (at -12.7 0 0) (length 5.08)
  190. (name "~{PE}" (effects (font (size 1.27 1.27))))
  191. (number "9" (effects (font (size 1.27 1.27))))
  192. )
  193. )
  194. (symbol "74LS163_1_1"
  195. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  196. (stroke (width 0.254) (type default) (color 0 0 0 0))
  197. (fill (type background))
  198. )
  199. )
  200. )
  201. (symbol "AnalogFluxReader-rescue:AD8138-ad8138" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  202. (property "Reference" "IC" (id 0) (at -7.62 10.16 0)
  203. (effects (font (size 1.27 1.27)) (justify left))
  204. )
  205. (property "Value" "AD8138-ad8138" (id 1) (at -7.62 -10.16 0)
  206. (effects (font (size 1.27 1.27)) (justify left))
  207. )
  208. (property "Footprint" "agg:SOIC-8" (id 2) (at -7.62 -12.7 0)
  209. (effects (font (size 1.27 1.27)) (justify left) hide)
  210. )
  211. (property "Datasheet" "http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf" (id 3) (at -7.62 -15.24 0)
  212. (effects (font (size 1.27 1.27)) (justify left) hide)
  213. )
  214. (property "Farnell" "2725700" (id 4) (at -7.62 -17.78 0)
  215. (effects (font (size 1.27 1.27)) (justify left) hide)
  216. )
  217. (symbol "AD8138-ad8138_0_0"
  218. (pin input line (at -10.16 -5.08 0) (length 2.54)
  219. (name "-IN" (effects (font (size 1.27 1.27))))
  220. (number "1" (effects (font (size 1.27 1.27))))
  221. )
  222. (pin input line (at -10.16 -2.54 0) (length 2.54)
  223. (name "VOCM" (effects (font (size 1.27 1.27))))
  224. (number "2" (effects (font (size 1.27 1.27))))
  225. )
  226. (pin power_in line (at -10.16 7.62 0) (length 2.54)
  227. (name "V+" (effects (font (size 1.27 1.27))))
  228. (number "3" (effects (font (size 1.27 1.27))))
  229. )
  230. (pin output line (at 10.16 0 180) (length 2.54)
  231. (name "+OUT" (effects (font (size 1.27 1.27))))
  232. (number "4" (effects (font (size 1.27 1.27))))
  233. )
  234. (pin output line (at 10.16 2.54 180) (length 2.54)
  235. (name "-OUT" (effects (font (size 1.27 1.27))))
  236. (number "5" (effects (font (size 1.27 1.27))))
  237. )
  238. (pin power_in line (at -10.16 5.08 0) (length 2.54)
  239. (name "V-" (effects (font (size 1.27 1.27))))
  240. (number "6" (effects (font (size 1.27 1.27))))
  241. )
  242. (pin no_connect line (at 10.16 7.62 180) (length 2.54)
  243. (name "NC" (effects (font (size 1.27 1.27))))
  244. (number "7" (effects (font (size 1.27 1.27))))
  245. )
  246. (pin input line (at -10.16 0 0) (length 2.54)
  247. (name "+IN" (effects (font (size 1.27 1.27))))
  248. (number "8" (effects (font (size 1.27 1.27))))
  249. )
  250. )
  251. (symbol "AD8138-ad8138_0_1"
  252. (rectangle (start -7.62 8.89) (end 7.62 -8.89)
  253. (stroke (width 0) (type default) (color 0 0 0 0))
  254. (fill (type background))
  255. )
  256. )
  257. )
  258. (symbol "AnalogFluxReader-rescue:AD9235BR-ad9235" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  259. (property "Reference" "U" (id 0) (at 2.54 26.67 0)
  260. (effects (font (size 1.27 1.27)))
  261. )
  262. (property "Value" "AD9235BR-ad9235" (id 1) (at 6.35 24.13 0)
  263. (effects (font (size 1.27 1.27)))
  264. )
  265. (property "Footprint" "" (id 2) (at -13.97 0 0)
  266. (effects (font (size 1.27 1.27)) hide)
  267. )
  268. (property "Datasheet" "" (id 3) (at -13.97 0 0)
  269. (effects (font (size 1.27 1.27)) hide)
  270. )
  271. (property "ki_fp_filters" "TSSOP28* LFCSP32*" (id 4) (at 0 0 0)
  272. (effects (font (size 1.27 1.27)) hide)
  273. )
  274. (symbol "AD9235BR-ad9235_1_0"
  275. (polyline
  276. (pts
  277. (xy -12.7 -25.4)
  278. (xy -12.7 22.86)
  279. )
  280. (stroke (width 0) (type default) (color 0 0 0 0))
  281. (fill (type none))
  282. )
  283. (polyline
  284. (pts
  285. (xy -12.7 22.86)
  286. (xy 11.43 22.86)
  287. )
  288. (stroke (width 0) (type default) (color 0 0 0 0))
  289. (fill (type none))
  290. )
  291. (polyline
  292. (pts
  293. (xy 11.43 -25.4)
  294. (xy -12.7 -25.4)
  295. )
  296. (stroke (width 0) (type default) (color 0 0 0 0))
  297. (fill (type none))
  298. )
  299. (polyline
  300. (pts
  301. (xy 11.43 22.86)
  302. (xy 11.43 -25.4)
  303. )
  304. (stroke (width 0) (type default) (color 0 0 0 0))
  305. (fill (type none))
  306. )
  307. (text "AD9235" (at 0 6.35 0)
  308. (effects (font (size 2.54 2.54)))
  309. )
  310. )
  311. (symbol "AD9235BR-ad9235_1_1"
  312. (pin output line (at 13.97 11.43 180) (length 2.54)
  313. (name "OTR" (effects (font (size 1.016 1.016))))
  314. (number "1" (effects (font (size 1.016 1.016))))
  315. )
  316. (pin input line (at -15.24 7.62 0) (length 2.54)
  317. (name "VIN-" (effects (font (size 1.016 1.016))))
  318. (number "10" (effects (font (size 1.016 1.016))))
  319. )
  320. (pin power_in line (at 1.27 -27.94 90) (length 2.54)
  321. (name "AGND@2" (effects (font (size 1.016 1.016))))
  322. (number "11" (effects (font (size 1.016 1.016))))
  323. )
  324. (pin power_in line (at -10.16 25.4 270) (length 2.54)
  325. (name "AVDD@2" (effects (font (size 1.016 1.016))))
  326. (number "12" (effects (font (size 1.016 1.016))))
  327. )
  328. (pin input line (at -15.24 1.27 0) (length 2.54)
  329. (name "CLK" (effects (font (size 1.016 1.016))))
  330. (number "13" (effects (font (size 1.016 1.016))))
  331. )
  332. (pin input line (at -15.24 -3.81 0) (length 2.54)
  333. (name "PDWN" (effects (font (size 1.016 1.016))))
  334. (number "14" (effects (font (size 1.016 1.016))))
  335. )
  336. (pin output line (at 13.97 -22.86 180) (length 2.54)
  337. (name "D0" (effects (font (size 1.016 1.016))))
  338. (number "15" (effects (font (size 1.016 1.016))))
  339. )
  340. (pin output line (at 13.97 -20.32 180) (length 2.54)
  341. (name "D1" (effects (font (size 1.016 1.016))))
  342. (number "16" (effects (font (size 1.016 1.016))))
  343. )
  344. (pin output line (at 13.97 -17.78 180) (length 2.54)
  345. (name "D2" (effects (font (size 1.016 1.016))))
  346. (number "17" (effects (font (size 1.016 1.016))))
  347. )
  348. (pin output line (at 13.97 -15.24 180) (length 2.54)
  349. (name "D3" (effects (font (size 1.016 1.016))))
  350. (number "18" (effects (font (size 1.016 1.016))))
  351. )
  352. (pin output line (at 13.97 -12.7 180) (length 2.54)
  353. (name "D4" (effects (font (size 1.016 1.016))))
  354. (number "19" (effects (font (size 1.016 1.016))))
  355. )
  356. (pin input line (at -15.24 3.81 0) (length 2.54)
  357. (name "MODE" (effects (font (size 1.016 1.016))))
  358. (number "2" (effects (font (size 1.016 1.016))))
  359. )
  360. (pin output line (at 13.97 -10.16 180) (length 2.54)
  361. (name "D5" (effects (font (size 1.016 1.016))))
  362. (number "20" (effects (font (size 1.016 1.016))))
  363. )
  364. (pin output line (at 13.97 -7.62 180) (length 2.54)
  365. (name "D6" (effects (font (size 1.016 1.016))))
  366. (number "21" (effects (font (size 1.016 1.016))))
  367. )
  368. (pin output line (at 13.97 -5.08 180) (length 2.54)
  369. (name "D7" (effects (font (size 1.016 1.016))))
  370. (number "22" (effects (font (size 1.016 1.016))))
  371. )
  372. (pin power_in line (at 3.81 -27.94 90) (length 2.54)
  373. (name "DGND" (effects (font (size 1.016 1.016))))
  374. (number "23" (effects (font (size 1.016 1.016))))
  375. )
  376. (pin power_in line (at -5.08 25.4 270) (length 2.54)
  377. (name "DRVDD" (effects (font (size 1.016 1.016))))
  378. (number "24" (effects (font (size 1.016 1.016))))
  379. )
  380. (pin output line (at 13.97 -2.54 180) (length 2.54)
  381. (name "D8" (effects (font (size 1.016 1.016))))
  382. (number "25" (effects (font (size 1.016 1.016))))
  383. )
  384. (pin output line (at 13.97 0 180) (length 2.54)
  385. (name "D9" (effects (font (size 1.016 1.016))))
  386. (number "26" (effects (font (size 1.016 1.016))))
  387. )
  388. (pin output line (at 13.97 2.54 180) (length 2.54)
  389. (name "D10" (effects (font (size 1.016 1.016))))
  390. (number "27" (effects (font (size 1.016 1.016))))
  391. )
  392. (pin output line (at 13.97 5.08 180) (length 2.54)
  393. (name "D11" (effects (font (size 1.016 1.016))))
  394. (number "28" (effects (font (size 1.016 1.016))))
  395. )
  396. (pin input line (at -15.24 -20.32 0) (length 2.54)
  397. (name "SENSE" (effects (font (size 1.016 1.016))))
  398. (number "3" (effects (font (size 1.016 1.016))))
  399. )
  400. (pin input line (at -15.24 -7.62 0) (length 2.54)
  401. (name "VREF" (effects (font (size 1.016 1.016))))
  402. (number "4" (effects (font (size 1.016 1.016))))
  403. )
  404. (pin output line (at 13.97 13.97 180) (length 2.54)
  405. (name "REFB" (effects (font (size 1.016 1.016))))
  406. (number "5" (effects (font (size 1.016 1.016))))
  407. )
  408. (pin output line (at 13.97 20.32 180) (length 2.54)
  409. (name "REFT" (effects (font (size 1.016 1.016))))
  410. (number "6" (effects (font (size 1.016 1.016))))
  411. )
  412. (pin power_in line (at -7.62 25.4 270) (length 2.54)
  413. (name "AVDD@1" (effects (font (size 1.016 1.016))))
  414. (number "7" (effects (font (size 1.016 1.016))))
  415. )
  416. (pin power_in line (at -1.27 -27.94 90) (length 2.54)
  417. (name "AGND@1" (effects (font (size 1.016 1.016))))
  418. (number "8" (effects (font (size 1.016 1.016))))
  419. )
  420. (pin input line (at -15.24 12.7 0) (length 2.54)
  421. (name "VIN+" (effects (font (size 1.016 1.016))))
  422. (number "9" (effects (font (size 1.016 1.016))))
  423. )
  424. )
  425. )
  426. (symbol "AnalogFluxReader-rescue:CP_Small-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  427. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  428. (effects (font (size 1.27 1.27)) (justify left))
  429. )
  430. (property "Value" "CP_Small-Device" (id 1) (at 0.254 -2.032 0)
  431. (effects (font (size 1.27 1.27)) (justify left))
  432. )
  433. (property "Footprint" "" (id 2) (at 0 0 0)
  434. (effects (font (size 1.27 1.27)) hide)
  435. )
  436. (property "Datasheet" "" (id 3) (at 0 0 0)
  437. (effects (font (size 1.27 1.27)) hide)
  438. )
  439. (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0)
  440. (effects (font (size 1.27 1.27)) hide)
  441. )
  442. (symbol "CP_Small-Device_0_1"
  443. (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
  444. (stroke (width 0) (type default) (color 0 0 0 0))
  445. (fill (type outline))
  446. )
  447. (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
  448. (stroke (width 0) (type default) (color 0 0 0 0))
  449. (fill (type none))
  450. )
  451. (polyline
  452. (pts
  453. (xy -1.27 1.524)
  454. (xy -0.762 1.524)
  455. )
  456. (stroke (width 0) (type default) (color 0 0 0 0))
  457. (fill (type none))
  458. )
  459. (polyline
  460. (pts
  461. (xy -1.016 1.27)
  462. (xy -1.016 1.778)
  463. )
  464. (stroke (width 0) (type default) (color 0 0 0 0))
  465. (fill (type none))
  466. )
  467. )
  468. (symbol "CP_Small-Device_1_1"
  469. (pin passive line (at 0 2.54 270) (length 1.8542)
  470. (name "~" (effects (font (size 1.27 1.27))))
  471. (number "1" (effects (font (size 1.27 1.27))))
  472. )
  473. (pin passive line (at 0 -2.54 90) (length 1.8542)
  474. (name "~" (effects (font (size 1.27 1.27))))
  475. (number "2" (effects (font (size 1.27 1.27))))
  476. )
  477. )
  478. )
  479. (symbol "AnalogFluxReader-rescue:LM2664-tinkerforge" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  480. (property "Reference" "U" (id 0) (at -6.35 6.35 0)
  481. (effects (font (size 1.524 1.524)))
  482. )
  483. (property "Value" "LM2664-tinkerforge" (id 1) (at 0 -6.35 0)
  484. (effects (font (size 1.524 1.524)))
  485. )
  486. (property "Footprint" "" (id 2) (at -19.05 -25.4 0)
  487. (effects (font (size 1.524 1.524)))
  488. )
  489. (property "Datasheet" "" (id 3) (at -19.05 -25.4 0)
  490. (effects (font (size 1.524 1.524)))
  491. )
  492. (symbol "LM2664-tinkerforge_0_1"
  493. (rectangle (start -7.62 5.08) (end 7.62 -5.08)
  494. (stroke (width 0) (type default) (color 0 0 0 0))
  495. (fill (type none))
  496. )
  497. )
  498. (symbol "LM2664-tinkerforge_1_1"
  499. (pin input line (at -11.43 -3.81 0) (length 3.81)
  500. (name "GND" (effects (font (size 1.524 1.524))))
  501. (number "1" (effects (font (size 1.524 1.524))))
  502. )
  503. (pin input line (at 11.43 -3.81 180) (length 3.81)
  504. (name "OUT" (effects (font (size 1.524 1.524))))
  505. (number "2" (effects (font (size 1.524 1.524))))
  506. )
  507. (pin input line (at 11.43 0 180) (length 3.81)
  508. (name "CAP-" (effects (font (size 1.524 1.524))))
  509. (number "3" (effects (font (size 1.524 1.524))))
  510. )
  511. (pin input line (at -11.43 0 0) (length 3.81)
  512. (name "nSD" (effects (font (size 1.524 1.524))))
  513. (number "4" (effects (font (size 1.524 1.524))))
  514. )
  515. (pin input line (at -11.43 3.81 0) (length 3.81)
  516. (name "V+" (effects (font (size 1.524 1.524))))
  517. (number "5" (effects (font (size 1.524 1.524))))
  518. )
  519. (pin input line (at 11.43 3.81 180) (length 3.81)
  520. (name "CAP+" (effects (font (size 1.524 1.524))))
  521. (number "6" (effects (font (size 1.524 1.524))))
  522. )
  523. )
  524. )
  525. (symbol "Connector:Conn_01x01_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  526. (property "Reference" "J" (id 0) (at 0 2.54 0)
  527. (effects (font (size 1.27 1.27)))
  528. )
  529. (property "Value" "Conn_01x01_Male" (id 1) (at 0 -2.54 0)
  530. (effects (font (size 1.27 1.27)))
  531. )
  532. (property "Footprint" "" (id 2) (at 0 0 0)
  533. (effects (font (size 1.27 1.27)) hide)
  534. )
  535. (property "Datasheet" "~" (id 3) (at 0 0 0)
  536. (effects (font (size 1.27 1.27)) hide)
  537. )
  538. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  539. (effects (font (size 1.27 1.27)) hide)
  540. )
  541. (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  542. (effects (font (size 1.27 1.27)) hide)
  543. )
  544. (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0)
  545. (effects (font (size 1.27 1.27)) hide)
  546. )
  547. (symbol "Conn_01x01_Male_1_1"
  548. (polyline
  549. (pts
  550. (xy 1.27 0)
  551. (xy 0.8636 0)
  552. )
  553. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  554. (fill (type none))
  555. )
  556. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  557. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  558. (fill (type outline))
  559. )
  560. (pin passive line (at 5.08 0 180) (length 3.81)
  561. (name "Pin_1" (effects (font (size 1.27 1.27))))
  562. (number "1" (effects (font (size 1.27 1.27))))
  563. )
  564. )
  565. )
  566. (symbol "Connector_Generic:Conn_02x10_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  567. (property "Reference" "J" (id 0) (at 1.27 12.7 0)
  568. (effects (font (size 1.27 1.27)))
  569. )
  570. (property "Value" "Conn_02x10_Odd_Even" (id 1) (at 1.27 -15.24 0)
  571. (effects (font (size 1.27 1.27)))
  572. )
  573. (property "Footprint" "" (id 2) (at 0 0 0)
  574. (effects (font (size 1.27 1.27)) hide)
  575. )
  576. (property "Datasheet" "~" (id 3) (at 0 0 0)
  577. (effects (font (size 1.27 1.27)) hide)
  578. )
  579. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  580. (effects (font (size 1.27 1.27)) hide)
  581. )
  582. (property "ki_description" "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  583. (effects (font (size 1.27 1.27)) hide)
  584. )
  585. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  586. (effects (font (size 1.27 1.27)) hide)
  587. )
  588. (symbol "Conn_02x10_Odd_Even_1_1"
  589. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  590. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  591. (fill (type none))
  592. )
  593. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  594. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  595. (fill (type none))
  596. )
  597. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  598. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  599. (fill (type none))
  600. )
  601. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  602. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  603. (fill (type none))
  604. )
  605. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  606. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  607. (fill (type none))
  608. )
  609. (rectangle (start -1.27 0.127) (end 0 -0.127)
  610. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  611. (fill (type none))
  612. )
  613. (rectangle (start -1.27 2.667) (end 0 2.413)
  614. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  615. (fill (type none))
  616. )
  617. (rectangle (start -1.27 5.207) (end 0 4.953)
  618. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  619. (fill (type none))
  620. )
  621. (rectangle (start -1.27 7.747) (end 0 7.493)
  622. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  623. (fill (type none))
  624. )
  625. (rectangle (start -1.27 10.287) (end 0 10.033)
  626. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  627. (fill (type none))
  628. )
  629. (rectangle (start -1.27 11.43) (end 3.81 -13.97)
  630. (stroke (width 0.254) (type default) (color 0 0 0 0))
  631. (fill (type background))
  632. )
  633. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  634. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  635. (fill (type none))
  636. )
  637. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  638. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  639. (fill (type none))
  640. )
  641. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  642. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  643. (fill (type none))
  644. )
  645. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  646. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  647. (fill (type none))
  648. )
  649. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  650. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  651. (fill (type none))
  652. )
  653. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  654. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  655. (fill (type none))
  656. )
  657. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  658. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  659. (fill (type none))
  660. )
  661. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  662. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  663. (fill (type none))
  664. )
  665. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  666. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  667. (fill (type none))
  668. )
  669. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  670. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  671. (fill (type none))
  672. )
  673. (pin passive line (at -5.08 10.16 0) (length 3.81)
  674. (name "Pin_1" (effects (font (size 1.27 1.27))))
  675. (number "1" (effects (font (size 1.27 1.27))))
  676. )
  677. (pin passive line (at 7.62 0 180) (length 3.81)
  678. (name "Pin_10" (effects (font (size 1.27 1.27))))
  679. (number "10" (effects (font (size 1.27 1.27))))
  680. )
  681. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  682. (name "Pin_11" (effects (font (size 1.27 1.27))))
  683. (number "11" (effects (font (size 1.27 1.27))))
  684. )
  685. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  686. (name "Pin_12" (effects (font (size 1.27 1.27))))
  687. (number "12" (effects (font (size 1.27 1.27))))
  688. )
  689. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  690. (name "Pin_13" (effects (font (size 1.27 1.27))))
  691. (number "13" (effects (font (size 1.27 1.27))))
  692. )
  693. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  694. (name "Pin_14" (effects (font (size 1.27 1.27))))
  695. (number "14" (effects (font (size 1.27 1.27))))
  696. )
  697. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  698. (name "Pin_15" (effects (font (size 1.27 1.27))))
  699. (number "15" (effects (font (size 1.27 1.27))))
  700. )
  701. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  702. (name "Pin_16" (effects (font (size 1.27 1.27))))
  703. (number "16" (effects (font (size 1.27 1.27))))
  704. )
  705. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  706. (name "Pin_17" (effects (font (size 1.27 1.27))))
  707. (number "17" (effects (font (size 1.27 1.27))))
  708. )
  709. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  710. (name "Pin_18" (effects (font (size 1.27 1.27))))
  711. (number "18" (effects (font (size 1.27 1.27))))
  712. )
  713. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  714. (name "Pin_19" (effects (font (size 1.27 1.27))))
  715. (number "19" (effects (font (size 1.27 1.27))))
  716. )
  717. (pin passive line (at 7.62 10.16 180) (length 3.81)
  718. (name "Pin_2" (effects (font (size 1.27 1.27))))
  719. (number "2" (effects (font (size 1.27 1.27))))
  720. )
  721. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  722. (name "Pin_20" (effects (font (size 1.27 1.27))))
  723. (number "20" (effects (font (size 1.27 1.27))))
  724. )
  725. (pin passive line (at -5.08 7.62 0) (length 3.81)
  726. (name "Pin_3" (effects (font (size 1.27 1.27))))
  727. (number "3" (effects (font (size 1.27 1.27))))
  728. )
  729. (pin passive line (at 7.62 7.62 180) (length 3.81)
  730. (name "Pin_4" (effects (font (size 1.27 1.27))))
  731. (number "4" (effects (font (size 1.27 1.27))))
  732. )
  733. (pin passive line (at -5.08 5.08 0) (length 3.81)
  734. (name "Pin_5" (effects (font (size 1.27 1.27))))
  735. (number "5" (effects (font (size 1.27 1.27))))
  736. )
  737. (pin passive line (at 7.62 5.08 180) (length 3.81)
  738. (name "Pin_6" (effects (font (size 1.27 1.27))))
  739. (number "6" (effects (font (size 1.27 1.27))))
  740. )
  741. (pin passive line (at -5.08 2.54 0) (length 3.81)
  742. (name "Pin_7" (effects (font (size 1.27 1.27))))
  743. (number "7" (effects (font (size 1.27 1.27))))
  744. )
  745. (pin passive line (at 7.62 2.54 180) (length 3.81)
  746. (name "Pin_8" (effects (font (size 1.27 1.27))))
  747. (number "8" (effects (font (size 1.27 1.27))))
  748. )
  749. (pin passive line (at -5.08 0 0) (length 3.81)
  750. (name "Pin_9" (effects (font (size 1.27 1.27))))
  751. (number "9" (effects (font (size 1.27 1.27))))
  752. )
  753. )
  754. )
  755. (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  756. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  757. (effects (font (size 1.27 1.27)) (justify left))
  758. )
  759. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  760. (effects (font (size 1.27 1.27)) (justify left))
  761. )
  762. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  763. (effects (font (size 1.27 1.27)) hide)
  764. )
  765. (property "Datasheet" "~" (id 3) (at 0 0 0)
  766. (effects (font (size 1.27 1.27)) hide)
  767. )
  768. (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
  769. (effects (font (size 1.27 1.27)) hide)
  770. )
  771. (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
  772. (effects (font (size 1.27 1.27)) hide)
  773. )
  774. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  775. (effects (font (size 1.27 1.27)) hide)
  776. )
  777. (symbol "C_0_1"
  778. (polyline
  779. (pts
  780. (xy -2.032 -0.762)
  781. (xy 2.032 -0.762)
  782. )
  783. (stroke (width 0.508) (type default) (color 0 0 0 0))
  784. (fill (type none))
  785. )
  786. (polyline
  787. (pts
  788. (xy -2.032 0.762)
  789. (xy 2.032 0.762)
  790. )
  791. (stroke (width 0.508) (type default) (color 0 0 0 0))
  792. (fill (type none))
  793. )
  794. )
  795. (symbol "C_1_1"
  796. (pin passive line (at 0 3.81 270) (length 2.794)
  797. (name "~" (effects (font (size 1.27 1.27))))
  798. (number "1" (effects (font (size 1.27 1.27))))
  799. )
  800. (pin passive line (at 0 -3.81 90) (length 2.794)
  801. (name "~" (effects (font (size 1.27 1.27))))
  802. (number "2" (effects (font (size 1.27 1.27))))
  803. )
  804. )
  805. )
  806. (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  807. (property "Reference" "L" (id 0) (at -1.27 0 90)
  808. (effects (font (size 1.27 1.27)))
  809. )
  810. (property "Value" "L" (id 1) (at 1.905 0 90)
  811. (effects (font (size 1.27 1.27)))
  812. )
  813. (property "Footprint" "" (id 2) (at 0 0 0)
  814. (effects (font (size 1.27 1.27)) hide)
  815. )
  816. (property "Datasheet" "~" (id 3) (at 0 0 0)
  817. (effects (font (size 1.27 1.27)) hide)
  818. )
  819. (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
  820. (effects (font (size 1.27 1.27)) hide)
  821. )
  822. (property "ki_description" "Inductor" (id 5) (at 0 0 0)
  823. (effects (font (size 1.27 1.27)) hide)
  824. )
  825. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
  826. (effects (font (size 1.27 1.27)) hide)
  827. )
  828. (symbol "L_0_1"
  829. (arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
  830. (stroke (width 0) (type default) (color 0 0 0 0))
  831. (fill (type none))
  832. )
  833. (arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
  834. (stroke (width 0) (type default) (color 0 0 0 0))
  835. (fill (type none))
  836. )
  837. (arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
  838. (stroke (width 0) (type default) (color 0 0 0 0))
  839. (fill (type none))
  840. )
  841. (arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
  842. (stroke (width 0) (type default) (color 0 0 0 0))
  843. (fill (type none))
  844. )
  845. )
  846. (symbol "L_1_1"
  847. (pin passive line (at 0 3.81 270) (length 1.27)
  848. (name "1" (effects (font (size 1.27 1.27))))
  849. (number "1" (effects (font (size 1.27 1.27))))
  850. )
  851. (pin passive line (at 0 -3.81 90) (length 1.27)
  852. (name "2" (effects (font (size 1.27 1.27))))
  853. (number "2" (effects (font (size 1.27 1.27))))
  854. )
  855. )
  856. )
  857. (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  858. (property "Reference" "R" (id 0) (at 2.032 0 90)
  859. (effects (font (size 1.27 1.27)))
  860. )
  861. (property "Value" "R" (id 1) (at 0 0 90)
  862. (effects (font (size 1.27 1.27)))
  863. )
  864. (property "Footprint" "" (id 2) (at -1.778 0 90)
  865. (effects (font (size 1.27 1.27)) hide)
  866. )
  867. (property "Datasheet" "~" (id 3) (at 0 0 0)
  868. (effects (font (size 1.27 1.27)) hide)
  869. )
  870. (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
  871. (effects (font (size 1.27 1.27)) hide)
  872. )
  873. (property "ki_description" "Resistor" (id 5) (at 0 0 0)
  874. (effects (font (size 1.27 1.27)) hide)
  875. )
  876. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  877. (effects (font (size 1.27 1.27)) hide)
  878. )
  879. (symbol "R_0_1"
  880. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  881. (stroke (width 0.254) (type default) (color 0 0 0 0))
  882. (fill (type none))
  883. )
  884. )
  885. (symbol "R_1_1"
  886. (pin passive line (at 0 3.81 270) (length 1.27)
  887. (name "~" (effects (font (size 1.27 1.27))))
  888. (number "1" (effects (font (size 1.27 1.27))))
  889. )
  890. (pin passive line (at 0 -3.81 90) (length 1.27)
  891. (name "~" (effects (font (size 1.27 1.27))))
  892. (number "2" (effects (font (size 1.27 1.27))))
  893. )
  894. )
  895. )
  896. (symbol "Interface_Expansion:MCP23017_SP" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  897. (property "Reference" "U" (id 0) (at -11.43 24.13 0)
  898. (effects (font (size 1.27 1.27)))
  899. )
  900. (property "Value" "MCP23017_SP" (id 1) (at 0 0 0)
  901. (effects (font (size 1.27 1.27)))
  902. )
  903. (property "Footprint" "Package_DIP:DIP-28_W7.62mm" (id 2) (at 5.08 -25.4 0)
  904. (effects (font (size 1.27 1.27)) (justify left) hide)
  905. )
  906. (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/20001952C.pdf" (id 3) (at 5.08 -27.94 0)
  907. (effects (font (size 1.27 1.27)) (justify left) hide)
  908. )
  909. (property "ki_keywords" "I2C parallel port expander" (id 4) (at 0 0 0)
  910. (effects (font (size 1.27 1.27)) hide)
  911. )
  912. (property "ki_description" "16-bit I/O expander, I2C, interrupts, w pull-ups, SPDIP-28" (id 5) (at 0 0 0)
  913. (effects (font (size 1.27 1.27)) hide)
  914. )
  915. (property "ki_fp_filters" "DIP*W7.62mm*" (id 6) (at 0 0 0)
  916. (effects (font (size 1.27 1.27)) hide)
  917. )
  918. (symbol "MCP23017_SP_0_1"
  919. (rectangle (start -12.7 22.86) (end 12.7 -22.86)
  920. (stroke (width 0.254) (type default) (color 0 0 0 0))
  921. (fill (type background))
  922. )
  923. )
  924. (symbol "MCP23017_SP_1_1"
  925. (pin bidirectional line (at 17.78 20.32 180) (length 5.08)
  926. (name "GPB0" (effects (font (size 1.27 1.27))))
  927. (number "1" (effects (font (size 1.27 1.27))))
  928. )
  929. (pin power_in line (at 0 -27.94 90) (length 5.08)
  930. (name "VSS" (effects (font (size 1.27 1.27))))
  931. (number "10" (effects (font (size 1.27 1.27))))
  932. )
  933. (pin no_connect line (at -12.7 15.24 0) (length 5.08) hide
  934. (name "NC" (effects (font (size 1.27 1.27))))
  935. (number "11" (effects (font (size 1.27 1.27))))
  936. )
  937. (pin input line (at -17.78 17.78 0) (length 5.08)
  938. (name "SCK" (effects (font (size 1.27 1.27))))
  939. (number "12" (effects (font (size 1.27 1.27))))
  940. )
  941. (pin bidirectional line (at -17.78 20.32 0) (length 5.08)
  942. (name "SDA" (effects (font (size 1.27 1.27))))
  943. (number "13" (effects (font (size 1.27 1.27))))
  944. )
  945. (pin no_connect line (at -12.7 12.7 0) (length 5.08) hide
  946. (name "NC" (effects (font (size 1.27 1.27))))
  947. (number "14" (effects (font (size 1.27 1.27))))
  948. )
  949. (pin input line (at -17.78 -20.32 0) (length 5.08)
  950. (name "A0" (effects (font (size 1.27 1.27))))
  951. (number "15" (effects (font (size 1.27 1.27))))
  952. )
  953. (pin input line (at -17.78 -17.78 0) (length 5.08)
  954. (name "A1" (effects (font (size 1.27 1.27))))
  955. (number "16" (effects (font (size 1.27 1.27))))
  956. )
  957. (pin input line (at -17.78 -15.24 0) (length 5.08)
  958. (name "A2" (effects (font (size 1.27 1.27))))
  959. (number "17" (effects (font (size 1.27 1.27))))
  960. )
  961. (pin input line (at -17.78 -2.54 0) (length 5.08)
  962. (name "~{RESET}" (effects (font (size 1.27 1.27))))
  963. (number "18" (effects (font (size 1.27 1.27))))
  964. )
  965. (pin tri_state line (at -17.78 5.08 0) (length 5.08)
  966. (name "INTB" (effects (font (size 1.27 1.27))))
  967. (number "19" (effects (font (size 1.27 1.27))))
  968. )
  969. (pin bidirectional line (at 17.78 17.78 180) (length 5.08)
  970. (name "GPB1" (effects (font (size 1.27 1.27))))
  971. (number "2" (effects (font (size 1.27 1.27))))
  972. )
  973. (pin tri_state line (at -17.78 2.54 0) (length 5.08)
  974. (name "INTA" (effects (font (size 1.27 1.27))))
  975. (number "20" (effects (font (size 1.27 1.27))))
  976. )
  977. (pin bidirectional line (at 17.78 -2.54 180) (length 5.08)
  978. (name "GPA0" (effects (font (size 1.27 1.27))))
  979. (number "21" (effects (font (size 1.27 1.27))))
  980. )
  981. (pin bidirectional line (at 17.78 -5.08 180) (length 5.08)
  982. (name "GPA1" (effects (font (size 1.27 1.27))))
  983. (number "22" (effects (font (size 1.27 1.27))))
  984. )
  985. (pin bidirectional line (at 17.78 -7.62 180) (length 5.08)
  986. (name "GPA2" (effects (font (size 1.27 1.27))))
  987. (number "23" (effects (font (size 1.27 1.27))))
  988. )
  989. (pin bidirectional line (at 17.78 -10.16 180) (length 5.08)
  990. (name "GPA3" (effects (font (size 1.27 1.27))))
  991. (number "24" (effects (font (size 1.27 1.27))))
  992. )
  993. (pin bidirectional line (at 17.78 -12.7 180) (length 5.08)
  994. (name "GPA4" (effects (font (size 1.27 1.27))))
  995. (number "25" (effects (font (size 1.27 1.27))))
  996. )
  997. (pin bidirectional line (at 17.78 -15.24 180) (length 5.08)
  998. (name "GPA5" (effects (font (size 1.27 1.27))))
  999. (number "26" (effects (font (size 1.27 1.27))))
  1000. )
  1001. (pin bidirectional line (at 17.78 -17.78 180) (length 5.08)
  1002. (name "GPA6" (effects (font (size 1.27 1.27))))
  1003. (number "27" (effects (font (size 1.27 1.27))))
  1004. )
  1005. (pin bidirectional line (at 17.78 -20.32 180) (length 5.08)
  1006. (name "GPA7" (effects (font (size 1.27 1.27))))
  1007. (number "28" (effects (font (size 1.27 1.27))))
  1008. )
  1009. (pin bidirectional line (at 17.78 15.24 180) (length 5.08)
  1010. (name "GPB2" (effects (font (size 1.27 1.27))))
  1011. (number "3" (effects (font (size 1.27 1.27))))
  1012. )
  1013. (pin bidirectional line (at 17.78 12.7 180) (length 5.08)
  1014. (name "GPB3" (effects (font (size 1.27 1.27))))
  1015. (number "4" (effects (font (size 1.27 1.27))))
  1016. )
  1017. (pin bidirectional line (at 17.78 10.16 180) (length 5.08)
  1018. (name "GPB4" (effects (font (size 1.27 1.27))))
  1019. (number "5" (effects (font (size 1.27 1.27))))
  1020. )
  1021. (pin bidirectional line (at 17.78 7.62 180) (length 5.08)
  1022. (name "GPB5" (effects (font (size 1.27 1.27))))
  1023. (number "6" (effects (font (size 1.27 1.27))))
  1024. )
  1025. (pin bidirectional line (at 17.78 5.08 180) (length 5.08)
  1026. (name "GPB6" (effects (font (size 1.27 1.27))))
  1027. (number "7" (effects (font (size 1.27 1.27))))
  1028. )
  1029. (pin bidirectional line (at 17.78 2.54 180) (length 5.08)
  1030. (name "GPB7" (effects (font (size 1.27 1.27))))
  1031. (number "8" (effects (font (size 1.27 1.27))))
  1032. )
  1033. (pin power_in line (at 0 27.94 270) (length 5.08)
  1034. (name "VDD" (effects (font (size 1.27 1.27))))
  1035. (number "9" (effects (font (size 1.27 1.27))))
  1036. )
  1037. )
  1038. )
  1039. (symbol "power:+3.3VADC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1040. (property "Reference" "#PWR" (id 0) (at 3.81 -1.27 0)
  1041. (effects (font (size 1.27 1.27)) hide)
  1042. )
  1043. (property "Value" "+3.3VADC" (id 1) (at 0 2.54 0)
  1044. (effects (font (size 1.27 1.27)))
  1045. )
  1046. (property "Footprint" "" (id 2) (at 0 0 0)
  1047. (effects (font (size 1.27 1.27)) hide)
  1048. )
  1049. (property "Datasheet" "" (id 3) (at 0 0 0)
  1050. (effects (font (size 1.27 1.27)) hide)
  1051. )
  1052. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1053. (effects (font (size 1.27 1.27)) hide)
  1054. )
  1055. (property "ki_description" "Power symbol creates a global label with name \"+3.3VADC\"" (id 5) (at 0 0 0)
  1056. (effects (font (size 1.27 1.27)) hide)
  1057. )
  1058. (symbol "+3.3VADC_0_0"
  1059. (pin power_in line (at 0 0 90) (length 0) hide
  1060. (name "+3.3VADC" (effects (font (size 1.27 1.27))))
  1061. (number "1" (effects (font (size 1.27 1.27))))
  1062. )
  1063. )
  1064. (symbol "+3.3VADC_0_1"
  1065. (polyline
  1066. (pts
  1067. (xy -0.762 1.27)
  1068. (xy 0 2.54)
  1069. )
  1070. (stroke (width 0) (type default) (color 0 0 0 0))
  1071. (fill (type none))
  1072. )
  1073. (polyline
  1074. (pts
  1075. (xy 0 0)
  1076. (xy 0 2.54)
  1077. )
  1078. (stroke (width 0) (type default) (color 0 0 0 0))
  1079. (fill (type none))
  1080. )
  1081. (polyline
  1082. (pts
  1083. (xy 0 2.54)
  1084. (xy 0.762 1.27)
  1085. )
  1086. (stroke (width 0) (type default) (color 0 0 0 0))
  1087. (fill (type none))
  1088. )
  1089. )
  1090. )
  1091. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1092. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1093. (effects (font (size 1.27 1.27)) hide)
  1094. )
  1095. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  1096. (effects (font (size 1.27 1.27)))
  1097. )
  1098. (property "Footprint" "" (id 2) (at 0 0 0)
  1099. (effects (font (size 1.27 1.27)) hide)
  1100. )
  1101. (property "Datasheet" "" (id 3) (at 0 0 0)
  1102. (effects (font (size 1.27 1.27)) hide)
  1103. )
  1104. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1105. (effects (font (size 1.27 1.27)) hide)
  1106. )
  1107. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  1108. (effects (font (size 1.27 1.27)) hide)
  1109. )
  1110. (symbol "+3V3_0_1"
  1111. (polyline
  1112. (pts
  1113. (xy -0.762 1.27)
  1114. (xy 0 2.54)
  1115. )
  1116. (stroke (width 0) (type default) (color 0 0 0 0))
  1117. (fill (type none))
  1118. )
  1119. (polyline
  1120. (pts
  1121. (xy 0 0)
  1122. (xy 0 2.54)
  1123. )
  1124. (stroke (width 0) (type default) (color 0 0 0 0))
  1125. (fill (type none))
  1126. )
  1127. (polyline
  1128. (pts
  1129. (xy 0 2.54)
  1130. (xy 0.762 1.27)
  1131. )
  1132. (stroke (width 0) (type default) (color 0 0 0 0))
  1133. (fill (type none))
  1134. )
  1135. )
  1136. (symbol "+3V3_1_1"
  1137. (pin power_in line (at 0 0 90) (length 0) hide
  1138. (name "+3V3" (effects (font (size 1.27 1.27))))
  1139. (number "1" (effects (font (size 1.27 1.27))))
  1140. )
  1141. )
  1142. )
  1143. (symbol "power:-3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1144. (property "Reference" "#PWR" (id 0) (at 0 2.54 0)
  1145. (effects (font (size 1.27 1.27)) hide)
  1146. )
  1147. (property "Value" "-3V3" (id 1) (at 0 3.81 0)
  1148. (effects (font (size 1.27 1.27)))
  1149. )
  1150. (property "Footprint" "" (id 2) (at 0 0 0)
  1151. (effects (font (size 1.27 1.27)) hide)
  1152. )
  1153. (property "Datasheet" "" (id 3) (at 0 0 0)
  1154. (effects (font (size 1.27 1.27)) hide)
  1155. )
  1156. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1157. (effects (font (size 1.27 1.27)) hide)
  1158. )
  1159. (property "ki_description" "Power symbol creates a global label with name \"-3V3\"" (id 5) (at 0 0 0)
  1160. (effects (font (size 1.27 1.27)) hide)
  1161. )
  1162. (symbol "-3V3_0_0"
  1163. (pin power_in line (at 0 0 90) (length 0) hide
  1164. (name "-3V3" (effects (font (size 1.27 1.27))))
  1165. (number "1" (effects (font (size 1.27 1.27))))
  1166. )
  1167. )
  1168. (symbol "-3V3_0_1"
  1169. (polyline
  1170. (pts
  1171. (xy 0 0)
  1172. (xy 0 1.27)
  1173. (xy 0.762 1.27)
  1174. (xy 0 2.54)
  1175. (xy -0.762 1.27)
  1176. (xy 0 1.27)
  1177. )
  1178. (stroke (width 0) (type default) (color 0 0 0 0))
  1179. (fill (type outline))
  1180. )
  1181. )
  1182. )
  1183. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1184. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1185. (effects (font (size 1.27 1.27)) hide)
  1186. )
  1187. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  1188. (effects (font (size 1.27 1.27)))
  1189. )
  1190. (property "Footprint" "" (id 2) (at 0 0 0)
  1191. (effects (font (size 1.27 1.27)) hide)
  1192. )
  1193. (property "Datasheet" "" (id 3) (at 0 0 0)
  1194. (effects (font (size 1.27 1.27)) hide)
  1195. )
  1196. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1197. (effects (font (size 1.27 1.27)) hide)
  1198. )
  1199. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  1200. (effects (font (size 1.27 1.27)) hide)
  1201. )
  1202. (symbol "GND_0_1"
  1203. (polyline
  1204. (pts
  1205. (xy 0 0)
  1206. (xy 0 -1.27)
  1207. (xy 1.27 -1.27)
  1208. (xy 0 -2.54)
  1209. (xy -1.27 -1.27)
  1210. (xy 0 -1.27)
  1211. )
  1212. (stroke (width 0) (type default) (color 0 0 0 0))
  1213. (fill (type none))
  1214. )
  1215. )
  1216. (symbol "GND_1_1"
  1217. (pin power_in line (at 0 0 270) (length 0) hide
  1218. (name "GND" (effects (font (size 1.27 1.27))))
  1219. (number "1" (effects (font (size 1.27 1.27))))
  1220. )
  1221. )
  1222. )
  1223. (symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1224. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1225. (effects (font (size 1.27 1.27)) hide)
  1226. )
  1227. (property "Value" "GNDA" (id 1) (at 0 -3.81 0)
  1228. (effects (font (size 1.27 1.27)))
  1229. )
  1230. (property "Footprint" "" (id 2) (at 0 0 0)
  1231. (effects (font (size 1.27 1.27)) hide)
  1232. )
  1233. (property "Datasheet" "" (id 3) (at 0 0 0)
  1234. (effects (font (size 1.27 1.27)) hide)
  1235. )
  1236. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1237. (effects (font (size 1.27 1.27)) hide)
  1238. )
  1239. (property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0)
  1240. (effects (font (size 1.27 1.27)) hide)
  1241. )
  1242. (symbol "GNDA_0_1"
  1243. (polyline
  1244. (pts
  1245. (xy 0 0)
  1246. (xy 0 -1.27)
  1247. (xy 1.27 -1.27)
  1248. (xy 0 -2.54)
  1249. (xy -1.27 -1.27)
  1250. (xy 0 -1.27)
  1251. )
  1252. (stroke (width 0) (type default) (color 0 0 0 0))
  1253. (fill (type none))
  1254. )
  1255. )
  1256. (symbol "GNDA_1_1"
  1257. (pin power_in line (at 0 0 270) (length 0) hide
  1258. (name "GNDA" (effects (font (size 1.27 1.27))))
  1259. (number "1" (effects (font (size 1.27 1.27))))
  1260. )
  1261. )
  1262. )
  1263. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1264. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  1265. (effects (font (size 1.27 1.27)) hide)
  1266. )
  1267. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  1268. (effects (font (size 1.27 1.27)))
  1269. )
  1270. (property "Footprint" "" (id 2) (at 0 0 0)
  1271. (effects (font (size 1.27 1.27)) hide)
  1272. )
  1273. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1274. (effects (font (size 1.27 1.27)) hide)
  1275. )
  1276. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  1277. (effects (font (size 1.27 1.27)) hide)
  1278. )
  1279. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  1280. (effects (font (size 1.27 1.27)) hide)
  1281. )
  1282. (symbol "PWR_FLAG_0_0"
  1283. (pin power_out line (at 0 0 90) (length 0)
  1284. (name "pwr" (effects (font (size 1.27 1.27))))
  1285. (number "1" (effects (font (size 1.27 1.27))))
  1286. )
  1287. )
  1288. (symbol "PWR_FLAG_0_1"
  1289. (polyline
  1290. (pts
  1291. (xy 0 0)
  1292. (xy 0 1.27)
  1293. (xy -1.016 1.905)
  1294. (xy 0 2.54)
  1295. (xy 1.016 1.905)
  1296. (xy 0 1.27)
  1297. )
  1298. (stroke (width 0) (type default) (color 0 0 0 0))
  1299. (fill (type none))
  1300. )
  1301. )
  1302. )
  1303. )
  1304. (junction (at 24.13 116.84) (diameter 0) (color 0 0 0 0)
  1305. (uuid 02c21a28-6516-4d46-946c-24860ad34163)
  1306. )
  1307. (junction (at 158.75 35.56) (diameter 0) (color 0 0 0 0)
  1308. (uuid 04b6a4c7-0ce1-47dd-b426-8e85922c6821)
  1309. )
  1310. (junction (at 105.41 44.45) (diameter 0) (color 0 0 0 0)
  1311. (uuid 09309782-347a-4592-bdcb-6cb314dd8059)
  1312. )
  1313. (junction (at 232.41 72.39) (diameter 0) (color 0 0 0 0)
  1314. (uuid 14a1c914-dad1-4321-8733-2525b473c62a)
  1315. )
  1316. (junction (at 148.59 179.07) (diameter 0) (color 0 0 0 0)
  1317. (uuid 1c6e6764-204a-49db-8662-c2dd21affd48)
  1318. )
  1319. (junction (at 90.17 44.45) (diameter 0) (color 0 0 0 0)
  1320. (uuid 212b66ef-3c6b-4ca5-8b7e-9638373b42c0)
  1321. )
  1322. (junction (at 204.47 31.75) (diameter 0) (color 0 0 0 0)
  1323. (uuid 2d853abd-0254-491e-9ce3-5f27c3b6b316)
  1324. )
  1325. (junction (at 269.24 62.23) (diameter 0) (color 0 0 0 0)
  1326. (uuid 30853ee1-9d7c-4f8c-b8c0-842df4922fb3)
  1327. )
  1328. (junction (at 100.33 171.45) (diameter 0) (color 0 0 0 0)
  1329. (uuid 31764a6f-b6a9-47ee-8226-47d6f3ab5399)
  1330. )
  1331. (junction (at 71.12 118.11) (diameter 0) (color 0 0 0 0)
  1332. (uuid 31c95d6e-eeba-4503-80af-36bac632b004)
  1333. )
  1334. (junction (at 43.18 93.98) (diameter 0) (color 0 0 0 0)
  1335. (uuid 3281e799-b27c-4cb0-ba5d-0a4597b2c510)
  1336. )
  1337. (junction (at 269.24 72.39) (diameter 0) (color 0 0 0 0)
  1338. (uuid 33360891-d086-4e87-85ff-9438bb72e2a8)
  1339. )
  1340. (junction (at 156.21 43.18) (diameter 0) (color 0 0 0 0)
  1341. (uuid 39a8e1c7-d388-4939-aad8-668b2e08967c)
  1342. )
  1343. (junction (at 160.02 179.07) (diameter 0) (color 0 0 0 0)
  1344. (uuid 3c21e653-0dac-4514-b58c-db3fc663891f)
  1345. )
  1346. (junction (at 74.93 64.77) (diameter 0) (color 0 0 0 0)
  1347. (uuid 3e2cc1a0-a64b-4c3a-84fa-0d52a12b8060)
  1348. )
  1349. (junction (at 71.12 128.27) (diameter 0) (color 0 0 0 0)
  1350. (uuid 3f87b928-987c-4c44-9bf6-2973c64827f9)
  1351. )
  1352. (junction (at 29.21 109.22) (diameter 0) (color 0 0 0 0)
  1353. (uuid 43baeea6-e2cc-4c73-85a4-3bef42eaf459)
  1354. )
  1355. (junction (at 46.99 57.15) (diameter 0) (color 0 0 0 0)
  1356. (uuid 4966b391-5a0c-4cb9-99ae-1176e797815b)
  1357. )
  1358. (junction (at 184.15 36.83) (diameter 0) (color 0 0 0 0)
  1359. (uuid 4b1780d4-67b2-49bd-852c-eda38258f6f9)
  1360. )
  1361. (junction (at 148.59 43.18) (diameter 0) (color 0 0 0 0)
  1362. (uuid 4fe2d384-3d38-424d-a7b1-c54905a9a9bd)
  1363. )
  1364. (junction (at 29.21 111.76) (diameter 0) (color 0 0 0 0)
  1365. (uuid 53e7ed6e-fede-4b01-a43b-c9ce1de10efb)
  1366. )
  1367. (junction (at 71.12 120.65) (diameter 0) (color 0 0 0 0)
  1368. (uuid 5b494df1-bd4f-41d8-861b-94bc7574ae43)
  1369. )
  1370. (junction (at 207.01 36.83) (diameter 0) (color 0 0 0 0)
  1371. (uuid 5d2eadf6-3661-465d-948c-3b8183ffc6dd)
  1372. )
  1373. (junction (at 124.46 85.09) (diameter 0) (color 0 0 0 0)
  1374. (uuid 604a047b-ed4e-44d6-a495-0780cb6995b7)
  1375. )
  1376. (junction (at 269.24 77.47) (diameter 0) (color 0 0 0 0)
  1377. (uuid 66a25b2a-51b5-4aaf-804e-d6577ac7d488)
  1378. )
  1379. (junction (at 135.89 179.07) (diameter 0) (color 0 0 0 0)
  1380. (uuid 699c9984-4762-4608-889c-ef6d70220782)
  1381. )
  1382. (junction (at 213.36 153.67) (diameter 0) (color 0 0 0 0)
  1383. (uuid 73d69c66-7083-4fb0-91bd-048e00ea62a0)
  1384. )
  1385. (junction (at 269.24 64.77) (diameter 0) (color 0 0 0 0)
  1386. (uuid 7890af5d-c8be-4880-895f-69d6b15c4437)
  1387. )
  1388. (junction (at 184.15 29.21) (diameter 0) (color 0 0 0 0)
  1389. (uuid 7c1d50bc-d18a-46c9-b946-9eacf3ed854f)
  1390. )
  1391. (junction (at 269.24 69.85) (diameter 0) (color 0 0 0 0)
  1392. (uuid 83eeb519-4209-4aa9-80b9-5ebba22707c9)
  1393. )
  1394. (junction (at 29.21 106.68) (diameter 0) (color 0 0 0 0)
  1395. (uuid 86bf2f30-3b7a-4e44-a03e-e54462eae3e8)
  1396. )
  1397. (junction (at 102.87 49.53) (diameter 0) (color 0 0 0 0)
  1398. (uuid 8772c2d7-c9e3-4559-9dff-f72fb2489ed5)
  1399. )
  1400. (junction (at 184.15 49.53) (diameter 0) (color 0 0 0 0)
  1401. (uuid 89050e99-0167-4f04-931a-585c39d1c636)
  1402. )
  1403. (junction (at 269.24 67.31) (diameter 0) (color 0 0 0 0)
  1404. (uuid 89f9c056-cfc3-49a8-bb2e-5d74993b69f8)
  1405. )
  1406. (junction (at 204.47 29.21) (diameter 0) (color 0 0 0 0)
  1407. (uuid 97f4719c-64e6-4064-9cfc-25935b74925f)
  1408. )
  1409. (junction (at 46.99 46.99) (diameter 0) (color 0 0 0 0)
  1410. (uuid 97fca2c2-d53e-4e3a-8ec9-eddf76102e52)
  1411. )
  1412. (junction (at 88.9 88.9) (diameter 0) (color 0 0 0 0)
  1413. (uuid 9f4dca74-c2ba-4c28-8c8f-a62f19eb77a8)
  1414. )
  1415. (junction (at 34.29 179.07) (diameter 0) (color 0 0 0 0)
  1416. (uuid a479f594-cb90-4d67-a22e-61119f359192)
  1417. )
  1418. (junction (at 184.15 39.37) (diameter 0) (color 0 0 0 0)
  1419. (uuid a5617b49-8043-4189-814c-78875de713d0)
  1420. )
  1421. (junction (at 148.59 35.56) (diameter 0) (color 0 0 0 0)
  1422. (uuid ad4b47d9-db55-4f1a-b242-8dec583b8b9f)
  1423. )
  1424. (junction (at 115.57 30.48) (diameter 0) (color 0 0 0 0)
  1425. (uuid bb60fd5b-33f6-4857-b78a-2f1c48f4966d)
  1426. )
  1427. (junction (at 102.87 26.67) (diameter 0) (color 0 0 0 0)
  1428. (uuid c355145a-d83a-438e-ad0b-57124bb10ec7)
  1429. )
  1430. (junction (at 100.33 175.26) (diameter 0) (color 0 0 0 0)
  1431. (uuid c618d995-8ff9-424a-8245-0966b93f843e)
  1432. )
  1433. (junction (at 184.15 34.29) (diameter 0) (color 0 0 0 0)
  1434. (uuid d2cb764f-cfdb-418a-a86d-a894aba8a06b)
  1435. )
  1436. (junction (at 44.45 179.07) (diameter 0) (color 0 0 0 0)
  1437. (uuid d4187ae4-8c4a-4ee8-9878-db9c27a21bb0)
  1438. )
  1439. (junction (at 90.17 179.07) (diameter 0) (color 0 0 0 0)
  1440. (uuid d7d34096-95cb-4e33-a451-6fce0d48a866)
  1441. )
  1442. (junction (at 109.22 64.77) (diameter 0) (color 0 0 0 0)
  1443. (uuid db131bb7-ba8f-4b45-a095-e256b17df503)
  1444. )
  1445. (junction (at 269.24 74.93) (diameter 0) (color 0 0 0 0)
  1446. (uuid dd90eccf-95b7-4d2e-ba9c-3af200a58555)
  1447. )
  1448. (junction (at 71.12 123.19) (diameter 0) (color 0 0 0 0)
  1449. (uuid dde1ff61-d26d-40b8-b9aa-ca4fb9881a5a)
  1450. )
  1451. (junction (at 71.12 115.57) (diameter 0) (color 0 0 0 0)
  1452. (uuid e3a11564-0ee9-4753-aa33-5e7822893b27)
  1453. )
  1454. (junction (at 207.01 31.75) (diameter 0) (color 0 0 0 0)
  1455. (uuid e3d28f1c-963f-4573-9b16-28dd02c1c847)
  1456. )
  1457. (junction (at 24.13 119.38) (diameter 0) (color 0 0 0 0)
  1458. (uuid e5005e0b-50ab-4724-bf5f-775228048f72)
  1459. )
  1460. (junction (at 232.41 74.93) (diameter 0) (color 0 0 0 0)
  1461. (uuid e64110f2-2ba4-42df-9d67-b3f517adc98f)
  1462. )
  1463. (junction (at 35.56 179.07) (diameter 0) (color 0 0 0 0)
  1464. (uuid e6a5d661-e10f-49ab-b328-7bd8e0967d1b)
  1465. )
  1466. (junction (at 63.5 64.77) (diameter 0) (color 0 0 0 0)
  1467. (uuid ebd18d2c-4840-42ea-ac2b-2cc99c4de81b)
  1468. )
  1469. (junction (at 24.13 121.92) (diameter 0) (color 0 0 0 0)
  1470. (uuid ee177f41-2144-4d4a-87b5-66e34012d11c)
  1471. )
  1472. (junction (at 90.17 49.53) (diameter 0) (color 0 0 0 0)
  1473. (uuid f46ddd0e-ceba-48b1-a7e6-c1a340811f37)
  1474. )
  1475. (junction (at 250.19 21.59) (diameter 0) (color 0 0 0 0)
  1476. (uuid faf2c2b9-b358-4040-81dd-fb471b9ed781)
  1477. )
  1478. (junction (at 21.59 179.07) (diameter 0) (color 0 0 0 0)
  1479. (uuid ff26b2b3-54c1-4247-b5f9-18084af407f4)
  1480. )
  1481. (no_connect (at 187.96 87.63) (uuid 0e04657e-2742-46a7-ad95-6097a57b4484))
  1482. (no_connect (at 101.6 115.57) (uuid 2e99b96c-7bba-42b1-8173-390512b87fce))
  1483. (no_connect (at 139.7 45.72) (uuid 38c3f28a-91e2-4455-bd0b-be6c9eae057f))
  1484. (no_connect (at 200.66 82.55) (uuid 685f1001-c5cc-4b03-a4ee-92c7c9f33a46))
  1485. (no_connect (at 232.41 54.61) (uuid 73a9beaa-5641-4a32-8a6d-fe7328ef808f))
  1486. (no_connect (at 200.66 80.01) (uuid 7bf3da1b-c043-4f15-918e-55813aaf270d))
  1487. (no_connect (at 200.66 87.63) (uuid 916cc1cc-6cf7-435e-bdd7-751cdbc6ded9))
  1488. (no_connect (at 55.88 116.84) (uuid aa1615ff-6c6a-4367-a475-529f8ed01d68))
  1489. (no_connect (at 200.66 85.09) (uuid b46cb2e9-2b44-43c4-9248-184f6edbaabe))
  1490. (no_connect (at 200.66 74.93) (uuid d0a45396-a838-4806-bc09-03a111e0d227))
  1491. (no_connect (at 187.96 77.47) (uuid d553da93-cdc7-4fd3-95ef-5452db86f82e))
  1492. (no_connect (at 232.41 52.07) (uuid e7eefa14-9f5e-4a92-92b3-537db170daff))
  1493. (wire (pts (xy 107.95 26.67) (xy 107.95 53.34))
  1494. (stroke (width 0) (type default) (color 0 0 0 0))
  1495. (uuid 003ebd75-7776-4b30-9066-77e0adf921a5)
  1496. )
  1497. (wire (pts (xy 120.65 31.75) (xy 120.65 24.13))
  1498. (stroke (width 0) (type default) (color 0 0 0 0))
  1499. (uuid 01724a9a-1814-4f8d-8a88-0cec697e5066)
  1500. )
  1501. (wire (pts (xy 180.34 72.39) (xy 187.96 72.39))
  1502. (stroke (width 0) (type default) (color 0 0 0 0))
  1503. (uuid 01e074bf-fc5e-4cfd-9c8a-d7090f330076)
  1504. )
  1505. (wire (pts (xy 68.58 43.18) (xy 57.15 43.18))
  1506. (stroke (width 0) (type default) (color 0 0 0 0))
  1507. (uuid 0283dd04-2d16-4bbd-b687-8d2fa0b4c43f)
  1508. )
  1509. (wire (pts (xy 184.15 34.29) (xy 184.15 36.83))
  1510. (stroke (width 0) (type default) (color 0 0 0 0))
  1511. (uuid 03e3c658-d62d-4239-9a5c-4481c850cd7c)
  1512. )
  1513. (wire (pts (xy 46.99 27.94) (xy 48.26 27.94))
  1514. (stroke (width 0) (type default) (color 0 0 0 0))
  1515. (uuid 04b2b388-cefc-47c1-8c4c-575e3920c9b9)
  1516. )
  1517. (wire (pts (xy 135.89 191.77) (xy 135.89 189.23))
  1518. (stroke (width 0) (type default) (color 0 0 0 0))
  1519. (uuid 05191a4e-c865-4ad5-893c-bd49e03261ca)
  1520. )
  1521. (wire (pts (xy 204.47 29.21) (xy 204.47 31.75))
  1522. (stroke (width 0) (type default) (color 0 0 0 0))
  1523. (uuid 0623ba74-2669-4bbe-a9a0-510a17a00042)
  1524. )
  1525. (wire (pts (xy 44.45 179.07) (xy 44.45 175.26))
  1526. (stroke (width 0) (type default) (color 0 0 0 0))
  1527. (uuid 063dd4a5-4309-4260-ad09-c21e2e9f1b44)
  1528. )
  1529. (wire (pts (xy 267.97 52.07) (xy 280.67 52.07))
  1530. (stroke (width 0) (type default) (color 0 0 0 0))
  1531. (uuid 074a81f8-ff48-4b4e-94b8-d5dfde008c75)
  1532. )
  1533. (wire (pts (xy 64.77 40.64) (xy 64.77 36.83))
  1534. (stroke (width 0) (type default) (color 0 0 0 0))
  1535. (uuid 074e753c-0769-4746-b381-a188f9ccf112)
  1536. )
  1537. (wire (pts (xy 139.7 43.18) (xy 148.59 43.18))
  1538. (stroke (width 0) (type default) (color 0 0 0 0))
  1539. (uuid 075c40b6-7a0f-4446-8d81-60b8a82409d7)
  1540. )
  1541. (wire (pts (xy 166.37 179.07) (xy 160.02 179.07))
  1542. (stroke (width 0) (type default) (color 0 0 0 0))
  1543. (uuid 0785df82-be98-41a2-85fd-dd859970c401)
  1544. )
  1545. (wire (pts (xy 269.24 62.23) (xy 269.24 59.69))
  1546. (stroke (width 0) (type default) (color 0 0 0 0))
  1547. (uuid 08d2c8a4-13ee-422b-b6a5-1b37a14b9577)
  1548. )
  1549. (wire (pts (xy 100.33 171.45) (xy 100.33 170.18))
  1550. (stroke (width 0) (type default) (color 0 0 0 0))
  1551. (uuid 094967e9-1eab-490e-8dc1-788e59d5d863)
  1552. )
  1553. (wire (pts (xy 55.88 62.23) (xy 90.17 62.23))
  1554. (stroke (width 0) (type default) (color 0 0 0 0))
  1555. (uuid 096a29d4-9b4a-4211-8d0c-081565bdba5a)
  1556. )
  1557. (wire (pts (xy 232.41 74.93) (xy 232.41 72.39))
  1558. (stroke (width 0) (type default) (color 0 0 0 0))
  1559. (uuid 09dc4a97-18a7-492f-bae6-5d6e62551268)
  1560. )
  1561. (wire (pts (xy 148.59 35.56) (xy 158.75 35.56))
  1562. (stroke (width 0) (type default) (color 0 0 0 0))
  1563. (uuid 0f3884ea-c028-4caf-b62a-013520c8f8ca)
  1564. )
  1565. (wire (pts (xy 158.75 35.56) (xy 168.91 35.56))
  1566. (stroke (width 0) (type default) (color 0 0 0 0))
  1567. (uuid 10325e04-82f4-4c9a-abb1-2d08d4429483)
  1568. )
  1569. (wire (pts (xy 209.55 153.67) (xy 213.36 153.67))
  1570. (stroke (width 0) (type default) (color 0 0 0 0))
  1571. (uuid 11d0a298-ecb0-47f9-bf47-bde43ecab70f)
  1572. )
  1573. (wire (pts (xy 90.17 45.72) (xy 90.17 44.45))
  1574. (stroke (width 0) (type default) (color 0 0 0 0))
  1575. (uuid 120be663-7036-4f23-ad6b-916e766bf8b7)
  1576. )
  1577. (wire (pts (xy 267.97 54.61) (xy 280.67 54.61))
  1578. (stroke (width 0) (type default) (color 0 0 0 0))
  1579. (uuid 16aaf4f4-76ca-4df1-b421-e8642fa5d931)
  1580. )
  1581. (wire (pts (xy 109.22 64.77) (xy 110.49 64.77))
  1582. (stroke (width 0) (type default) (color 0 0 0 0))
  1583. (uuid 176078c5-9a75-45b5-8770-35b8822eded8)
  1584. )
  1585. (wire (pts (xy 43.18 139.7) (xy 43.18 137.16))
  1586. (stroke (width 0) (type default) (color 0 0 0 0))
  1587. (uuid 18fa188a-9156-4d69-8e7e-0523e8b6ba4d)
  1588. )
  1589. (wire (pts (xy 200.66 34.29) (xy 220.98 34.29))
  1590. (stroke (width 0) (type default) (color 0 0 0 0))
  1591. (uuid 19e92f27-ca7e-49c2-ae3d-20ee67b4db09)
  1592. )
  1593. (wire (pts (xy 105.41 60.96) (xy 110.49 60.96))
  1594. (stroke (width 0) (type default) (color 0 0 0 0))
  1595. (uuid 1a160505-4c1d-471a-8fb4-8946463af79a)
  1596. )
  1597. (wire (pts (xy 177.8 31.75) (xy 187.96 31.75))
  1598. (stroke (width 0) (type default) (color 0 0 0 0))
  1599. (uuid 1b197903-c8d1-4df8-9530-f66dd9feca40)
  1600. )
  1601. (wire (pts (xy 137.16 171.45) (xy 138.43 171.45))
  1602. (stroke (width 0) (type default) (color 0 0 0 0))
  1603. (uuid 1b70b768-feae-450e-98a2-49460d219153)
  1604. )
  1605. (wire (pts (xy 207.01 49.53) (xy 207.01 36.83))
  1606. (stroke (width 0) (type default) (color 0 0 0 0))
  1607. (uuid 1bd16c47-21ef-45ce-8f45-1929ee56efc9)
  1608. )
  1609. (wire (pts (xy 232.41 156.21) (xy 232.41 153.67))
  1610. (stroke (width 0) (type default) (color 0 0 0 0))
  1611. (uuid 1ce73aae-9b83-4133-bd43-a53c2e0068a0)
  1612. )
  1613. (wire (pts (xy 148.59 43.18) (xy 156.21 43.18))
  1614. (stroke (width 0) (type default) (color 0 0 0 0))
  1615. (uuid 1cf571b4-3091-4a62-a8d2-ee483379101a)
  1616. )
  1617. (wire (pts (xy 200.66 31.75) (xy 204.47 31.75))
  1618. (stroke (width 0) (type default) (color 0 0 0 0))
  1619. (uuid 1e2a18e7-abbb-4021-9408-d5fbaffb0852)
  1620. )
  1621. (wire (pts (xy 30.48 129.54) (xy 24.13 129.54))
  1622. (stroke (width 0) (type default) (color 0 0 0 0))
  1623. (uuid 1f300ed6-9cd3-4548-b718-417f6b25aa31)
  1624. )
  1625. (wire (pts (xy 213.36 31.75) (xy 207.01 31.75))
  1626. (stroke (width 0) (type default) (color 0 0 0 0))
  1627. (uuid 1f39b0bd-a62a-45f1-8efd-3c321cc1c7ac)
  1628. )
  1629. (wire (pts (xy 105.41 44.45) (xy 101.6 44.45))
  1630. (stroke (width 0) (type default) (color 0 0 0 0))
  1631. (uuid 1fe42478-1a84-48d0-b961-5566d4efdd45)
  1632. )
  1633. (wire (pts (xy 180.34 69.85) (xy 187.96 69.85))
  1634. (stroke (width 0) (type default) (color 0 0 0 0))
  1635. (uuid 23dc825b-a3e5-47e6-a245-1b65022d8e54)
  1636. )
  1637. (wire (pts (xy 63.5 50.8) (xy 68.58 50.8))
  1638. (stroke (width 0) (type default) (color 0 0 0 0))
  1639. (uuid 2409f17c-91c7-4cf5-a8d0-aba1d45e281f)
  1640. )
  1641. (wire (pts (xy 127 85.09) (xy 124.46 85.09))
  1642. (stroke (width 0) (type default) (color 0 0 0 0))
  1643. (uuid 244842df-0367-4b87-bfb1-c10040a28854)
  1644. )
  1645. (wire (pts (xy 62.23 115.57) (xy 62.23 93.98))
  1646. (stroke (width 0) (type default) (color 0 0 0 0))
  1647. (uuid 249503d7-d474-4443-b9c9-eccc2f8afea6)
  1648. )
  1649. (wire (pts (xy 139.7 69.85) (xy 144.78 69.85))
  1650. (stroke (width 0) (type default) (color 0 0 0 0))
  1651. (uuid 260d1a0f-5419-49ac-ab26-ad818affc966)
  1652. )
  1653. (wire (pts (xy 129.54 171.45) (xy 125.73 171.45))
  1654. (stroke (width 0) (type default) (color 0 0 0 0))
  1655. (uuid 26e568b0-496a-4ca5-aacc-0f45742cd00d)
  1656. )
  1657. (wire (pts (xy 74.93 72.39) (xy 74.93 69.85))
  1658. (stroke (width 0) (type default) (color 0 0 0 0))
  1659. (uuid 27c11d57-8590-4387-a01a-b03430b74b3d)
  1660. )
  1661. (wire (pts (xy 168.91 35.56) (xy 168.91 46.99))
  1662. (stroke (width 0) (type default) (color 0 0 0 0))
  1663. (uuid 2a64a1fe-073c-45b2-874b-cfb84482ab2c)
  1664. )
  1665. (wire (pts (xy 21.59 179.07) (xy 24.13 179.07))
  1666. (stroke (width 0) (type default) (color 0 0 0 0))
  1667. (uuid 2a9cf587-abfb-494c-b897-565e6fe366be)
  1668. )
  1669. (wire (pts (xy 269.24 30.48) (xy 269.24 29.21))
  1670. (stroke (width 0) (type default) (color 0 0 0 0))
  1671. (uuid 2af89031-cd7a-4c3c-86a5-9a082adfb92d)
  1672. )
  1673. (wire (pts (xy 124.46 87.63) (xy 124.46 85.09))
  1674. (stroke (width 0) (type default) (color 0 0 0 0))
  1675. (uuid 2bed65ab-6efd-4383-86ca-6b29689d010a)
  1676. )
  1677. (wire (pts (xy 44.45 180.34) (xy 44.45 179.07))
  1678. (stroke (width 0) (type default) (color 0 0 0 0))
  1679. (uuid 2c339699-6fbd-480f-ae92-124a79a15a40)
  1680. )
  1681. (wire (pts (xy 204.47 26.67) (xy 204.47 29.21))
  1682. (stroke (width 0) (type default) (color 0 0 0 0))
  1683. (uuid 2d787f01-ca9d-4a5b-975d-1b8c51e16770)
  1684. )
  1685. (wire (pts (xy 187.96 39.37) (xy 184.15 39.37))
  1686. (stroke (width 0) (type default) (color 0 0 0 0))
  1687. (uuid 2ed4f541-1493-4766-b4f4-0b19f66e3116)
  1688. )
  1689. (wire (pts (xy 157.48 76.2) (xy 157.48 74.93))
  1690. (stroke (width 0) (type default) (color 0 0 0 0))
  1691. (uuid 2f2f8208-4015-4d08-b083-325412adbd7c)
  1692. )
  1693. (wire (pts (xy 187.96 29.21) (xy 184.15 29.21))
  1694. (stroke (width 0) (type default) (color 0 0 0 0))
  1695. (uuid 30f5a2d3-e925-4605-bfa7-622f0c7e5bcc)
  1696. )
  1697. (wire (pts (xy 176.53 96.52) (xy 176.53 80.01))
  1698. (stroke (width 0) (type default) (color 0 0 0 0))
  1699. (uuid 31e6703c-01d3-459f-bccb-f029c3b257de)
  1700. )
  1701. (wire (pts (xy 222.25 62.23) (xy 222.25 60.96))
  1702. (stroke (width 0) (type default) (color 0 0 0 0))
  1703. (uuid 32e296c0-d4a0-4fd1-b70b-7752b75e90d0)
  1704. )
  1705. (wire (pts (xy 135.89 179.07) (xy 138.43 179.07))
  1706. (stroke (width 0) (type default) (color 0 0 0 0))
  1707. (uuid 32f063d1-7bfa-4e3f-8449-c94e2644f008)
  1708. )
  1709. (wire (pts (xy 63.5 64.77) (xy 63.5 50.8))
  1710. (stroke (width 0) (type default) (color 0 0 0 0))
  1711. (uuid 33662d4a-b16b-40c3-96f0-0e88fda690c9)
  1712. )
  1713. (wire (pts (xy 267.97 67.31) (xy 269.24 67.31))
  1714. (stroke (width 0) (type default) (color 0 0 0 0))
  1715. (uuid 336bfd3f-ce0b-4dae-a145-a397ae8cc122)
  1716. )
  1717. (wire (pts (xy 139.7 54.61) (xy 144.78 54.61))
  1718. (stroke (width 0) (type default) (color 0 0 0 0))
  1719. (uuid 377cea7b-02a0-4a97-ba44-c853a84a68a5)
  1720. )
  1721. (wire (pts (xy 207.01 31.75) (xy 207.01 36.83))
  1722. (stroke (width 0) (type default) (color 0 0 0 0))
  1723. (uuid 37ba8c54-9fe1-40f4-87ae-147685b2c1cd)
  1724. )
  1725. (wire (pts (xy 66.04 135.89) (xy 76.2 135.89))
  1726. (stroke (width 0) (type default) (color 0 0 0 0))
  1727. (uuid 37fc97cf-dd0e-4c44-be5d-d797dfc54ef5)
  1728. )
  1729. (wire (pts (xy 24.13 121.92) (xy 30.48 121.92))
  1730. (stroke (width 0) (type default) (color 0 0 0 0))
  1731. (uuid 38a29ed7-18a9-4523-801f-82d9d6472240)
  1732. )
  1733. (wire (pts (xy 187.96 41.91) (xy 177.8 41.91))
  1734. (stroke (width 0) (type default) (color 0 0 0 0))
  1735. (uuid 38c1fb50-b76a-4a75-b4be-803df3efc64f)
  1736. )
  1737. (wire (pts (xy 102.87 171.45) (xy 100.33 171.45))
  1738. (stroke (width 0) (type default) (color 0 0 0 0))
  1739. (uuid 38da352b-61a7-48d9-86bb-85815faf6164)
  1740. )
  1741. (wire (pts (xy 29.21 111.76) (xy 29.21 135.89))
  1742. (stroke (width 0) (type default) (color 0 0 0 0))
  1743. (uuid 3904b680-292a-4e53-80f0-714e876925ce)
  1744. )
  1745. (wire (pts (xy 100.33 179.07) (xy 102.87 179.07))
  1746. (stroke (width 0) (type default) (color 0 0 0 0))
  1747. (uuid 39c2426f-030d-48b9-8818-50fd5313f136)
  1748. )
  1749. (wire (pts (xy 40.64 46.99) (xy 46.99 46.99))
  1750. (stroke (width 0) (type default) (color 0 0 0 0))
  1751. (uuid 39cd34c2-4932-4974-87e1-2576f2eff2ce)
  1752. )
  1753. (wire (pts (xy 71.12 120.65) (xy 71.12 118.11))
  1754. (stroke (width 0) (type default) (color 0 0 0 0))
  1755. (uuid 39d454bd-a83e-4b66-9f4c-da2c51401705)
  1756. )
  1757. (wire (pts (xy 148.59 36.83) (xy 148.59 35.56))
  1758. (stroke (width 0) (type default) (color 0 0 0 0))
  1759. (uuid 3a726666-4c52-4ae4-91bc-0f2f5ee20783)
  1760. )
  1761. (wire (pts (xy 157.48 85.09) (xy 157.48 83.82))
  1762. (stroke (width 0) (type default) (color 0 0 0 0))
  1763. (uuid 3c4a90ad-041e-49b9-9e66-0e4b64597e75)
  1764. )
  1765. (wire (pts (xy 34.29 189.23) (xy 34.29 186.69))
  1766. (stroke (width 0) (type default) (color 0 0 0 0))
  1767. (uuid 3cff8059-07bc-4735-b6a3-eb6fde2d69ce)
  1768. )
  1769. (wire (pts (xy 267.97 77.47) (xy 269.24 77.47))
  1770. (stroke (width 0) (type default) (color 0 0 0 0))
  1771. (uuid 3ec9c4de-618d-48a4-9b54-3e98a46eaff4)
  1772. )
  1773. (wire (pts (xy 76.2 120.65) (xy 71.12 120.65))
  1774. (stroke (width 0) (type default) (color 0 0 0 0))
  1775. (uuid 40b4f05a-a41c-4a7d-9bea-992325e1eac7)
  1776. )
  1777. (wire (pts (xy 60.96 106.68) (xy 60.96 102.87))
  1778. (stroke (width 0) (type default) (color 0 0 0 0))
  1779. (uuid 42ded3db-c429-432b-bd2a-05b3199daecc)
  1780. )
  1781. (wire (pts (xy 207.01 36.83) (xy 200.66 36.83))
  1782. (stroke (width 0) (type default) (color 0 0 0 0))
  1783. (uuid 42e21158-4036-49e3-b576-3eca1c348c64)
  1784. )
  1785. (wire (pts (xy 62.23 93.98) (xy 43.18 93.98))
  1786. (stroke (width 0) (type default) (color 0 0 0 0))
  1787. (uuid 42f834be-b398-43dc-9673-12da845475f1)
  1788. )
  1789. (wire (pts (xy 44.45 185.42) (xy 44.45 189.23))
  1790. (stroke (width 0) (type default) (color 0 0 0 0))
  1791. (uuid 44e263b5-1c87-4e1c-bd54-c8f11f5a2832)
  1792. )
  1793. (wire (pts (xy 142.24 35.56) (xy 148.59 35.56))
  1794. (stroke (width 0) (type default) (color 0 0 0 0))
  1795. (uuid 4743d89a-15e5-4563-99d6-1842a9bf2c15)
  1796. )
  1797. (wire (pts (xy 180.34 92.71) (xy 187.96 92.71))
  1798. (stroke (width 0) (type default) (color 0 0 0 0))
  1799. (uuid 49e7c11b-b7b6-4f50-bf38-1b249057e270)
  1800. )
  1801. (wire (pts (xy 66.04 97.79) (xy 76.2 97.79))
  1802. (stroke (width 0) (type default) (color 0 0 0 0))
  1803. (uuid 4a164f79-32be-4874-86a6-05c517bdad7d)
  1804. )
  1805. (wire (pts (xy 29.21 109.22) (xy 30.48 109.22))
  1806. (stroke (width 0) (type default) (color 0 0 0 0))
  1807. (uuid 4c9db42e-819e-45af-881a-bf36f1a6cfaf)
  1808. )
  1809. (wire (pts (xy 88.9 144.78) (xy 88.9 143.51))
  1810. (stroke (width 0) (type default) (color 0 0 0 0))
  1811. (uuid 4cf7bd04-cf27-4bd4-a2fe-49e099f7d95d)
  1812. )
  1813. (wire (pts (xy 53.34 179.07) (xy 44.45 179.07))
  1814. (stroke (width 0) (type default) (color 0 0 0 0))
  1815. (uuid 4da73753-21f3-4f4a-b6fb-c624e5c85153)
  1816. )
  1817. (wire (pts (xy 184.15 21.59) (xy 184.15 29.21))
  1818. (stroke (width 0) (type default) (color 0 0 0 0))
  1819. (uuid 4e241107-9be3-42b0-9b42-21aaa96b324e)
  1820. )
  1821. (wire (pts (xy 214.63 77.47) (xy 214.63 76.2))
  1822. (stroke (width 0) (type default) (color 0 0 0 0))
  1823. (uuid 4e2bdd32-6958-42af-9d5d-82189cdf2079)
  1824. )
  1825. (wire (pts (xy 90.17 49.53) (xy 90.17 48.26))
  1826. (stroke (width 0) (type default) (color 0 0 0 0))
  1827. (uuid 4ef79864-2d8f-4a2c-9798-dac6fb5c4bfb)
  1828. )
  1829. (wire (pts (xy 34.29 179.07) (xy 35.56 179.07))
  1830. (stroke (width 0) (type default) (color 0 0 0 0))
  1831. (uuid 4f6fe5c4-4ead-444a-bb45-f66a9a2736d8)
  1832. )
  1833. (wire (pts (xy 71.12 128.27) (xy 76.2 128.27))
  1834. (stroke (width 0) (type default) (color 0 0 0 0))
  1835. (uuid 4fb72cef-92fd-41f0-bcee-09a9ccd3a6ac)
  1836. )
  1837. (wire (pts (xy 105.41 44.45) (xy 110.49 44.45))
  1838. (stroke (width 0) (type default) (color 0 0 0 0))
  1839. (uuid 5085474b-fc92-43ea-83f7-098c3b27efb2)
  1840. )
  1841. (wire (pts (xy 71.12 123.19) (xy 71.12 120.65))
  1842. (stroke (width 0) (type default) (color 0 0 0 0))
  1843. (uuid 51054ea2-1745-466d-b56a-9bab30882d7c)
  1844. )
  1845. (wire (pts (xy 200.66 39.37) (xy 213.36 39.37))
  1846. (stroke (width 0) (type default) (color 0 0 0 0))
  1847. (uuid 510b74d6-bd5f-4b1b-b020-3f88712ecd5c)
  1848. )
  1849. (wire (pts (xy 90.17 44.45) (xy 90.17 27.94))
  1850. (stroke (width 0) (type default) (color 0 0 0 0))
  1851. (uuid 53bc3435-2749-454b-8b03-85bde7b94608)
  1852. )
  1853. (wire (pts (xy 92.71 53.34) (xy 105.41 53.34))
  1854. (stroke (width 0) (type default) (color 0 0 0 0))
  1855. (uuid 53c8ef81-819b-47b8-aaf8-7c00a4337172)
  1856. )
  1857. (wire (pts (xy 102.87 49.53) (xy 101.6 49.53))
  1858. (stroke (width 0) (type default) (color 0 0 0 0))
  1859. (uuid 553ef767-d435-4f82-b405-34eab888490d)
  1860. )
  1861. (wire (pts (xy 267.97 49.53) (xy 280.67 49.53))
  1862. (stroke (width 0) (type default) (color 0 0 0 0))
  1863. (uuid 55837fe2-263e-4a4d-9545-54fe94bd0a07)
  1864. )
  1865. (wire (pts (xy 204.47 50.8) (xy 204.47 31.75))
  1866. (stroke (width 0) (type default) (color 0 0 0 0))
  1867. (uuid 57abac01-63ec-4422-8acd-91b5bc505da2)
  1868. )
  1869. (wire (pts (xy 76.2 118.11) (xy 71.12 118.11))
  1870. (stroke (width 0) (type default) (color 0 0 0 0))
  1871. (uuid 584777ae-a48e-492b-9ceb-82c8d7994d70)
  1872. )
  1873. (wire (pts (xy 63.5 64.77) (xy 74.93 64.77))
  1874. (stroke (width 0) (type default) (color 0 0 0 0))
  1875. (uuid 593e432d-f481-4a3c-b729-bb54688de2d1)
  1876. )
  1877. (wire (pts (xy 148.59 191.77) (xy 148.59 189.23))
  1878. (stroke (width 0) (type default) (color 0 0 0 0))
  1879. (uuid 5c97eb19-1b26-416a-883c-48b95f9ca42f)
  1880. )
  1881. (wire (pts (xy 180.34 90.17) (xy 187.96 90.17))
  1882. (stroke (width 0) (type default) (color 0 0 0 0))
  1883. (uuid 5db28390-1f23-437c-b985-92bd3e48a9a1)
  1884. )
  1885. (wire (pts (xy 148.59 181.61) (xy 148.59 179.07))
  1886. (stroke (width 0) (type default) (color 0 0 0 0))
  1887. (uuid 5e5a2be6-6028-4e31-815f-8548df07f711)
  1888. )
  1889. (wire (pts (xy 187.96 34.29) (xy 184.15 34.29))
  1890. (stroke (width 0) (type default) (color 0 0 0 0))
  1891. (uuid 5fb80956-6066-4167-a910-8dfccf11b32f)
  1892. )
  1893. (wire (pts (xy 58.42 57.15) (xy 46.99 57.15))
  1894. (stroke (width 0) (type default) (color 0 0 0 0))
  1895. (uuid 5ff2fc62-9447-4480-a937-347196405d36)
  1896. )
  1897. (wire (pts (xy 21.59 184.15) (xy 21.59 189.23))
  1898. (stroke (width 0) (type default) (color 0 0 0 0))
  1899. (uuid 60512c78-64f9-4ec6-b197-f5ca03a7c0cc)
  1900. )
  1901. (wire (pts (xy 78.74 181.61) (xy 78.74 179.07))
  1902. (stroke (width 0) (type default) (color 0 0 0 0))
  1903. (uuid 6187da17-826a-4051-9577-5049014453da)
  1904. )
  1905. (wire (pts (xy 88.9 45.72) (xy 90.17 45.72))
  1906. (stroke (width 0) (type default) (color 0 0 0 0))
  1907. (uuid 631b4ad7-114f-4065-96f1-c7782a13a389)
  1908. )
  1909. (wire (pts (xy 109.22 77.47) (xy 110.49 77.47))
  1910. (stroke (width 0) (type default) (color 0 0 0 0))
  1911. (uuid 6325aba2-5ec2-463a-b594-fda65c65baa8)
  1912. )
  1913. (wire (pts (xy 67.31 105.41) (xy 76.2 105.41))
  1914. (stroke (width 0) (type default) (color 0 0 0 0))
  1915. (uuid 64b0aaa4-e8c2-4655-852c-02f50ea4dba0)
  1916. )
  1917. (wire (pts (xy 200.66 41.91) (xy 213.36 41.91))
  1918. (stroke (width 0) (type default) (color 0 0 0 0))
  1919. (uuid 651806c2-be8f-46ec-aaed-bc1a584ce52e)
  1920. )
  1921. (wire (pts (xy 160.02 179.07) (xy 148.59 179.07))
  1922. (stroke (width 0) (type default) (color 0 0 0 0))
  1923. (uuid 67d2e852-3b3a-4ac1-8b48-a431e0fdd150)
  1924. )
  1925. (wire (pts (xy 232.41 153.67) (xy 226.06 153.67))
  1926. (stroke (width 0) (type default) (color 0 0 0 0))
  1927. (uuid 6827cfa7-7d93-49bc-8e40-905ce37c7d2a)
  1928. )
  1929. (wire (pts (xy 88.9 90.17) (xy 88.9 88.9))
  1930. (stroke (width 0) (type default) (color 0 0 0 0))
  1931. (uuid 6884379b-3df3-4687-92aa-09316cff14a3)
  1932. )
  1933. (wire (pts (xy 267.97 41.91) (xy 280.67 41.91))
  1934. (stroke (width 0) (type default) (color 0 0 0 0))
  1935. (uuid 68a54ebd-9891-4a46-a4e3-b84a67a74002)
  1936. )
  1937. (wire (pts (xy 68.58 40.64) (xy 64.77 40.64))
  1938. (stroke (width 0) (type default) (color 0 0 0 0))
  1939. (uuid 691a84a9-30b1-4311-af9f-a373d6d6c542)
  1940. )
  1941. (wire (pts (xy 59.69 133.35) (xy 59.69 128.27))
  1942. (stroke (width 0) (type default) (color 0 0 0 0))
  1943. (uuid 6a54ece1-ba89-4a69-b19d-a8bf17e66684)
  1944. )
  1945. (wire (pts (xy 63.5 100.33) (xy 76.2 100.33))
  1946. (stroke (width 0) (type default) (color 0 0 0 0))
  1947. (uuid 6af27a02-436a-4819-a670-3bed97dec50a)
  1948. )
  1949. (wire (pts (xy 71.12 110.49) (xy 76.2 110.49))
  1950. (stroke (width 0) (type default) (color 0 0 0 0))
  1951. (uuid 6bd45cca-d2b6-4d83-bf65-8cc0ea945181)
  1952. )
  1953. (wire (pts (xy 102.87 175.26) (xy 100.33 175.26))
  1954. (stroke (width 0) (type default) (color 0 0 0 0))
  1955. (uuid 6c1e299a-0839-4e5e-a987-64ba0169df8d)
  1956. )
  1957. (wire (pts (xy 78.74 179.07) (xy 90.17 179.07))
  1958. (stroke (width 0) (type default) (color 0 0 0 0))
  1959. (uuid 6c45c715-0a40-4884-a090-d1d77f87f089)
  1960. )
  1961. (wire (pts (xy 139.7 57.15) (xy 144.78 57.15))
  1962. (stroke (width 0) (type default) (color 0 0 0 0))
  1963. (uuid 6dc19a4b-85c5-4f38-a043-b51b357abe67)
  1964. )
  1965. (wire (pts (xy 269.24 80.01) (xy 269.24 77.47))
  1966. (stroke (width 0) (type default) (color 0 0 0 0))
  1967. (uuid 6e543d0e-68c9-40de-ba57-f20ac0d0ec8f)
  1968. )
  1969. (wire (pts (xy 184.15 36.83) (xy 187.96 36.83))
  1970. (stroke (width 0) (type default) (color 0 0 0 0))
  1971. (uuid 6e7a96a0-58f6-48c1-a085-1beace7fcda7)
  1972. )
  1973. (wire (pts (xy 135.89 181.61) (xy 135.89 179.07))
  1974. (stroke (width 0) (type default) (color 0 0 0 0))
  1975. (uuid 6ef012ae-f195-42de-a6d2-75920ea45b40)
  1976. )
  1977. (wire (pts (xy 269.24 77.47) (xy 269.24 74.93))
  1978. (stroke (width 0) (type default) (color 0 0 0 0))
  1979. (uuid 6f2fb8d9-c72b-4317-95b1-436e468b3ded)
  1980. )
  1981. (wire (pts (xy 43.18 96.52) (xy 43.18 93.98))
  1982. (stroke (width 0) (type default) (color 0 0 0 0))
  1983. (uuid 6f72d8e9-d276-4fda-bdd9-1b93b46b4b22)
  1984. )
  1985. (wire (pts (xy 184.15 49.53) (xy 184.15 50.8))
  1986. (stroke (width 0) (type default) (color 0 0 0 0))
  1987. (uuid 7023b918-e9f4-4dca-abca-395dd9363fda)
  1988. )
  1989. (wire (pts (xy 76.2 115.57) (xy 71.12 115.57))
  1990. (stroke (width 0) (type default) (color 0 0 0 0))
  1991. (uuid 7185fb90-38f7-4587-af70-902a4a161975)
  1992. )
  1993. (wire (pts (xy 168.91 81.28) (xy 168.91 82.55))
  1994. (stroke (width 0) (type default) (color 0 0 0 0))
  1995. (uuid 720ba193-a51d-4e2d-839f-83fc5f4aafd1)
  1996. )
  1997. (wire (pts (xy 213.36 153.67) (xy 218.44 153.67))
  1998. (stroke (width 0) (type default) (color 0 0 0 0))
  1999. (uuid 73605d91-355c-4f2d-82b4-1d0fdfbefabd)
  2000. )
  2001. (wire (pts (xy 78.74 191.77) (xy 78.74 189.23))
  2002. (stroke (width 0) (type default) (color 0 0 0 0))
  2003. (uuid 74527b00-09b2-48de-955b-cc80a76704c6)
  2004. )
  2005. (wire (pts (xy 138.43 175.26) (xy 125.73 175.26))
  2006. (stroke (width 0) (type default) (color 0 0 0 0))
  2007. (uuid 75e00f75-30d6-4f59-8e7c-f7b2b51230be)
  2008. )
  2009. (wire (pts (xy 90.17 181.61) (xy 90.17 179.07))
  2010. (stroke (width 0) (type default) (color 0 0 0 0))
  2011. (uuid 761500d4-eddc-4be1-9d1c-a1d3652e192d)
  2012. )
  2013. (wire (pts (xy 115.57 30.48) (xy 115.57 29.21))
  2014. (stroke (width 0) (type default) (color 0 0 0 0))
  2015. (uuid 7685a96e-5ddc-4623-b8d1-c85815a490b4)
  2016. )
  2017. (wire (pts (xy 267.97 64.77) (xy 269.24 64.77))
  2018. (stroke (width 0) (type default) (color 0 0 0 0))
  2019. (uuid 787997ee-13fb-4a68-85cf-e248368d427c)
  2020. )
  2021. (wire (pts (xy 21.59 177.8) (xy 21.59 179.07))
  2022. (stroke (width 0) (type default) (color 0 0 0 0))
  2023. (uuid 78dd059e-bf69-4cda-927b-12ac6566e193)
  2024. )
  2025. (wire (pts (xy 157.48 85.09) (xy 187.96 85.09))
  2026. (stroke (width 0) (type default) (color 0 0 0 0))
  2027. (uuid 7a170e18-962b-4c0f-af5d-ae9bc1b2aab2)
  2028. )
  2029. (wire (pts (xy 90.17 179.07) (xy 90.17 175.26))
  2030. (stroke (width 0) (type default) (color 0 0 0 0))
  2031. (uuid 7a47d704-840a-497d-8b88-e4642bc1171a)
  2032. )
  2033. (wire (pts (xy 58.42 48.26) (xy 68.58 48.26))
  2034. (stroke (width 0) (type default) (color 0 0 0 0))
  2035. (uuid 7c2aed71-65ee-4f54-9b88-ad4fdd044680)
  2036. )
  2037. (wire (pts (xy 129.54 87.63) (xy 129.54 85.09))
  2038. (stroke (width 0) (type default) (color 0 0 0 0))
  2039. (uuid 7c726bdd-249f-41f5-9693-2941b06dce50)
  2040. )
  2041. (wire (pts (xy 135.89 179.07) (xy 125.73 179.07))
  2042. (stroke (width 0) (type default) (color 0 0 0 0))
  2043. (uuid 7cd28375-0653-4b47-938c-687a8ef2860a)
  2044. )
  2045. (wire (pts (xy 267.97 36.83) (xy 280.67 36.83))
  2046. (stroke (width 0) (type default) (color 0 0 0 0))
  2047. (uuid 7d3abbc5-5abc-4a05-a267-713c3ccee603)
  2048. )
  2049. (wire (pts (xy 76.2 123.19) (xy 71.12 123.19))
  2050. (stroke (width 0) (type default) (color 0 0 0 0))
  2051. (uuid 7d6601f7-7ea8-468d-952f-5d89c0b870a4)
  2052. )
  2053. (wire (pts (xy 168.91 82.55) (xy 187.96 82.55))
  2054. (stroke (width 0) (type default) (color 0 0 0 0))
  2055. (uuid 7df03df0-f6f3-4fb5-948c-b2a6359332fa)
  2056. )
  2057. (wire (pts (xy 114.3 93.98) (xy 114.3 88.9))
  2058. (stroke (width 0) (type default) (color 0 0 0 0))
  2059. (uuid 7f131abd-fdd0-4037-8ad2-cf6328d90caa)
  2060. )
  2061. (wire (pts (xy 250.19 21.59) (xy 250.19 29.21))
  2062. (stroke (width 0) (type default) (color 0 0 0 0))
  2063. (uuid 80649ecd-98ca-4ad1-b4f6-165cbe819481)
  2064. )
  2065. (wire (pts (xy 269.24 69.85) (xy 269.24 67.31))
  2066. (stroke (width 0) (type default) (color 0 0 0 0))
  2067. (uuid 8094c540-0fa6-47ab-919a-59af1ca841fb)
  2068. )
  2069. (wire (pts (xy 57.15 43.18) (xy 57.15 38.1))
  2070. (stroke (width 0) (type default) (color 0 0 0 0))
  2071. (uuid 83a27295-74f9-4ab9-8f03-bf747f7af079)
  2072. )
  2073. (wire (pts (xy 267.97 62.23) (xy 269.24 62.23))
  2074. (stroke (width 0) (type default) (color 0 0 0 0))
  2075. (uuid 8483bc90-4f79-4ec7-8a2f-1c6d559d5da3)
  2076. )
  2077. (wire (pts (xy 29.21 106.68) (xy 30.48 106.68))
  2078. (stroke (width 0) (type default) (color 0 0 0 0))
  2079. (uuid 85805d6c-e198-4385-b8c2-0aebab345c45)
  2080. )
  2081. (wire (pts (xy 90.17 48.26) (xy 88.9 48.26))
  2082. (stroke (width 0) (type default) (color 0 0 0 0))
  2083. (uuid 85e63325-0515-4648-8ed3-a77acc3c50ea)
  2084. )
  2085. (wire (pts (xy 250.19 21.59) (xy 250.19 19.05))
  2086. (stroke (width 0) (type default) (color 0 0 0 0))
  2087. (uuid 85f65bfa-c034-44dd-a127-e094e04b908e)
  2088. )
  2089. (wire (pts (xy 200.66 49.53) (xy 207.01 49.53))
  2090. (stroke (width 0) (type default) (color 0 0 0 0))
  2091. (uuid 867d88de-9296-43d1-b443-237e0dc5758d)
  2092. )
  2093. (wire (pts (xy 29.21 111.76) (xy 29.21 109.22))
  2094. (stroke (width 0) (type default) (color 0 0 0 0))
  2095. (uuid 86a42889-8821-4297-88c4-2bbfd92c2e62)
  2096. )
  2097. (wire (pts (xy 139.7 74.93) (xy 144.78 74.93))
  2098. (stroke (width 0) (type default) (color 0 0 0 0))
  2099. (uuid 88862230-1722-432c-a0b3-f34b88efe36f)
  2100. )
  2101. (wire (pts (xy 267.97 69.85) (xy 269.24 69.85))
  2102. (stroke (width 0) (type default) (color 0 0 0 0))
  2103. (uuid 888b8be7-1a18-443e-ba86-1d9e37de5f46)
  2104. )
  2105. (wire (pts (xy 100.33 181.61) (xy 100.33 179.07))
  2106. (stroke (width 0) (type default) (color 0 0 0 0))
  2107. (uuid 89dff3e7-37ac-4cfe-8100-0c2e9b13fcd5)
  2108. )
  2109. (wire (pts (xy 176.53 80.01) (xy 187.96 80.01))
  2110. (stroke (width 0) (type default) (color 0 0 0 0))
  2111. (uuid 8adef9b4-7543-4252-808c-12c8431f27b6)
  2112. )
  2113. (wire (pts (xy 220.98 34.29) (xy 220.98 26.67))
  2114. (stroke (width 0) (type default) (color 0 0 0 0))
  2115. (uuid 8cb3044f-9b75-4eca-ac8e-99cbc3884369)
  2116. )
  2117. (wire (pts (xy 232.41 36.83) (xy 223.52 36.83))
  2118. (stroke (width 0) (type default) (color 0 0 0 0))
  2119. (uuid 8dd89e6e-239b-41ea-aa5f-deb8371d5cd4)
  2120. )
  2121. (wire (pts (xy 46.99 46.99) (xy 46.99 27.94))
  2122. (stroke (width 0) (type default) (color 0 0 0 0))
  2123. (uuid 8ec3a9fb-5447-4904-80c4-dc29e33e7f87)
  2124. )
  2125. (wire (pts (xy 269.24 72.39) (xy 269.24 69.85))
  2126. (stroke (width 0) (type default) (color 0 0 0 0))
  2127. (uuid 8fbcb863-e3ac-4a4a-be7a-bf93e39fbb24)
  2128. )
  2129. (wire (pts (xy 78.74 59.69) (xy 88.9 59.69))
  2130. (stroke (width 0) (type default) (color 0 0 0 0))
  2131. (uuid 90386f46-2044-493e-9671-60d1bc81d645)
  2132. )
  2133. (wire (pts (xy 29.21 104.14) (xy 30.48 104.14))
  2134. (stroke (width 0) (type default) (color 0 0 0 0))
  2135. (uuid 9120f038-6c3f-4eb4-8ca0-d5411019596d)
  2136. )
  2137. (wire (pts (xy 68.58 53.34) (xy 58.42 53.34))
  2138. (stroke (width 0) (type default) (color 0 0 0 0))
  2139. (uuid 91b5a15b-63fa-455d-9289-2cc567ee8ce9)
  2140. )
  2141. (wire (pts (xy 267.97 74.93) (xy 269.24 74.93))
  2142. (stroke (width 0) (type default) (color 0 0 0 0))
  2143. (uuid 91eacbf3-9e0a-4c40-b5c4-09bc62142860)
  2144. )
  2145. (wire (pts (xy 115.57 31.75) (xy 115.57 30.48))
  2146. (stroke (width 0) (type default) (color 0 0 0 0))
  2147. (uuid 92a39183-f2ab-41d0-b7f7-6ef31a6cc9c1)
  2148. )
  2149. (wire (pts (xy 29.21 106.68) (xy 29.21 104.14))
  2150. (stroke (width 0) (type default) (color 0 0 0 0))
  2151. (uuid 93ab5d9c-2af3-493a-87ac-1e9f85447e40)
  2152. )
  2153. (wire (pts (xy 269.24 67.31) (xy 269.24 64.77))
  2154. (stroke (width 0) (type default) (color 0 0 0 0))
  2155. (uuid 94169aab-6b68-4d15-9671-75825bbb299e)
  2156. )
  2157. (wire (pts (xy 55.88 109.22) (xy 63.5 109.22))
  2158. (stroke (width 0) (type default) (color 0 0 0 0))
  2159. (uuid 9455943b-2264-4cb9-9840-3748c7c95732)
  2160. )
  2161. (wire (pts (xy 48.26 62.23) (xy 46.99 62.23))
  2162. (stroke (width 0) (type default) (color 0 0 0 0))
  2163. (uuid 955a197b-a623-4a38-b2c3-fa78d222a0eb)
  2164. )
  2165. (wire (pts (xy 156.21 46.99) (xy 156.21 43.18))
  2166. (stroke (width 0) (type default) (color 0 0 0 0))
  2167. (uuid 960256a1-355c-4098-baca-2742ef3f90f4)
  2168. )
  2169. (wire (pts (xy 90.17 175.26) (xy 100.33 175.26))
  2170. (stroke (width 0) (type default) (color 0 0 0 0))
  2171. (uuid 98b4862a-3a4d-4b0f-95ab-00f09ae20493)
  2172. )
  2173. (wire (pts (xy 107.95 53.34) (xy 110.49 53.34))
  2174. (stroke (width 0) (type default) (color 0 0 0 0))
  2175. (uuid 9a758154-8721-4e87-9e6b-c31c61faf69f)
  2176. )
  2177. (wire (pts (xy 88.9 55.88) (xy 110.49 55.88))
  2178. (stroke (width 0) (type default) (color 0 0 0 0))
  2179. (uuid 9ab74100-d7ae-4618-9cbd-ce517c630741)
  2180. )
  2181. (wire (pts (xy 24.13 96.52) (xy 24.13 116.84))
  2182. (stroke (width 0) (type default) (color 0 0 0 0))
  2183. (uuid 9b97d656-9483-42ca-916f-b6d82bd8638d)
  2184. )
  2185. (wire (pts (xy 88.9 59.69) (xy 88.9 55.88))
  2186. (stroke (width 0) (type default) (color 0 0 0 0))
  2187. (uuid 9cdf4655-338c-4564-84b1-f8347a4cfdbd)
  2188. )
  2189. (wire (pts (xy 114.3 88.9) (xy 88.9 88.9))
  2190. (stroke (width 0) (type default) (color 0 0 0 0))
  2191. (uuid 9d06f375-bd19-45e5-b057-0c5564005a3d)
  2192. )
  2193. (wire (pts (xy 102.87 26.67) (xy 107.95 26.67))
  2194. (stroke (width 0) (type default) (color 0 0 0 0))
  2195. (uuid 9f66aef9-b991-45d3-8353-a72cb459afe7)
  2196. )
  2197. (wire (pts (xy 118.11 31.75) (xy 118.11 30.48))
  2198. (stroke (width 0) (type default) (color 0 0 0 0))
  2199. (uuid 9fa3d568-9aed-4bf0-8ed4-1c7a1c4c7092)
  2200. )
  2201. (wire (pts (xy 232.41 59.69) (xy 224.79 59.69))
  2202. (stroke (width 0) (type default) (color 0 0 0 0))
  2203. (uuid a00aa26a-7742-401d-8eb2-56173b58c063)
  2204. )
  2205. (wire (pts (xy 267.97 72.39) (xy 269.24 72.39))
  2206. (stroke (width 0) (type default) (color 0 0 0 0))
  2207. (uuid a014cc59-38fe-4e3a-a7c3-8fc94cec56a0)
  2208. )
  2209. (wire (pts (xy 142.24 36.83) (xy 142.24 35.56))
  2210. (stroke (width 0) (type default) (color 0 0 0 0))
  2211. (uuid a07becbb-dceb-40f1-a241-86591a15ef4b)
  2212. )
  2213. (wire (pts (xy 90.17 191.77) (xy 90.17 189.23))
  2214. (stroke (width 0) (type default) (color 0 0 0 0))
  2215. (uuid a195c0eb-5c2e-432e-8a78-a20f3da90b20)
  2216. )
  2217. (wire (pts (xy 93.98 44.45) (xy 90.17 44.45))
  2218. (stroke (width 0) (type default) (color 0 0 0 0))
  2219. (uuid a24b0e81-ae2f-4d8f-a566-35d158289635)
  2220. )
  2221. (wire (pts (xy 187.96 44.45) (xy 177.8 44.45))
  2222. (stroke (width 0) (type default) (color 0 0 0 0))
  2223. (uuid a284be4f-0d82-4774-ba4e-409704bd32fa)
  2224. )
  2225. (wire (pts (xy 101.6 97.79) (xy 107.95 97.79))
  2226. (stroke (width 0) (type default) (color 0 0 0 0))
  2227. (uuid a3c7c4e2-3286-4f51-bf36-1702a006f9cb)
  2228. )
  2229. (wire (pts (xy 214.63 68.58) (xy 214.63 67.31))
  2230. (stroke (width 0) (type default) (color 0 0 0 0))
  2231. (uuid a5d04d07-565c-43f8-a0a5-2e5386bf26ef)
  2232. )
  2233. (wire (pts (xy 187.96 49.53) (xy 184.15 49.53))
  2234. (stroke (width 0) (type default) (color 0 0 0 0))
  2235. (uuid a758d337-37f4-43dd-81b7-5627fe7352cf)
  2236. )
  2237. (wire (pts (xy 269.24 64.77) (xy 269.24 62.23))
  2238. (stroke (width 0) (type default) (color 0 0 0 0))
  2239. (uuid a7d45db1-d464-4160-812e-a8935f592867)
  2240. )
  2241. (wire (pts (xy 139.7 64.77) (xy 144.78 64.77))
  2242. (stroke (width 0) (type default) (color 0 0 0 0))
  2243. (uuid a8149cf9-ddee-4ea9-9d5a-157fbac44725)
  2244. )
  2245. (wire (pts (xy 27.94 52.07) (xy 24.13 52.07))
  2246. (stroke (width 0) (type default) (color 0 0 0 0))
  2247. (uuid a8336e37-ec41-475a-877e-78ab8bf1ef49)
  2248. )
  2249. (wire (pts (xy 105.41 53.34) (xy 105.41 44.45))
  2250. (stroke (width 0) (type default) (color 0 0 0 0))
  2251. (uuid a85b2782-9ca8-47f9-aedc-7b9e4e4ee43f)
  2252. )
  2253. (wire (pts (xy 102.87 49.53) (xy 110.49 49.53))
  2254. (stroke (width 0) (type default) (color 0 0 0 0))
  2255. (uuid a911262d-eebd-4c5d-8d66-a564b4181554)
  2256. )
  2257. (wire (pts (xy 209.55 156.21) (xy 209.55 153.67))
  2258. (stroke (width 0) (type default) (color 0 0 0 0))
  2259. (uuid a95acc5b-d7dc-4db8-b2d5-555398439517)
  2260. )
  2261. (wire (pts (xy 160.02 181.61) (xy 160.02 179.07))
  2262. (stroke (width 0) (type default) (color 0 0 0 0))
  2263. (uuid a9ca8cb2-f90a-496d-8a6c-5d3636f10b70)
  2264. )
  2265. (wire (pts (xy 138.43 171.45) (xy 138.43 175.26))
  2266. (stroke (width 0) (type default) (color 0 0 0 0))
  2267. (uuid ac2bef67-ab9a-448d-ae96-6ae08d4aca05)
  2268. )
  2269. (wire (pts (xy 24.13 46.99) (xy 33.02 46.99))
  2270. (stroke (width 0) (type default) (color 0 0 0 0))
  2271. (uuid ae2ee269-bab9-422c-9352-6479ab6c1b0d)
  2272. )
  2273. (wire (pts (xy 33.02 57.15) (xy 24.13 57.15))
  2274. (stroke (width 0) (type default) (color 0 0 0 0))
  2275. (uuid ae9a70e8-6627-41d3-957d-83bfe01d0953)
  2276. )
  2277. (wire (pts (xy 55.88 106.68) (xy 60.96 106.68))
  2278. (stroke (width 0) (type default) (color 0 0 0 0))
  2279. (uuid b1ad4ea6-9bad-4f75-bc39-1d89ed6f78f9)
  2280. )
  2281. (wire (pts (xy 46.99 62.23) (xy 46.99 57.15))
  2282. (stroke (width 0) (type default) (color 0 0 0 0))
  2283. (uuid b1ddb26a-68d2-4137-bfc7-26904de29a80)
  2284. )
  2285. (wire (pts (xy 92.71 68.58) (xy 92.71 53.34))
  2286. (stroke (width 0) (type default) (color 0 0 0 0))
  2287. (uuid b3b9cca7-2004-48ad-9eab-a9065fe580ae)
  2288. )
  2289. (wire (pts (xy 160.02 191.77) (xy 160.02 189.23))
  2290. (stroke (width 0) (type default) (color 0 0 0 0))
  2291. (uuid b45f0aa9-20f6-4585-89a3-ae50d0269197)
  2292. )
  2293. (wire (pts (xy 15.24 124.46) (xy 30.48 124.46))
  2294. (stroke (width 0) (type default) (color 0 0 0 0))
  2295. (uuid b8ffb108-9d81-402e-93bf-554bda1c47ce)
  2296. )
  2297. (wire (pts (xy 55.88 104.14) (xy 67.31 104.14))
  2298. (stroke (width 0) (type default) (color 0 0 0 0))
  2299. (uuid b96e4e90-cbde-463f-8f92-e301fa353aca)
  2300. )
  2301. (wire (pts (xy 200.66 26.67) (xy 204.47 26.67))
  2302. (stroke (width 0) (type default) (color 0 0 0 0))
  2303. (uuid ba30cac0-e783-4275-9d5e-7044ff1e4011)
  2304. )
  2305. (wire (pts (xy 46.99 46.99) (xy 58.42 46.99))
  2306. (stroke (width 0) (type default) (color 0 0 0 0))
  2307. (uuid ba3d912c-5219-4f30-b434-73493c880e0e)
  2308. )
  2309. (wire (pts (xy 139.7 36.83) (xy 142.24 36.83))
  2310. (stroke (width 0) (type default) (color 0 0 0 0))
  2311. (uuid bc571c34-f4e9-4792-ba16-b033850a55b3)
  2312. )
  2313. (wire (pts (xy 60.96 102.87) (xy 76.2 102.87))
  2314. (stroke (width 0) (type default) (color 0 0 0 0))
  2315. (uuid beeb5040-54cf-4952-ab53-2714a1079eb2)
  2316. )
  2317. (wire (pts (xy 200.66 69.85) (xy 207.01 69.85))
  2318. (stroke (width 0) (type default) (color 0 0 0 0))
  2319. (uuid bef22c53-87dd-4e9b-933d-b0ad32e1a8b4)
  2320. )
  2321. (wire (pts (xy 177.8 26.67) (xy 187.96 26.67))
  2322. (stroke (width 0) (type default) (color 0 0 0 0))
  2323. (uuid bf09f54a-3cd8-4925-b69f-1ff543f4e91b)
  2324. )
  2325. (wire (pts (xy 267.97 46.99) (xy 280.67 46.99))
  2326. (stroke (width 0) (type default) (color 0 0 0 0))
  2327. (uuid c2295313-88e5-4f0b-a629-341318ac724f)
  2328. )
  2329. (wire (pts (xy 29.21 109.22) (xy 29.21 106.68))
  2330. (stroke (width 0) (type default) (color 0 0 0 0))
  2331. (uuid c3b541eb-9252-44dc-9564-95463403acde)
  2332. )
  2333. (wire (pts (xy 269.24 59.69) (xy 267.97 59.69))
  2334. (stroke (width 0) (type default) (color 0 0 0 0))
  2335. (uuid c405b62d-d783-42b2-a497-1e851e3b899f)
  2336. )
  2337. (wire (pts (xy 24.13 119.38) (xy 30.48 119.38))
  2338. (stroke (width 0) (type default) (color 0 0 0 0))
  2339. (uuid c40c6036-0c93-4f77-88b2-4317c4a846db)
  2340. )
  2341. (wire (pts (xy 109.22 64.77) (xy 109.22 77.47))
  2342. (stroke (width 0) (type default) (color 0 0 0 0))
  2343. (uuid c58fa057-6484-486d-bc3b-8dabc8f82f4b)
  2344. )
  2345. (wire (pts (xy 200.66 77.47) (xy 214.63 77.47))
  2346. (stroke (width 0) (type default) (color 0 0 0 0))
  2347. (uuid c6573640-77b4-4d8b-82eb-33998d578144)
  2348. )
  2349. (wire (pts (xy 46.99 57.15) (xy 40.64 57.15))
  2350. (stroke (width 0) (type default) (color 0 0 0 0))
  2351. (uuid c6582fbf-3bea-4ffa-9118-ee7a51f0c2b7)
  2352. )
  2353. (wire (pts (xy 180.34 74.93) (xy 187.96 74.93))
  2354. (stroke (width 0) (type default) (color 0 0 0 0))
  2355. (uuid c71299ce-5f19-43e6-b972-f920d14d94a6)
  2356. )
  2357. (wire (pts (xy 184.15 49.53) (xy 184.15 39.37))
  2358. (stroke (width 0) (type default) (color 0 0 0 0))
  2359. (uuid cbc7a083-b816-44bc-9c28-0c6b7b882d50)
  2360. )
  2361. (wire (pts (xy 139.7 77.47) (xy 144.78 77.47))
  2362. (stroke (width 0) (type default) (color 0 0 0 0))
  2363. (uuid ccdfad74-9ae7-40e6-9d12-1385ab95f3bd)
  2364. )
  2365. (wire (pts (xy 269.24 21.59) (xy 250.19 21.59))
  2366. (stroke (width 0) (type default) (color 0 0 0 0))
  2367. (uuid cd947014-e807-46c5-8cf1-a1c9df363366)
  2368. )
  2369. (wire (pts (xy 27.94 60.96) (xy 27.94 52.07))
  2370. (stroke (width 0) (type default) (color 0 0 0 0))
  2371. (uuid ce8533f1-3478-468a-aa3b-604b67f0cb9f)
  2372. )
  2373. (wire (pts (xy 139.7 80.01) (xy 144.78 80.01))
  2374. (stroke (width 0) (type default) (color 0 0 0 0))
  2375. (uuid cf57d402-d25d-4b09-b1e5-0d64841febb0)
  2376. )
  2377. (wire (pts (xy 267.97 44.45) (xy 280.67 44.45))
  2378. (stroke (width 0) (type default) (color 0 0 0 0))
  2379. (uuid d005eaa8-d426-483f-9593-60828786664b)
  2380. )
  2381. (wire (pts (xy 58.42 46.99) (xy 58.42 48.26))
  2382. (stroke (width 0) (type default) (color 0 0 0 0))
  2383. (uuid d1923603-c28f-43d1-968b-0a4d3ae695f1)
  2384. )
  2385. (wire (pts (xy 102.87 68.58) (xy 102.87 49.53))
  2386. (stroke (width 0) (type default) (color 0 0 0 0))
  2387. (uuid d3a5582e-7550-4a56-a371-67830679981a)
  2388. )
  2389. (wire (pts (xy 269.24 74.93) (xy 269.24 72.39))
  2390. (stroke (width 0) (type default) (color 0 0 0 0))
  2391. (uuid d4b4214a-08dd-4303-b509-8a7d4a81e1e7)
  2392. )
  2393. (wire (pts (xy 156.21 43.18) (xy 158.75 43.18))
  2394. (stroke (width 0) (type default) (color 0 0 0 0))
  2395. (uuid d50aa17b-6b15-421f-bd24-f5f7668be7cd)
  2396. )
  2397. (wire (pts (xy 148.59 179.07) (xy 146.05 179.07))
  2398. (stroke (width 0) (type default) (color 0 0 0 0))
  2399. (uuid d57b45be-7c99-40be-9f17-5814719fc42a)
  2400. )
  2401. (wire (pts (xy 24.13 129.54) (xy 24.13 121.92))
  2402. (stroke (width 0) (type default) (color 0 0 0 0))
  2403. (uuid d639358b-e6f5-4c2a-9812-f1190860e2ec)
  2404. )
  2405. (wire (pts (xy 200.66 72.39) (xy 207.01 72.39))
  2406. (stroke (width 0) (type default) (color 0 0 0 0))
  2407. (uuid d6df798b-5276-4013-9fef-8d25abb7b447)
  2408. )
  2409. (wire (pts (xy 71.12 128.27) (xy 71.12 123.19))
  2410. (stroke (width 0) (type default) (color 0 0 0 0))
  2411. (uuid d7c111f8-632f-4a7b-b8ab-f1617f8ba926)
  2412. )
  2413. (wire (pts (xy 177.8 46.99) (xy 187.96 46.99))
  2414. (stroke (width 0) (type default) (color 0 0 0 0))
  2415. (uuid d7c43886-0fcf-41df-809a-a2b16ce569e2)
  2416. )
  2417. (wire (pts (xy 184.15 29.21) (xy 184.15 34.29))
  2418. (stroke (width 0) (type default) (color 0 0 0 0))
  2419. (uuid d8bd4787-ae79-45a1-8788-dad239e42add)
  2420. )
  2421. (wire (pts (xy 184.15 36.83) (xy 184.15 39.37))
  2422. (stroke (width 0) (type default) (color 0 0 0 0))
  2423. (uuid d9496d62-4291-429f-b731-45cc903bac01)
  2424. )
  2425. (wire (pts (xy 67.31 104.14) (xy 67.31 105.41))
  2426. (stroke (width 0) (type default) (color 0 0 0 0))
  2427. (uuid dc0c0546-3199-4ee5-8be0-3b00a1608488)
  2428. )
  2429. (wire (pts (xy 232.41 77.47) (xy 232.41 74.93))
  2430. (stroke (width 0) (type default) (color 0 0 0 0))
  2431. (uuid dc6250f6-4041-41e7-a6f4-10b038564c99)
  2432. )
  2433. (wire (pts (xy 66.04 97.79) (xy 66.04 111.76))
  2434. (stroke (width 0) (type default) (color 0 0 0 0))
  2435. (uuid dcb0c650-e25e-49b5-80b2-cef12fbd5310)
  2436. )
  2437. (wire (pts (xy 118.11 30.48) (xy 115.57 30.48))
  2438. (stroke (width 0) (type default) (color 0 0 0 0))
  2439. (uuid dda3124c-bcc2-4331-9d0b-9d8cf6dc91bc)
  2440. )
  2441. (wire (pts (xy 139.7 67.31) (xy 144.78 67.31))
  2442. (stroke (width 0) (type default) (color 0 0 0 0))
  2443. (uuid de544d92-592f-4077-8d02-780b0cf58c81)
  2444. )
  2445. (wire (pts (xy 55.88 111.76) (xy 66.04 111.76))
  2446. (stroke (width 0) (type default) (color 0 0 0 0))
  2447. (uuid e001e678-fc34-4d44-8687-3f53eb156c48)
  2448. )
  2449. (wire (pts (xy 53.34 180.34) (xy 53.34 179.07))
  2450. (stroke (width 0) (type default) (color 0 0 0 0))
  2451. (uuid e1281f18-7775-4717-ac73-60a0943da982)
  2452. )
  2453. (wire (pts (xy 58.42 53.34) (xy 58.42 57.15))
  2454. (stroke (width 0) (type default) (color 0 0 0 0))
  2455. (uuid e149c3c4-d7b9-47bb-86ed-9300af243568)
  2456. )
  2457. (wire (pts (xy 66.04 133.35) (xy 76.2 133.35))
  2458. (stroke (width 0) (type default) (color 0 0 0 0))
  2459. (uuid e1df5698-1cec-4e98-83df-dd996c20d553)
  2460. )
  2461. (wire (pts (xy 139.7 59.69) (xy 144.78 59.69))
  2462. (stroke (width 0) (type default) (color 0 0 0 0))
  2463. (uuid e22a8c14-409b-4c0d-9ea6-f798fd2a64fb)
  2464. )
  2465. (wire (pts (xy 139.7 62.23) (xy 144.78 62.23))
  2466. (stroke (width 0) (type default) (color 0 0 0 0))
  2467. (uuid e254966a-fd4c-4b92-8c1e-e6f2dea920e3)
  2468. )
  2469. (wire (pts (xy 29.21 111.76) (xy 30.48 111.76))
  2470. (stroke (width 0) (type default) (color 0 0 0 0))
  2471. (uuid e2965b7d-2322-482e-bf17-e68d08b02a6b)
  2472. )
  2473. (wire (pts (xy 207.01 24.13) (xy 207.01 31.75))
  2474. (stroke (width 0) (type default) (color 0 0 0 0))
  2475. (uuid e517b659-eaed-469b-bf9a-d6542428e6b7)
  2476. )
  2477. (wire (pts (xy 232.41 39.37) (xy 223.52 39.37))
  2478. (stroke (width 0) (type default) (color 0 0 0 0))
  2479. (uuid e5bcafda-cff1-486a-98c2-26ff8af2b647)
  2480. )
  2481. (wire (pts (xy 71.12 118.11) (xy 71.12 115.57))
  2482. (stroke (width 0) (type default) (color 0 0 0 0))
  2483. (uuid e5dd6c95-f49a-4d83-8048-feb6e169ac52)
  2484. )
  2485. (wire (pts (xy 74.93 64.77) (xy 109.22 64.77))
  2486. (stroke (width 0) (type default) (color 0 0 0 0))
  2487. (uuid e71d85dc-c578-42ca-a9ba-15a9955ae0d7)
  2488. )
  2489. (wire (pts (xy 148.59 41.91) (xy 148.59 43.18))
  2490. (stroke (width 0) (type default) (color 0 0 0 0))
  2491. (uuid e8b5f4f4-cf8f-4d14-b338-7bfe8879c74a)
  2492. )
  2493. (wire (pts (xy 100.33 175.26) (xy 100.33 171.45))
  2494. (stroke (width 0) (type default) (color 0 0 0 0))
  2495. (uuid e9408a8f-9f63-49f1-8fa2-6f0bf1500547)
  2496. )
  2497. (wire (pts (xy 35.56 179.07) (xy 44.45 179.07))
  2498. (stroke (width 0) (type default) (color 0 0 0 0))
  2499. (uuid e9ef4f98-d23c-4f06-9b63-e4329152b262)
  2500. )
  2501. (wire (pts (xy 200.66 92.71) (xy 207.01 92.71))
  2502. (stroke (width 0) (type default) (color 0 0 0 0))
  2503. (uuid eb2e4e60-be73-490f-ba94-70a92a855185)
  2504. )
  2505. (wire (pts (xy 59.69 128.27) (xy 71.12 128.27))
  2506. (stroke (width 0) (type default) (color 0 0 0 0))
  2507. (uuid eb4ac08f-c415-44bc-871d-ad9315e64e9d)
  2508. )
  2509. (wire (pts (xy 71.12 115.57) (xy 71.12 110.49))
  2510. (stroke (width 0) (type default) (color 0 0 0 0))
  2511. (uuid ebf2da18-fc46-4281-a67c-4b6f41abaae4)
  2512. )
  2513. (wire (pts (xy 204.47 29.21) (xy 200.66 29.21))
  2514. (stroke (width 0) (type default) (color 0 0 0 0))
  2515. (uuid edcad2d4-4491-4703-a00a-b55e18146740)
  2516. )
  2517. (wire (pts (xy 222.25 72.39) (xy 232.41 72.39))
  2518. (stroke (width 0) (type default) (color 0 0 0 0))
  2519. (uuid ede88264-fc64-4374-8ad9-0055d79d4dde)
  2520. )
  2521. (wire (pts (xy 24.13 119.38) (xy 24.13 121.92))
  2522. (stroke (width 0) (type default) (color 0 0 0 0))
  2523. (uuid f01d76c1-5d10-4e78-8b83-c7ad1134d5b4)
  2524. )
  2525. (wire (pts (xy 222.25 69.85) (xy 222.25 72.39))
  2526. (stroke (width 0) (type default) (color 0 0 0 0))
  2527. (uuid f1f34a42-2ae4-49e8-a1b9-8be458fd6dac)
  2528. )
  2529. (wire (pts (xy 200.66 46.99) (xy 213.36 46.99))
  2530. (stroke (width 0) (type default) (color 0 0 0 0))
  2531. (uuid f29e4122-c195-4810-9edc-e1160b86cad7)
  2532. )
  2533. (wire (pts (xy 31.75 179.07) (xy 34.29 179.07))
  2534. (stroke (width 0) (type default) (color 0 0 0 0))
  2535. (uuid f3ba7fd6-0d76-44dc-8ce3-6e549563da17)
  2536. )
  2537. (wire (pts (xy 63.5 100.33) (xy 63.5 109.22))
  2538. (stroke (width 0) (type default) (color 0 0 0 0))
  2539. (uuid f4c0cfbc-10df-4e5a-bf9d-f1ab3b4f788a)
  2540. )
  2541. (wire (pts (xy 35.56 175.26) (xy 35.56 179.07))
  2542. (stroke (width 0) (type default) (color 0 0 0 0))
  2543. (uuid f536a404-a3fc-4844-9517-c991b69e54fb)
  2544. )
  2545. (wire (pts (xy 200.66 44.45) (xy 213.36 44.45))
  2546. (stroke (width 0) (type default) (color 0 0 0 0))
  2547. (uuid f5686bca-2292-460e-af72-479c81ba5eeb)
  2548. )
  2549. (wire (pts (xy 24.13 116.84) (xy 24.13 119.38))
  2550. (stroke (width 0) (type default) (color 0 0 0 0))
  2551. (uuid f5686e8d-275e-413c-b4c9-b9d1bce6e0cd)
  2552. )
  2553. (wire (pts (xy 24.13 116.84) (xy 30.48 116.84))
  2554. (stroke (width 0) (type default) (color 0 0 0 0))
  2555. (uuid f597f2f8-8b9f-40ec-b170-b1c55657e17f)
  2556. )
  2557. (wire (pts (xy 90.17 62.23) (xy 90.17 49.53))
  2558. (stroke (width 0) (type default) (color 0 0 0 0))
  2559. (uuid f5e9c3d6-4232-447f-a21e-b30aba35562a)
  2560. )
  2561. (wire (pts (xy 139.7 52.07) (xy 144.78 52.07))
  2562. (stroke (width 0) (type default) (color 0 0 0 0))
  2563. (uuid f79785a5-208a-4235-9391-5b7711374489)
  2564. )
  2565. (wire (pts (xy 267.97 39.37) (xy 280.67 39.37))
  2566. (stroke (width 0) (type default) (color 0 0 0 0))
  2567. (uuid f7e6d381-55fd-42c0-ba73-167b73b49c33)
  2568. )
  2569. (wire (pts (xy 200.66 90.17) (xy 207.01 90.17))
  2570. (stroke (width 0) (type default) (color 0 0 0 0))
  2571. (uuid f8bd5951-dfb1-4beb-b14e-9095d69337cc)
  2572. )
  2573. (wire (pts (xy 90.17 27.94) (xy 55.88 27.94))
  2574. (stroke (width 0) (type default) (color 0 0 0 0))
  2575. (uuid fa636e24-fcab-4fc3-8ae8-b9a72e31bb95)
  2576. )
  2577. (wire (pts (xy 93.98 49.53) (xy 90.17 49.53))
  2578. (stroke (width 0) (type default) (color 0 0 0 0))
  2579. (uuid fdea7d22-fa7f-4a2b-bc88-82df93475657)
  2580. )
  2581. (wire (pts (xy 139.7 72.39) (xy 144.78 72.39))
  2582. (stroke (width 0) (type default) (color 0 0 0 0))
  2583. (uuid ffffbbd3-6160-41b8-9fc3-8da38ac2e29d)
  2584. )
  2585. (label "IFCLK" (at 208.28 39.37 0)
  2586. (effects (font (size 1.27 1.27)) (justify left bottom))
  2587. (uuid 0cc44fa4-f249-4de9-a7fe-e1e17716e7f6)
  2588. )
  2589. (label "PD2" (at 180.34 72.39 0)
  2590. (effects (font (size 1.27 1.27)) (justify left bottom))
  2591. (uuid 0f985799-044c-4d24-a1b3-9d8e60fd8106)
  2592. )
  2593. (label "CLK" (at 177.8 31.75 0)
  2594. (effects (font (size 1.27 1.27)) (justify left bottom))
  2595. (uuid 107dd11f-fb69-4663-a169-4f262aa50e47)
  2596. )
  2597. (label "HEADLOAD" (at 270.51 49.53 0)
  2598. (effects (font (size 1.27 1.27)) (justify left bottom))
  2599. (uuid 14420205-f1f4-449a-b4d7-8173a201e596)
  2600. )
  2601. (label "PB7" (at 140.97 62.23 0)
  2602. (effects (font (size 1.27 1.27)) (justify left bottom))
  2603. (uuid 1a173796-2720-4210-935c-7620cb7202f7)
  2604. )
  2605. (label "CLKSEL1" (at 270.51 54.61 0)
  2606. (effects (font (size 1.27 1.27)) (justify left bottom))
  2607. (uuid 1aabf112-4982-4935-8007-f2baee115826)
  2608. )
  2609. (label "TRK00" (at 270.51 46.99 0)
  2610. (effects (font (size 1.27 1.27)) (justify left bottom))
  2611. (uuid 1c054dd5-6917-4280-94f1-8a4eb89e3ba1)
  2612. )
  2613. (label "SDA" (at 223.52 36.83 0)
  2614. (effects (font (size 1.27 1.27)) (justify left bottom))
  2615. (uuid 1c5de767-c227-4bc5-b217-643c3f197186)
  2616. )
  2617. (label "PB1" (at 140.97 77.47 0)
  2618. (effects (font (size 1.27 1.27)) (justify left bottom))
  2619. (uuid 21b43e9b-53fe-489e-86ab-968ece63ff57)
  2620. )
  2621. (label "INDEX" (at 180.34 69.85 0)
  2622. (effects (font (size 1.27 1.27)) (justify left bottom))
  2623. (uuid 2769d6c7-c37f-4328-8386-af939f821bf1)
  2624. )
  2625. (label "CLKSEL0" (at 270.51 52.07 0)
  2626. (effects (font (size 1.27 1.27)) (justify left bottom))
  2627. (uuid 2f734dd0-a16a-4710-b079-d08fc104bb06)
  2628. )
  2629. (label "SECTOR" (at 177.8 26.67 0)
  2630. (effects (font (size 1.27 1.27)) (justify left bottom))
  2631. (uuid 32715237-1d37-4589-92be-4b1bd5c5597a)
  2632. )
  2633. (label "CLK" (at 16.51 124.46 0)
  2634. (effects (font (size 1.27 1.27)) (justify left bottom))
  2635. (uuid 328fb2fb-77df-4822-a19b-92f83359430b)
  2636. )
  2637. (label "DIR" (at 270.51 44.45 0)
  2638. (effects (font (size 1.27 1.27)) (justify left bottom))
  2639. (uuid 3f246df7-6b26-4e8d-89ea-9bf958efe121)
  2640. )
  2641. (label "PB0" (at 177.8 44.45 0)
  2642. (effects (font (size 1.27 1.27)) (justify left bottom))
  2643. (uuid 40b79e10-b9b8-4c5f-bb1d-e2be7d9e96c4)
  2644. )
  2645. (label "CLKSEL1" (at 66.04 135.89 0)
  2646. (effects (font (size 1.27 1.27)) (justify left bottom))
  2647. (uuid 43d3580c-8b7f-404a-b674-6f38da1c95b7)
  2648. )
  2649. (label "PD3" (at 140.97 52.07 0)
  2650. (effects (font (size 1.27 1.27)) (justify left bottom))
  2651. (uuid 4a09b9ea-fa7c-47ea-8264-5633d7b2ec00)
  2652. )
  2653. (label "PB0" (at 140.97 80.01 0)
  2654. (effects (font (size 1.27 1.27)) (justify left bottom))
  2655. (uuid 4a500c8f-6b06-4826-8b2a-6f7aed73082c)
  2656. )
  2657. (label "PD0" (at 140.97 59.69 0)
  2658. (effects (font (size 1.27 1.27)) (justify left bottom))
  2659. (uuid 4b2a89eb-132c-44a5-aea9-fff356df8dce)
  2660. )
  2661. (label "IFCLK" (at 78.74 59.69 0)
  2662. (effects (font (size 1.27 1.27)) (justify left bottom))
  2663. (uuid 5464602d-17a7-46d0-afa1-a3068180e789)
  2664. )
  2665. (label "PD2" (at 140.97 54.61 0)
  2666. (effects (font (size 1.27 1.27)) (justify left bottom))
  2667. (uuid 5793d64a-b146-4013-9476-9aa7eba42937)
  2668. )
  2669. (label "PB5" (at 140.97 67.31 0)
  2670. (effects (font (size 1.27 1.27)) (justify left bottom))
  2671. (uuid 5df97e5e-5a90-42a7-b5bd-2a6b01d2c37c)
  2672. )
  2673. (label "PB3" (at 208.28 46.99 0)
  2674. (effects (font (size 1.27 1.27)) (justify left bottom))
  2675. (uuid 6c37a40d-ddf3-4cf3-998f-4817190077be)
  2676. )
  2677. (label "CLKSEL0" (at 66.04 133.35 0)
  2678. (effects (font (size 1.27 1.27)) (justify left bottom))
  2679. (uuid 6f2a02fd-7577-4049-b4f5-af5788928d23)
  2680. )
  2681. (label "IFCLK" (at 102.87 97.79 0)
  2682. (effects (font (size 1.27 1.27)) (justify left bottom))
  2683. (uuid 785b04c6-85be-41ec-80f3-0a0a08c3e43b)
  2684. )
  2685. (label "SDA" (at 208.28 41.91 0)
  2686. (effects (font (size 1.27 1.27)) (justify left bottom))
  2687. (uuid 8dd2f6c2-9b59-4205-97df-386a62833ae0)
  2688. )
  2689. (label "PD0" (at 180.34 74.93 0)
  2690. (effects (font (size 1.27 1.27)) (justify left bottom))
  2691. (uuid 9920dddb-8252-4eec-8dcd-09ff5836b727)
  2692. )
  2693. (label "STEP" (at 270.51 39.37 0)
  2694. (effects (font (size 1.27 1.27)) (justify left bottom))
  2695. (uuid 9ee45efd-bbc6-4397-82b5-c82ae8623321)
  2696. )
  2697. (label "PB2" (at 140.97 74.93 0)
  2698. (effects (font (size 1.27 1.27)) (justify left bottom))
  2699. (uuid ac594f69-1c14-4942-9d89-a8580c80758c)
  2700. )
  2701. (label "PD1" (at 200.66 72.39 0)
  2702. (effects (font (size 1.27 1.27)) (justify left bottom))
  2703. (uuid ad9a8bcd-602f-43d1-8384-d8b9155ac0e8)
  2704. )
  2705. (label "PB3" (at 140.97 72.39 0)
  2706. (effects (font (size 1.27 1.27)) (justify left bottom))
  2707. (uuid aff8eb21-be3a-44fb-a05b-76b2effce17b)
  2708. )
  2709. (label "MOTORON" (at 270.51 41.91 0)
  2710. (effects (font (size 1.27 1.27)) (justify left bottom))
  2711. (uuid be65f067-9a11-4c4f-8571-6d3183477d77)
  2712. )
  2713. (label "SCL" (at 177.8 41.91 0)
  2714. (effects (font (size 1.27 1.27)) (justify left bottom))
  2715. (uuid c8ec3116-ab23-48d1-9fee-f63f3b1bc0ca)
  2716. )
  2717. (label "PB5" (at 180.34 92.71 0)
  2718. (effects (font (size 1.27 1.27)) (justify left bottom))
  2719. (uuid c9a60081-6455-40d2-b174-45c1d8826747)
  2720. )
  2721. (label "PB1" (at 208.28 44.45 0)
  2722. (effects (font (size 1.27 1.27)) (justify left bottom))
  2723. (uuid d084ac23-5782-4b76-b52e-61420aa25ec5)
  2724. )
  2725. (label "PB7" (at 180.34 90.17 0)
  2726. (effects (font (size 1.27 1.27)) (justify left bottom))
  2727. (uuid d2a4b5c4-97ed-4575-adef-1605385c4a9c)
  2728. )
  2729. (label "PD1" (at 140.97 57.15 0)
  2730. (effects (font (size 1.27 1.27)) (justify left bottom))
  2731. (uuid d63ccd15-67fd-4065-be3c-9306fa39db61)
  2732. )
  2733. (label "PB4" (at 140.97 69.85 0)
  2734. (effects (font (size 1.27 1.27)) (justify left bottom))
  2735. (uuid dc15e679-7802-40cf-b2d9-d1daf874cd5d)
  2736. )
  2737. (label "PB2" (at 177.8 46.99 0)
  2738. (effects (font (size 1.27 1.27)) (justify left bottom))
  2739. (uuid df108809-20e5-4e6f-b68c-1f38113bc13b)
  2740. )
  2741. (label "PB6" (at 140.97 64.77 0)
  2742. (effects (font (size 1.27 1.27)) (justify left bottom))
  2743. (uuid e1560324-7fd3-4c2a-a532-5ecbd1aa5964)
  2744. )
  2745. (label "PB6" (at 200.66 90.17 0)
  2746. (effects (font (size 1.27 1.27)) (justify left bottom))
  2747. (uuid e1b9de24-d31e-4c86-8636-dcb86bd78fff)
  2748. )
  2749. (label "RESET" (at 224.79 59.69 0)
  2750. (effects (font (size 1.27 1.27)) (justify left bottom))
  2751. (uuid ed229f32-d78c-4bd1-8f6d-e1992775543e)
  2752. )
  2753. (label "PD3" (at 200.66 69.85 0)
  2754. (effects (font (size 1.27 1.27)) (justify left bottom))
  2755. (uuid f0fb0bc9-3c16-4e05-9b0a-da008a875a40)
  2756. )
  2757. (label "PB4" (at 200.66 92.71 0)
  2758. (effects (font (size 1.27 1.27)) (justify left bottom))
  2759. (uuid f1dd7e83-2f0e-4213-a079-9e5424579728)
  2760. )
  2761. (label "SCL" (at 223.52 39.37 0)
  2762. (effects (font (size 1.27 1.27)) (justify left bottom))
  2763. (uuid f415bfb7-f9dd-40f5-9113-1753488204b0)
  2764. )
  2765. (label "RESET" (at 180.34 85.09 0)
  2766. (effects (font (size 1.27 1.27)) (justify left bottom))
  2767. (uuid fc95d8ed-27a5-4f1c-8ed6-7d8b65ee73be)
  2768. )
  2769. (label "DRVSEL" (at 270.51 36.83 0)
  2770. (effects (font (size 1.27 1.27)) (justify left bottom))
  2771. (uuid ff21fb19-0d4d-4ad3-a70d-c3d5f5de7c37)
  2772. )
  2773. (symbol (lib_id "Device:R") (at 97.79 44.45 270) (unit 1)
  2774. (in_bom yes) (on_board yes)
  2775. (uuid 04a8b46f-a99a-42a7-af65-f98a8345abfc)
  2776. (property "Reference" "R60" (id 0) (at 99.06 41.91 90))
  2777. (property "Value" "22" (id 1) (at 93.98 41.91 90))
  2778. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 97.79 42.672 90)
  2779. (effects (font (size 1.27 1.27)) hide)
  2780. )
  2781. (property "Datasheet" "~" (id 3) (at 97.79 44.45 0)
  2782. (effects (font (size 1.27 1.27)) hide)
  2783. )
  2784. (pin "1" (uuid fb1f66f3-af8a-4bf9-849c-21772e9d75b5))
  2785. (pin "2" (uuid 54f01037-c99f-413c-b5d8-826e967d06ef))
  2786. )
  2787. (symbol (lib_id "Device:R") (at 222.25 153.67 270) (unit 1)
  2788. (in_bom yes) (on_board yes)
  2789. (uuid 0945f9f3-e515-4127-9170-1327ae2b6be3)
  2790. (property "Reference" "R75" (id 0) (at 222.25 148.4122 90))
  2791. (property "Value" "0" (id 1) (at 222.25 150.7236 90))
  2792. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 222.25 151.892 90)
  2793. (effects (font (size 1.27 1.27)) hide)
  2794. )
  2795. (property "Datasheet" "~" (id 3) (at 222.25 153.67 0)
  2796. (effects (font (size 1.27 1.27)) hide)
  2797. )
  2798. (pin "1" (uuid 20b4fa1a-fd82-4844-8049-fafa261db2ef))
  2799. (pin "2" (uuid e8b5398d-7beb-4f05-8197-a3d26b14b427))
  2800. )
  2801. (symbol (lib_id "power:GND") (at 105.41 60.96 0) (unit 1)
  2802. (in_bom yes) (on_board yes)
  2803. (uuid 09b9d37c-f3b8-419a-9cc7-28197aab4e7f)
  2804. (property "Reference" "#PWR0237" (id 0) (at 105.41 67.31 0)
  2805. (effects (font (size 1.27 1.27)) hide)
  2806. )
  2807. (property "Value" "GND" (id 1) (at 105.537 65.3542 0))
  2808. (property "Footprint" "" (id 2) (at 105.41 60.96 0)
  2809. (effects (font (size 1.27 1.27)) hide)
  2810. )
  2811. (property "Datasheet" "" (id 3) (at 105.41 60.96 0)
  2812. (effects (font (size 1.27 1.27)) hide)
  2813. )
  2814. (pin "1" (uuid 59e205a0-0aaf-4336-a758-85c99545dc64))
  2815. )
  2816. (symbol (lib_id "Connector:Conn_01x01_Male") (at 19.05 57.15 0) (unit 1)
  2817. (in_bom yes) (on_board yes)
  2818. (uuid 0b70e794-a4d3-425e-8d68-868945dbf8a4)
  2819. (property "Reference" "J15" (id 0) (at 21.7424 52.6288 0))
  2820. (property "Value" "FLOPPY-" (id 1) (at 21.7424 54.9402 0))
  2821. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 19.05 57.15 0)
  2822. (effects (font (size 1.27 1.27)) hide)
  2823. )
  2824. (property "Datasheet" "~" (id 3) (at 19.05 57.15 0)
  2825. (effects (font (size 1.27 1.27)) hide)
  2826. )
  2827. (pin "1" (uuid ccc2a4c9-a19a-4fe0-9c37-0d80c257231e))
  2828. )
  2829. (symbol (lib_id "Device:L") (at 27.94 179.07 90) (unit 1)
  2830. (in_bom yes) (on_board yes)
  2831. (uuid 0e088394-8c5a-44be-ac98-14bc2dc355fb)
  2832. (property "Reference" "L2" (id 0) (at 27.94 174.244 90))
  2833. (property "Value" "100u" (id 1) (at 27.94 176.5554 90))
  2834. (property "Footprint" "AnalogFluxReader:1007" (id 2) (at 27.94 179.07 0)
  2835. (effects (font (size 1.27 1.27)) hide)
  2836. )
  2837. (property "Datasheet" "~" (id 3) (at 27.94 179.07 0)
  2838. (effects (font (size 1.27 1.27)) hide)
  2839. )
  2840. (pin "1" (uuid 944a3c17-918d-4202-bbe4-9db871780cba))
  2841. (pin "2" (uuid 068ba11b-ee45-4493-9a81-1a21276b4028))
  2842. )
  2843. (symbol (lib_id "power:+3V3") (at 157.48 74.93 0) (unit 1)
  2844. (in_bom yes) (on_board yes)
  2845. (uuid 0ff2acf0-d81a-47e3-a797-b7d2d6eac594)
  2846. (property "Reference" "#PWR0214" (id 0) (at 157.48 78.74 0)
  2847. (effects (font (size 1.27 1.27)) hide)
  2848. )
  2849. (property "Value" "+3V3" (id 1) (at 157.861 70.5358 0))
  2850. (property "Footprint" "" (id 2) (at 157.48 74.93 0)
  2851. (effects (font (size 1.27 1.27)) hide)
  2852. )
  2853. (property "Datasheet" "" (id 3) (at 157.48 74.93 0)
  2854. (effects (font (size 1.27 1.27)) hide)
  2855. )
  2856. (pin "1" (uuid 140ffcce-d900-47c6-a390-fb5292338604))
  2857. )
  2858. (symbol (lib_id "power:GND") (at 62.23 123.19 0) (unit 1)
  2859. (in_bom yes) (on_board yes)
  2860. (uuid 15edd81f-67b8-4b44-9e08-f6ca31c06f20)
  2861. (property "Reference" "#PWR0212" (id 0) (at 62.23 129.54 0)
  2862. (effects (font (size 1.27 1.27)) hide)
  2863. )
  2864. (property "Value" "GND" (id 1) (at 62.357 127.5842 0))
  2865. (property "Footprint" "" (id 2) (at 62.23 123.19 0)
  2866. (effects (font (size 1.27 1.27)) hide)
  2867. )
  2868. (property "Datasheet" "" (id 3) (at 62.23 123.19 0)
  2869. (effects (font (size 1.27 1.27)) hide)
  2870. )
  2871. (pin "1" (uuid c91fb5a1-d911-4ca8-88b4-b469ed664b4e))
  2872. )
  2873. (symbol (lib_id "power:GNDA") (at 102.87 76.2 0) (unit 1)
  2874. (in_bom yes) (on_board yes)
  2875. (uuid 170d5544-5d57-4ed1-bad2-499a01f94eb0)
  2876. (property "Reference" "#PWR0243" (id 0) (at 102.87 82.55 0)
  2877. (effects (font (size 1.27 1.27)) hide)
  2878. )
  2879. (property "Value" "GNDA" (id 1) (at 102.997 80.5942 0))
  2880. (property "Footprint" "" (id 2) (at 102.87 76.2 0)
  2881. (effects (font (size 1.27 1.27)) hide)
  2882. )
  2883. (property "Datasheet" "" (id 3) (at 102.87 76.2 0)
  2884. (effects (font (size 1.27 1.27)) hide)
  2885. )
  2886. (pin "1" (uuid 681b4030-53a3-4adb-87cd-afe8674c4a2d))
  2887. )
  2888. (symbol (lib_id "Device:C") (at 135.89 185.42 0) (unit 1)
  2889. (in_bom yes) (on_board yes)
  2890. (uuid 19a96f21-b011-4a2d-8cd2-5048cd043ae5)
  2891. (property "Reference" "C63" (id 0) (at 138.811 184.2516 0)
  2892. (effects (font (size 1.27 1.27)) (justify left))
  2893. )
  2894. (property "Value" "3.3u" (id 1) (at 138.811 186.563 0)
  2895. (effects (font (size 1.27 1.27)) (justify left))
  2896. )
  2897. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 136.8552 189.23 0)
  2898. (effects (font (size 1.27 1.27)) hide)
  2899. )
  2900. (property "Datasheet" "~" (id 3) (at 135.89 185.42 0)
  2901. (effects (font (size 1.27 1.27)) hide)
  2902. )
  2903. (pin "1" (uuid 3313e1f7-22d7-4e45-b856-478e2647a583))
  2904. (pin "2" (uuid 6adb311f-e7e8-4d6d-8178-2b2ebb0a42e7))
  2905. )
  2906. (symbol (lib_id "power:+3V3") (at 207.01 24.13 0) (unit 1)
  2907. (in_bom yes) (on_board yes)
  2908. (uuid 1ad8f3cc-5661-4d01-b43e-94c99471d16f)
  2909. (property "Reference" "#PWR0225" (id 0) (at 207.01 27.94 0)
  2910. (effects (font (size 1.27 1.27)) hide)
  2911. )
  2912. (property "Value" "+3V3" (id 1) (at 207.391 19.7358 0))
  2913. (property "Footprint" "" (id 2) (at 207.01 24.13 0)
  2914. (effects (font (size 1.27 1.27)) hide)
  2915. )
  2916. (property "Datasheet" "" (id 3) (at 207.01 24.13 0)
  2917. (effects (font (size 1.27 1.27)) hide)
  2918. )
  2919. (pin "1" (uuid 779b80ee-1ea0-441e-9eb7-c2739447cfdd))
  2920. )
  2921. (symbol (lib_id "power:GND") (at 78.74 191.77 0) (unit 1)
  2922. (in_bom yes) (on_board yes)
  2923. (uuid 1b529824-337e-4f41-8aae-49b6ae00652d)
  2924. (property "Reference" "#PWR0192" (id 0) (at 78.74 198.12 0)
  2925. (effects (font (size 1.27 1.27)) hide)
  2926. )
  2927. (property "Value" "GND" (id 1) (at 78.867 196.1642 0))
  2928. (property "Footprint" "" (id 2) (at 78.74 191.77 0)
  2929. (effects (font (size 1.27 1.27)) hide)
  2930. )
  2931. (property "Datasheet" "" (id 3) (at 78.74 191.77 0)
  2932. (effects (font (size 1.27 1.27)) hide)
  2933. )
  2934. (pin "1" (uuid d8bcca08-2cea-4af2-93a9-b02b9cd32fd1))
  2935. )
  2936. (symbol (lib_id "power:GND") (at 29.21 135.89 0) (unit 1)
  2937. (in_bom yes) (on_board yes)
  2938. (uuid 1ca0b3c4-deae-4e54-ae12-0b2327ee6739)
  2939. (property "Reference" "#PWR0210" (id 0) (at 29.21 142.24 0)
  2940. (effects (font (size 1.27 1.27)) hide)
  2941. )
  2942. (property "Value" "GND" (id 1) (at 29.337 140.2842 0))
  2943. (property "Footprint" "" (id 2) (at 29.21 135.89 0)
  2944. (effects (font (size 1.27 1.27)) hide)
  2945. )
  2946. (property "Datasheet" "" (id 3) (at 29.21 135.89 0)
  2947. (effects (font (size 1.27 1.27)) hide)
  2948. )
  2949. (pin "1" (uuid 9be4cbaa-2bfe-491a-a41a-056ce1981bb1))
  2950. )
  2951. (symbol (lib_id "power:PWR_FLAG") (at 166.37 179.07 0) (unit 1)
  2952. (in_bom yes) (on_board yes)
  2953. (uuid 1d3f356b-b244-426b-8b1c-39ae6c5a4b4e)
  2954. (property "Reference" "#FLG0102" (id 0) (at 166.37 177.165 0)
  2955. (effects (font (size 1.27 1.27)) hide)
  2956. )
  2957. (property "Value" "PWR_FLAG" (id 1) (at 166.37 174.6504 0))
  2958. (property "Footprint" "" (id 2) (at 166.37 179.07 0)
  2959. (effects (font (size 1.27 1.27)) hide)
  2960. )
  2961. (property "Datasheet" "~" (id 3) (at 166.37 179.07 0)
  2962. (effects (font (size 1.27 1.27)) hide)
  2963. )
  2964. (pin "1" (uuid 43579b38-23bb-48b5-a4f4-d4b1dea3f50a))
  2965. )
  2966. (symbol (lib_id "power:+3V3") (at 24.13 96.52 0) (unit 1)
  2967. (in_bom yes) (on_board yes)
  2968. (uuid 24905f2c-1b4e-41a7-a801-3f7fa8f206cc)
  2969. (property "Reference" "#PWR0250" (id 0) (at 24.13 100.33 0)
  2970. (effects (font (size 1.27 1.27)) hide)
  2971. )
  2972. (property "Value" "+3V3" (id 1) (at 24.511 92.1258 0))
  2973. (property "Footprint" "" (id 2) (at 24.13 96.52 0)
  2974. (effects (font (size 1.27 1.27)) hide)
  2975. )
  2976. (property "Datasheet" "" (id 3) (at 24.13 96.52 0)
  2977. (effects (font (size 1.27 1.27)) hide)
  2978. )
  2979. (pin "1" (uuid 47ff0768-7122-47d7-beb9-6fa72d2e2b68))
  2980. )
  2981. (symbol (lib_id "power:GNDA") (at 27.94 60.96 0) (unit 1)
  2982. (in_bom yes) (on_board yes)
  2983. (uuid 28122e99-85f9-4440-8a10-eee271bd6ca9)
  2984. (property "Reference" "#PWR0247" (id 0) (at 27.94 67.31 0)
  2985. (effects (font (size 1.27 1.27)) hide)
  2986. )
  2987. (property "Value" "GNDA" (id 1) (at 28.067 65.3542 0))
  2988. (property "Footprint" "" (id 2) (at 27.94 60.96 0)
  2989. (effects (font (size 1.27 1.27)) hide)
  2990. )
  2991. (property "Datasheet" "" (id 3) (at 27.94 60.96 0)
  2992. (effects (font (size 1.27 1.27)) hide)
  2993. )
  2994. (pin "1" (uuid 6720fdd4-3798-4881-a00c-584c7659eae3))
  2995. )
  2996. (symbol (lib_id "Device:C") (at 78.74 185.42 0) (unit 1)
  2997. (in_bom yes) (on_board yes)
  2998. (uuid 292eecaa-1713-4c27-a066-538c5ee44376)
  2999. (property "Reference" "C55" (id 0) (at 81.661 184.2516 0)
  3000. (effects (font (size 1.27 1.27)) (justify left))
  3001. )
  3002. (property "Value" "3.3u" (id 1) (at 81.661 186.563 0)
  3003. (effects (font (size 1.27 1.27)) (justify left))
  3004. )
  3005. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 79.7052 189.23 0)
  3006. (effects (font (size 1.27 1.27)) hide)
  3007. )
  3008. (property "Datasheet" "~" (id 3) (at 78.74 185.42 0)
  3009. (effects (font (size 1.27 1.27)) hide)
  3010. )
  3011. (pin "1" (uuid 8ac1dc63-c9f8-428f-bb01-1494ff534a0d))
  3012. (pin "2" (uuid cda29353-796a-4eb7-9d62-28deea5871e5))
  3013. )
  3014. (symbol (lib_id "power:GNDA") (at 63.5 72.39 0) (unit 1)
  3015. (in_bom yes) (on_board yes)
  3016. (uuid 29939c5d-d0d4-47ef-960c-1fd924a994de)
  3017. (property "Reference" "#PWR0233" (id 0) (at 63.5 78.74 0)
  3018. (effects (font (size 1.27 1.27)) hide)
  3019. )
  3020. (property "Value" "GNDA" (id 1) (at 63.627 76.7842 0))
  3021. (property "Footprint" "" (id 2) (at 63.5 72.39 0)
  3022. (effects (font (size 1.27 1.27)) hide)
  3023. )
  3024. (property "Datasheet" "" (id 3) (at 63.5 72.39 0)
  3025. (effects (font (size 1.27 1.27)) hide)
  3026. )
  3027. (pin "1" (uuid ccb29ce9-5c1f-4058-b794-ce393f68c622))
  3028. )
  3029. (symbol (lib_id "power:GND") (at 269.24 80.01 0) (unit 1)
  3030. (in_bom yes) (on_board yes)
  3031. (uuid 2fea7656-630d-4fbe-8298-bac4d11a72d1)
  3032. (property "Reference" "#PWR0228" (id 0) (at 269.24 86.36 0)
  3033. (effects (font (size 1.27 1.27)) hide)
  3034. )
  3035. (property "Value" "GND" (id 1) (at 269.367 84.4042 0))
  3036. (property "Footprint" "" (id 2) (at 269.24 80.01 0)
  3037. (effects (font (size 1.27 1.27)) hide)
  3038. )
  3039. (property "Datasheet" "" (id 3) (at 269.24 80.01 0)
  3040. (effects (font (size 1.27 1.27)) hide)
  3041. )
  3042. (pin "1" (uuid a4b14336-b890-4086-ad3b-201eb8b0954f))
  3043. )
  3044. (symbol (lib_id "Device:C") (at 92.71 72.39 180) (unit 1)
  3045. (in_bom yes) (on_board yes)
  3046. (uuid 31880848-2d7e-47ad-8623-f94e3a0c4cbb)
  3047. (property "Reference" "C59" (id 0) (at 95.631 71.2216 0)
  3048. (effects (font (size 1.27 1.27)) (justify right))
  3049. )
  3050. (property "Value" "15p" (id 1) (at 95.631 73.533 0)
  3051. (effects (font (size 1.27 1.27)) (justify right))
  3052. )
  3053. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 91.7448 68.58 0)
  3054. (effects (font (size 1.27 1.27)) hide)
  3055. )
  3056. (property "Datasheet" "~" (id 3) (at 92.71 72.39 0)
  3057. (effects (font (size 1.27 1.27)) hide)
  3058. )
  3059. (pin "1" (uuid deddb53b-96c2-484b-9bbf-a78763195b66))
  3060. (pin "2" (uuid 9db3a66c-2d1b-4584-a5b0-f006f3cb290f))
  3061. )
  3062. (symbol (lib_id "power:+3V3") (at 214.63 67.31 0) (unit 1)
  3063. (in_bom yes) (on_board yes)
  3064. (uuid 32d229bc-47d3-4e87-976e-1d4e80c61519)
  3065. (property "Reference" "#PWR0221" (id 0) (at 214.63 71.12 0)
  3066. (effects (font (size 1.27 1.27)) hide)
  3067. )
  3068. (property "Value" "+3V3" (id 1) (at 215.011 62.9158 0))
  3069. (property "Footprint" "" (id 2) (at 214.63 67.31 0)
  3070. (effects (font (size 1.27 1.27)) hide)
  3071. )
  3072. (property "Datasheet" "" (id 3) (at 214.63 67.31 0)
  3073. (effects (font (size 1.27 1.27)) hide)
  3074. )
  3075. (pin "1" (uuid f9c75356-86b9-4509-8e01-9bb8c896974f))
  3076. )
  3077. (symbol (lib_id "Device:C") (at 90.17 185.42 0) (unit 1)
  3078. (in_bom yes) (on_board yes)
  3079. (uuid 3451e0b8-e5cc-4bd4-9ee5-586832783336)
  3080. (property "Reference" "C57" (id 0) (at 93.091 184.2516 0)
  3081. (effects (font (size 1.27 1.27)) (justify left))
  3082. )
  3083. (property "Value" "100n" (id 1) (at 93.091 186.563 0)
  3084. (effects (font (size 1.27 1.27)) (justify left))
  3085. )
  3086. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 91.1352 189.23 0)
  3087. (effects (font (size 1.27 1.27)) hide)
  3088. )
  3089. (property "Datasheet" "~" (id 3) (at 90.17 185.42 0)
  3090. (effects (font (size 1.27 1.27)) hide)
  3091. )
  3092. (pin "1" (uuid e3b3bdb5-8e1a-4d04-921c-019aa07fd8e9))
  3093. (pin "2" (uuid 1cb3ec4c-1105-40f6-9e94-81f1270b1f6e))
  3094. )
  3095. (symbol (lib_id "Device:R") (at 52.07 62.23 270) (unit 1)
  3096. (in_bom yes) (on_board yes)
  3097. (uuid 376504a8-15f0-43da-95a7-b6fc08c06053)
  3098. (property "Reference" "R59" (id 0) (at 52.07 56.9722 90))
  3099. (property "Value" "1k" (id 1) (at 52.07 59.2836 90))
  3100. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 60.452 90)
  3101. (effects (font (size 1.27 1.27)) hide)
  3102. )
  3103. (property "Datasheet" "~" (id 3) (at 52.07 62.23 0)
  3104. (effects (font (size 1.27 1.27)) hide)
  3105. )
  3106. (pin "1" (uuid eb97e33a-05d8-478d-9735-59d4fe89eda1))
  3107. (pin "2" (uuid cb3b4fff-88a7-4d52-a377-3bd733aaae99))
  3108. )
  3109. (symbol (lib_id "power:GNDA") (at 156.21 54.61 0) (unit 1)
  3110. (in_bom yes) (on_board yes)
  3111. (uuid 37eddccd-66cd-4aae-afaa-68dcc9005132)
  3112. (property "Reference" "#PWR0240" (id 0) (at 156.21 60.96 0)
  3113. (effects (font (size 1.27 1.27)) hide)
  3114. )
  3115. (property "Value" "GNDA" (id 1) (at 156.337 59.0042 0))
  3116. (property "Footprint" "" (id 2) (at 156.21 54.61 0)
  3117. (effects (font (size 1.27 1.27)) hide)
  3118. )
  3119. (property "Datasheet" "" (id 3) (at 156.21 54.61 0)
  3120. (effects (font (size 1.27 1.27)) hide)
  3121. )
  3122. (pin "1" (uuid d48d0988-1a90-4e49-a0e4-8c75376681c0))
  3123. )
  3124. (symbol (lib_id "power:+3.3VADC") (at 64.77 36.83 0) (unit 1)
  3125. (in_bom yes) (on_board yes)
  3126. (uuid 3c0f3210-25b2-405c-98da-8abdc48a0da4)
  3127. (property "Reference" "#PWR0249" (id 0) (at 68.58 38.1 0)
  3128. (effects (font (size 1.27 1.27)) hide)
  3129. )
  3130. (property "Value" "+3.3VADC" (id 1) (at 65.278 33.1978 0))
  3131. (property "Footprint" "" (id 2) (at 64.77 36.83 0)
  3132. (effects (font (size 1.27 1.27)) hide)
  3133. )
  3134. (property "Datasheet" "" (id 3) (at 64.77 36.83 0)
  3135. (effects (font (size 1.27 1.27)) hide)
  3136. )
  3137. (pin "1" (uuid 12b4641d-c2b6-4d4b-88cc-fd4b73ae7d98))
  3138. )
  3139. (symbol (lib_id "power:GND") (at 176.53 96.52 0) (unit 1)
  3140. (in_bom yes) (on_board yes)
  3141. (uuid 3f1d591f-5d53-4891-970c-bee4f9984dee)
  3142. (property "Reference" "#PWR0218" (id 0) (at 176.53 102.87 0)
  3143. (effects (font (size 1.27 1.27)) hide)
  3144. )
  3145. (property "Value" "GND" (id 1) (at 176.657 100.9142 0))
  3146. (property "Footprint" "" (id 2) (at 176.53 96.52 0)
  3147. (effects (font (size 1.27 1.27)) hide)
  3148. )
  3149. (property "Datasheet" "" (id 3) (at 176.53 96.52 0)
  3150. (effects (font (size 1.27 1.27)) hide)
  3151. )
  3152. (pin "1" (uuid 6a70b0c9-0f61-4cbd-b06b-bc952cba9525))
  3153. )
  3154. (symbol (lib_id "Device:C") (at 114.3 97.79 0) (unit 1)
  3155. (in_bom yes) (on_board yes)
  3156. (uuid 3f5d73b5-2a01-4d98-b9eb-feb6d66b32eb)
  3157. (property "Reference" "C61" (id 0) (at 117.221 96.6216 0)
  3158. (effects (font (size 1.27 1.27)) (justify left))
  3159. )
  3160. (property "Value" "100n" (id 1) (at 117.221 98.933 0)
  3161. (effects (font (size 1.27 1.27)) (justify left))
  3162. )
  3163. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 115.2652 101.6 0)
  3164. (effects (font (size 1.27 1.27)) hide)
  3165. )
  3166. (property "Datasheet" "~" (id 3) (at 114.3 97.79 0)
  3167. (effects (font (size 1.27 1.27)) hide)
  3168. )
  3169. (pin "1" (uuid 9a7e804b-1df5-4854-94ab-8b638058a074))
  3170. (pin "2" (uuid 71db74b3-8004-462a-817a-9b35115baaa2))
  3171. )
  3172. (symbol (lib_id "Device:C") (at 102.87 72.39 180) (unit 1)
  3173. (in_bom yes) (on_board yes)
  3174. (uuid 3f8bce2f-f092-4b69-a2f7-7ebff8165487)
  3175. (property "Reference" "C60" (id 0) (at 105.791 71.2216 0)
  3176. (effects (font (size 1.27 1.27)) (justify right))
  3177. )
  3178. (property "Value" "15p" (id 1) (at 105.791 73.533 0)
  3179. (effects (font (size 1.27 1.27)) (justify right))
  3180. )
  3181. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 101.9048 68.58 0)
  3182. (effects (font (size 1.27 1.27)) hide)
  3183. )
  3184. (property "Datasheet" "~" (id 3) (at 102.87 72.39 0)
  3185. (effects (font (size 1.27 1.27)) hide)
  3186. )
  3187. (pin "1" (uuid 98893e1a-8043-4a29-b959-364bec7b743b))
  3188. (pin "2" (uuid 1ef8d051-42bb-43b4-aca9-1d13b188e1ed))
  3189. )
  3190. (symbol (lib_id "power:+3V3") (at 120.65 24.13 0) (unit 1)
  3191. (in_bom yes) (on_board yes)
  3192. (uuid 3fb74797-86cc-4b2b-bcc9-333f56933c4c)
  3193. (property "Reference" "#PWR0235" (id 0) (at 120.65 27.94 0)
  3194. (effects (font (size 1.27 1.27)) hide)
  3195. )
  3196. (property "Value" "+3V3" (id 1) (at 121.031 19.7358 0))
  3197. (property "Footprint" "" (id 2) (at 120.65 24.13 0)
  3198. (effects (font (size 1.27 1.27)) hide)
  3199. )
  3200. (property "Datasheet" "" (id 3) (at 120.65 24.13 0)
  3201. (effects (font (size 1.27 1.27)) hide)
  3202. )
  3203. (pin "1" (uuid 9cd72f16-ea8c-494e-aadf-6467928fac0d))
  3204. )
  3205. (symbol (lib_id "power:GNDA") (at 53.34 187.96 0) (unit 1)
  3206. (in_bom yes) (on_board yes)
  3207. (uuid 4520838b-b386-4c1a-ae61-0999e4bb0c70)
  3208. (property "Reference" "#PWR0199" (id 0) (at 53.34 194.31 0)
  3209. (effects (font (size 1.27 1.27)) hide)
  3210. )
  3211. (property "Value" "GNDA" (id 1) (at 53.467 192.3542 0))
  3212. (property "Footprint" "" (id 2) (at 53.34 187.96 0)
  3213. (effects (font (size 1.27 1.27)) hide)
  3214. )
  3215. (property "Datasheet" "" (id 3) (at 53.34 187.96 0)
  3216. (effects (font (size 1.27 1.27)) hide)
  3217. )
  3218. (pin "1" (uuid 2222cea1-32b2-4088-970d-b48750d85806))
  3219. )
  3220. (symbol (lib_id "Device:R") (at 52.07 27.94 270) (unit 1)
  3221. (in_bom yes) (on_board yes)
  3222. (uuid 46617fbe-d99c-4562-8e6d-b69c8cd6a29e)
  3223. (property "Reference" "R58" (id 0) (at 52.07 22.6822 90))
  3224. (property "Value" "1k" (id 1) (at 52.07 24.9936 90))
  3225. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 26.162 90)
  3226. (effects (font (size 1.27 1.27)) hide)
  3227. )
  3228. (property "Datasheet" "~" (id 3) (at 52.07 27.94 0)
  3229. (effects (font (size 1.27 1.27)) hide)
  3230. )
  3231. (pin "1" (uuid 33df4e5a-a31b-46c3-889c-d9617c6a97a3))
  3232. (pin "2" (uuid 96117d00-f55b-4275-9b56-80253338dc1c))
  3233. )
  3234. (symbol (lib_id "power:+3V3") (at 250.19 19.05 0) (unit 1)
  3235. (in_bom yes) (on_board yes)
  3236. (uuid 49934ae7-8350-4cf3-9241-e3c0b9d0d52e)
  3237. (property "Reference" "#PWR0232" (id 0) (at 250.19 22.86 0)
  3238. (effects (font (size 1.27 1.27)) hide)
  3239. )
  3240. (property "Value" "+3V3" (id 1) (at 250.571 14.6558 0))
  3241. (property "Footprint" "" (id 2) (at 250.19 19.05 0)
  3242. (effects (font (size 1.27 1.27)) hide)
  3243. )
  3244. (property "Datasheet" "" (id 3) (at 250.19 19.05 0)
  3245. (effects (font (size 1.27 1.27)) hide)
  3246. )
  3247. (pin "1" (uuid c65297e7-676d-4ef1-a99d-5cbc5f723387))
  3248. )
  3249. (symbol (lib_id "Device:R") (at 97.79 49.53 270) (unit 1)
  3250. (in_bom yes) (on_board yes)
  3251. (uuid 4d519c3a-abc8-4421-803d-ced69e37d9f7)
  3252. (property "Reference" "R61" (id 0) (at 97.79 52.07 90))
  3253. (property "Value" "22" (id 1) (at 93.98 52.07 90))
  3254. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 97.79 47.752 90)
  3255. (effects (font (size 1.27 1.27)) hide)
  3256. )
  3257. (property "Datasheet" "~" (id 3) (at 97.79 49.53 0)
  3258. (effects (font (size 1.27 1.27)) hide)
  3259. )
  3260. (pin "1" (uuid d0787549-a728-4ff6-b4bb-264b3a96755c))
  3261. (pin "2" (uuid e22252f8-d606-4a0b-9230-a9e8317bc21b))
  3262. )
  3263. (symbol (lib_id "power:GND") (at 204.47 50.8 0) (unit 1)
  3264. (in_bom yes) (on_board yes)
  3265. (uuid 4d544027-322b-4aea-a1c6-cebbbd6fa1da)
  3266. (property "Reference" "#PWR0227" (id 0) (at 204.47 57.15 0)
  3267. (effects (font (size 1.27 1.27)) hide)
  3268. )
  3269. (property "Value" "GND" (id 1) (at 204.597 55.1942 0))
  3270. (property "Footprint" "" (id 2) (at 204.47 50.8 0)
  3271. (effects (font (size 1.27 1.27)) hide)
  3272. )
  3273. (property "Datasheet" "" (id 3) (at 204.47 50.8 0)
  3274. (effects (font (size 1.27 1.27)) hide)
  3275. )
  3276. (pin "1" (uuid 117f12cd-aaff-432a-ad0f-944b4946f750))
  3277. )
  3278. (symbol (lib_id "power:-3V3") (at 57.15 38.1 0) (unit 1)
  3279. (in_bom yes) (on_board yes)
  3280. (uuid 4d71b557-d950-40f1-9a8f-35bdf0b88b9a)
  3281. (property "Reference" "#PWR0248" (id 0) (at 57.15 35.56 0)
  3282. (effects (font (size 1.27 1.27)) hide)
  3283. )
  3284. (property "Value" "-3V3" (id 1) (at 57.531 33.7058 0))
  3285. (property "Footprint" "" (id 2) (at 57.15 38.1 0)
  3286. (effects (font (size 1.27 1.27)) hide)
  3287. )
  3288. (property "Datasheet" "" (id 3) (at 57.15 38.1 0)
  3289. (effects (font (size 1.27 1.27)) hide)
  3290. )
  3291. (pin "1" (uuid 8bd054af-151a-4863-91aa-7f5241170492))
  3292. )
  3293. (symbol (lib_id "AnalogFluxReader-rescue:CP_Small-Device") (at 148.59 39.37 0) (unit 1)
  3294. (in_bom yes) (on_board yes)
  3295. (uuid 4dbb4c65-f29c-4e56-a3ae-edd9ec7100ab)
  3296. (property "Reference" "C64" (id 0) (at 150.8252 38.2016 0)
  3297. (effects (font (size 1.27 1.27)) (justify left))
  3298. )
  3299. (property "Value" "47u" (id 1) (at 150.8252 40.513 0)
  3300. (effects (font (size 1.27 1.27)) (justify left))
  3301. )
  3302. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 148.59 39.37 0)
  3303. (effects (font (size 1.27 1.27)) hide)
  3304. )
  3305. (property "Datasheet" "~" (id 3) (at 148.59 39.37 0)
  3306. (effects (font (size 1.27 1.27)) hide)
  3307. )
  3308. (pin "1" (uuid 5712eb39-f5a4-42bc-82f3-3678a9fc07f6))
  3309. (pin "2" (uuid 87f8744c-22ba-43f8-a180-c60f26a70f95))
  3310. )
  3311. (symbol (lib_id "power:GNDA") (at 44.45 189.23 0) (unit 1)
  3312. (in_bom yes) (on_board yes)
  3313. (uuid 4deb904e-fd2d-4d48-8ca1-9d6a1354ae8d)
  3314. (property "Reference" "#PWR0183" (id 0) (at 44.45 195.58 0)
  3315. (effects (font (size 1.27 1.27)) hide)
  3316. )
  3317. (property "Value" "GNDA" (id 1) (at 44.577 193.6242 0))
  3318. (property "Footprint" "" (id 2) (at 44.45 189.23 0)
  3319. (effects (font (size 1.27 1.27)) hide)
  3320. )
  3321. (property "Datasheet" "" (id 3) (at 44.45 189.23 0)
  3322. (effects (font (size 1.27 1.27)) hide)
  3323. )
  3324. (pin "1" (uuid 92b401d4-4029-44b2-973a-5ed09d14a032))
  3325. )
  3326. (symbol (lib_id "Device:C") (at 168.91 50.8 180) (unit 1)
  3327. (in_bom yes) (on_board yes)
  3328. (uuid 4e2e1f17-b513-4179-b43e-f34d94712930)
  3329. (property "Reference" "C69" (id 0) (at 171.831 49.6316 0)
  3330. (effects (font (size 1.27 1.27)) (justify right))
  3331. )
  3332. (property "Value" "100n" (id 1) (at 171.831 51.943 0)
  3333. (effects (font (size 1.27 1.27)) (justify right))
  3334. )
  3335. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 167.9448 46.99 0)
  3336. (effects (font (size 1.27 1.27)) hide)
  3337. )
  3338. (property "Datasheet" "~" (id 3) (at 168.91 50.8 0)
  3339. (effects (font (size 1.27 1.27)) hide)
  3340. )
  3341. (pin "1" (uuid b3bfbbd9-031b-474d-a57d-5331244510bf))
  3342. (pin "2" (uuid 766f03e8-f246-4bae-86bd-56dabf555c57))
  3343. )
  3344. (symbol (lib_id "power:+3V3") (at 88.9 88.9 0) (unit 1)
  3345. (in_bom yes) (on_board yes)
  3346. (uuid 4e682b17-4997-494d-b4d1-21495b319552)
  3347. (property "Reference" "#PWR0245" (id 0) (at 88.9 92.71 0)
  3348. (effects (font (size 1.27 1.27)) hide)
  3349. )
  3350. (property "Value" "+3V3" (id 1) (at 89.281 84.5058 0))
  3351. (property "Footprint" "" (id 2) (at 88.9 88.9 0)
  3352. (effects (font (size 1.27 1.27)) hide)
  3353. )
  3354. (property "Datasheet" "" (id 3) (at 88.9 88.9 0)
  3355. (effects (font (size 1.27 1.27)) hide)
  3356. )
  3357. (pin "1" (uuid 2d23a894-0baf-466f-bc80-a9d82b5696e5))
  3358. )
  3359. (symbol (lib_id "AnalogFluxReader-rescue:LM2664-tinkerforge") (at 114.3 175.26 0) (unit 1)
  3360. (in_bom yes) (on_board yes)
  3361. (uuid 530796e2-7331-4204-8f24-dcc33f1230f9)
  3362. (property "Reference" "U14" (id 0) (at 114.3 164.8968 0)
  3363. (effects (font (size 1.524 1.524)))
  3364. )
  3365. (property "Value" "LM2664" (id 1) (at 114.3 167.5892 0)
  3366. (effects (font (size 1.524 1.524)))
  3367. )
  3368. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" (id 2) (at 95.25 200.66 0)
  3369. (effects (font (size 1.524 1.524)) hide)
  3370. )
  3371. (property "Datasheet" "" (id 3) (at 95.25 200.66 0)
  3372. (effects (font (size 1.524 1.524)))
  3373. )
  3374. (pin "1" (uuid b41e696a-a7eb-4b70-98ad-f2a8f41945ec))
  3375. (pin "2" (uuid bafbdfad-c206-495d-9c2c-618e11170b65))
  3376. (pin "3" (uuid f16f5d78-4c7d-460a-882c-6ef282940218))
  3377. (pin "4" (uuid cd16ba71-d159-496c-b18d-1b782968d1d9))
  3378. (pin "5" (uuid 8be89ae9-e198-42ab-9c71-6f71417ddbc5))
  3379. (pin "6" (uuid 3c304074-f87f-463b-b572-6e81cfd8df98))
  3380. )
  3381. (symbol (lib_id "power:+3V3") (at 21.59 177.8 0) (unit 1)
  3382. (in_bom yes) (on_board yes)
  3383. (uuid 54d04f66-b81d-46aa-89e0-c9e6591e7c8d)
  3384. (property "Reference" "#PWR0189" (id 0) (at 21.59 181.61 0)
  3385. (effects (font (size 1.27 1.27)) hide)
  3386. )
  3387. (property "Value" "+3V3" (id 1) (at 21.971 173.4058 0))
  3388. (property "Footprint" "" (id 2) (at 21.59 177.8 0)
  3389. (effects (font (size 1.27 1.27)) hide)
  3390. )
  3391. (property "Datasheet" "" (id 3) (at 21.59 177.8 0)
  3392. (effects (font (size 1.27 1.27)) hide)
  3393. )
  3394. (pin "1" (uuid 3ee28ef7-7d9d-4cb9-8251-afe3aaa07396))
  3395. )
  3396. (symbol (lib_id "74xx:74LS153") (at 88.9 115.57 0) (unit 1)
  3397. (in_bom yes) (on_board yes)
  3398. (uuid 5ad0a7e7-8501-4eff-8905-299076722331)
  3399. (property "Reference" "U13" (id 0) (at 93.98 92.71 0))
  3400. (property "Value" "74AC153" (id 1) (at 81.28 92.71 0))
  3401. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 88.9 115.57 0)
  3402. (effects (font (size 1.27 1.27)) hide)
  3403. )
  3404. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS153" (id 3) (at 88.9 115.57 0)
  3405. (effects (font (size 1.27 1.27)) hide)
  3406. )
  3407. (pin "1" (uuid ac6871e2-cf71-4679-a617-8f3e14cd8852))
  3408. (pin "10" (uuid 79eb3a05-71df-4f89-9e12-07642a8b93cf))
  3409. (pin "11" (uuid e255b902-2119-44ab-a786-e314fa8e2751))
  3410. (pin "12" (uuid ed342074-19ea-4f4e-84c0-a848f253f9f9))
  3411. (pin "13" (uuid f016a8ba-3f55-4855-bf56-680b9208f9ad))
  3412. (pin "14" (uuid 246b0089-4756-4e04-903b-ec7f5319cb3c))
  3413. (pin "15" (uuid 555a9e4e-a788-4b7a-a721-1a79ebb71d01))
  3414. (pin "16" (uuid a1a1d219-49c9-4ff5-a744-4f30a78a4981))
  3415. (pin "2" (uuid dfd4cbda-6864-4e60-b645-44c491e2d1ac))
  3416. (pin "3" (uuid c1c3aa1b-f5b1-42fd-a4b3-be91db4f1e82))
  3417. (pin "4" (uuid 99d97eed-77df-417e-a86f-081e0a5867ba))
  3418. (pin "5" (uuid f2460277-5cba-4733-8c2c-8b3c5809460c))
  3419. (pin "6" (uuid fb99deaa-0b80-41d2-a0b5-cfff2a8c35d9))
  3420. (pin "7" (uuid c1841e83-f04b-4430-afcf-6df86a99448d))
  3421. (pin "8" (uuid 719f4e43-674c-45b4-a3e4-4f55655c007e))
  3422. (pin "9" (uuid 6a00ca3a-af14-4e6e-bcea-88caefdf4b02))
  3423. )
  3424. (symbol (lib_id "Device:R") (at 214.63 72.39 180) (unit 1)
  3425. (in_bom yes) (on_board yes)
  3426. (uuid 5b49e66b-439e-406d-a55f-449c519461ed)
  3427. (property "Reference" "R71" (id 0) (at 216.408 71.2216 0)
  3428. (effects (font (size 1.27 1.27)) (justify right))
  3429. )
  3430. (property "Value" "2k" (id 1) (at 216.408 73.533 0)
  3431. (effects (font (size 1.27 1.27)) (justify right))
  3432. )
  3433. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 216.408 72.39 90)
  3434. (effects (font (size 1.27 1.27)) hide)
  3435. )
  3436. (property "Datasheet" "~" (id 3) (at 214.63 72.39 0)
  3437. (effects (font (size 1.27 1.27)) hide)
  3438. )
  3439. (pin "1" (uuid d4a86f39-7bfa-4091-b23e-e558350c150e))
  3440. (pin "2" (uuid ea75d844-6418-4f2a-b68d-edcc0d034868))
  3441. )
  3442. (symbol (lib_id "Device:C") (at 158.75 39.37 180) (unit 1)
  3443. (in_bom yes) (on_board yes)
  3444. (uuid 62b2e931-73fe-4a9d-8601-8cb8563b3f67)
  3445. (property "Reference" "C67" (id 0) (at 161.671 38.2016 0)
  3446. (effects (font (size 1.27 1.27)) (justify right))
  3447. )
  3448. (property "Value" "100n" (id 1) (at 161.671 40.513 0)
  3449. (effects (font (size 1.27 1.27)) (justify right))
  3450. )
  3451. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 157.7848 35.56 0)
  3452. (effects (font (size 1.27 1.27)) hide)
  3453. )
  3454. (property "Datasheet" "~" (id 3) (at 158.75 39.37 0)
  3455. (effects (font (size 1.27 1.27)) hide)
  3456. )
  3457. (pin "1" (uuid 86f253d0-96e9-4942-9cec-26776fa83239))
  3458. (pin "2" (uuid 2403e689-bd13-4f66-a950-989dc9204bf6))
  3459. )
  3460. (symbol (lib_id "power:GND") (at 43.18 139.7 0) (unit 1)
  3461. (in_bom yes) (on_board yes)
  3462. (uuid 63c909ab-02bb-4883-96ff-8f74f6b58c34)
  3463. (property "Reference" "#PWR0211" (id 0) (at 43.18 146.05 0)
  3464. (effects (font (size 1.27 1.27)) hide)
  3465. )
  3466. (property "Value" "GND" (id 1) (at 43.307 144.0942 0))
  3467. (property "Footprint" "" (id 2) (at 43.18 139.7 0)
  3468. (effects (font (size 1.27 1.27)) hide)
  3469. )
  3470. (property "Datasheet" "" (id 3) (at 43.18 139.7 0)
  3471. (effects (font (size 1.27 1.27)) hide)
  3472. )
  3473. (pin "1" (uuid 74540523-7eea-4184-a3ea-f9a8cc2eb789))
  3474. )
  3475. (symbol (lib_id "power:PWR_FLAG") (at 213.36 153.67 0) (unit 1)
  3476. (in_bom yes) (on_board yes)
  3477. (uuid 654121fd-34e7-438a-971b-0e644fb1f22f)
  3478. (property "Reference" "#FLG0103" (id 0) (at 213.36 151.765 0)
  3479. (effects (font (size 1.27 1.27)) hide)
  3480. )
  3481. (property "Value" "PWR_FLAG" (id 1) (at 213.36 149.2504 0))
  3482. (property "Footprint" "" (id 2) (at 213.36 153.67 0)
  3483. (effects (font (size 1.27 1.27)) hide)
  3484. )
  3485. (property "Datasheet" "~" (id 3) (at 213.36 153.67 0)
  3486. (effects (font (size 1.27 1.27)) hide)
  3487. )
  3488. (pin "1" (uuid 0931783f-515c-44bb-85f1-2f3b90ea86db))
  3489. )
  3490. (symbol (lib_id "power:+3V3") (at 220.98 19.05 0) (unit 1)
  3491. (in_bom yes) (on_board yes)
  3492. (uuid 66a126cd-d193-48ea-85ef-f85abd29f3a2)
  3493. (property "Reference" "#PWR0226" (id 0) (at 220.98 22.86 0)
  3494. (effects (font (size 1.27 1.27)) hide)
  3495. )
  3496. (property "Value" "+3V3" (id 1) (at 221.361 14.6558 0))
  3497. (property "Footprint" "" (id 2) (at 220.98 19.05 0)
  3498. (effects (font (size 1.27 1.27)) hide)
  3499. )
  3500. (property "Datasheet" "" (id 3) (at 220.98 19.05 0)
  3501. (effects (font (size 1.27 1.27)) hide)
  3502. )
  3503. (pin "1" (uuid d31fa5ef-155c-4e93-abad-5fb67e5d1ef1))
  3504. )
  3505. (symbol (lib_id "power:+3V3") (at 168.91 73.66 0) (unit 1)
  3506. (in_bom yes) (on_board yes)
  3507. (uuid 66c38150-4bcc-4f4d-993f-1e672c0c562e)
  3508. (property "Reference" "#PWR0215" (id 0) (at 168.91 77.47 0)
  3509. (effects (font (size 1.27 1.27)) hide)
  3510. )
  3511. (property "Value" "+3V3" (id 1) (at 169.291 69.2658 0))
  3512. (property "Footprint" "" (id 2) (at 168.91 73.66 0)
  3513. (effects (font (size 1.27 1.27)) hide)
  3514. )
  3515. (property "Datasheet" "" (id 3) (at 168.91 73.66 0)
  3516. (effects (font (size 1.27 1.27)) hide)
  3517. )
  3518. (pin "1" (uuid fd5a47e2-ab7b-4501-8d03-ea8d9ccf552e))
  3519. )
  3520. (symbol (lib_id "AnalogFluxReader-rescue:CP_Small-Device") (at 44.45 182.88 0) (unit 1)
  3521. (in_bom yes) (on_board yes)
  3522. (uuid 690cc8a8-660a-4d68-85d8-28464242ed6c)
  3523. (property "Reference" "C56" (id 0) (at 46.6852 181.7116 0)
  3524. (effects (font (size 1.27 1.27)) (justify left))
  3525. )
  3526. (property "Value" "47u" (id 1) (at 46.6852 184.023 0)
  3527. (effects (font (size 1.27 1.27)) (justify left))
  3528. )
  3529. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 44.45 182.88 0)
  3530. (effects (font (size 1.27 1.27)) hide)
  3531. )
  3532. (property "Datasheet" "~" (id 3) (at 44.45 182.88 0)
  3533. (effects (font (size 1.27 1.27)) hide)
  3534. )
  3535. (pin "1" (uuid 380faec0-7ae0-470a-ae1a-a27c5003ecf2))
  3536. (pin "2" (uuid 207a02e2-26cf-48bb-86cf-bc2dbce25656))
  3537. )
  3538. (symbol (lib_id "Device:R") (at 222.25 66.04 180) (unit 1)
  3539. (in_bom yes) (on_board yes)
  3540. (uuid 6aec54bc-83d4-4348-840d-11ccf4ee5735)
  3541. (property "Reference" "R74" (id 0) (at 224.028 64.8716 0)
  3542. (effects (font (size 1.27 1.27)) (justify right))
  3543. )
  3544. (property "Value" "2k" (id 1) (at 224.028 67.183 0)
  3545. (effects (font (size 1.27 1.27)) (justify right))
  3546. )
  3547. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 224.028 66.04 90)
  3548. (effects (font (size 1.27 1.27)) hide)
  3549. )
  3550. (property "Datasheet" "~" (id 3) (at 222.25 66.04 0)
  3551. (effects (font (size 1.27 1.27)) hide)
  3552. )
  3553. (pin "1" (uuid 9aea41aa-cff1-4141-8d7c-f704cb088a22))
  3554. (pin "2" (uuid c13e37ff-c568-4d50-8636-03e219e727ab))
  3555. )
  3556. (symbol (lib_id "Interface_Expansion:MCP23017_SP") (at 250.19 57.15 0) (unit 1)
  3557. (in_bom yes) (on_board yes)
  3558. (uuid 6dec36de-f6a4-4057-a72b-33baf1cf1cec)
  3559. (property "Reference" "U16" (id 0) (at 256.54 33.02 0))
  3560. (property "Value" "MCP23017_SP" (id 1) (at 241.3 33.02 0))
  3561. (property "Footprint" "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm" (id 2) (at 255.27 82.55 0)
  3562. (effects (font (size 1.27 1.27)) (justify left) hide)
  3563. )
  3564. (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/20001952C.pdf" (id 3) (at 255.27 85.09 0)
  3565. (effects (font (size 1.27 1.27)) (justify left) hide)
  3566. )
  3567. (pin "1" (uuid 2ac78e5d-8d13-41ef-91c1-52f52317b4a5))
  3568. (pin "10" (uuid 864aaa4b-1327-4dee-9961-736a76850912))
  3569. (pin "11" (uuid 9134443c-cc58-4a03-ae5c-4484ca9360b8))
  3570. (pin "12" (uuid 47d176d3-d874-4e25-9399-ffcc6743a717))
  3571. (pin "13" (uuid f5af20bd-7799-4cc4-8069-7eb94d4d4d68))
  3572. (pin "14" (uuid 8ec5f9bc-68dd-4c9f-9a7c-51be9e87fc9e))
  3573. (pin "15" (uuid 79115a58-fb10-4879-8baa-cbd473aae901))
  3574. (pin "16" (uuid 3bca9cb3-a661-4782-9bec-764de3639d2e))
  3575. (pin "17" (uuid c3b5c373-9ef0-4053-801f-b5fb05dbe1ed))
  3576. (pin "18" (uuid f9a81b86-96c4-49a9-a338-97c9d6fc06fa))
  3577. (pin "19" (uuid ba6a9be4-8285-4578-8143-957bf516a004))
  3578. (pin "2" (uuid b09cc62b-44e7-455a-b3d7-115a689a52e6))
  3579. (pin "20" (uuid ec52bad8-7e25-44f1-bc8a-024027bc0ade))
  3580. (pin "21" (uuid 2886d6f5-562e-4daf-bcf9-c01268a678a9))
  3581. (pin "22" (uuid 0453c72c-32b5-432e-8894-27faa2d02611))
  3582. (pin "23" (uuid 91917230-18cc-48ba-aa90-abdefa7dac11))
  3583. (pin "24" (uuid 04c150c7-ad8b-4834-b43b-de117756b756))
  3584. (pin "25" (uuid 227609ac-a243-43db-8951-d2a3c43d4bd2))
  3585. (pin "26" (uuid 0d3adc79-f068-4655-a33c-c22bfdfdf346))
  3586. (pin "27" (uuid 17acfb0d-5529-4df3-b3d1-5479e10740e5))
  3587. (pin "28" (uuid 105271cd-e3f1-43e1-a9be-e0185a0977a1))
  3588. (pin "3" (uuid 78f18919-5e66-4efe-94db-3309f197c46c))
  3589. (pin "4" (uuid b7daa25f-ed61-4d99-b0be-d1b8042c7c2c))
  3590. (pin "5" (uuid 61bc39c1-2a3b-4a6b-a83b-eb397e9b3642))
  3591. (pin "6" (uuid 6b7ba79e-37dc-4b7a-86e4-a9b7c6cc8e19))
  3592. (pin "7" (uuid a518331b-579d-4c8a-b2b1-00e6f474bb46))
  3593. (pin "8" (uuid 284bebd7-44da-4f38-82e5-e8fa25534e15))
  3594. (pin "9" (uuid 9744cb44-479f-4f1f-aa90-1be4d4c61468))
  3595. )
  3596. (symbol (lib_id "Device:C") (at 63.5 68.58 180) (unit 1)
  3597. (in_bom yes) (on_board yes)
  3598. (uuid 6eaa4b52-7e9e-469f-809c-5821d7afb4a1)
  3599. (property "Reference" "C52" (id 0) (at 66.421 67.4116 0)
  3600. (effects (font (size 1.27 1.27)) (justify right))
  3601. )
  3602. (property "Value" "100n" (id 1) (at 66.421 69.723 0)
  3603. (effects (font (size 1.27 1.27)) (justify right))
  3604. )
  3605. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 62.5348 64.77 0)
  3606. (effects (font (size 1.27 1.27)) hide)
  3607. )
  3608. (property "Datasheet" "~" (id 3) (at 63.5 68.58 0)
  3609. (effects (font (size 1.27 1.27)) hide)
  3610. )
  3611. (pin "1" (uuid 240baf7e-6f2e-4ef8-a99c-f5e1a6da97b8))
  3612. (pin "2" (uuid 842acb61-f992-462f-a29a-65c85881fa0d))
  3613. )
  3614. (symbol (lib_id "power:GNDA") (at 209.55 156.21 0) (unit 1)
  3615. (in_bom yes) (on_board yes)
  3616. (uuid 6fbf9cf1-7b06-407b-a23f-2775078dc492)
  3617. (property "Reference" "#PWR0223" (id 0) (at 209.55 162.56 0)
  3618. (effects (font (size 1.27 1.27)) hide)
  3619. )
  3620. (property "Value" "GNDA" (id 1) (at 209.677 160.6042 0))
  3621. (property "Footprint" "" (id 2) (at 209.55 156.21 0)
  3622. (effects (font (size 1.27 1.27)) hide)
  3623. )
  3624. (property "Datasheet" "" (id 3) (at 209.55 156.21 0)
  3625. (effects (font (size 1.27 1.27)) hide)
  3626. )
  3627. (pin "1" (uuid 80be84e0-a510-422d-96c6-680880a97fea))
  3628. )
  3629. (symbol (lib_id "power:GNDA") (at 124.46 87.63 0) (unit 1)
  3630. (in_bom yes) (on_board yes)
  3631. (uuid 71f39067-782c-458e-889e-e78f7a279a0a)
  3632. (property "Reference" "#PWR0200" (id 0) (at 124.46 93.98 0)
  3633. (effects (font (size 1.27 1.27)) hide)
  3634. )
  3635. (property "Value" "GNDA" (id 1) (at 124.587 92.0242 0))
  3636. (property "Footprint" "" (id 2) (at 124.46 87.63 0)
  3637. (effects (font (size 1.27 1.27)) hide)
  3638. )
  3639. (property "Datasheet" "" (id 3) (at 124.46 87.63 0)
  3640. (effects (font (size 1.27 1.27)) hide)
  3641. )
  3642. (pin "1" (uuid 88daac98-6887-4c62-9221-05b834848a2f))
  3643. )
  3644. (symbol (lib_id "AnalogFluxReader-rescue:CP_Small-Device") (at 21.59 181.61 0) (unit 1)
  3645. (in_bom yes) (on_board yes)
  3646. (uuid 74c6cdf0-1811-4024-880f-2fc2fbce716a)
  3647. (property "Reference" "C49" (id 0) (at 23.8252 180.4416 0)
  3648. (effects (font (size 1.27 1.27)) (justify left))
  3649. )
  3650. (property "Value" "47u" (id 1) (at 23.8252 182.753 0)
  3651. (effects (font (size 1.27 1.27)) (justify left))
  3652. )
  3653. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 21.59 181.61 0)
  3654. (effects (font (size 1.27 1.27)) hide)
  3655. )
  3656. (property "Datasheet" "~" (id 3) (at 21.59 181.61 0)
  3657. (effects (font (size 1.27 1.27)) hide)
  3658. )
  3659. (pin "1" (uuid c63e6346-30bc-4a75-8ce0-332575bbadf6))
  3660. (pin "2" (uuid 82117aad-5819-40c6-9dae-f51d791a04d0))
  3661. )
  3662. (symbol (lib_id "power:GND") (at 232.41 156.21 0) (unit 1)
  3663. (in_bom yes) (on_board yes)
  3664. (uuid 7c844036-6f36-4e17-b695-597632aabb88)
  3665. (property "Reference" "#PWR0222" (id 0) (at 232.41 162.56 0)
  3666. (effects (font (size 1.27 1.27)) hide)
  3667. )
  3668. (property "Value" "GND" (id 1) (at 232.537 160.6042 0))
  3669. (property "Footprint" "" (id 2) (at 232.41 156.21 0)
  3670. (effects (font (size 1.27 1.27)) hide)
  3671. )
  3672. (property "Datasheet" "" (id 3) (at 232.41 156.21 0)
  3673. (effects (font (size 1.27 1.27)) hide)
  3674. )
  3675. (pin "1" (uuid aa4b3851-53c7-42b3-a55f-f7aad275175e))
  3676. )
  3677. (symbol (lib_id "Device:R") (at 168.91 77.47 180) (unit 1)
  3678. (in_bom yes) (on_board yes)
  3679. (uuid 7c9156f6-52a9-4a2b-855f-c1b97af13ee3)
  3680. (property "Reference" "R70" (id 0) (at 170.688 76.3016 0)
  3681. (effects (font (size 1.27 1.27)) (justify right))
  3682. )
  3683. (property "Value" "2k" (id 1) (at 170.688 78.613 0)
  3684. (effects (font (size 1.27 1.27)) (justify right))
  3685. )
  3686. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 170.688 77.47 90)
  3687. (effects (font (size 1.27 1.27)) hide)
  3688. )
  3689. (property "Datasheet" "~" (id 3) (at 168.91 77.47 0)
  3690. (effects (font (size 1.27 1.27)) hide)
  3691. )
  3692. (pin "1" (uuid 5b3e3061-3e1f-4871-9747-9aa5e7fb2a7e))
  3693. (pin "2" (uuid 7555d51e-d4be-410d-8b02-4fba2d808dba))
  3694. )
  3695. (symbol (lib_id "Device:C") (at 148.59 185.42 180) (unit 1)
  3696. (in_bom yes) (on_board yes)
  3697. (uuid 7da573c9-2ed3-46bd-9520-ce143e314f93)
  3698. (property "Reference" "C65" (id 0) (at 151.511 184.2516 0)
  3699. (effects (font (size 1.27 1.27)) (justify right))
  3700. )
  3701. (property "Value" "3.3u" (id 1) (at 151.511 186.563 0)
  3702. (effects (font (size 1.27 1.27)) (justify right))
  3703. )
  3704. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 147.6248 181.61 0)
  3705. (effects (font (size 1.27 1.27)) hide)
  3706. )
  3707. (property "Datasheet" "~" (id 3) (at 148.59 185.42 0)
  3708. (effects (font (size 1.27 1.27)) hide)
  3709. )
  3710. (pin "1" (uuid 8622a3df-302b-4a9d-8e32-722512ac5de6))
  3711. (pin "2" (uuid 6f6e6b04-7157-48cc-9171-e7e00a10db6c))
  3712. )
  3713. (symbol (lib_id "AnalogFluxReader-rescue:AD9235BR-ad9235") (at 125.73 57.15 0) (unit 1)
  3714. (in_bom yes) (on_board yes)
  3715. (uuid 88b45647-4a30-4371-8202-00f0cba17aa0)
  3716. (property "Reference" "U15" (id 0) (at 128.27 30.48 0))
  3717. (property "Value" "AD9235BR" (id 1) (at 132.08 33.02 0))
  3718. (property "Footprint" "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm" (id 2) (at 111.76 57.15 0)
  3719. (effects (font (size 1.27 1.27)) hide)
  3720. )
  3721. (property "Datasheet" "" (id 3) (at 111.76 57.15 0)
  3722. (effects (font (size 1.27 1.27)) hide)
  3723. )
  3724. (pin "1" (uuid 70e8d5ab-b105-4f19-864f-337ebfe9ca88))
  3725. (pin "10" (uuid 03799776-4323-46ce-9dcb-7d94dd9f75cd))
  3726. (pin "11" (uuid 91210497-91ce-45b5-bb50-5d9b860d782b))
  3727. (pin "12" (uuid 501bd998-3688-474f-9b24-4394804eab9f))
  3728. (pin "13" (uuid 7e9cc2bc-9d4a-44c8-9ddf-2ad218fe11d5))
  3729. (pin "14" (uuid 74e606c4-24a2-4a53-999c-2e5da91d1508))
  3730. (pin "15" (uuid bdd9ff82-48f4-4def-b8ba-001aa681823c))
  3731. (pin "16" (uuid 9ce0d460-3ff1-464c-b3af-910c3cff3c34))
  3732. (pin "17" (uuid c55c7f39-d4ff-41b9-b820-ec45b9b3caa5))
  3733. (pin "18" (uuid 866cc43c-92b3-4020-acb1-58fe84b0ec88))
  3734. (pin "19" (uuid 7d0b6438-0a0d-42f4-8508-3202aaa4b2db))
  3735. (pin "2" (uuid 4aa96a9f-6b14-42a9-83be-d6be5852f31e))
  3736. (pin "20" (uuid 3c08add0-1884-4a50-932a-ddc36919eb54))
  3737. (pin "21" (uuid 4aadaf4a-dfb6-430e-9ce2-c852317b61ad))
  3738. (pin "22" (uuid 234a2c3d-8f5b-4807-a1ce-0ec84d3096c6))
  3739. (pin "23" (uuid cd4ef58f-416b-4a7e-8d6f-0dba18db77c4))
  3740. (pin "24" (uuid ee8d87b5-8076-4607-aa0d-d188497ea96d))
  3741. (pin "25" (uuid 1a113d33-d6ad-4b3e-ba30-fdb4a8db2a8a))
  3742. (pin "26" (uuid e4a1be57-4159-4c6b-9951-87e1d5781010))
  3743. (pin "27" (uuid 062be8b5-1fe1-4c54-9524-0165750bf97a))
  3744. (pin "28" (uuid 85a5668c-71f0-4b39-a07b-d9009820de81))
  3745. (pin "3" (uuid a46d19ae-4278-4bc6-b154-aedcd5e19ce3))
  3746. (pin "4" (uuid bc95273d-07cd-406c-8c72-61b77bfaf526))
  3747. (pin "5" (uuid 640c1cb6-079f-4292-bfc7-d49fc2115641))
  3748. (pin "6" (uuid a955775b-da66-4bd0-9c62-192e218a7119))
  3749. (pin "7" (uuid c50ca0e4-453d-4dac-a954-f6a1ea2b1484))
  3750. (pin "8" (uuid 9b401a9b-1f30-47bb-a7ed-49096c6dc057))
  3751. (pin "9" (uuid 3df4570b-4c8f-43ad-b4e6-b6e546d8957d))
  3752. )
  3753. (symbol (lib_id "power:+3V3") (at 222.25 60.96 0) (unit 1)
  3754. (in_bom yes) (on_board yes)
  3755. (uuid 8c5d3747-72d7-4d3e-8e12-082dba65a14c)
  3756. (property "Reference" "#PWR0230" (id 0) (at 222.25 64.77 0)
  3757. (effects (font (size 1.27 1.27)) hide)
  3758. )
  3759. (property "Value" "+3V3" (id 1) (at 222.631 56.5658 0))
  3760. (property "Footprint" "" (id 2) (at 222.25 60.96 0)
  3761. (effects (font (size 1.27 1.27)) hide)
  3762. )
  3763. (property "Datasheet" "" (id 3) (at 222.25 60.96 0)
  3764. (effects (font (size 1.27 1.27)) hide)
  3765. )
  3766. (pin "1" (uuid ecb36362-ead8-4ac9-8877-9b42569bd8b3))
  3767. )
  3768. (symbol (lib_id "Device:C") (at 53.34 184.15 0) (unit 1)
  3769. (in_bom yes) (on_board yes)
  3770. (uuid 90ec0fa0-8653-4b41-aa06-80c30336e014)
  3771. (property "Reference" "C58" (id 0) (at 56.261 182.9816 0)
  3772. (effects (font (size 1.27 1.27)) (justify left))
  3773. )
  3774. (property "Value" "100n" (id 1) (at 56.261 185.293 0)
  3775. (effects (font (size 1.27 1.27)) (justify left))
  3776. )
  3777. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 54.3052 187.96 0)
  3778. (effects (font (size 1.27 1.27)) hide)
  3779. )
  3780. (property "Datasheet" "~" (id 3) (at 53.34 184.15 0)
  3781. (effects (font (size 1.27 1.27)) hide)
  3782. )
  3783. (pin "1" (uuid 446ccf02-33e4-4167-8ea8-d0e8f9510b21))
  3784. (pin "2" (uuid 75b200d2-b24b-4a42-8f47-b1d381f10ed0))
  3785. )
  3786. (symbol (lib_id "Device:C") (at 160.02 185.42 0) (unit 1)
  3787. (in_bom yes) (on_board yes)
  3788. (uuid 925eea5a-795f-4716-bbbb-1e1b6a567a73)
  3789. (property "Reference" "C68" (id 0) (at 162.941 184.2516 0)
  3790. (effects (font (size 1.27 1.27)) (justify left))
  3791. )
  3792. (property "Value" "100n" (id 1) (at 162.941 186.563 0)
  3793. (effects (font (size 1.27 1.27)) (justify left))
  3794. )
  3795. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 160.9852 189.23 0)
  3796. (effects (font (size 1.27 1.27)) hide)
  3797. )
  3798. (property "Datasheet" "~" (id 3) (at 160.02 185.42 0)
  3799. (effects (font (size 1.27 1.27)) hide)
  3800. )
  3801. (pin "1" (uuid a936a2ad-0727-44c1-a6ad-b6a111289f80))
  3802. (pin "2" (uuid 82cd93d7-3fd7-492d-98fb-651fb0fa1b29))
  3803. )
  3804. (symbol (lib_id "power:GND") (at 129.54 87.63 0) (unit 1)
  3805. (in_bom yes) (on_board yes)
  3806. (uuid 94c7b6b8-12f7-4936-a936-7dc672feb5ee)
  3807. (property "Reference" "#PWR0201" (id 0) (at 129.54 93.98 0)
  3808. (effects (font (size 1.27 1.27)) hide)
  3809. )
  3810. (property "Value" "GND" (id 1) (at 129.667 92.0242 0))
  3811. (property "Footprint" "" (id 2) (at 129.54 87.63 0)
  3812. (effects (font (size 1.27 1.27)) hide)
  3813. )
  3814. (property "Datasheet" "" (id 3) (at 129.54 87.63 0)
  3815. (effects (font (size 1.27 1.27)) hide)
  3816. )
  3817. (pin "1" (uuid fbc43b96-219b-4612-9d84-2ddb7a3d9582))
  3818. )
  3819. (symbol (lib_id "74xx:74LS163") (at 43.18 116.84 0) (unit 1)
  3820. (in_bom yes) (on_board yes)
  3821. (uuid 9586c395-7bca-4812-a304-44d9794c0a71)
  3822. (property "Reference" "U11" (id 0) (at 48.26 97.79 0))
  3823. (property "Value" "74AC163" (id 1) (at 34.29 96.52 0))
  3824. (property "Footprint" "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (id 2) (at 43.18 116.84 0)
  3825. (effects (font (size 1.27 1.27)) hide)
  3826. )
  3827. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS163" (id 3) (at 43.18 116.84 0)
  3828. (effects (font (size 1.27 1.27)) hide)
  3829. )
  3830. (pin "1" (uuid b42a4c99-b296-4177-878f-5107ff828daf))
  3831. (pin "10" (uuid 410be6d8-aa9b-435d-8634-1f4088d4c0f6))
  3832. (pin "11" (uuid a7a0de50-95cc-4022-a593-47c363a0fd9e))
  3833. (pin "12" (uuid f1ae21fd-078e-45a7-9f41-17e8206a8bd3))
  3834. (pin "13" (uuid 6cf2a386-20e2-4760-9efd-73370e918d8d))
  3835. (pin "14" (uuid 99d63f43-a6e6-4030-9d6f-02e18d6d99ee))
  3836. (pin "15" (uuid f1d88179-889b-417b-b22f-94e6dbe051f8))
  3837. (pin "16" (uuid 58f3d898-f3e1-4567-ab06-9fc26b82d01c))
  3838. (pin "2" (uuid 1bd170c0-ab92-44eb-834b-1aa583c746b6))
  3839. (pin "3" (uuid e46eedc5-60cc-4025-97bb-ce737a681acb))
  3840. (pin "4" (uuid 983268e0-91fc-49c3-b734-8fdc99ac90fc))
  3841. (pin "5" (uuid 8dc99835-e174-4acf-a084-87211831bb47))
  3842. (pin "6" (uuid 9d8139fb-eed0-40d7-a841-766c2ca36d4a))
  3843. (pin "7" (uuid 69f0d692-390e-457d-a2d9-b79061905565))
  3844. (pin "8" (uuid aafd2e4e-d01c-42aa-8afd-02b0300289be))
  3845. (pin "9" (uuid e3afefa6-ca21-4368-859c-97df086ca016))
  3846. )
  3847. (symbol (lib_id "Device:C") (at 156.21 50.8 180) (unit 1)
  3848. (in_bom yes) (on_board yes)
  3849. (uuid 9ab79c72-a815-4fd5-bbaf-5a52783d05ce)
  3850. (property "Reference" "C66" (id 0) (at 159.131 49.6316 0)
  3851. (effects (font (size 1.27 1.27)) (justify right))
  3852. )
  3853. (property "Value" "100n" (id 1) (at 159.131 51.943 0)
  3854. (effects (font (size 1.27 1.27)) (justify right))
  3855. )
  3856. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 155.2448 46.99 0)
  3857. (effects (font (size 1.27 1.27)) hide)
  3858. )
  3859. (property "Datasheet" "~" (id 3) (at 156.21 50.8 0)
  3860. (effects (font (size 1.27 1.27)) hide)
  3861. )
  3862. (pin "1" (uuid fc18ea79-2273-422c-92b8-ecff344a19d6))
  3863. (pin "2" (uuid 93241bf1-6ce0-4a2d-86b4-2c87bc880049))
  3864. )
  3865. (symbol (lib_id "Device:C") (at 133.35 171.45 270) (unit 1)
  3866. (in_bom yes) (on_board yes)
  3867. (uuid 9feecfcf-7d25-40cf-ad2d-488769ee4aad)
  3868. (property "Reference" "C62" (id 0) (at 133.35 165.0492 90))
  3869. (property "Value" "3.3u" (id 1) (at 133.35 167.3606 90))
  3870. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 129.54 172.4152 0)
  3871. (effects (font (size 1.27 1.27)) hide)
  3872. )
  3873. (property "Datasheet" "~" (id 3) (at 133.35 171.45 0)
  3874. (effects (font (size 1.27 1.27)) hide)
  3875. )
  3876. (pin "1" (uuid ecf81949-fcc3-4ccd-a6af-11d2b1fc7b77))
  3877. (pin "2" (uuid 0dc9b52d-f09a-4f62-91cd-b7501164c2e6))
  3878. )
  3879. (symbol (lib_id "power:GNDA") (at 92.71 76.2 0) (unit 1)
  3880. (in_bom yes) (on_board yes)
  3881. (uuid a3aeb7d3-55b8-43c9-8d53-5192d486c987)
  3882. (property "Reference" "#PWR0244" (id 0) (at 92.71 82.55 0)
  3883. (effects (font (size 1.27 1.27)) hide)
  3884. )
  3885. (property "Value" "GNDA" (id 1) (at 92.837 80.5942 0))
  3886. (property "Footprint" "" (id 2) (at 92.71 76.2 0)
  3887. (effects (font (size 1.27 1.27)) hide)
  3888. )
  3889. (property "Datasheet" "" (id 3) (at 92.71 76.2 0)
  3890. (effects (font (size 1.27 1.27)) hide)
  3891. )
  3892. (pin "1" (uuid a2e4ac2d-7d7a-43cc-9059-c4f5119a5671))
  3893. )
  3894. (symbol (lib_id "power:GND") (at 59.69 133.35 0) (unit 1)
  3895. (in_bom yes) (on_board yes)
  3896. (uuid a4c2994a-f2b8-40a2-9012-39650e495681)
  3897. (property "Reference" "#PWR0209" (id 0) (at 59.69 139.7 0)
  3898. (effects (font (size 1.27 1.27)) hide)
  3899. )
  3900. (property "Value" "GND" (id 1) (at 59.817 137.7442 0))
  3901. (property "Footprint" "" (id 2) (at 59.69 133.35 0)
  3902. (effects (font (size 1.27 1.27)) hide)
  3903. )
  3904. (property "Datasheet" "" (id 3) (at 59.69 133.35 0)
  3905. (effects (font (size 1.27 1.27)) hide)
  3906. )
  3907. (pin "1" (uuid de7461e5-e5fb-49f1-9f21-0d215728cde9))
  3908. )
  3909. (symbol (lib_id "power:GND") (at 250.19 85.09 0) (unit 1)
  3910. (in_bom yes) (on_board yes)
  3911. (uuid a665130b-e302-44e2-9cfa-38718c591d2b)
  3912. (property "Reference" "#PWR0229" (id 0) (at 250.19 91.44 0)
  3913. (effects (font (size 1.27 1.27)) hide)
  3914. )
  3915. (property "Value" "GND" (id 1) (at 250.317 89.4842 0))
  3916. (property "Footprint" "" (id 2) (at 250.19 85.09 0)
  3917. (effects (font (size 1.27 1.27)) hide)
  3918. )
  3919. (property "Datasheet" "" (id 3) (at 250.19 85.09 0)
  3920. (effects (font (size 1.27 1.27)) hide)
  3921. )
  3922. (pin "1" (uuid a72b6e9e-cccc-4cdd-851f-866ffde0e315))
  3923. )
  3924. (symbol (lib_id "power:GND") (at 100.33 181.61 0) (unit 1)
  3925. (in_bom yes) (on_board yes)
  3926. (uuid ae23faac-f730-4d4b-a62c-3c8216cd43d3)
  3927. (property "Reference" "#PWR0197" (id 0) (at 100.33 187.96 0)
  3928. (effects (font (size 1.27 1.27)) hide)
  3929. )
  3930. (property "Value" "GND" (id 1) (at 100.457 186.0042 0))
  3931. (property "Footprint" "" (id 2) (at 100.33 181.61 0)
  3932. (effects (font (size 1.27 1.27)) hide)
  3933. )
  3934. (property "Datasheet" "" (id 3) (at 100.33 181.61 0)
  3935. (effects (font (size 1.27 1.27)) hide)
  3936. )
  3937. (pin "1" (uuid 4b26d7a2-26dc-45b6-9857-d9fb35dd9be8))
  3938. )
  3939. (symbol (lib_id "power:GNDA") (at 160.02 191.77 0) (unit 1)
  3940. (in_bom yes) (on_board yes)
  3941. (uuid afd73b04-2192-40bd-8db9-ed6a8da0032a)
  3942. (property "Reference" "#PWR0207" (id 0) (at 160.02 198.12 0)
  3943. (effects (font (size 1.27 1.27)) hide)
  3944. )
  3945. (property "Value" "GNDA" (id 1) (at 160.147 196.1642 0))
  3946. (property "Footprint" "" (id 2) (at 160.02 191.77 0)
  3947. (effects (font (size 1.27 1.27)) hide)
  3948. )
  3949. (property "Datasheet" "" (id 3) (at 160.02 191.77 0)
  3950. (effects (font (size 1.27 1.27)) hide)
  3951. )
  3952. (pin "1" (uuid 3bd60a9f-e56e-44e9-8665-66368db6b27a))
  3953. )
  3954. (symbol (lib_id "Device:R") (at 102.87 30.48 180) (unit 1)
  3955. (in_bom yes) (on_board yes)
  3956. (uuid b4981be0-4d5c-4698-bfe3-c33355328d33)
  3957. (property "Reference" "R63" (id 0) (at 104.648 29.3116 0)
  3958. (effects (font (size 1.27 1.27)) (justify right))
  3959. )
  3960. (property "Value" "2k" (id 1) (at 104.648 31.623 0)
  3961. (effects (font (size 1.27 1.27)) (justify right))
  3962. )
  3963. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 104.648 30.48 90)
  3964. (effects (font (size 1.27 1.27)) hide)
  3965. )
  3966. (property "Datasheet" "~" (id 3) (at 102.87 30.48 0)
  3967. (effects (font (size 1.27 1.27)) hide)
  3968. )
  3969. (pin "1" (uuid 74e7f55d-8bef-4769-a557-60b4472867c1))
  3970. (pin "2" (uuid 30ed9266-7e77-463a-9f92-a333601be4ac))
  3971. )
  3972. (symbol (lib_id "Connector:Conn_01x01_Male") (at 19.05 46.99 0) (unit 1)
  3973. (in_bom yes) (on_board yes)
  3974. (uuid b757ad62-d657-4655-b583-938f706b9e77)
  3975. (property "Reference" "J13" (id 0) (at 21.7424 42.4688 0))
  3976. (property "Value" "FLOPPY+" (id 1) (at 21.7424 44.7802 0))
  3977. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 19.05 46.99 0)
  3978. (effects (font (size 1.27 1.27)) hide)
  3979. )
  3980. (property "Datasheet" "~" (id 3) (at 19.05 46.99 0)
  3981. (effects (font (size 1.27 1.27)) hide)
  3982. )
  3983. (pin "1" (uuid 53eed43d-730f-4d93-9692-2440a7463d3b))
  3984. )
  3985. (symbol (lib_id "Connector_Generic:Conn_02x10_Odd_Even") (at 193.04 80.01 0) (unit 1)
  3986. (in_bom yes) (on_board yes)
  3987. (uuid b7d99819-0bde-47e5-8189-1bc3f0c61a27)
  3988. (property "Reference" "J17" (id 0) (at 194.31 64.3382 0))
  3989. (property "Value" "Conn_02x10_Odd_Even" (id 1) (at 194.31 66.6496 0))
  3990. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical" (id 2) (at 193.04 80.01 0)
  3991. (effects (font (size 1.27 1.27)) hide)
  3992. )
  3993. (property "Datasheet" "~" (id 3) (at 193.04 80.01 0)
  3994. (effects (font (size 1.27 1.27)) hide)
  3995. )
  3996. (pin "1" (uuid fe05c57e-8a83-4e60-89b9-c83a305267bb))
  3997. (pin "10" (uuid 50066b48-e65c-466d-bbf8-fc86243c8544))
  3998. (pin "11" (uuid d78fec5c-dc91-4f30-a913-bac4be58291d))
  3999. (pin "12" (uuid 1bb8a3a2-1d6a-4378-b5a0-f104e0efe83d))
  4000. (pin "13" (uuid b69f66db-d816-47c7-9dd5-99717222fa6a))
  4001. (pin "14" (uuid 0a81172d-6ad8-401a-a57a-cbd277dac9e3))
  4002. (pin "15" (uuid d281cf77-e0da-4502-8298-2bcfcc9504bf))
  4003. (pin "16" (uuid adea444e-fab2-43f8-b57b-1a00a18c0486))
  4004. (pin "17" (uuid 561a51dc-1d42-4198-a8d2-3d7467c8d80f))
  4005. (pin "18" (uuid aedec390-60f5-4db8-8896-7ed6b3af9c4b))
  4006. (pin "19" (uuid ffedb336-59f9-4f39-b3b6-c6f99406cfc3))
  4007. (pin "2" (uuid 21f49f3c-b8b7-47d0-a210-c299417b8b9e))
  4008. (pin "20" (uuid 0e9809ea-0378-4a70-a90f-78df369c787a))
  4009. (pin "3" (uuid 84e4e421-0af4-4512-b106-e9cd21fc0d33))
  4010. (pin "4" (uuid e786ee46-b8ca-4edc-90d8-3a44d177dcca))
  4011. (pin "5" (uuid 265d7294-cd29-4644-b83d-70cafe166a7d))
  4012. (pin "6" (uuid 021fbb96-a4fe-4453-858d-94b757eef927))
  4013. (pin "7" (uuid b2f7ee18-7f8b-4eec-a46f-b3c3aa807023))
  4014. (pin "8" (uuid 9743fa08-ac24-4f89-9367-296d243403eb))
  4015. (pin "9" (uuid 2a9e24a2-4132-4b2d-b350-712d335e8429))
  4016. )
  4017. (symbol (lib_id "power:+3V3") (at 102.87 19.05 0) (unit 1)
  4018. (in_bom yes) (on_board yes)
  4019. (uuid b8258162-88b0-4f4d-8180-41d50177f4d6)
  4020. (property "Reference" "#PWR0239" (id 0) (at 102.87 22.86 0)
  4021. (effects (font (size 1.27 1.27)) hide)
  4022. )
  4023. (property "Value" "+3V3" (id 1) (at 103.251 14.6558 0))
  4024. (property "Footprint" "" (id 2) (at 102.87 19.05 0)
  4025. (effects (font (size 1.27 1.27)) hide)
  4026. )
  4027. (property "Datasheet" "" (id 3) (at 102.87 19.05 0)
  4028. (effects (font (size 1.27 1.27)) hide)
  4029. )
  4030. (pin "1" (uuid 12fe1a12-bab9-4c38-b58d-a18ac94dc37f))
  4031. )
  4032. (symbol (lib_id "power:GNDA") (at 74.93 72.39 0) (unit 1)
  4033. (in_bom yes) (on_board yes)
  4034. (uuid b9908ee4-2959-4eaf-a1e7-a2f3914d7ae8)
  4035. (property "Reference" "#PWR0234" (id 0) (at 74.93 78.74 0)
  4036. (effects (font (size 1.27 1.27)) hide)
  4037. )
  4038. (property "Value" "GNDA" (id 1) (at 75.057 76.7842 0))
  4039. (property "Footprint" "" (id 2) (at 74.93 72.39 0)
  4040. (effects (font (size 1.27 1.27)) hide)
  4041. )
  4042. (property "Datasheet" "" (id 3) (at 74.93 72.39 0)
  4043. (effects (font (size 1.27 1.27)) hide)
  4044. )
  4045. (pin "1" (uuid e156f821-facc-4435-829d-4b2d5a4fe0ff))
  4046. )
  4047. (symbol (lib_id "power:GND") (at 90.17 191.77 0) (unit 1)
  4048. (in_bom yes) (on_board yes)
  4049. (uuid b9a5576a-8f1f-407b-8db8-2597d5ccf48b)
  4050. (property "Reference" "#PWR0198" (id 0) (at 90.17 198.12 0)
  4051. (effects (font (size 1.27 1.27)) hide)
  4052. )
  4053. (property "Value" "GND" (id 1) (at 90.297 196.1642 0))
  4054. (property "Footprint" "" (id 2) (at 90.17 191.77 0)
  4055. (effects (font (size 1.27 1.27)) hide)
  4056. )
  4057. (property "Datasheet" "" (id 3) (at 90.17 191.77 0)
  4058. (effects (font (size 1.27 1.27)) hide)
  4059. )
  4060. (pin "1" (uuid e00139d5-5193-45ae-ba35-842cff58a2ff))
  4061. )
  4062. (symbol (lib_id "power:GNDA") (at 168.91 54.61 0) (unit 1)
  4063. (in_bom yes) (on_board yes)
  4064. (uuid baa41b16-fe89-4046-aead-081c4c338957)
  4065. (property "Reference" "#PWR0213" (id 0) (at 168.91 60.96 0)
  4066. (effects (font (size 1.27 1.27)) hide)
  4067. )
  4068. (property "Value" "GNDA" (id 1) (at 169.037 59.0042 0))
  4069. (property "Footprint" "" (id 2) (at 168.91 54.61 0)
  4070. (effects (font (size 1.27 1.27)) hide)
  4071. )
  4072. (property "Datasheet" "" (id 3) (at 168.91 54.61 0)
  4073. (effects (font (size 1.27 1.27)) hide)
  4074. )
  4075. (pin "1" (uuid d2d3b3ef-7530-473f-9bcd-b7730a7ad41a))
  4076. )
  4077. (symbol (lib_id "power:PWR_FLAG") (at 213.36 31.75 0) (unit 1)
  4078. (in_bom yes) (on_board yes)
  4079. (uuid bee5ac13-8a67-409a-befa-2731b896991f)
  4080. (property "Reference" "#FLG0105" (id 0) (at 213.36 29.845 0)
  4081. (effects (font (size 1.27 1.27)) hide)
  4082. )
  4083. (property "Value" "PWR_FLAG" (id 1) (at 213.36 27.3304 0))
  4084. (property "Footprint" "" (id 2) (at 213.36 31.75 0)
  4085. (effects (font (size 1.27 1.27)) hide)
  4086. )
  4087. (property "Datasheet" "~" (id 3) (at 213.36 31.75 0)
  4088. (effects (font (size 1.27 1.27)) hide)
  4089. )
  4090. (pin "1" (uuid 6b0ffe5f-227d-4beb-9a19-5aafa7c55a2d))
  4091. )
  4092. (symbol (lib_id "Device:C") (at 269.24 25.4 0) (unit 1)
  4093. (in_bom yes) (on_board yes)
  4094. (uuid c1ece6f3-56b2-4b3c-8010-0bf545396a69)
  4095. (property "Reference" "C70" (id 0) (at 272.161 24.2316 0)
  4096. (effects (font (size 1.27 1.27)) (justify left))
  4097. )
  4098. (property "Value" "100n" (id 1) (at 272.161 26.543 0)
  4099. (effects (font (size 1.27 1.27)) (justify left))
  4100. )
  4101. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 270.2052 29.21 0)
  4102. (effects (font (size 1.27 1.27)) hide)
  4103. )
  4104. (property "Datasheet" "~" (id 3) (at 269.24 25.4 0)
  4105. (effects (font (size 1.27 1.27)) hide)
  4106. )
  4107. (pin "1" (uuid 64d8f330-3ee2-4342-ac06-51b9a38d0fa9))
  4108. (pin "2" (uuid 730929b8-f018-4b08-a801-d2c510135e35))
  4109. )
  4110. (symbol (lib_id "power:PWR_FLAG") (at 184.15 21.59 0) (unit 1)
  4111. (in_bom yes) (on_board yes)
  4112. (uuid c28eea51-5486-4353-8d68-2ab32a371581)
  4113. (property "Reference" "#FLG0104" (id 0) (at 184.15 19.685 0)
  4114. (effects (font (size 1.27 1.27)) hide)
  4115. )
  4116. (property "Value" "PWR_FLAG" (id 1) (at 184.15 17.1704 0))
  4117. (property "Footprint" "" (id 2) (at 184.15 21.59 0)
  4118. (effects (font (size 1.27 1.27)) hide)
  4119. )
  4120. (property "Datasheet" "~" (id 3) (at 184.15 21.59 0)
  4121. (effects (font (size 1.27 1.27)) hide)
  4122. )
  4123. (pin "1" (uuid 2e9d2609-af18-444b-b954-a9ebd1518ddf))
  4124. )
  4125. (symbol (lib_id "Connector:Conn_01x01_Male") (at 19.05 52.07 0) (unit 1)
  4126. (in_bom yes) (on_board yes)
  4127. (uuid c44eb0b7-9260-4b83-a166-21f9ddc296fb)
  4128. (property "Reference" "J14" (id 0) (at 21.7424 47.5488 0))
  4129. (property "Value" "FLOPPY-GND" (id 1) (at 21.7424 49.8602 0))
  4130. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (id 2) (at 19.05 52.07 0)
  4131. (effects (font (size 1.27 1.27)) hide)
  4132. )
  4133. (property "Datasheet" "~" (id 3) (at 19.05 52.07 0)
  4134. (effects (font (size 1.27 1.27)) hide)
  4135. )
  4136. (pin "1" (uuid 0c9e6899-45d8-476c-bc75-d2755ba6195c))
  4137. )
  4138. (symbol (lib_id "power:+3V3") (at 43.18 93.98 0) (unit 1)
  4139. (in_bom yes) (on_board yes)
  4140. (uuid c59259b4-d3ce-41f9-80e1-a32c466c5723)
  4141. (property "Reference" "#PWR0251" (id 0) (at 43.18 97.79 0)
  4142. (effects (font (size 1.27 1.27)) hide)
  4143. )
  4144. (property "Value" "+3V3" (id 1) (at 43.561 89.5858 0))
  4145. (property "Footprint" "" (id 2) (at 43.18 93.98 0)
  4146. (effects (font (size 1.27 1.27)) hide)
  4147. )
  4148. (property "Datasheet" "" (id 3) (at 43.18 93.98 0)
  4149. (effects (font (size 1.27 1.27)) hide)
  4150. )
  4151. (pin "1" (uuid 5c910b36-707f-446a-9e93-3d58d200a423))
  4152. )
  4153. (symbol (lib_id "power:GND") (at 102.87 34.29 0) (unit 1)
  4154. (in_bom yes) (on_board yes)
  4155. (uuid c9319b83-cc89-49ae-bb43-b86703b863eb)
  4156. (property "Reference" "#PWR0238" (id 0) (at 102.87 40.64 0)
  4157. (effects (font (size 1.27 1.27)) hide)
  4158. )
  4159. (property "Value" "GND" (id 1) (at 102.997 38.6842 0))
  4160. (property "Footprint" "" (id 2) (at 102.87 34.29 0)
  4161. (effects (font (size 1.27 1.27)) hide)
  4162. )
  4163. (property "Datasheet" "" (id 3) (at 102.87 34.29 0)
  4164. (effects (font (size 1.27 1.27)) hide)
  4165. )
  4166. (pin "1" (uuid 47e15088-6780-4ffe-a8ff-3e7bfcbd7323))
  4167. )
  4168. (symbol (lib_id "Device:R") (at 36.83 46.99 270) (unit 1)
  4169. (in_bom yes) (on_board yes)
  4170. (uuid cd7ebafb-fcbb-4229-adc5-b9407a585ed9)
  4171. (property "Reference" "R56" (id 0) (at 36.83 41.7322 90))
  4172. (property "Value" "1k" (id 1) (at 36.83 44.0436 90))
  4173. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 45.212 90)
  4174. (effects (font (size 1.27 1.27)) hide)
  4175. )
  4176. (property "Datasheet" "~" (id 3) (at 36.83 46.99 0)
  4177. (effects (font (size 1.27 1.27)) hide)
  4178. )
  4179. (pin "1" (uuid ee7a25a3-9d91-4fe4-be8f-5b9b4e60e7ea))
  4180. (pin "2" (uuid 609120b5-f05e-4dd7-b792-e4bc12bf4a92))
  4181. )
  4182. (symbol (lib_id "power:GND") (at 88.9 144.78 0) (unit 1)
  4183. (in_bom yes) (on_board yes)
  4184. (uuid cf8f61b9-4823-42dc-bcf3-768358e910d2)
  4185. (property "Reference" "#PWR0185" (id 0) (at 88.9 151.13 0)
  4186. (effects (font (size 1.27 1.27)) hide)
  4187. )
  4188. (property "Value" "GND" (id 1) (at 89.027 149.1742 0))
  4189. (property "Footprint" "" (id 2) (at 88.9 144.78 0)
  4190. (effects (font (size 1.27 1.27)) hide)
  4191. )
  4192. (property "Datasheet" "" (id 3) (at 88.9 144.78 0)
  4193. (effects (font (size 1.27 1.27)) hide)
  4194. )
  4195. (pin "1" (uuid c1628a2a-4478-4e44-8747-165c741d40e8))
  4196. )
  4197. (symbol (lib_id "Device:L") (at 142.24 179.07 90) (unit 1)
  4198. (in_bom yes) (on_board yes)
  4199. (uuid cff86929-ce63-4508-8edc-a0fb9eb66289)
  4200. (property "Reference" "L4" (id 0) (at 142.24 174.244 90))
  4201. (property "Value" "100u" (id 1) (at 142.24 176.5554 90))
  4202. (property "Footprint" "AnalogFluxReader:1007" (id 2) (at 142.24 179.07 0)
  4203. (effects (font (size 1.27 1.27)) hide)
  4204. )
  4205. (property "Datasheet" "~" (id 3) (at 142.24 179.07 0)
  4206. (effects (font (size 1.27 1.27)) hide)
  4207. )
  4208. (pin "1" (uuid c4f76870-2059-4614-aa38-10eb64d8992c))
  4209. (pin "2" (uuid ed73bde9-dfb9-41f9-9778-fdeb98714f32))
  4210. )
  4211. (symbol (lib_id "Device:C") (at 34.29 182.88 0) (unit 1)
  4212. (in_bom yes) (on_board yes)
  4213. (uuid d0e4d675-6dec-4855-84b2-3dd0bb949370)
  4214. (property "Reference" "C53" (id 0) (at 37.211 181.7116 0)
  4215. (effects (font (size 1.27 1.27)) (justify left))
  4216. )
  4217. (property "Value" "100n" (id 1) (at 37.211 184.023 0)
  4218. (effects (font (size 1.27 1.27)) (justify left))
  4219. )
  4220. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 35.2552 186.69 0)
  4221. (effects (font (size 1.27 1.27)) hide)
  4222. )
  4223. (property "Datasheet" "~" (id 3) (at 34.29 182.88 0)
  4224. (effects (font (size 1.27 1.27)) hide)
  4225. )
  4226. (pin "1" (uuid f8670335-ddce-4b21-bf12-ea4fb4691d97))
  4227. (pin "2" (uuid 740d42a4-c137-4bb8-862d-3560748efca8))
  4228. )
  4229. (symbol (lib_id "AnalogFluxReader-rescue:AD8138-ad8138") (at 78.74 48.26 0) (unit 1)
  4230. (in_bom yes) (on_board yes)
  4231. (uuid d24c061c-67bd-4714-97be-eb58b1700e60)
  4232. (property "Reference" "U12" (id 0) (at 78.74 34.925 0))
  4233. (property "Value" "AD8138" (id 1) (at 78.74 37.2364 0))
  4234. (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 71.12 60.96 0)
  4235. (effects (font (size 1.27 1.27)) (justify left) hide)
  4236. )
  4237. (property "Datasheet" "http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf" (id 3) (at 71.12 63.5 0)
  4238. (effects (font (size 1.27 1.27)) (justify left) hide)
  4239. )
  4240. (property "Farnell" "2725700" (id 4) (at 71.12 66.04 0)
  4241. (effects (font (size 1.27 1.27)) (justify left) hide)
  4242. )
  4243. (pin "1" (uuid aae09d49-963b-4e74-9c87-48398fa0bef4))
  4244. (pin "2" (uuid 3dde72c7-cb21-499a-94be-a0ae45941f3f))
  4245. (pin "3" (uuid 92552a7c-b5e6-4f2a-8df8-d82ba1a1de49))
  4246. (pin "4" (uuid 3aacc9f1-a937-4e2d-b46d-8825ccc0b345))
  4247. (pin "5" (uuid 81dd53eb-e070-4f67-b5b0-c807171dd4ef))
  4248. (pin "6" (uuid 48533a57-d9b4-4814-ac03-cbc1c5c4cba2))
  4249. (pin "7" (uuid bef7a174-50ef-4ad0-b38f-3c61c50175a2))
  4250. (pin "8" (uuid 86c15fc7-511a-4309-8b16-35ba2cae759b))
  4251. )
  4252. (symbol (lib_id "power:GND") (at 269.24 30.48 0) (unit 1)
  4253. (in_bom yes) (on_board yes)
  4254. (uuid d745bca1-c03b-4011-981e-f1918cd4e07d)
  4255. (property "Reference" "#PWR0231" (id 0) (at 269.24 36.83 0)
  4256. (effects (font (size 1.27 1.27)) hide)
  4257. )
  4258. (property "Value" "GND" (id 1) (at 269.367 34.8742 0))
  4259. (property "Footprint" "" (id 2) (at 269.24 30.48 0)
  4260. (effects (font (size 1.27 1.27)) hide)
  4261. )
  4262. (property "Datasheet" "" (id 3) (at 269.24 30.48 0)
  4263. (effects (font (size 1.27 1.27)) hide)
  4264. )
  4265. (pin "1" (uuid 5ad505b0-4588-4f3c-b97e-e2036d8f3143))
  4266. )
  4267. (symbol (lib_id "power:-3V3") (at 148.59 179.07 0) (unit 1)
  4268. (in_bom yes) (on_board yes)
  4269. (uuid d84ef48d-75f6-4f2a-bbb4-6b10fa08f99d)
  4270. (property "Reference" "#PWR0206" (id 0) (at 148.59 176.53 0)
  4271. (effects (font (size 1.27 1.27)) hide)
  4272. )
  4273. (property "Value" "-3V3" (id 1) (at 148.971 174.6758 0))
  4274. (property "Footprint" "" (id 2) (at 148.59 179.07 0)
  4275. (effects (font (size 1.27 1.27)) hide)
  4276. )
  4277. (property "Datasheet" "" (id 3) (at 148.59 179.07 0)
  4278. (effects (font (size 1.27 1.27)) hide)
  4279. )
  4280. (pin "1" (uuid d86e6062-0ed9-4cc8-90ca-316592b34f81))
  4281. )
  4282. (symbol (lib_id "power:GNDA") (at 34.29 189.23 0) (unit 1)
  4283. (in_bom yes) (on_board yes)
  4284. (uuid db86c91b-5306-439e-923d-f0a0603bec55)
  4285. (property "Reference" "#PWR0184" (id 0) (at 34.29 195.58 0)
  4286. (effects (font (size 1.27 1.27)) hide)
  4287. )
  4288. (property "Value" "GNDA" (id 1) (at 34.417 193.6242 0))
  4289. (property "Footprint" "" (id 2) (at 34.29 189.23 0)
  4290. (effects (font (size 1.27 1.27)) hide)
  4291. )
  4292. (property "Datasheet" "" (id 3) (at 34.29 189.23 0)
  4293. (effects (font (size 1.27 1.27)) hide)
  4294. )
  4295. (pin "1" (uuid 606576fe-8641-42eb-8d27-332abdc46dea))
  4296. )
  4297. (symbol (lib_id "Device:C") (at 62.23 119.38 0) (unit 1)
  4298. (in_bom yes) (on_board yes)
  4299. (uuid dc29d0c3-cbb5-49e0-98db-7646bf3cd511)
  4300. (property "Reference" "C50" (id 0) (at 65.151 118.2116 0)
  4301. (effects (font (size 1.27 1.27)) (justify left))
  4302. )
  4303. (property "Value" "100n" (id 1) (at 65.151 120.523 0)
  4304. (effects (font (size 1.27 1.27)) (justify left))
  4305. )
  4306. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 63.1952 123.19 0)
  4307. (effects (font (size 1.27 1.27)) hide)
  4308. )
  4309. (property "Datasheet" "~" (id 3) (at 62.23 119.38 0)
  4310. (effects (font (size 1.27 1.27)) hide)
  4311. )
  4312. (pin "1" (uuid 96c175ba-819a-4e71-babf-e629cb775c25))
  4313. (pin "2" (uuid 8116353a-56c9-49c0-a85d-0676bc8019f9))
  4314. )
  4315. (symbol (lib_id "Device:R") (at 36.83 57.15 270) (unit 1)
  4316. (in_bom yes) (on_board yes)
  4317. (uuid e12e12b8-bd55-4675-8170-62b4affa5540)
  4318. (property "Reference" "R57" (id 0) (at 36.83 51.8922 90))
  4319. (property "Value" "1k" (id 1) (at 36.83 54.2036 90))
  4320. (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 55.372 90)
  4321. (effects (font (size 1.27 1.27)) hide)
  4322. )
  4323. (property "Datasheet" "~" (id 3) (at 36.83 57.15 0)
  4324. (effects (font (size 1.27 1.27)) hide)
  4325. )
  4326. (pin "1" (uuid e8923134-79b9-4f55-abdc-4b01a39d9ff7))
  4327. (pin "2" (uuid fedc46c6-e739-4ed7-9661-4d8405b277d3))
  4328. )
  4329. (symbol (lib_id "power:+3.3VADC") (at 44.45 175.26 0) (unit 1)
  4330. (in_bom yes) (on_board yes)
  4331. (uuid e28a05db-55cf-4f3b-8a53-7501eb154f18)
  4332. (property "Reference" "#PWR0186" (id 0) (at 48.26 176.53 0)
  4333. (effects (font (size 1.27 1.27)) hide)
  4334. )
  4335. (property "Value" "+3.3VADC" (id 1) (at 44.958 171.6278 0))
  4336. (property "Footprint" "" (id 2) (at 44.45 175.26 0)
  4337. (effects (font (size 1.27 1.27)) hide)
  4338. )
  4339. (property "Datasheet" "" (id 3) (at 44.45 175.26 0)
  4340. (effects (font (size 1.27 1.27)) hide)
  4341. )
  4342. (pin "1" (uuid 7ec2d9ee-0697-404f-bdbc-3fd98652139d))
  4343. )
  4344. (symbol (lib_id "Device:R") (at 157.48 80.01 180) (unit 1)
  4345. (in_bom yes) (on_board yes)
  4346. (uuid e3707a21-6ca5-423f-8f0f-1a62676b6e1c)
  4347. (property "Reference" "R69" (id 0) (at 159.258 78.8416 0)
  4348. (effects (font (size 1.27 1.27)) (justify right))
  4349. )
  4350. (property "Value" "2k" (id 1) (at 159.258 81.153 0)
  4351. (effects (font (size 1.27 1.27)) (justify right))
  4352. )
  4353. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 159.258 80.01 90)
  4354. (effects (font (size 1.27 1.27)) hide)
  4355. )
  4356. (property "Datasheet" "~" (id 3) (at 157.48 80.01 0)
  4357. (effects (font (size 1.27 1.27)) hide)
  4358. )
  4359. (pin "1" (uuid 939551a0-6f15-4ae9-a02c-8fa50d2cf02f))
  4360. (pin "2" (uuid 29725df9-33e0-4b7d-91c2-1f6c81b54649))
  4361. )
  4362. (symbol (lib_id "power:GNDA") (at 148.59 191.77 0) (unit 1)
  4363. (in_bom yes) (on_board yes)
  4364. (uuid e3e9514b-c627-402f-a21c-4d0a6b9fdf24)
  4365. (property "Reference" "#PWR0205" (id 0) (at 148.59 198.12 0)
  4366. (effects (font (size 1.27 1.27)) hide)
  4367. )
  4368. (property "Value" "GNDA" (id 1) (at 148.717 196.1642 0))
  4369. (property "Footprint" "" (id 2) (at 148.59 191.77 0)
  4370. (effects (font (size 1.27 1.27)) hide)
  4371. )
  4372. (property "Datasheet" "" (id 3) (at 148.59 191.77 0)
  4373. (effects (font (size 1.27 1.27)) hide)
  4374. )
  4375. (pin "1" (uuid 4ebf8977-7504-4d78-8e27-cd643a1adc7b))
  4376. )
  4377. (symbol (lib_id "Device:R") (at 220.98 22.86 180) (unit 1)
  4378. (in_bom yes) (on_board yes)
  4379. (uuid e43d724d-755f-4c53-bfdd-9d99f3e9f37d)
  4380. (property "Reference" "R73" (id 0) (at 222.758 21.6916 0)
  4381. (effects (font (size 1.27 1.27)) (justify right))
  4382. )
  4383. (property "Value" "2k" (id 1) (at 222.758 24.003 0)
  4384. (effects (font (size 1.27 1.27)) (justify right))
  4385. )
  4386. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 222.758 22.86 90)
  4387. (effects (font (size 1.27 1.27)) hide)
  4388. )
  4389. (property "Datasheet" "~" (id 3) (at 220.98 22.86 0)
  4390. (effects (font (size 1.27 1.27)) hide)
  4391. )
  4392. (pin "1" (uuid f3cedc52-5b52-4fe3-aef0-14fd84e85aa9))
  4393. (pin "2" (uuid f4791b15-e44f-4ac4-896b-dd0f18cace77))
  4394. )
  4395. (symbol (lib_id "power:+3V3") (at 100.33 170.18 0) (unit 1)
  4396. (in_bom yes) (on_board yes)
  4397. (uuid e504f737-afa3-4e8f-813d-636cac6e64c2)
  4398. (property "Reference" "#PWR0196" (id 0) (at 100.33 173.99 0)
  4399. (effects (font (size 1.27 1.27)) hide)
  4400. )
  4401. (property "Value" "+3V3" (id 1) (at 100.711 165.7858 0))
  4402. (property "Footprint" "" (id 2) (at 100.33 170.18 0)
  4403. (effects (font (size 1.27 1.27)) hide)
  4404. )
  4405. (property "Datasheet" "" (id 3) (at 100.33 170.18 0)
  4406. (effects (font (size 1.27 1.27)) hide)
  4407. )
  4408. (pin "1" (uuid 66feeb29-fde1-42db-bfc6-d2da7e9e90d1))
  4409. )
  4410. (symbol (lib_id "Device:R") (at 102.87 22.86 180) (unit 1)
  4411. (in_bom yes) (on_board yes)
  4412. (uuid ecc88c66-df50-4406-98a5-56d24055f0c5)
  4413. (property "Reference" "R62" (id 0) (at 104.648 21.6916 0)
  4414. (effects (font (size 1.27 1.27)) (justify right))
  4415. )
  4416. (property "Value" "1k" (id 1) (at 104.648 24.003 0)
  4417. (effects (font (size 1.27 1.27)) (justify right))
  4418. )
  4419. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 104.648 22.86 90)
  4420. (effects (font (size 1.27 1.27)) hide)
  4421. )
  4422. (property "Datasheet" "~" (id 3) (at 102.87 22.86 0)
  4423. (effects (font (size 1.27 1.27)) hide)
  4424. )
  4425. (pin "1" (uuid e3202640-1cd5-4d39-81e4-ad0cc3e2c316))
  4426. (pin "2" (uuid 3193f412-d83e-4208-a5ae-9a5f8739c09f))
  4427. )
  4428. (symbol (lib_id "power:GND") (at 135.89 191.77 0) (unit 1)
  4429. (in_bom yes) (on_board yes)
  4430. (uuid ed632bc7-7448-4fcc-b2cb-45c037bf88b8)
  4431. (property "Reference" "#PWR0204" (id 0) (at 135.89 198.12 0)
  4432. (effects (font (size 1.27 1.27)) hide)
  4433. )
  4434. (property "Value" "GND" (id 1) (at 136.017 196.1642 0))
  4435. (property "Footprint" "" (id 2) (at 135.89 191.77 0)
  4436. (effects (font (size 1.27 1.27)) hide)
  4437. )
  4438. (property "Datasheet" "" (id 3) (at 135.89 191.77 0)
  4439. (effects (font (size 1.27 1.27)) hide)
  4440. )
  4441. (pin "1" (uuid 3bf5a0b8-4fb0-4c19-9790-3b6daf160d1a))
  4442. )
  4443. (symbol (lib_id "AnalogFluxReader-rescue:CP_Small-Device") (at 74.93 67.31 0) (unit 1)
  4444. (in_bom yes) (on_board yes)
  4445. (uuid f015ad2c-3080-4147-bb24-2dc075a03e15)
  4446. (property "Reference" "C54" (id 0) (at 77.1652 66.1416 0)
  4447. (effects (font (size 1.27 1.27)) (justify left))
  4448. )
  4449. (property "Value" "47u" (id 1) (at 77.1652 68.453 0)
  4450. (effects (font (size 1.27 1.27)) (justify left))
  4451. )
  4452. (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 74.93 67.31 0)
  4453. (effects (font (size 1.27 1.27)) hide)
  4454. )
  4455. (property "Datasheet" "~" (id 3) (at 74.93 67.31 0)
  4456. (effects (font (size 1.27 1.27)) hide)
  4457. )
  4458. (pin "1" (uuid b47fa16f-a6e0-4da8-adac-05e6f9dda077))
  4459. (pin "2" (uuid 9a01dcdc-ac4e-47f2-9f35-314982cab16a))
  4460. )
  4461. (symbol (lib_id "power:GND") (at 184.15 50.8 0) (unit 1)
  4462. (in_bom yes) (on_board yes)
  4463. (uuid f31c599b-11ef-41ee-9650-07da6037763e)
  4464. (property "Reference" "#PWR0216" (id 0) (at 184.15 57.15 0)
  4465. (effects (font (size 1.27 1.27)) hide)
  4466. )
  4467. (property "Value" "GND" (id 1) (at 184.277 55.1942 0))
  4468. (property "Footprint" "" (id 2) (at 184.15 50.8 0)
  4469. (effects (font (size 1.27 1.27)) hide)
  4470. )
  4471. (property "Datasheet" "" (id 3) (at 184.15 50.8 0)
  4472. (effects (font (size 1.27 1.27)) hide)
  4473. )
  4474. (pin "1" (uuid b0e1674a-5be3-4aff-b898-6f4e6ac9d15f))
  4475. )
  4476. (symbol (lib_id "power:PWR_FLAG") (at 35.56 175.26 0) (unit 1)
  4477. (in_bom yes) (on_board yes)
  4478. (uuid f5496f64-fa88-46b0-96c0-0a7db8062989)
  4479. (property "Reference" "#FLG0101" (id 0) (at 35.56 173.355 0)
  4480. (effects (font (size 1.27 1.27)) hide)
  4481. )
  4482. (property "Value" "PWR_FLAG" (id 1) (at 35.56 170.8404 0))
  4483. (property "Footprint" "" (id 2) (at 35.56 175.26 0)
  4484. (effects (font (size 1.27 1.27)) hide)
  4485. )
  4486. (property "Datasheet" "~" (id 3) (at 35.56 175.26 0)
  4487. (effects (font (size 1.27 1.27)) hide)
  4488. )
  4489. (pin "1" (uuid 09e84763-2145-4343-b8d6-112c5bc1a4c9))
  4490. )
  4491. (symbol (lib_id "Connector_Generic:Conn_02x10_Odd_Even") (at 193.04 36.83 0) (unit 1)
  4492. (in_bom yes) (on_board yes)
  4493. (uuid f6c92944-e637-4bc9-b63b-0be043b57092)
  4494. (property "Reference" "J16" (id 0) (at 194.31 21.1582 0))
  4495. (property "Value" "Conn_02x10_Odd_Even" (id 1) (at 194.31 23.4696 0))
  4496. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical" (id 2) (at 193.04 36.83 0)
  4497. (effects (font (size 1.27 1.27)) hide)
  4498. )
  4499. (property "Datasheet" "~" (id 3) (at 193.04 36.83 0)
  4500. (effects (font (size 1.27 1.27)) hide)
  4501. )
  4502. (pin "1" (uuid 3d61c9cb-3e96-4ea3-800f-c90d4d801ee2))
  4503. (pin "10" (uuid d53a0869-553d-42c4-a19e-6ef544dea2ec))
  4504. (pin "11" (uuid 59bcd0a0-7489-44da-9e94-888027e9b1d2))
  4505. (pin "12" (uuid 0ea90e31-7ae5-474c-bfd1-b61e5be30bf0))
  4506. (pin "13" (uuid 2a1a2a14-c1de-42b7-8e10-f05b82f57d14))
  4507. (pin "14" (uuid d9c83200-17c4-42a8-82af-1a4ed6795b93))
  4508. (pin "15" (uuid 5beaf993-8a55-44d1-847b-122b9849ffa5))
  4509. (pin "16" (uuid 3a24cbe3-f3d3-438a-ba1f-c9e88bf5edb7))
  4510. (pin "17" (uuid 9ccc739c-0644-4003-85fb-02ccb0f2a54a))
  4511. (pin "18" (uuid 1ec4d9e0-e919-4490-b45a-8fa6e5166cf6))
  4512. (pin "19" (uuid adcd2d78-3466-4134-b08e-07efb5f00f28))
  4513. (pin "2" (uuid bd897db1-158a-4384-b9f8-d1532449186d))
  4514. (pin "20" (uuid d5472efe-7d43-4533-92ca-016c64de3afe))
  4515. (pin "3" (uuid 00479788-9459-4199-a6b0-4c3e3933cfe6))
  4516. (pin "4" (uuid 1e5865df-2c53-4e53-bcac-0caa4d45c0a0))
  4517. (pin "5" (uuid 4e321741-ee96-4de4-b3db-cd1e539c1ff8))
  4518. (pin "6" (uuid b9d1d705-f7fa-4c28-9012-5c7e8562856b))
  4519. (pin "7" (uuid 109ce920-6a55-47cd-b2c8-3abfd11aeacf))
  4520. (pin "8" (uuid d6a986bc-e8c7-4f50-a981-ccb4189eacda))
  4521. (pin "9" (uuid bf4f6845-60f7-4148-8fde-9ff2e2c5d4e4))
  4522. )
  4523. (symbol (lib_id "power:+3.3VADC") (at 115.57 29.21 0) (unit 1)
  4524. (in_bom yes) (on_board yes)
  4525. (uuid f7bba936-eaf0-487f-b62b-1d6e52cc7ab5)
  4526. (property "Reference" "#PWR0236" (id 0) (at 119.38 30.48 0)
  4527. (effects (font (size 1.27 1.27)) hide)
  4528. )
  4529. (property "Value" "+3.3VADC" (id 1) (at 116.078 25.5778 0))
  4530. (property "Footprint" "" (id 2) (at 115.57 29.21 0)
  4531. (effects (font (size 1.27 1.27)) hide)
  4532. )
  4533. (property "Datasheet" "" (id 3) (at 115.57 29.21 0)
  4534. (effects (font (size 1.27 1.27)) hide)
  4535. )
  4536. (pin "1" (uuid 2c49a5ed-130b-4d8f-80a6-5061184c3e94))
  4537. )
  4538. (symbol (lib_id "power:GND") (at 21.59 189.23 0) (unit 1)
  4539. (in_bom yes) (on_board yes)
  4540. (uuid f8943277-c0ad-4703-bab4-a2905995b5cd)
  4541. (property "Reference" "#PWR0177" (id 0) (at 21.59 195.58 0)
  4542. (effects (font (size 1.27 1.27)) hide)
  4543. )
  4544. (property "Value" "GND" (id 1) (at 21.717 193.6242 0))
  4545. (property "Footprint" "" (id 2) (at 21.59 189.23 0)
  4546. (effects (font (size 1.27 1.27)) hide)
  4547. )
  4548. (property "Datasheet" "" (id 3) (at 21.59 189.23 0)
  4549. (effects (font (size 1.27 1.27)) hide)
  4550. )
  4551. (pin "1" (uuid 1feb6be6-1ac0-47a1-ba63-74e88d393715))
  4552. )
  4553. (symbol (lib_id "power:GND") (at 114.3 101.6 0) (unit 1)
  4554. (in_bom yes) (on_board yes)
  4555. (uuid f907ac07-42b9-43d8-942a-fbbb42c8f4d6)
  4556. (property "Reference" "#PWR0241" (id 0) (at 114.3 107.95 0)
  4557. (effects (font (size 1.27 1.27)) hide)
  4558. )
  4559. (property "Value" "GND" (id 1) (at 114.427 105.9942 0))
  4560. (property "Footprint" "" (id 2) (at 114.3 101.6 0)
  4561. (effects (font (size 1.27 1.27)) hide)
  4562. )
  4563. (property "Datasheet" "" (id 3) (at 114.3 101.6 0)
  4564. (effects (font (size 1.27 1.27)) hide)
  4565. )
  4566. (pin "1" (uuid 14bd7259-12df-45e5-a7ed-f877d41f5152))
  4567. )
  4568. (sheet_instances
  4569. (path "/" (page "1"))
  4570. )
  4571. (symbol_instances
  4572. (path "/00000000-0000-0000-0000-00005cde74b8"
  4573. (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "")
  4574. )
  4575. (path "/00000000-0000-0000-0000-00005cd2c575"
  4576. (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
  4577. )
  4578. (path "/00000000-0000-0000-0000-00005cd5d664"
  4579. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  4580. )
  4581. (path "/00000000-0000-0000-0000-00005cd7f637"
  4582. (reference "#FLG0104") (unit 1) (value "PWR_FLAG") (footprint "")
  4583. )
  4584. (path "/00000000-0000-0000-0000-00005cd7fa07"
  4585. (reference "#FLG0105") (unit 1) (value "PWR_FLAG") (footprint "")
  4586. )
  4587. (path "/00000000-0000-0000-0000-0000601e4296"
  4588. (reference "#PWR01") (unit 1) (value "GND") (footprint "")
  4589. )
  4590. (path "/00000000-0000-0000-0000-000067f36108"
  4591. (reference "#PWR02") (unit 1) (value "GND") (footprint "")
  4592. )
  4593. (path "/00000000-0000-0000-0000-000067f33bf4"
  4594. (reference "#PWR03") (unit 1) (value "+3V3") (footprint "")
  4595. )
  4596. (path "/00000000-0000-0000-0000-000067f33642"
  4597. (reference "#PWR04") (unit 1) (value "GND") (footprint "")
  4598. )
  4599. (path "/00000000-0000-0000-0000-00006811b79d"
  4600. (reference "#PWR05") (unit 1) (value "GNDA") (footprint "")
  4601. )
  4602. (path "/00000000-0000-0000-0000-000067f33c76"
  4603. (reference "#PWR06") (unit 1) (value "GNDA") (footprint "")
  4604. )
  4605. (path "/00000000-0000-0000-0000-0000601e430f"
  4606. (reference "#PWR07") (unit 1) (value "GND") (footprint "")
  4607. )
  4608. (path "/00000000-0000-0000-0000-000067f354c5"
  4609. (reference "#PWR08") (unit 1) (value "+3.3VADC") (footprint "")
  4610. )
  4611. (path "/00000000-0000-0000-0000-000067f35476"
  4612. (reference "#PWR09") (unit 1) (value "GNDA") (footprint "")
  4613. )
  4614. (path "/00000000-0000-0000-0000-000067f35943"
  4615. (reference "#PWR010") (unit 1) (value "+3V3") (footprint "")
  4616. )
  4617. (path "/00000000-0000-0000-0000-000067f36144"
  4618. (reference "#PWR011") (unit 1) (value "GND") (footprint "")
  4619. )
  4620. (path "/00000000-0000-0000-0000-000067f38597"
  4621. (reference "#PWR012") (unit 1) (value "-3V3") (footprint "")
  4622. )
  4623. (path "/00000000-0000-0000-0000-00006811ac8b"
  4624. (reference "#PWR013") (unit 1) (value "GNDA") (footprint "")
  4625. )
  4626. (path "/00000000-0000-0000-0000-000067f385c0"
  4627. (reference "#PWR014") (unit 1) (value "+3.3VADC") (footprint "")
  4628. )
  4629. (path "/00000000-0000-0000-0000-0000682a5ac8"
  4630. (reference "#PWR015") (unit 1) (value "GNDA") (footprint "")
  4631. )
  4632. (path "/00000000-0000-0000-0000-0000681fcfb5"
  4633. (reference "#PWR017") (unit 1) (value "GNDA") (footprint "")
  4634. )
  4635. (path "/00000000-0000-0000-0000-000068310a3c"
  4636. (reference "#PWR018") (unit 1) (value "+3V3") (footprint "")
  4637. )
  4638. (path "/00000000-0000-0000-0000-00006831097d"
  4639. (reference "#PWR019") (unit 1) (value "GND") (footprint "")
  4640. )
  4641. (path "/00000000-0000-0000-0000-0000681fd02a"
  4642. (reference "#PWR020") (unit 1) (value "GNDA") (footprint "")
  4643. )
  4644. (path "/00000000-0000-0000-0000-000067f33827"
  4645. (reference "#PWR021") (unit 1) (value "-3V3") (footprint "")
  4646. )
  4647. (path "/00000000-0000-0000-0000-000067f3370a"
  4648. (reference "#PWR022") (unit 1) (value "GNDA") (footprint "")
  4649. )
  4650. (path "/00000000-0000-0000-0000-0000682e11cf"
  4651. (reference "#PWR023") (unit 1) (value "GND") (footprint "")
  4652. )
  4653. (path "/00000000-0000-0000-0000-000067f36f98"
  4654. (reference "#PWR024") (unit 1) (value "+3.3VADC") (footprint "")
  4655. )
  4656. (path "/00000000-0000-0000-0000-000067f36f6f"
  4657. (reference "#PWR025") (unit 1) (value "+3V3") (footprint "")
  4658. )
  4659. (path "/00000000-0000-0000-0000-000067f33e7d"
  4660. (reference "#PWR026") (unit 1) (value "GNDA") (footprint "")
  4661. )
  4662. (path "/00000000-0000-0000-0000-000067f33f08"
  4663. (reference "#PWR027") (unit 1) (value "GND") (footprint "")
  4664. )
  4665. (path "/00000000-0000-0000-0000-0000682a5940"
  4666. (reference "#PWR028") (unit 1) (value "GNDA") (footprint "")
  4667. )
  4668. (path "/00000000-0000-0000-0000-0000682a58c5"
  4669. (reference "#PWR029") (unit 1) (value "GNDA") (footprint "")
  4670. )
  4671. (path "/00000000-0000-0000-0000-000067f4311d"
  4672. (reference "#PWR030") (unit 1) (value "GND") (footprint "")
  4673. )
  4674. (path "/00000000-0000-0000-0000-000067ff8963"
  4675. (reference "#PWR031") (unit 1) (value "GND") (footprint "")
  4676. )
  4677. (path "/00000000-0000-0000-0000-000068044f78"
  4678. (reference "#PWR032") (unit 1) (value "+3V3") (footprint "")
  4679. )
  4680. (path "/00000000-0000-0000-0000-000067f61744"
  4681. (reference "#PWR033") (unit 1) (value "GND") (footprint "")
  4682. )
  4683. (path "/00000000-0000-0000-0000-000067f6794a"
  4684. (reference "#PWR034") (unit 1) (value "+3V3") (footprint "")
  4685. )
  4686. (path "/00000000-0000-0000-0000-00006080bd70"
  4687. (reference "#PWR035") (unit 1) (value "GNDA") (footprint "")
  4688. )
  4689. (path "/00000000-0000-0000-0000-00005ce21ab3"
  4690. (reference "#PWR036") (unit 1) (value "GND") (footprint "")
  4691. )
  4692. (path "/00000000-0000-0000-0000-0000601e4388"
  4693. (reference "#PWR037") (unit 1) (value "GND") (footprint "")
  4694. )
  4695. (path "/00000000-0000-0000-0000-0000601e4401"
  4696. (reference "#PWR038") (unit 1) (value "GND") (footprint "")
  4697. )
  4698. (path "/00000000-0000-0000-0000-0000601e447a"
  4699. (reference "#PWR039") (unit 1) (value "GND") (footprint "")
  4700. )
  4701. (path "/00000000-0000-0000-0000-0000603d1a3d"
  4702. (reference "#PWR040") (unit 1) (value "+3V3") (footprint "")
  4703. )
  4704. (path "/00000000-0000-0000-0000-0000602f360d"
  4705. (reference "#PWR041") (unit 1) (value "+3V3") (footprint "")
  4706. )
  4707. (path "/00000000-0000-0000-0000-00006031ee7f"
  4708. (reference "#PWR042") (unit 1) (value "GND") (footprint "")
  4709. )
  4710. (path "/00000000-0000-0000-0000-0000603a4701"
  4711. (reference "#PWR043") (unit 1) (value "+3V3") (footprint "")
  4712. )
  4713. (path "/00000000-0000-0000-0000-00006034b31d"
  4714. (reference "#PWR044") (unit 1) (value "+3V3") (footprint "")
  4715. )
  4716. (path "/00000000-0000-0000-0000-0000604166c1"
  4717. (reference "#PWR045") (unit 1) (value "+3V3") (footprint "")
  4718. )
  4719. (path "/00000000-0000-0000-0000-00006045b881"
  4720. (reference "#PWR046") (unit 1) (value "+3V3") (footprint "")
  4721. )
  4722. (path "/00000000-0000-0000-0000-00006045b7c2"
  4723. (reference "#PWR047") (unit 1) (value "GND") (footprint "")
  4724. )
  4725. (path "/00000000-0000-0000-0000-00006058b065"
  4726. (reference "#PWR048") (unit 1) (value "GND") (footprint "")
  4727. )
  4728. (path "/00000000-0000-0000-0000-00006058afa0"
  4729. (reference "#PWR049") (unit 1) (value "GND") (footprint "")
  4730. )
  4731. (path "/00000000-0000-0000-0000-0000605ec611"
  4732. (reference "#PWR050") (unit 1) (value "GND") (footprint "")
  4733. )
  4734. (path "/00000000-0000-0000-0000-000060886783"
  4735. (reference "#PWR051") (unit 1) (value "GNDA") (footprint "")
  4736. )
  4737. (path "/00000000-0000-0000-0000-00006091c048"
  4738. (reference "#PWR052") (unit 1) (value "GND") (footprint "")
  4739. )
  4740. (path "/00000000-0000-0000-0000-00006091bfb5"
  4741. (reference "#PWR053") (unit 1) (value "GND") (footprint "")
  4742. )
  4743. (path "/00000000-0000-0000-0000-000060ccc11d"
  4744. (reference "#PWR054") (unit 1) (value "GND") (footprint "")
  4745. )
  4746. (path "/00000000-0000-0000-0000-000060dcae98"
  4747. (reference "#PWR055") (unit 1) (value "GND") (footprint "")
  4748. )
  4749. (path "/00000000-0000-0000-0000-000060dcaf37"
  4750. (reference "#PWR056") (unit 1) (value "GND") (footprint "")
  4751. )
  4752. (path "/00000000-0000-0000-0000-00005cd6e712"
  4753. (reference "#PWR0101") (unit 1) (value "GNDA") (footprint "")
  4754. )
  4755. (path "/00000000-0000-0000-0000-00005cd6e7d1"
  4756. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  4757. )
  4758. (path "/00000000-0000-0000-0000-00005cee703a"
  4759. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  4760. )
  4761. (path "/00000000-0000-0000-0000-00006016fd10"
  4762. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  4763. )
  4764. (path "/00000000-0000-0000-0000-00006016ff1c"
  4765. (reference "#PWR0105") (unit 1) (value "+3V3") (footprint "")
  4766. )
  4767. (path "/00000000-0000-0000-0000-0000601906cb"
  4768. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  4769. )
  4770. (path "/00000000-0000-0000-0000-0000601e6807"
  4771. (reference "#PWR0107") (unit 1) (value "+3V3") (footprint "")
  4772. )
  4773. (path "/00000000-0000-0000-0000-0000602eb547"
  4774. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  4775. )
  4776. (path "/00000000-0000-0000-0000-0000602eb5b8"
  4777. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  4778. )
  4779. (path "/00000000-0000-0000-0000-0000603f3ee5"
  4780. (reference "#PWR0110") (unit 1) (value "+3V3") (footprint "")
  4781. )
  4782. (path "/00000000-0000-0000-0000-000060b1cc1c"
  4783. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  4784. )
  4785. (path "/00000000-0000-0000-0000-000060b50ff9"
  4786. (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
  4787. )
  4788. (path "/00000000-0000-0000-0000-000060b860c6"
  4789. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  4790. )
  4791. (path "/00000000-0000-0000-0000-000060b86161"
  4792. (reference "#PWR0114") (unit 1) (value "GND") (footprint "")
  4793. )
  4794. (path "/00000000-0000-0000-0000-000060e41116"
  4795. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  4796. )
  4797. (path "/00000000-0000-0000-0000-000067f33505"
  4798. (reference "C1") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4799. )
  4800. (path "/00000000-0000-0000-0000-000067f3618f"
  4801. (reference "C2") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4802. )
  4803. (path "/00000000-0000-0000-0000-000067f333c2"
  4804. (reference "C3") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4805. )
  4806. (path "/00000000-0000-0000-0000-000067f33983"
  4807. (reference "C4") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4808. )
  4809. (path "/00000000-0000-0000-0000-000060573243"
  4810. (reference "C5") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4811. )
  4812. (path "/00000000-0000-0000-0000-0000605d3dde"
  4813. (reference "C6") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4814. )
  4815. (path "/00000000-0000-0000-0000-000067f35ad5"
  4816. (reference "C7") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4817. )
  4818. (path "/00000000-0000-0000-0000-00006811abcd"
  4819. (reference "C8") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4820. )
  4821. (path "/00000000-0000-0000-0000-0000682a5ef5"
  4822. (reference "C9") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4823. )
  4824. (path "/00000000-0000-0000-0000-00006817bac3"
  4825. (reference "C10") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4826. )
  4827. (path "/00000000-0000-0000-0000-00006817bb7f"
  4828. (reference "C11") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4829. )
  4830. (path "/00000000-0000-0000-0000-0000682a5e0b"
  4831. (reference "C12") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4832. )
  4833. (path "/00000000-0000-0000-0000-00006826e6ea"
  4834. (reference "C13") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4835. )
  4836. (path "/00000000-0000-0000-0000-00006826e5ae"
  4837. (reference "C14") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4838. )
  4839. (path "/00000000-0000-0000-0000-00006826e658"
  4840. (reference "C15") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4841. )
  4842. (path "/00000000-0000-0000-0000-0000605a3749"
  4843. (reference "C16") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4844. )
  4845. (path "/00000000-0000-0000-0000-0000605733e7"
  4846. (reference "C17") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4847. )
  4848. (path "/00000000-0000-0000-0000-0000605ec422"
  4849. (reference "C18") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4850. )
  4851. (path "/00000000-0000-0000-0000-00006080bb6d"
  4852. (reference "C19") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4853. )
  4854. (path "/00000000-0000-0000-0000-0000608866d1"
  4855. (reference "C20") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4856. )
  4857. (path "/00000000-0000-0000-0000-00006091be4b"
  4858. (reference "C21") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4859. )
  4860. (path "/00000000-0000-0000-0000-00006091bf05"
  4861. (reference "C22") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4862. )
  4863. (path "/00000000-0000-0000-0000-000060dcad0e"
  4864. (reference "C23") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
  4865. )
  4866. (path "/00000000-0000-0000-0000-000060dcadd6"
  4867. (reference "C24") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4868. )
  4869. (path "/00000000-0000-0000-0000-0000607a7b49"
  4870. (reference "J1") (unit 1) (value "Conn_02x10_Odd_Even") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical")
  4871. )
  4872. (path "/00000000-0000-0000-0000-0000607bfe64"
  4873. (reference "J2") (unit 1) (value "Conn_02x10_Odd_Even") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical")
  4874. )
  4875. (path "/00000000-0000-0000-0000-000060a99ea0"
  4876. (reference "J3") (unit 1) (value "Conn_02x05_Top_Bottom") (footprint "")
  4877. )
  4878. (path "/00000000-0000-0000-0000-00006075c457"
  4879. (reference "J4") (unit 1) (value "FLOPPY+") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  4880. )
  4881. (path "/00000000-0000-0000-0000-00006075c549"
  4882. (reference "J5") (unit 1) (value "FLOPPY-GND") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  4883. )
  4884. (path "/00000000-0000-0000-0000-00006075c86c"
  4885. (reference "J6") (unit 1) (value "FLOPPY-") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
  4886. )
  4887. (path "/00000000-0000-0000-0000-000067f33478"
  4888. (reference "L1") (unit 1) (value "100u") (footprint "AnalogFluxReader:1007")
  4889. )
  4890. (path "/00000000-0000-0000-0000-000067f339d4"
  4891. (reference "L2") (unit 1) (value "100u") (footprint "AnalogFluxReader:1007")
  4892. )
  4893. (path "/00000000-0000-0000-0000-000067ffd36b"
  4894. (reference "R1") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4895. )
  4896. (path "/00000000-0000-0000-0000-000067ffd287"
  4897. (reference "R2") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4898. )
  4899. (path "/00000000-0000-0000-0000-0000601e4212"
  4900. (reference "R3") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4901. )
  4902. (path "/00000000-0000-0000-0000-000067ffd3cd"
  4903. (reference "R4") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4904. )
  4905. (path "/00000000-0000-0000-0000-000068124e90"
  4906. (reference "R5") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4907. )
  4908. (path "/00000000-0000-0000-0000-00006812500f"
  4909. (reference "R6") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4910. )
  4911. (path "/00000000-0000-0000-0000-000068125111"
  4912. (reference "R7") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4913. )
  4914. (path "/00000000-0000-0000-0000-000068125089"
  4915. (reference "R8") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4916. )
  4917. (path "/00000000-0000-0000-0000-0000681fce61"
  4918. (reference "R9") (unit 1) (value "22") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4919. )
  4920. (path "/00000000-0000-0000-0000-0000681fcf33"
  4921. (reference "R10") (unit 1) (value "22") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4922. )
  4923. (path "/00000000-0000-0000-0000-0000682d1ca8"
  4924. (reference "R11") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4925. )
  4926. (path "/00000000-0000-0000-0000-0000682d1b98"
  4927. (reference "R12") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4928. )
  4929. (path "/00000000-0000-0000-0000-00005cdb3fe6"
  4930. (reference "R13") (unit 1) (value "0") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
  4931. )
  4932. (path "/00000000-0000-0000-0000-0000601e4190"
  4933. (reference "R14") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4934. )
  4935. (path "/00000000-0000-0000-0000-0000601e410c"
  4936. (reference "R15") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4937. )
  4938. (path "/00000000-0000-0000-0000-0000601e4076"
  4939. (reference "R16") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4940. )
  4941. (path "/00000000-0000-0000-0000-0000601e3d20"
  4942. (reference "R17") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4943. )
  4944. (path "/00000000-0000-0000-0000-0000603d19a7"
  4945. (reference "R18") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4946. )
  4947. (path "/00000000-0000-0000-0000-0000603090fe"
  4948. (reference "R19") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4949. )
  4950. (path "/00000000-0000-0000-0000-0000603a4631"
  4951. (reference "R20") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4952. )
  4953. (path "/00000000-0000-0000-0000-00006034b20f"
  4954. (reference "R21") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4955. )
  4956. (path "/00000000-0000-0000-0000-000060416617"
  4957. (reference "R22") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
  4958. )
  4959. (path "/00000000-0000-0000-0000-000067f2fabd"
  4960. (reference "U1") (unit 1) (value "AD9235BR") (footprint "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm")
  4961. )
  4962. (path "/00000000-0000-0000-0000-000060066c9f"
  4963. (reference "U2") (unit 1) (value "74AC163") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  4964. )
  4965. (path "/00000000-0000-0000-0000-000067f2dfb3"
  4966. (reference "U3") (unit 1) (value "AD8138") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
  4967. )
  4968. (path "/00000000-0000-0000-0000-000067ffcfca"
  4969. (reference "U4") (unit 1) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4970. )
  4971. (path "/00000000-0000-0000-0000-000067ffd148"
  4972. (reference "U4") (unit 2) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4973. )
  4974. (path "/00000000-0000-0000-0000-000067ffd1a4"
  4975. (reference "U4") (unit 3) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4976. )
  4977. (path "/00000000-0000-0000-0000-000060b50f2b"
  4978. (reference "U4") (unit 4) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4979. )
  4980. (path "/00000000-0000-0000-0000-000060b85f26"
  4981. (reference "U4") (unit 5) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4982. )
  4983. (path "/00000000-0000-0000-0000-000060b85ffe"
  4984. (reference "U4") (unit 6) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4985. )
  4986. (path "/00000000-0000-0000-0000-00005ceb04ef"
  4987. (reference "U4") (unit 7) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4988. )
  4989. (path "/00000000-0000-0000-0000-00006003ebe7"
  4990. (reference "U5") (unit 1) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4991. )
  4992. (path "/00000000-0000-0000-0000-000068081084"
  4993. (reference "U5") (unit 2) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4994. )
  4995. (path "/00000000-0000-0000-0000-0000680810f8"
  4996. (reference "U5") (unit 3) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  4997. )
  4998. (path "/00000000-0000-0000-0000-000068081170"
  4999. (reference "U5") (unit 4) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  5000. )
  5001. (path "/00000000-0000-0000-0000-0000680811f4"
  5002. (reference "U5") (unit 5) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  5003. )
  5004. (path "/00000000-0000-0000-0000-000060b1c5f9"
  5005. (reference "U5") (unit 6) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  5006. )
  5007. (path "/00000000-0000-0000-0000-00005ce570f5"
  5008. (reference "U5") (unit 7) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
  5009. )
  5010. (path "/00000000-0000-0000-0000-000067f2e1a8"
  5011. (reference "U6") (unit 1) (value "LM2664") (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering")
  5012. )
  5013. (path "/00000000-0000-0000-0000-00006026b111"
  5014. (reference "U8") (unit 1) (value "74AC153") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
  5015. )
  5016. (path "/00000000-0000-0000-0000-000060133146"
  5017. (reference "U9") (unit 1) (value "MCP23017_SP") (footprint "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm")
  5018. )
  5019. )
  5020. )