123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752 |
- (kicad_sch (version 20211123) (generator eeschema)
- (uuid 31e453ed-c999-4f32-9a0d-aa347ea73dda)
- (paper "A4")
- (lib_symbols
- (symbol "AnalogFluxReader-rescue:CP_Small-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.254 1.778 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CP_Small-Device" (id 1) (at 0.254 -2.032 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CP_Small-Device_0_1"
- (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 1.524)
- (xy -0.762 1.524)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.016 1.27)
- (xy -1.016 1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CP_Small-Device_1_1"
- (pin passive line (at 0 2.54 270) (length 1.8542)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -2.54 90) (length 1.8542)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "J" (id 0) (at 0 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "connector" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Conn_01x03_Male_1_1"
- (polyline
- (pts
- (xy 1.27 -2.54)
- (xy 0.8636 -2.54)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 0)
- (xy 0.8636 0)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 2.54)
- (xy 0.8636 2.54)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 0.8636 -2.413) (end 0 -2.667)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start 0.8636 0.127) (end 0 -0.127)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start 0.8636 2.667) (end 0 2.413)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (pin passive line (at 5.08 2.54 180) (length 3.81)
- (name "Pin_1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 0 180) (length 3.81)
- (name "Pin_2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 -2.54 180) (length 3.81)
- (name "Pin_3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.635 2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "C" (id 1) (at 0.635 -2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762)
- (xy 2.032 -0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.032 0.762)
- (xy 2.032 0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "C_1_1"
- (pin passive line (at 0 3.81 270) (length 2.794)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 2.794)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.254 1.778 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "C_Polarized_Small" (id 1) (at 0.254 -2.032 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Polarized capacitor, small symbol" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "C_Polarized_Small_0_1"
- (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 1.524)
- (xy -0.762 1.524)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.016 1.27)
- (xy -1.016 1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "C_Polarized_Small_1_1"
- (pin passive line (at 0 2.54 270) (length 1.8542)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -2.54 90) (length 1.8542)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "L" (id 0) (at -1.27 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "L" (id 1) (at 1.905 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Inductor" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "L_0_1"
- (arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "L_1_1"
- (pin passive line (at 0 3.81 270) (length 1.27)
- (name "1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 1.27)
- (name "2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "R" (id 0) (at 2.032 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "R" (id 1) (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at -1.778 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Resistor" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_0_1"
- (rectangle (start -1.016 -2.54) (end 1.016 2.54)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "R_1_1"
- (pin passive line (at 0 3.81 270) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Greaseweazle:AD8138-ad8138" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "IC" (id 0) (at -7.62 10.16 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "AD8138-ad8138" (id 1) (at -7.62 -10.16 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "agg:SOIC-8" (id 2) (at -7.62 -12.7 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf" (id 3) (at -7.62 -15.24 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Farnell" "2725700" (id 4) (at -7.62 -17.78 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (symbol "AD8138-ad8138_0_0"
- (pin input line (at -10.16 -5.08 0) (length 2.54)
- (name "-IN" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -10.16 -2.54 0) (length 2.54)
- (name "VOCM" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -10.16 7.62 0) (length 2.54)
- (name "V+" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 10.16 0 180) (length 2.54)
- (name "+OUT" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 10.16 2.54 180) (length 2.54)
- (name "-OUT" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -10.16 5.08 0) (length 2.54)
- (name "V-" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin no_connect line (at 10.16 7.62 180) (length 2.54)
- (name "NC" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -10.16 0 0) (length 2.54)
- (name "+IN" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "AD8138-ad8138_0_1"
- (rectangle (start -7.62 8.89) (end 7.62 -8.89)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- )
- (symbol "Greaseweazle:AD9235BR-ad9235" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 2.54 26.67 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "AD9235BR-ad9235" (id 1) (at 6.35 24.13 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at -13.97 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at -13.97 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "TSSOP28* LFCSP32*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "AD9235BR-ad9235_1_0"
- (polyline
- (pts
- (xy -12.7 -25.4)
- (xy -12.7 22.86)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -12.7 22.86)
- (xy 11.43 22.86)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 11.43 -25.4)
- (xy -12.7 -25.4)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 11.43 22.86)
- (xy 11.43 -25.4)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (text "AD9235" (at 0 6.35 0)
- (effects (font (size 2.54 2.54)))
- )
- )
- (symbol "AD9235BR-ad9235_1_1"
- (pin output line (at 13.97 11.43 180) (length 2.54)
- (name "OTR" (effects (font (size 1.016 1.016))))
- (number "1" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at -15.24 7.62 0) (length 2.54)
- (name "VIN-" (effects (font (size 1.016 1.016))))
- (number "10" (effects (font (size 1.016 1.016))))
- )
- (pin power_in line (at 1.27 -27.94 90) (length 2.54)
- (name "AGND@2" (effects (font (size 1.016 1.016))))
- (number "11" (effects (font (size 1.016 1.016))))
- )
- (pin power_in line (at -10.16 25.4 270) (length 2.54)
- (name "AVDD@2" (effects (font (size 1.016 1.016))))
- (number "12" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at -15.24 1.27 0) (length 2.54)
- (name "CLK" (effects (font (size 1.016 1.016))))
- (number "13" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at -15.24 -3.81 0) (length 2.54)
- (name "PDWN" (effects (font (size 1.016 1.016))))
- (number "14" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -22.86 180) (length 2.54)
- (name "D0" (effects (font (size 1.016 1.016))))
- (number "15" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -20.32 180) (length 2.54)
- (name "D1" (effects (font (size 1.016 1.016))))
- (number "16" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -17.78 180) (length 2.54)
- (name "D2" (effects (font (size 1.016 1.016))))
- (number "17" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -15.24 180) (length 2.54)
- (name "D3" (effects (font (size 1.016 1.016))))
- (number "18" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -12.7 180) (length 2.54)
- (name "D4" (effects (font (size 1.016 1.016))))
- (number "19" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at -15.24 3.81 0) (length 2.54)
- (name "MODE" (effects (font (size 1.016 1.016))))
- (number "2" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -10.16 180) (length 2.54)
- (name "D5" (effects (font (size 1.016 1.016))))
- (number "20" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -7.62 180) (length 2.54)
- (name "D6" (effects (font (size 1.016 1.016))))
- (number "21" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -5.08 180) (length 2.54)
- (name "D7" (effects (font (size 1.016 1.016))))
- (number "22" (effects (font (size 1.016 1.016))))
- )
- (pin power_in line (at 3.81 -27.94 90) (length 2.54)
- (name "DGND" (effects (font (size 1.016 1.016))))
- (number "23" (effects (font (size 1.016 1.016))))
- )
- (pin power_in line (at -5.08 25.4 270) (length 2.54)
- (name "DRVDD" (effects (font (size 1.016 1.016))))
- (number "24" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 -2.54 180) (length 2.54)
- (name "D8" (effects (font (size 1.016 1.016))))
- (number "25" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 0 180) (length 2.54)
- (name "D9" (effects (font (size 1.016 1.016))))
- (number "26" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 2.54 180) (length 2.54)
- (name "D10" (effects (font (size 1.016 1.016))))
- (number "27" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 5.08 180) (length 2.54)
- (name "D11" (effects (font (size 1.016 1.016))))
- (number "28" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at -15.24 -20.32 0) (length 2.54)
- (name "SENSE" (effects (font (size 1.016 1.016))))
- (number "3" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at -15.24 -7.62 0) (length 2.54)
- (name "VREF" (effects (font (size 1.016 1.016))))
- (number "4" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 13.97 180) (length 2.54)
- (name "REFB" (effects (font (size 1.016 1.016))))
- (number "5" (effects (font (size 1.016 1.016))))
- )
- (pin output line (at 13.97 20.32 180) (length 2.54)
- (name "REFT" (effects (font (size 1.016 1.016))))
- (number "6" (effects (font (size 1.016 1.016))))
- )
- (pin power_in line (at -7.62 25.4 270) (length 2.54)
- (name "AVDD@1" (effects (font (size 1.016 1.016))))
- (number "7" (effects (font (size 1.016 1.016))))
- )
- (pin power_in line (at -1.27 -27.94 90) (length 2.54)
- (name "AGND@1" (effects (font (size 1.016 1.016))))
- (number "8" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at -15.24 12.7 0) (length 2.54)
- (name "VIN+" (effects (font (size 1.016 1.016))))
- (number "9" (effects (font (size 1.016 1.016))))
- )
- )
- )
- (symbol "Greaseweazle:CP_Small-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.254 1.778 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CP_Small-Device" (id 1) (at 0.254 -2.032 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CP_Small-Device_0_1"
- (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 1.524)
- (xy -0.762 1.524)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.016 1.27)
- (xy -1.016 1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CP_Small-Device_1_1"
- (pin passive line (at 0 2.54 270) (length 1.8542)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -2.54 90) (length 1.8542)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Greaseweazle:LM2664-tinkerforge" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at -6.35 6.35 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "LM2664-tinkerforge" (id 1) (at 0 -6.35 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at -19.05 -25.4 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Datasheet" "" (id 3) (at -19.05 -25.4 0)
- (effects (font (size 1.524 1.524)))
- )
- (symbol "LM2664-tinkerforge_0_1"
- (rectangle (start -7.62 5.08) (end 7.62 -5.08)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "LM2664-tinkerforge_1_1"
- (pin input line (at -11.43 -3.81 0) (length 3.81)
- (name "GND" (effects (font (size 1.524 1.524))))
- (number "1" (effects (font (size 1.524 1.524))))
- )
- (pin input line (at 11.43 -3.81 180) (length 3.81)
- (name "OUT" (effects (font (size 1.524 1.524))))
- (number "2" (effects (font (size 1.524 1.524))))
- )
- (pin input line (at 11.43 0 180) (length 3.81)
- (name "CAP-" (effects (font (size 1.524 1.524))))
- (number "3" (effects (font (size 1.524 1.524))))
- )
- (pin input line (at -11.43 0 0) (length 3.81)
- (name "nSD" (effects (font (size 1.524 1.524))))
- (number "4" (effects (font (size 1.524 1.524))))
- )
- (pin input line (at -11.43 3.81 0) (length 3.81)
- (name "V+" (effects (font (size 1.524 1.524))))
- (number "5" (effects (font (size 1.524 1.524))))
- )
- (pin input line (at 11.43 3.81 180) (length 3.81)
- (name "CAP+" (effects (font (size 1.524 1.524))))
- (number "6" (effects (font (size 1.524 1.524))))
- )
- )
- )
- (symbol "Oscillator:ASCO" (in_bom yes) (on_board yes)
- (property "Reference" "X" (id 0) (at -7.62 6.35 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "ASCO" (id 1) (at 1.27 -6.35 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm" (id 2) (at 2.54 -8.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (id 3) (at -5.715 3.175 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "Crystal Clock Oscillator" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Crystal Clock Oscillator, Abracon ASCO" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "Oscillator*Abracon*ASCO*1.6x1.2mm*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "ASCO_0_1"
- (rectangle (start -7.62 5.08) (end 7.62 -5.08)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (polyline
- (pts
- (xy -5.715 2.54)
- (xy -5.08 2.54)
- (xy -5.08 3.81)
- (xy -4.445 3.81)
- (xy -4.445 2.54)
- (xy -3.81 2.54)
- (xy -3.81 3.81)
- (xy -3.175 3.81)
- (xy -3.175 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "ASCO_1_1"
- (pin input line (at -10.16 0 0) (length 2.54)
- (name "Tri-State" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -7.62 90) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 10.16 0 180) (length 2.54)
- (name "OUT" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 7.62 270) (length 2.54)
- (name "VDD" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+3.3VADC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 3.81 -1.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3VADC" (id 1) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+3.3VADC\"" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+3.3VADC_0_0"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+3.3VADC" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "+3.3VADC_0_1"
- (polyline
- (pts
- (xy -0.762 1.27)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0.762 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- )
- (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 0 3.556 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+3V3_0_1"
- (polyline
- (pts
- (xy -0.762 1.27)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0.762 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "+3V3_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+3V3" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:-3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "-3V3" (id 1) (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"-3V3\"" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "-3V3_0_0"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "-3V3" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "-3V3_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 1.27)
- (xy 0.762 1.27)
- (xy 0 2.54)
- (xy -0.762 1.27)
- (xy 0 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- )
- )
- (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 -1.27)
- (xy 1.27 -1.27)
- (xy 0 -2.54)
- (xy -1.27 -1.27)
- (xy 0 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "GND_1_1"
- (pin power_in line (at 0 0 270) (length 0) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "GNDA_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 -1.27)
- (xy 1.27 -1.27)
- (xy 0 -2.54)
- (xy -1.27 -1.27)
- (xy 0 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "GNDA_1_1"
- (pin power_in line (at 0 0 270) (length 0) hide
- (name "GNDA" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "PWR_FLAG_0_0"
- (pin power_out line (at 0 0 90) (length 0)
- (name "pwr" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "PWR_FLAG_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 1.27)
- (xy -1.016 1.905)
- (xy 0 2.54)
- (xy 1.016 1.905)
- (xy 0 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- )
- )
- (junction (at 158.75 35.56) (diameter 0) (color 0 0 0 0)
- (uuid 04b6a4c7-0ce1-47dd-b426-8e85922c6821)
- )
- (junction (at 158.75 114.3) (diameter 0) (color 0 0 0 0)
- (uuid 06b2d4dd-39e4-432a-bcb6-0af4ebf45ce3)
- )
- (junction (at 74.93 143.51) (diameter 0) (color 0 0 0 0)
- (uuid 07cc6e36-1d17-4649-b36a-96f15df150e0)
- )
- (junction (at 105.41 44.45) (diameter 0) (color 0 0 0 0)
- (uuid 09309782-347a-4592-bdcb-6cb314dd8059)
- )
- (junction (at 63.5 143.51) (diameter 0) (color 0 0 0 0)
- (uuid 105efbbb-e7c8-4982-b1bd-3746402663da)
- )
- (junction (at 109.22 143.51) (diameter 0) (color 0 0 0 0)
- (uuid 17e3ddf1-cf8b-407d-a1aa-f33cf01d2c0b)
- )
- (junction (at 256.54 44.45) (diameter 0) (color 0 0 0 0)
- (uuid 1c6e6764-204a-49db-8662-c2dd21affd48)
- )
- (junction (at 90.17 44.45) (diameter 0) (color 0 0 0 0)
- (uuid 212b66ef-3c6b-4ca5-8b7e-9638373b42c0)
- )
- (junction (at 156.21 121.92) (diameter 0) (color 0 0 0 0)
- (uuid 24eb8c31-67db-4be2-b0f2-278e7dbe5402)
- )
- (junction (at 208.28 36.83) (diameter 0) (color 0 0 0 0)
- (uuid 31764a6f-b6a9-47ee-8226-47d6f3ab5399)
- )
- (junction (at 156.21 43.18) (diameter 0) (color 0 0 0 0)
- (uuid 39a8e1c7-d388-4939-aad8-668b2e08967c)
- )
- (junction (at 267.97 44.45) (diameter 0) (color 0 0 0 0)
- (uuid 3c21e653-0dac-4514-b58c-db3fc663891f)
- )
- (junction (at 90.17 123.19) (diameter 0) (color 0 0 0 0)
- (uuid 3cf7a420-a773-4d82-b128-02b10111dbfb)
- )
- (junction (at 74.93 64.77) (diameter 0) (color 0 0 0 0)
- (uuid 3e2cc1a0-a64b-4c3a-84fa-0d52a12b8060)
- )
- (junction (at 90.17 128.27) (diameter 0) (color 0 0 0 0)
- (uuid 3f524cea-979c-4412-99ab-e0571074e25f)
- )
- (junction (at 46.99 57.15) (diameter 0) (color 0 0 0 0)
- (uuid 4966b391-5a0c-4cb9-99ae-1176e797815b)
- )
- (junction (at 105.41 123.19) (diameter 0) (color 0 0 0 0)
- (uuid 4cb1a32d-aff2-4768-8d4f-bcc5faf54054)
- )
- (junction (at 148.59 114.3) (diameter 0) (color 0 0 0 0)
- (uuid 4e85542c-39af-4674-855f-f4cfb99a94c9)
- )
- (junction (at 124.46 163.83) (diameter 0) (color 0 0 0 0)
- (uuid 4efd0b3d-92b4-4527-b56a-a903181eb3e6)
- )
- (junction (at 148.59 43.18) (diameter 0) (color 0 0 0 0)
- (uuid 4fe2d384-3d38-424d-a7b1-c54905a9a9bd)
- )
- (junction (at 124.46 85.09) (diameter 0) (color 0 0 0 0)
- (uuid 604a047b-ed4e-44d6-a495-0780cb6995b7)
- )
- (junction (at 102.87 105.41) (diameter 0) (color 0 0 0 0)
- (uuid 65418b8c-486c-49c0-af86-17cd71318f2c)
- )
- (junction (at 243.84 44.45) (diameter 0) (color 0 0 0 0)
- (uuid 699c9984-4762-4608-889c-ef6d70220782)
- )
- (junction (at 102.87 49.53) (diameter 0) (color 0 0 0 0)
- (uuid 8772c2d7-c9e3-4559-9dff-f72fb2489ed5)
- )
- (junction (at 46.99 46.99) (diameter 0) (color 0 0 0 0)
- (uuid 97fca2c2-d53e-4e3a-8ec9-eddf76102e52)
- )
- (junction (at 193.04 92.71) (diameter 0) (color 0 0 0 0)
- (uuid a479f594-cb90-4d67-a22e-61119f359192)
- )
- (junction (at 148.59 35.56) (diameter 0) (color 0 0 0 0)
- (uuid ad4b47d9-db55-4f1a-b242-8dec583b8b9f)
- )
- (junction (at 115.57 30.48) (diameter 0) (color 0 0 0 0)
- (uuid bb60fd5b-33f6-4857-b78a-2f1c48f4966d)
- )
- (junction (at 102.87 26.67) (diameter 0) (color 0 0 0 0)
- (uuid c355145a-d83a-438e-ad0b-57124bb10ec7)
- )
- (junction (at 208.28 40.64) (diameter 0) (color 0 0 0 0)
- (uuid c618d995-8ff9-424a-8245-0966b93f843e)
- )
- (junction (at 46.99 125.73) (diameter 0) (color 0 0 0 0)
- (uuid d1fd1eb9-fc57-432b-9724-4b6395d0aca9)
- )
- (junction (at 203.2 92.71) (diameter 0) (color 0 0 0 0)
- (uuid d4187ae4-8c4a-4ee8-9878-db9c27a21bb0)
- )
- (junction (at 198.12 44.45) (diameter 0) (color 0 0 0 0)
- (uuid d7d34096-95cb-4e33-a451-6fce0d48a866)
- )
- (junction (at 102.87 128.27) (diameter 0) (color 0 0 0 0)
- (uuid da87d9f2-e2d2-4de4-b1c4-835dcb073cb1)
- )
- (junction (at 109.22 64.77) (diameter 0) (color 0 0 0 0)
- (uuid db131bb7-ba8f-4b45-a095-e256b17df503)
- )
- (junction (at 194.31 92.71) (diameter 0) (color 0 0 0 0)
- (uuid e6a5d661-e10f-49ab-b328-7bd8e0967d1b)
- )
- (junction (at 148.59 121.92) (diameter 0) (color 0 0 0 0)
- (uuid e81b9b60-3ed8-4254-acd8-6614ec9aeb5d)
- )
- (junction (at 115.57 109.22) (diameter 0) (color 0 0 0 0)
- (uuid eaac60f2-daaf-442e-bf07-0a370bd12b1e)
- )
- (junction (at 46.99 135.89) (diameter 0) (color 0 0 0 0)
- (uuid eadf4190-1e08-4fbd-b45b-c82b9fe484a6)
- )
- (junction (at 63.5 64.77) (diameter 0) (color 0 0 0 0)
- (uuid ebd18d2c-4840-42ea-ac2b-2cc99c4de81b)
- )
- (junction (at 90.17 49.53) (diameter 0) (color 0 0 0 0)
- (uuid f46ddd0e-ceba-48b1-a7e6-c1a340811f37)
- )
- (junction (at 180.34 92.71) (diameter 0) (color 0 0 0 0)
- (uuid ff26b2b3-54c1-4247-b5f9-18084af407f4)
- )
- (no_connect (at 238.76 135.89) (uuid 075dfb45-730b-400d-9419-522cf0a8b9a2))
- (no_connect (at 139.7 45.72) (uuid 38c3f28a-91e2-4455-bd0b-be6c9eae057f))
- (no_connect (at 139.7 124.46) (uuid 90e2ba75-6a82-43d5-b39a-bd7fbb55bc04))
- (bus_entry (at 144.78 77.47) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 04d42d64-27a1-43a6-87bb-3090ea9cc9ad)
- )
- (bus_entry (at 144.78 62.23) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 090b784a-f725-44e7-aa9c-1da916a3d99b)
- )
- (bus_entry (at 144.78 74.93) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1bbe2e16-a66d-4e9d-aa24-4234b1df6c54)
- )
- (bus_entry (at 144.78 138.43) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c307280e)
- )
- (bus_entry (at 144.78 140.97) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c307280f)
- )
- (bus_entry (at 144.78 143.51) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072810)
- )
- (bus_entry (at 144.78 151.13) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072811)
- )
- (bus_entry (at 144.78 153.67) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072812)
- )
- (bus_entry (at 144.78 156.21) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072813)
- )
- (bus_entry (at 144.78 158.75) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072814)
- )
- (bus_entry (at 144.78 130.81) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072815)
- )
- (bus_entry (at 144.78 133.35) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072816)
- )
- (bus_entry (at 144.78 135.89) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072817)
- )
- (bus_entry (at 144.78 148.59) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072818)
- )
- (bus_entry (at 144.78 146.05) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c5ab560-71c8-4cb9-bde5-52d5c3072819)
- )
- (bus_entry (at 144.78 67.31) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1cf529b3-bf01-454c-8393-bf700548a338)
- )
- (bus_entry (at 144.78 80.01) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3ffff2a0-935b-4116-bbb5-4ed5578179b9)
- )
- (bus_entry (at 144.78 52.07) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 485002a9-9963-4d9d-a244-7127efde70fe)
- )
- (bus_entry (at 144.78 54.61) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7d2128b3-5869-4d24-8a17-f303400e7778)
- )
- (bus_entry (at 144.78 64.77) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ae45ca91-ca6e-4873-87fe-1e65fa5580f9)
- )
- (bus_entry (at 144.78 72.39) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b0622cdc-9cf9-4d01-ae33-51f85ce2f21f)
- )
- (bus_entry (at 144.78 57.15) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c8c5de88-4805-4537-a7b8-c6c75d24c14a)
- )
- (bus_entry (at 144.78 59.69) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e0ff4320-f8c4-41cd-9752-fca265238368)
- )
- (bus_entry (at 144.78 69.85) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eeebce48-da3e-40ce-8071-703025c7a239)
- )
- (wire (pts (xy 107.95 26.67) (xy 107.95 53.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 003ebd75-7776-4b30-9066-77e0adf921a5)
- )
- (wire (pts (xy 105.41 139.7) (xy 110.49 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 01243e97-8b06-431a-aa8e-7c55932f4f9b)
- )
- (wire (pts (xy 120.65 31.75) (xy 120.65 24.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 01724a9a-1814-4f8d-8a88-0cec697e5066)
- )
- (wire (pts (xy 68.58 43.18) (xy 57.15 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0283dd04-2d16-4bbd-b687-8d2fa0b4c43f)
- )
- (wire (pts (xy 148.59 121.92) (xy 156.21 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 02bcb57b-02a3-4713-9a04-3c161f58c05b)
- )
- (wire (pts (xy 93.98 128.27) (xy 90.17 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 03f47f27-ece8-40d9-8787-e42323816c50)
- )
- (wire (pts (xy 46.99 27.94) (xy 48.26 27.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 04b2b388-cefc-47c1-8c4c-575e3920c9b9)
- )
- (wire (pts (xy 243.84 53.34) (xy 243.84 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 05191a4e-c865-4ad5-893c-bd49e03261ca)
- )
- (wire (pts (xy 203.2 92.71) (xy 203.2 88.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 063dd4a5-4309-4260-ad09-c21e2e9f1b44)
- )
- (wire (pts (xy 64.77 40.64) (xy 64.77 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 074e753c-0769-4746-b381-a188f9ccf112)
- )
- (wire (pts (xy 139.7 43.18) (xy 148.59 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 075c40b6-7a0f-4446-8d81-60b8a82409d7)
- )
- (wire (pts (xy 274.32 44.45) (xy 267.97 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0785df82-be98-41a2-85fd-dd859970c401)
- )
- (wire (pts (xy 105.41 123.19) (xy 110.49 123.19))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 092c71db-f94f-46b0-9d68-b413b8a31808)
- )
- (wire (pts (xy 208.28 36.83) (xy 208.28 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 094967e9-1eab-490e-8dc1-788e59d5d863)
- )
- (wire (pts (xy 55.88 62.23) (xy 90.17 62.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 096a29d4-9b4a-4211-8d0c-081565bdba5a)
- )
- (wire (pts (xy 120.65 110.49) (xy 120.65 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0bf041c5-beee-47c5-b347-763fe47bcb0d)
- )
- (wire (pts (xy 90.17 106.68) (xy 55.88 106.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0ef5fcda-f018-4ff0-84ac-def75fee4037)
- )
- (wire (pts (xy 148.59 35.56) (xy 158.75 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0f3884ea-c028-4caf-b62a-013520c8f8ca)
- )
- (wire (pts (xy 115.57 110.49) (xy 115.57 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0ffc638c-04ba-4267-8b0b-11eca3a861d9)
- )
- (wire (pts (xy 158.75 35.56) (xy 168.91 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 10325e04-82f4-4c9a-abb1-2d08d4429483)
- )
- (wire (pts (xy 105.41 132.08) (xy 105.41 123.19))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 10837679-f5bd-4237-8ad2-e94aa2f454b8)
- )
- (wire (pts (xy 90.17 45.72) (xy 90.17 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 120be663-7036-4f23-ad6b-916e766bf8b7)
- )
- (bus (pts (xy 147.32 64.77) (xy 147.32 67.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 16391842-41f9-43e1-8a7c-ea3cbfd751ac)
- )
- (wire (pts (xy 109.22 64.77) (xy 110.49 64.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 176078c5-9a75-45b5-8770-35b8822eded8)
- )
- (bus (pts (xy 147.32 130.81) (xy 147.32 133.35))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 184266a9-d3e0-40de-a326-44f17d90c856)
- )
- (wire (pts (xy 105.41 60.96) (xy 110.49 60.96))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1a160505-4c1d-471a-8fb4-8946463af79a)
- )
- (wire (pts (xy 243.84 36.83) (xy 246.38 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1b70b768-feae-450e-98a2-49460d219153)
- )
- (wire (pts (xy 74.93 151.13) (xy 74.93 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1cc70879-6f01-408e-ba5d-f68f68dec7a5)
- )
- (wire (pts (xy 148.59 43.18) (xy 156.21 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1cf571b4-3091-4a62-a8d2-ee483379101a)
- )
- (wire (pts (xy 63.5 143.51) (xy 74.93 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1d7f6659-17f0-4eca-be59-122f1c9aeac8)
- )
- (wire (pts (xy 105.41 44.45) (xy 101.6 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1fe42478-1a84-48d0-b961-5566d4efdd45)
- )
- (wire (pts (xy 63.5 50.8) (xy 68.58 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2409f17c-91c7-4cf5-a8d0-aba1d45e281f)
- )
- (wire (pts (xy 127 85.09) (xy 124.46 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 244842df-0367-4b87-bfb1-c10040a28854)
- )
- (wire (pts (xy 139.7 135.89) (xy 144.78 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 244b3608-3661-44ff-a8a7-61abda679437)
- )
- (wire (pts (xy 139.7 69.85) (xy 144.78 69.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 260d1a0f-5419-49ac-ab26-ad818affc966)
- )
- (wire (pts (xy 102.87 147.32) (xy 102.87 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 26dc74c9-e910-46d3-abdf-77f907378c43)
- )
- (wire (pts (xy 233.68 36.83) (xy 238.76 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 26e568b0-496a-4ca5-aacc-0f45742cd00d)
- )
- (wire (pts (xy 139.7 138.43) (xy 144.78 138.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 275bbd3c-603b-4e4e-ab1b-f39df69645c9)
- )
- (wire (pts (xy 74.93 143.51) (xy 109.22 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 27a70580-b60f-46fe-8074-147c50f94439)
- )
- (wire (pts (xy 74.93 72.39) (xy 74.93 69.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 27c11d57-8590-4387-a01a-b03430b74b3d)
- )
- (wire (pts (xy 168.91 35.56) (xy 168.91 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2a64a1fe-073c-45b2-874b-cfb84482ab2c)
- )
- (wire (pts (xy 180.34 92.71) (xy 182.88 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2a9cf587-abfb-494c-b897-565e6fe366be)
- )
- (wire (pts (xy 63.5 143.51) (xy 63.5 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2bec04ae-e9c6-4775-8638-f052ad2d9a84)
- )
- (wire (pts (xy 124.46 87.63) (xy 124.46 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2bed65ab-6efd-4383-86ca-6b29689d010a)
- )
- (wire (pts (xy 203.2 93.98) (xy 203.2 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2c339699-6fbd-480f-ae92-124a79a15a40)
- )
- (wire (pts (xy 46.99 140.97) (xy 46.99 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2cab1984-c148-4468-a051-3a980f0f8bad)
- )
- (wire (pts (xy 124.46 166.37) (xy 124.46 163.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2d138610-8d75-4709-af16-f6ec3e2b8d76)
- )
- (wire (pts (xy 90.17 123.19) (xy 90.17 106.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2ee90598-5a1d-4438-9c84-b95faee22ef4)
- )
- (wire (pts (xy 243.84 44.45) (xy 246.38 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 32f063d1-7bfa-4e3f-8449-c94e2644f008)
- )
- (wire (pts (xy 88.9 134.62) (xy 110.49 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3307d1d5-4275-4f49-b318-d426f31b463b)
- )
- (wire (pts (xy 63.5 64.77) (xy 63.5 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 33662d4a-b16b-40c3-96f0-0e88fda690c9)
- )
- (wire (pts (xy 63.5 129.54) (xy 68.58 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 357a53b6-2517-44a8-bd00-97afbab96bd6)
- )
- (bus (pts (xy 147.32 135.89) (xy 147.32 138.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 35e29f82-52dc-4bb2-9403-f57ef6d4c99c)
- )
- (wire (pts (xy 139.7 54.61) (xy 144.78 54.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 377cea7b-02a0-4a97-ba44-c853a84a68a5)
- )
- (wire (pts (xy 210.82 36.83) (xy 208.28 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 38da352b-61a7-48d9-86bb-85815faf6164)
- )
- (wire (pts (xy 208.28 44.45) (xy 210.82 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 39c2426f-030d-48b9-8818-50fd5313f136)
- )
- (wire (pts (xy 40.64 46.99) (xy 46.99 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 39cd34c2-4932-4974-87e1-2576f2eff2ce)
- )
- (wire (pts (xy 102.87 128.27) (xy 110.49 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3a346a10-e41a-45d3-9d5d-60dbe3df92cf)
- )
- (wire (pts (xy 148.59 36.83) (xy 148.59 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3a726666-4c52-4ae4-91bc-0f2f5ee20783)
- )
- (wire (pts (xy 139.7 151.13) (xy 144.78 151.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3bf01212-1402-41c3-8b0e-0290409948a3)
- )
- (wire (pts (xy 193.04 102.87) (xy 193.04 100.33))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3cff8059-07bc-4735-b6a3-eb6fde2d69ce)
- )
- (bus (pts (xy 147.32 67.31) (xy 147.32 69.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3e24e8ad-7fcf-42aa-b70b-a7aec93e47bb)
- )
- (wire (pts (xy 68.58 119.38) (xy 64.77 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3e9a4060-3308-4f3c-8aac-1ce0f630c4a4)
- )
- (wire (pts (xy 109.22 143.51) (xy 110.49 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 420c02f2-bb4a-4815-adf5-19b2d85b2a45)
- )
- (wire (pts (xy 90.17 124.46) (xy 90.17 123.19))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 444e92c5-5857-4256-9fa6-4964d6e90359)
- )
- (wire (pts (xy 203.2 99.06) (xy 203.2 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 44e263b5-1c87-4e1c-bd54-c8f11f5a2832)
- )
- (wire (pts (xy 142.24 35.56) (xy 148.59 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4743d89a-15e5-4563-99d6-1842a9bf2c15)
- )
- (wire (pts (xy 109.22 143.51) (xy 109.22 156.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4796591d-8dbd-4f92-8843-7a875a0dc47c)
- )
- (wire (pts (xy 90.17 49.53) (xy 90.17 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4ef79864-2d8f-4a2c-9798-dac6fb5c4bfb)
- )
- (bus (pts (xy 147.32 72.39) (xy 147.32 74.93))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4f12132e-eb16-4ac9-9908-ce11b8da056d)
- )
- (wire (pts (xy 193.04 92.71) (xy 194.31 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4f6fe5c4-4ead-444a-bb45-f66a9a2736d8)
- )
- (bus (pts (xy 147.32 52.07) (xy 147.32 54.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4f78e0d4-c76b-4be2-8a50-dc0e085947d5)
- )
- (wire (pts (xy 156.21 125.73) (xy 156.21 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 50087860-6a4e-45aa-955d-a7b86b00bd1f)
- )
- (wire (pts (xy 105.41 44.45) (xy 110.49 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5085474b-fc92-43ea-83f7-098c3b27efb2)
- )
- (wire (pts (xy 148.59 115.57) (xy 148.59 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 51217eed-53db-450f-a427-ad84defbf3f5)
- )
- (bus (pts (xy 147.32 80.01) (xy 147.32 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5259a5c6-1ae3-4b33-9966-b10b697ccfc5)
- )
- (wire (pts (xy 24.13 125.73) (xy 24.13 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 53810c5c-3a59-4ce3-a5e9-eb9b73afcaa2)
- )
- (bus (pts (xy 147.32 158.75) (xy 147.32 161.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5387460a-9dd2-432d-9ee9-fcd31b34a65b)
- )
- (wire (pts (xy 90.17 44.45) (xy 90.17 27.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 53bc3435-2749-454b-8b03-85bde7b94608)
- )
- (wire (pts (xy 92.71 53.34) (xy 105.41 53.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 53c8ef81-819b-47b8-aaf8-7c00a4337172)
- )
- (wire (pts (xy 107.95 105.41) (xy 107.95 132.08))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 552a2b0b-260f-4bdb-be93-cdb8b4dee546)
- )
- (wire (pts (xy 102.87 49.53) (xy 101.6 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 553ef767-d435-4f82-b405-34eab888490d)
- )
- (wire (pts (xy 63.5 64.77) (xy 74.93 64.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 593e432d-f481-4a3c-b729-bb54688de2d1)
- )
- (wire (pts (xy 78.74 138.43) (xy 88.9 138.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 59a58d5e-b21f-4a44-a3b5-cd0a00a5bfdf)
- )
- (wire (pts (xy 256.54 53.34) (xy 256.54 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5c97eb19-1b26-416a-883c-48b95f9ca42f)
- )
- (wire (pts (xy 24.13 46.99) (xy 24.13 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5e03dc20-830c-4f8f-9201-1d1dac4e8127)
- )
- (wire (pts (xy 256.54 44.45) (xy 256.54 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5e5a2be6-6028-4e31-815f-8548df07f711)
- )
- (wire (pts (xy 139.7 133.35) (xy 144.78 133.35))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5e8132a6-6cb0-41d9-a79f-54713e72c901)
- )
- (wire (pts (xy 102.87 105.41) (xy 107.95 105.41))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5fbbe786-9c97-42c3-8d84-d8984b053011)
- )
- (wire (pts (xy 58.42 57.15) (xy 46.99 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5ff2fc62-9447-4480-a937-347196405d36)
- )
- (wire (pts (xy 180.34 97.79) (xy 180.34 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 60512c78-64f9-4ec6-b197-f5ca03a7c0cc)
- )
- (wire (pts (xy 139.7 121.92) (xy 148.59 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6117adba-1ee4-425d-92d4-4ad1dce2d302)
- )
- (wire (pts (xy 139.7 148.59) (xy 144.78 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6176d85c-2f26-4635-89dc-ea7cf062c995)
- )
- (wire (pts (xy 186.69 44.45) (xy 186.69 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6187da17-826a-4051-9577-5049014453da)
- )
- (wire (pts (xy 156.21 121.92) (xy 158.75 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6234967d-ef45-4d5d-a28c-20bf2c8ea1a4)
- )
- (wire (pts (xy 88.9 45.72) (xy 90.17 45.72))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 631b4ad7-114f-4065-96f1-c7782a13a389)
- )
- (wire (pts (xy 109.22 77.47) (xy 110.49 77.47))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6325aba2-5ec2-463a-b594-fda65c65baa8)
- )
- (wire (pts (xy 24.13 54.61) (xy 24.13 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 672cfc10-61e9-4e34-8a8b-c8d3e759125c)
- )
- (wire (pts (xy 267.97 44.45) (xy 256.54 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 67d2e852-3b3a-4ac1-8b48-a431e0fdd150)
- )
- (bus (pts (xy 147.32 59.69) (xy 147.32 62.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6830d6de-1fff-444c-b81f-6a0fbde327dd)
- )
- (wire (pts (xy 90.17 127) (xy 88.9 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 688b328c-ab6b-4ab5-99ca-2e3bc1f4a23c)
- )
- (wire (pts (xy 68.58 40.64) (xy 64.77 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 691a84a9-30b1-4311-af9f-a373d6d6c542)
- )
- (wire (pts (xy 68.58 121.92) (xy 57.15 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 69342519-2602-484e-bcf9-ab3508ceb625)
- )
- (wire (pts (xy 92.71 132.08) (xy 105.41 132.08))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 69bc22f5-2639-49d0-87f7-bed66c010c00)
- )
- (wire (pts (xy 55.88 140.97) (xy 90.17 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6b259859-ce22-4c77-80a1-82f4a3c136a1)
- )
- (wire (pts (xy 210.82 40.64) (xy 208.28 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6c1e299a-0839-4e5e-a987-64ba0169df8d)
- )
- (wire (pts (xy 46.99 125.73) (xy 58.42 125.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6c3605ea-c257-4817-a08d-8ebc0247bdd8)
- )
- (wire (pts (xy 186.69 44.45) (xy 198.12 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6c45c715-0a40-4884-a090-d1d77f87f089)
- )
- (wire (pts (xy 139.7 57.15) (xy 144.78 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6dc19a4b-85c5-4f38-a043-b51b357abe67)
- )
- (wire (pts (xy 243.84 44.45) (xy 243.84 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6ef012ae-f195-42de-a6d2-75920ea45b40)
- )
- (wire (pts (xy 217.17 135.89) (xy 218.44 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6f1da77c-3a6e-491e-8dfe-728e28e62d38)
- )
- (wire (pts (xy 58.42 127) (xy 68.58 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 710b5f7f-c724-4abc-ae57-115e24a22c18)
- )
- (bus (pts (xy 147.32 133.35) (xy 147.32 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 73804012-2be5-4423-b372-06a1052d50e3)
- )
- (wire (pts (xy 48.26 140.97) (xy 46.99 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7420263c-208e-49e1-aa3e-2d396b2547e3)
- )
- (wire (pts (xy 186.69 53.34) (xy 186.69 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 74527b00-09b2-48de-955b-cc80a76704c6)
- )
- (wire (pts (xy 228.6 104.14) (xy 228.6 101.6))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7510cdd5-c25d-4d8c-9b0b-98260205f564)
- )
- (wire (pts (xy 246.38 40.64) (xy 233.68 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 75e00f75-30d6-4f59-8e7c-f7b2b51230be)
- )
- (wire (pts (xy 127 163.83) (xy 124.46 163.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 75fce8e1-aae4-4022-9e23-7fcf75a2ebc4)
- )
- (wire (pts (xy 198.12 46.99) (xy 198.12 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 761500d4-eddc-4be1-9d1c-a1d3652e192d)
- )
- (wire (pts (xy 115.57 30.48) (xy 115.57 29.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7685a96e-5ddc-4623-b8d1-c85815a490b4)
- )
- (bus (pts (xy 147.32 140.97) (xy 147.32 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 77f690bd-e0e5-4579-9579-a3e533cf5e64)
- )
- (wire (pts (xy 46.99 106.68) (xy 48.26 106.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7861cf2d-6f5a-4533-b1a9-865616468331)
- )
- (wire (pts (xy 180.34 91.44) (xy 180.34 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 78dd059e-bf69-4cda-927b-12ac6566e193)
- )
- (wire (pts (xy 198.12 44.45) (xy 198.12 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7a47d704-840a-497d-8b88-e4642bc1171a)
- )
- (bus (pts (xy 147.32 54.61) (xy 147.32 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7b29fb2f-e666-4234-b36e-472faaf963fc)
- )
- (wire (pts (xy 90.17 140.97) (xy 90.17 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c074347-e6ee-4274-9ce6-6ddc77b4afa1)
- )
- (wire (pts (xy 58.42 48.26) (xy 68.58 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c2aed71-65ee-4f54-9b88-ad4fdd044680)
- )
- (wire (pts (xy 129.54 87.63) (xy 129.54 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c726bdd-249f-41f5-9693-2941b06dce50)
- )
- (wire (pts (xy 212.09 100.33) (xy 212.09 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c88c976-1898-44a6-a5a4-f122690bdde7)
- )
- (wire (pts (xy 243.84 44.45) (xy 233.68 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7cd28375-0653-4b47-938c-687a8ef2860a)
- )
- (wire (pts (xy 139.7 146.05) (xy 144.78 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7f17e1ae-7db4-46fb-907c-4f741f92ae68)
- )
- (wire (pts (xy 57.15 43.18) (xy 57.15 38.1))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 83a27295-74f9-4ab9-8f03-bf747f7af079)
- )
- (wire (pts (xy 90.17 48.26) (xy 88.9 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 85e63325-0515-4648-8ed3-a77acc3c50ea)
- )
- (wire (pts (xy 68.58 132.08) (xy 58.42 132.08))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8703a7c0-6199-4ef9-8a38-3b4b12a0484d)
- )
- (bus (pts (xy 147.32 156.21) (xy 147.32 158.75))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 87548668-f14f-4c49-880c-c8f92244f08c)
- )
- (wire (pts (xy 58.42 125.73) (xy 58.42 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 887e8835-5fbf-4859-90b1-3094d24ce7f6)
- )
- (wire (pts (xy 139.7 74.93) (xy 144.78 74.93))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 88862230-1722-432c-a0b3-f34b88efe36f)
- )
- (wire (pts (xy 208.28 46.99) (xy 208.28 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 89dff3e7-37ac-4cfe-8100-0c2e9b13fcd5)
- )
- (bus (pts (xy 147.32 74.93) (xy 147.32 77.47))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8a5490bf-c72d-4797-a7c2-f6d906e5fa1b)
- )
- (wire (pts (xy 46.99 46.99) (xy 46.99 27.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8ec3a9fb-5447-4904-80c4-dc29e33e7f87)
- )
- (wire (pts (xy 139.7 130.81) (xy 144.78 130.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8ef24b7b-bd10-44dd-8db0-c9f0c06af2ac)
- )
- (wire (pts (xy 139.7 143.51) (xy 144.78 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8f9da272-cc63-492e-9bcf-c45410c949f9)
- )
- (wire (pts (xy 129.54 166.37) (xy 129.54 163.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8f9fb961-c88a-4dec-a2db-637442b772fe)
- )
- (wire (pts (xy 78.74 59.69) (xy 88.9 59.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 90386f46-2044-493e-9671-60d1bc81d645)
- )
- (wire (pts (xy 68.58 53.34) (xy 58.42 53.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 91b5a15b-63fa-455d-9289-2cc567ee8ce9)
- )
- (wire (pts (xy 115.57 31.75) (xy 115.57 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 92a39183-f2ab-41d0-b7f7-6ef31a6cc9c1)
- )
- (wire (pts (xy 105.41 123.19) (xy 101.6 123.19))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9548b383-e158-4d40-90de-d8f7f62758fa)
- )
- (wire (pts (xy 48.26 62.23) (xy 46.99 62.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 955a197b-a623-4a38-b2c3-fa78d222a0eb)
- )
- (wire (pts (xy 156.21 46.99) (xy 156.21 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 960256a1-355c-4098-baca-2742ef3f90f4)
- )
- (bus (pts (xy 147.32 77.47) (xy 147.32 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 97c5d141-11bc-4c02-821c-3d83abdbb8da)
- )
- (wire (pts (xy 198.12 40.64) (xy 208.28 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 98b4862a-3a4d-4b0f-95ab-00f09ae20493)
- )
- (wire (pts (xy 148.59 120.65) (xy 148.59 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9958c7b6-049f-4bf8-95a7-2130bae6ff54)
- )
- (wire (pts (xy 107.95 53.34) (xy 110.49 53.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9a758154-8721-4e87-9e6b-c31c61faf69f)
- )
- (wire (pts (xy 142.24 114.3) (xy 148.59 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9a837dd8-5dfc-43d4-8872-9c3d577e8dc5)
- )
- (wire (pts (xy 88.9 55.88) (xy 110.49 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9ab74100-d7ae-4618-9cbd-ce517c630741)
- )
- (wire (pts (xy 88.9 59.69) (xy 88.9 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9cdf4655-338c-4564-84b1-f8347a4cfdbd)
- )
- (wire (pts (xy 203.2 92.71) (xy 212.09 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9f48873b-204d-4c84-b2af-bf99af9ce009)
- )
- (wire (pts (xy 102.87 26.67) (xy 107.95 26.67))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9f66aef9-b991-45d3-8353-a72cb459afe7)
- )
- (wire (pts (xy 118.11 31.75) (xy 118.11 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9fa3d568-9aed-4bf0-8ed4-1c7a1c4c7092)
- )
- (wire (pts (xy 142.24 36.83) (xy 142.24 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a07becbb-dceb-40f1-a241-86591a15ef4b)
- )
- (wire (pts (xy 198.12 57.15) (xy 198.12 54.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a195c0eb-5c2e-432e-8a78-a20f3da90b20)
- )
- (wire (pts (xy 93.98 44.45) (xy 90.17 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a24b0e81-ae2f-4d8f-a566-35d158289635)
- )
- (bus (pts (xy 147.32 57.15) (xy 147.32 59.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a25a9f14-1ec8-4cad-bb8a-657bcbaa608c)
- )
- (bus (pts (xy 147.32 143.51) (xy 147.32 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a3f00348-78c8-4c47-8883-e74cfd819bec)
- )
- (wire (pts (xy 88.9 124.46) (xy 90.17 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a72f9140-e063-43d0-9b56-cbeb572e2879)
- )
- (wire (pts (xy 139.7 64.77) (xy 144.78 64.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a8149cf9-ddee-4ea9-9d5a-157fbac44725)
- )
- (wire (pts (xy 27.94 52.07) (xy 24.13 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a8336e37-ec41-475a-877e-78ab8bf1ef49)
- )
- (wire (pts (xy 105.41 53.34) (xy 105.41 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a85b2782-9ca8-47f9-aedc-7b9e4e4ee43f)
- )
- (wire (pts (xy 102.87 49.53) (xy 110.49 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a911262d-eebd-4c5d-8d66-a564b4181554)
- )
- (wire (pts (xy 267.97 46.99) (xy 267.97 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a9ca8cb2-f90a-496d-8a6c-5d3636f10b70)
- )
- (wire (pts (xy 246.38 36.83) (xy 246.38 40.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ac2bef67-ab9a-448d-ae96-6ae08d4aca05)
- )
- (wire (pts (xy 228.6 143.51) (xy 228.6 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ac8fc34e-55ea-49dd-9069-86efbb6a0a0b)
- )
- (wire (pts (xy 168.91 114.3) (xy 168.91 125.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid adc01fa5-9d3e-4a38-89c7-1c164e0e1b88)
- )
- (wire (pts (xy 24.13 46.99) (xy 33.02 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ae2ee269-bab9-422c-9352-6479ab6c1b0d)
- )
- (wire (pts (xy 33.02 57.15) (xy 24.13 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ae9a70e8-6627-41d3-957d-83bfe01d0953)
- )
- (wire (pts (xy 46.99 62.23) (xy 46.99 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1ddb26a-68d2-4137-bfc7-26904de29a80)
- )
- (wire (pts (xy 115.57 109.22) (xy 115.57 107.95))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b3967552-540a-412c-9349-dcdbc0c75112)
- )
- (wire (pts (xy 92.71 68.58) (xy 92.71 53.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b3b9cca7-2004-48ad-9eab-a9065fe580ae)
- )
- (wire (pts (xy 139.7 156.21) (xy 144.78 156.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b42be2d1-a9d9-4fe1-a21f-e566b7e86d12)
- )
- (wire (pts (xy 267.97 57.15) (xy 267.97 54.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b45f0aa9-20f6-4585-89a3-ae50d0269197)
- )
- (wire (pts (xy 93.98 123.19) (xy 90.17 123.19))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b4705c88-e1ed-4ccd-8d6e-22333662acf9)
- )
- (wire (pts (xy 142.24 115.57) (xy 142.24 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b4de1e4e-1db2-4ea2-8739-486d706e67ed)
- )
- (wire (pts (xy 46.99 46.99) (xy 58.42 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ba3d912c-5219-4f30-b434-73493c880e0e)
- )
- (wire (pts (xy 118.11 109.22) (xy 115.57 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bc39f092-4138-4d5a-84a4-3d946363c1d8)
- )
- (wire (pts (xy 139.7 36.83) (xy 142.24 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bc571c34-f4e9-4792-ba16-b033850a55b3)
- )
- (wire (pts (xy 33.02 135.89) (xy 24.13 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c0d8e2cf-1009-4b24-bfd6-984ebaff563e)
- )
- (wire (pts (xy 64.77 119.38) (xy 64.77 115.57))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c1295aa7-41a8-47d4-bf86-a49c6ada9877)
- )
- (wire (pts (xy 88.9 138.43) (xy 88.9 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c2f861f7-1e75-4a7a-b89b-65e64fa0465e)
- )
- (wire (pts (xy 40.64 125.73) (xy 46.99 125.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c3d990e1-2fb5-4d17-bf65-b9e11ec79026)
- )
- (wire (pts (xy 58.42 132.08) (xy 58.42 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c5874219-9671-4b37-90f8-e0f29f61292f)
- )
- (wire (pts (xy 109.22 64.77) (xy 109.22 77.47))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c58fa057-6484-486d-bc3b-8dabc8f82f4b)
- )
- (wire (pts (xy 46.99 57.15) (xy 40.64 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c6582fbf-3bea-4ffa-9118-ee7a51f0c2b7)
- )
- (wire (pts (xy 58.42 135.89) (xy 46.99 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ca763ba2-8676-4bf3-a105-fd01b25b898e)
- )
- (bus (pts (xy 147.32 146.05) (xy 147.32 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid caa228b4-0e3d-46a8-a593-169e38cd2503)
- )
- (wire (pts (xy 27.94 139.7) (xy 27.94 130.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid caef0fd3-ed46-4541-9b93-6eb058b826a8)
- )
- (wire (pts (xy 102.87 128.27) (xy 101.6 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cbd48053-e393-4238-b923-1bb495692c98)
- )
- (wire (pts (xy 139.7 77.47) (xy 144.78 77.47))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ccdfad74-9ae7-40e6-9d12-1385ab95f3bd)
- )
- (bus (pts (xy 147.32 62.23) (xy 147.32 64.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cdf0589d-1a1c-40fa-8bd4-5ca3dda963ab)
- )
- (wire (pts (xy 27.94 60.96) (xy 27.94 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ce8533f1-3478-468a-aa3b-604b67f0cb9f)
- )
- (wire (pts (xy 139.7 80.01) (xy 144.78 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cf57d402-d25d-4b09-b1e5-0d64841febb0)
- )
- (wire (pts (xy 139.7 140.97) (xy 144.78 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cf8031a3-049b-48e0-ac12-f6e6b9d8aee7)
- )
- (wire (pts (xy 58.42 46.99) (xy 58.42 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d1923603-c28f-43d1-968b-0a4d3ae695f1)
- )
- (bus (pts (xy 147.32 148.59) (xy 147.32 151.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d1f50351-0265-47a2-ac1f-aec7f90906cf)
- )
- (wire (pts (xy 46.99 125.73) (xy 46.99 106.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d234ab5b-37f3-4ce8-8ab8-6c1ad8fe3665)
- )
- (wire (pts (xy 90.17 128.27) (xy 90.17 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d2f04497-0bff-4d4e-a79b-392a071c0c38)
- )
- (wire (pts (xy 46.99 135.89) (xy 40.64 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d34b7e60-077e-4a4d-aa89-d0693e4a95b4)
- )
- (wire (pts (xy 102.87 68.58) (xy 102.87 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d3a5582e-7550-4a56-a371-67830679981a)
- )
- (wire (pts (xy 156.21 43.18) (xy 158.75 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d50aa17b-6b15-421f-bd24-f5f7668be7cd)
- )
- (wire (pts (xy 256.54 44.45) (xy 254 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d57b45be-7c99-40be-9f17-5814719fc42a)
- )
- (wire (pts (xy 228.6 101.6) (xy 236.22 101.6))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d7151fa6-554c-43a7-9b1f-a53dcec90564)
- )
- (bus (pts (xy 147.32 69.85) (xy 147.32 72.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d75cba47-005e-437c-b455-a3ccb217e6f2)
- )
- (wire (pts (xy 236.22 101.6) (xy 236.22 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dc56b0f1-54e4-4530-b364-544e853476e1)
- )
- (wire (pts (xy 118.11 30.48) (xy 115.57 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dda3124c-bcc2-4331-9d0b-9d8cf6dc91bc)
- )
- (wire (pts (xy 139.7 67.31) (xy 144.78 67.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid de544d92-592f-4077-8d02-780b0cf58c81)
- )
- (wire (pts (xy 109.22 156.21) (xy 110.49 156.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid de919fd1-c053-4012-af92-2547057287e4)
- )
- (wire (pts (xy 92.71 147.32) (xy 92.71 132.08))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid df6ba44e-ba7e-4c1c-91d0-21a6a45849fd)
- )
- (wire (pts (xy 228.6 125.73) (xy 228.6 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid df87fdfd-c0a5-4e02-88d9-43c8ada6ab98)
- )
- (wire (pts (xy 118.11 110.49) (xy 118.11 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e0cfbbbb-cf9f-4250-b380-6e6fcee71c81)
- )
- (wire (pts (xy 58.42 53.34) (xy 58.42 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e149c3c4-d7b9-47bb-86ed-9300af243568)
- )
- (bus (pts (xy 147.32 153.67) (xy 147.32 156.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e15c7d42-c69b-4570-aaf2-037b80b45f6b)
- )
- (wire (pts (xy 139.7 153.67) (xy 144.78 153.67))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e1d18b63-c2f7-4441-8066-dc59036bb959)
- )
- (wire (pts (xy 57.15 121.92) (xy 57.15 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e1e8943f-1542-49b9-8a77-4e058d3b27bd)
- )
- (wire (pts (xy 139.7 59.69) (xy 144.78 59.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e22a8c14-409b-4c0d-9ea6-f798fd2a64fb)
- )
- (wire (pts (xy 139.7 62.23) (xy 144.78 62.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e254966a-fd4c-4b92-8c1e-e6f2dea920e3)
- )
- (wire (pts (xy 74.93 64.77) (xy 109.22 64.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e71d85dc-c578-42ca-a9ba-15a9955ae0d7)
- )
- (wire (pts (xy 148.59 114.3) (xy 158.75 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e7b1edb6-0937-4481-ba4d-fdf1421f1eee)
- )
- (wire (pts (xy 148.59 41.91) (xy 148.59 43.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e8b5f4f4-cf8f-4d14-b338-7bfe8879c74a)
- )
- (wire (pts (xy 208.28 40.64) (xy 208.28 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e9408a8f-9f63-49f1-8fa2-6f0bf1500547)
- )
- (wire (pts (xy 194.31 92.71) (xy 203.2 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e9ef4f98-d23c-4f06-9b63-e4329152b262)
- )
- (wire (pts (xy 24.13 125.73) (xy 33.02 125.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e9f595e0-98f8-4ac1-9f2f-f11fa467f653)
- )
- (bus (pts (xy 147.32 151.13) (xy 147.32 153.67))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ebbdf9a9-6b74-4607-ac06-97cac5a8c5df)
- )
- (wire (pts (xy 107.95 132.08) (xy 110.49 132.08))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ed1c9f34-abde-40fe-8665-ce7c00669956)
- )
- (wire (pts (xy 139.7 115.57) (xy 142.24 115.57))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eea68845-7360-463b-ac85-c2b8af19ea8e)
- )
- (bus (pts (xy 147.32 138.43) (xy 147.32 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f1ff0376-df87-46d7-8d9b-343303ef4cb5)
- )
- (wire (pts (xy 24.13 133.35) (xy 24.13 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f38d5394-08d7-4d3c-b3cc-d93c334a1833)
- )
- (wire (pts (xy 190.5 92.71) (xy 193.04 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f3ba7fd6-0d76-44dc-8ce3-6e549563da17)
- )
- (wire (pts (xy 194.31 88.9) (xy 194.31 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f536a404-a3fc-4844-9517-c991b69e54fb)
- )
- (wire (pts (xy 90.17 62.23) (xy 90.17 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f5e9c3d6-4232-447f-a21e-b30aba35562a)
- )
- (wire (pts (xy 158.75 114.3) (xy 168.91 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f5fea6ea-1a82-4835-95fa-9b144be747c5)
- )
- (wire (pts (xy 139.7 52.07) (xy 144.78 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f79785a5-208a-4235-9391-5b7711374489)
- )
- (wire (pts (xy 90.17 27.94) (xy 55.88 27.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fa636e24-fcab-4fc3-8ae8-b9a72e31bb95)
- )
- (wire (pts (xy 27.94 130.81) (xy 24.13 130.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fa8de533-2bba-4164-af3e-bb56c1e09e6f)
- )
- (wire (pts (xy 139.7 158.75) (xy 144.78 158.75))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fb52a73d-06b0-4037-9dc2-748fc1eab25b)
- )
- (wire (pts (xy 93.98 49.53) (xy 90.17 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fdea7d22-fa7f-4a2b-bc88-82df93475657)
- )
- (wire (pts (xy 139.7 72.39) (xy 144.78 72.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ffffbbd3-6160-41b8-9fc3-8da38ac2e29d)
- )
- (label "PA7" (at 140.97 140.97 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 013d417b-1f74-445c-bd66-a6e15d78d8ae)
- )
- (label "PA4" (at 140.97 148.59 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 11c572bc-df03-48c0-809c-3790d7d53628)
- )
- (label "PA2" (at 140.97 153.67 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 120b403a-38cd-4d65-bd5c-44946b7260d7)
- )
- (label "PB7" (at 140.97 62.23 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 1a173796-2720-4210-935c-7620cb7202f7)
- )
- (label "PB1" (at 140.97 77.47 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 21b43e9b-53fe-489e-86ab-968ece63ff57)
- )
- (label "PA11" (at 140.97 130.81 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 30dd6440-1030-4569-beb3-6cfa98c1d7e4)
- )
- (label "PB11" (at 140.97 52.07 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 4a09b9ea-fa7c-47ea-8264-5633d7b2ec00)
- )
- (label "PB0" (at 140.97 80.01 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 4a500c8f-6b06-4826-8b2a-6f7aed73082c)
- )
- (label "PB8" (at 140.97 59.69 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 4b2a89eb-132c-44a5-aea9-fff356df8dce)
- )
- (label "PA5" (at 140.97 146.05 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 4b59ee4b-5dc8-4de5-9668-bf833e2e8487)
- )
- (label "PB10" (at 140.97 54.61 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 5793d64a-b146-4013-9476-9aa7eba42937)
- )
- (label "PA10" (at 140.97 133.35 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 584558d4-5e67-4d91-bcac-329fa29e6462)
- )
- (label "PB5" (at 140.97 67.31 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 5df97e5e-5a90-42a7-b5bd-2a6b01d2c37c)
- )
- (label "PB[0..11]" (at 147.32 80.01 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 85d95999-0759-4009-8310-08852ded4141)
- )
- (label "PA3" (at 140.97 151.13 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a54bc8df-c6bc-4ebe-af80-22e10bde45e2)
- )
- (label "PA8" (at 140.97 138.43 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid aa7c0edf-20b3-4789-a939-d075c9201961)
- )
- (label "PB2" (at 140.97 74.93 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ac594f69-1c14-4942-9d89-a8580c80758c)
- )
- (label "PB3" (at 140.97 72.39 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid aff8eb21-be3a-44fb-a05b-76b2effce17b)
- )
- (label "PA0" (at 140.97 158.75 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b2315f52-093e-4e89-a45a-9f669e456131)
- )
- (label "PA9" (at 140.97 135.89 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid cec9da1c-e738-46a7-851b-85e1314228b4)
- )
- (label "PB9" (at 140.97 57.15 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid d63ccd15-67fd-4065-be3c-9306fa39db61)
- )
- (label "PB4" (at 140.97 69.85 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid dc15e679-7802-40cf-b2d9-d1daf874cd5d)
- )
- (label "PA1" (at 140.97 156.21 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e0ac013c-0047-4d58-890b-86000532296d)
- )
- (label "PB6" (at 140.97 64.77 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e1560324-7fd3-4c2a-a532-5ecbd1aa5964)
- )
- (label "PA[0..11]" (at 147.32 158.75 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e5124d27-d652-469c-be72-d5b549989566)
- )
- (label "PA6" (at 140.97 143.51 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e6fb1c0f-c0d0-4744-b26d-cff5eac56eaf)
- )
- (hierarchical_label "CLK_60MHz" (shape input) (at 78.74 59.69 180)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 49cfc9c9-3fb2-430a-b873-dc3fea4e94d6)
- )
- (hierarchical_label "CLK_60MHz" (shape input) (at 78.74 138.43 180)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 519161f5-d8aa-483a-9af6-b2725d96f02e)
- )
- (hierarchical_label "PA[0..11]" (shape input) (at 147.32 161.29 0)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 775034c0-2789-453a-ac9b-0768fde0da60)
- )
- (hierarchical_label "PB[0..11]" (shape input) (at 147.32 82.55 0)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid dee4d7d7-faac-4ebe-9751-fa130e81655d)
- )
- (hierarchical_label "CLK_60MHz" (shape input) (at 217.17 135.89 180)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid e1234f9b-3c6a-4e84-91c1-56a26ea9875a)
- )
- (symbol (lib_id "power:+3.3VADC") (at 115.57 107.95 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 0073505c-a814-46df-b863-e34c87cae6cf)
- (property "Reference" "#PWR0210" (id 0) (at 119.38 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3VADC" (id 1) (at 116.078 104.3178 0))
- (property "Footprint" "" (id 2) (at 115.57 107.95 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 115.57 107.95 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid bb68f42d-7f06-48cb-9e94-2243008f2aa5))
- )
- (symbol (lib_id "Device:R") (at 97.79 44.45 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 04a8b46f-a99a-42a7-af65-f98a8345abfc)
- (property "Reference" "R60" (id 0) (at 93.98 41.91 90))
- (property "Value" "22" (id 1) (at 101.6 41.91 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 42.672 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 97.79 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25092" (id 4) (at 97.79 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fb1f66f3-af8a-4bf9-849c-21772e9d75b5))
- (pin "2" (uuid 54f01037-c99f-413c-b5d8-826e967d06ef))
- )
- (symbol (lib_id "power:GND") (at 105.41 60.96 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 09b9d37c-f3b8-419a-9cc7-28197aab4e7f)
- (property "Reference" "#PWR0237" (id 0) (at 105.41 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 105.537 65.3542 0))
- (property "Footprint" "" (id 2) (at 105.41 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 105.41 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 59e205a0-0aaf-4336-a758-85c99545dc64))
- )
- (symbol (lib_id "Device:C") (at 63.5 147.32 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 0b98176c-f35e-4f33-aaa2-9c6b5da0eecd)
- (property "Reference" "C44" (id 0) (at 66.421 146.1516 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100nF" (id 1) (at 66.421 148.463 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 62.5348 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 63.5 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 63.5 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4a5a8ab0-ced1-42ca-94ea-610139740e6c))
- (pin "2" (uuid 9c10a592-f854-4d32-a475-39c17fbe2389))
- )
- (symbol (lib_id "Device:L") (at 186.69 92.71 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 0e088394-8c5a-44be-ac98-14bc2dc355fb)
- (property "Reference" "L2" (id 0) (at 186.69 87.884 90))
- (property "Value" "100uH" (id 1) (at 186.69 90.1954 90))
- (property "Footprint" "Greaseweazle:L_6.3x6.3_H3" (id 2) (at 186.69 92.71 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 186.69 92.71 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C434839" (id 4) (at 186.69 92.71 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 944a3c17-918d-4202-bbe4-9db871780cba))
- (pin "2" (uuid 068ba11b-ee45-4493-9a81-1a21276b4028))
- )
- (symbol (lib_id "power:GNDA") (at 74.93 151.13 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 0e117833-f253-45cc-981e-737ef0e2df43)
- (property "Reference" "#PWR0195" (id 0) (at 74.93 157.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 75.057 155.5242 0))
- (property "Footprint" "" (id 2) (at 74.93 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 74.93 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fb225054-e6fe-4662-a609-9ebd4d6c3512))
- )
- (symbol (lib_id "Greaseweazle:CP_Small-Device") (at 148.59 118.11 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 0f0a097f-1e00-488c-a3a7-2a1967026c19)
- (property "Reference" "C61" (id 0) (at 150.8252 116.9416 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "47uF" (id 1) (at 150.8252 119.253 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 148.59 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 148.59 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C140782" (id 4) (at 148.59 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a2d4439e-56de-4165-aacb-96aed7b447de))
- (pin "2" (uuid 460ebdac-374b-409b-9db1-5be4cbf58e0c))
- )
- (symbol (lib_id "power:GNDA") (at 102.87 76.2 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 170d5544-5d57-4ed1-bad2-499a01f94eb0)
- (property "Reference" "#PWR0243" (id 0) (at 102.87 82.55 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 102.997 80.5942 0))
- (property "Footprint" "" (id 2) (at 102.87 76.2 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 102.87 76.2 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 681b4030-53a3-4adb-87cd-afe8674c4a2d))
- )
- (symbol (lib_id "Device:C_Polarized_Small") (at 243.84 50.8 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 19a96f21-b011-4a2d-8cd2-5048cd043ae5)
- (property "Reference" "C63" (id 0) (at 240.919 51.9684 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "3.3uF" (id 1) (at 240.919 49.657 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 243.84 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 243.84 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C87864" (id 4) (at 243.84 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3313e1f7-22d7-4e45-b856-478e2647a583))
- (pin "2" (uuid 6adb311f-e7e8-4d6d-8178-2b2ebb0a42e7))
- )
- (symbol (lib_id "power:GNDA") (at 124.46 166.37 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 1a0db7ac-3a63-4703-b6a1-569c421c930d)
- (property "Reference" "#PWR0212" (id 0) (at 124.46 172.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 124.587 170.7642 0))
- (property "Footprint" "" (id 2) (at 124.46 166.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 124.46 166.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c5e2fdd6-192c-41da-86f8-130ce4877c68))
- )
- (symbol (lib_id "power:GND") (at 186.69 57.15 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 1b529824-337e-4f41-8aae-49b6ae00652d)
- (property "Reference" "#PWR0192" (id 0) (at 186.69 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 186.817 61.5442 0))
- (property "Footprint" "" (id 2) (at 186.69 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 186.69 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d8bcca08-2cea-4af2-93a9-b02b9cd32fd1))
- )
- (symbol (lib_id "Device:R") (at 52.07 106.68 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 1b5747a6-762a-4b6e-8f91-1aa90cbd0339)
- (property "Reference" "R67" (id 0) (at 52.07 101.4222 90))
- (property "Value" "1k" (id 1) (at 52.07 103.7336 90))
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 104.902 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 52.07 106.68 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 52.07 106.68 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 30626291-3ba9-4d29-b915-bfe01c50f50a))
- (pin "2" (uuid d76c55be-6853-47cd-b030-4915d190f6b4))
- )
- (symbol (lib_id "power:PWR_FLAG") (at 274.32 44.45 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 1d3f356b-b244-426b-8b1c-39ae6c5a4b4e)
- (property "Reference" "#FLG0102" (id 0) (at 274.32 42.545 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "PWR_FLAG" (id 1) (at 274.32 40.0304 0))
- (property "Footprint" "" (id 2) (at 274.32 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 274.32 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 43579b38-23bb-48b5-a4f4-d4b1dea3f50a))
- )
- (symbol (lib_id "power:GNDA") (at 27.94 139.7 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 20dbb1dd-fd1c-48bd-9224-700eadf6ff96)
- (property "Reference" "#PWR0205" (id 0) (at 27.94 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 28.067 144.0942 0))
- (property "Footprint" "" (id 2) (at 27.94 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 27.94 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 879ef72d-b5ca-4d9a-ae02-da064c709ab7))
- )
- (symbol (lib_id "power:GNDA") (at 27.94 60.96 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 28122e99-85f9-4440-8a10-eee271bd6ca9)
- (property "Reference" "#PWR0247" (id 0) (at 27.94 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 28.067 65.3542 0))
- (property "Footprint" "" (id 2) (at 27.94 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 27.94 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6720fdd4-3798-4881-a00c-584c7659eae3))
- )
- (symbol (lib_id "Device:C_Polarized_Small") (at 186.69 50.8 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 292eecaa-1713-4c27-a066-538c5ee44376)
- (property "Reference" "C55" (id 0) (at 189.611 49.6316 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "3.3uF" (id 1) (at 189.611 51.943 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 186.69 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 186.69 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C87864" (id 4) (at 186.69 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8ac1dc63-c9f8-428f-bb01-1494ff534a0d))
- (pin "2" (uuid cda29353-796a-4eb7-9d62-28deea5871e5))
- )
- (symbol (lib_id "power:GNDA") (at 63.5 72.39 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 29939c5d-d0d4-47ef-960c-1fd924a994de)
- (property "Reference" "#PWR0233" (id 0) (at 63.5 78.74 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 63.627 76.7842 0))
- (property "Footprint" "" (id 2) (at 63.5 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 63.5 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ccb29ce9-5c1f-4058-b794-ce393f68c622))
- )
- (symbol (lib_id "power:-3V3") (at 57.15 116.84 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 29b617e8-701d-4c6d-a11f-ec26e65094f0)
- (property "Reference" "#PWR0207" (id 0) (at 57.15 114.3 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "-3V3" (id 1) (at 57.531 112.4458 0))
- (property "Footprint" "" (id 2) (at 57.15 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 57.15 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0dbba712-366a-4c7c-bef1-f25f022e173d))
- )
- (symbol (lib_id "Device:C") (at 168.91 129.54 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 2a3aa0e4-74df-4ebb-9b71-9df5a99f9b47)
- (property "Reference" "C72" (id 0) (at 171.831 128.3716 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100nF" (id 1) (at 171.831 130.683 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 167.9448 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 168.91 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 168.91 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid bf62b637-a9b2-4ac7-82a9-942faa9fa708))
- (pin "2" (uuid cf80babb-c4fc-43b0-9783-0eb41e4a0dd4))
- )
- (symbol (lib_id "power:GNDA") (at 256.54 57.15 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 2ba0cfff-1796-4cd2-b9b4-0ee05bc768ef)
- (property "Reference" "#PWR0188" (id 0) (at 256.54 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 256.667 61.5442 0))
- (property "Footprint" "" (id 2) (at 256.54 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 256.54 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0162bd50-6b29-4153-9252-cdf2033ff21e))
- )
- (symbol (lib_id "Device:C") (at 92.71 72.39 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 31880848-2d7e-47ad-8623-f94e3a0c4cbb)
- (property "Reference" "C59" (id 0) (at 93.98 69.85 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "18pF" (id 1) (at 93.98 74.93 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 91.7448 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 92.71 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1549" (id 4) (at 92.71 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid deddb53b-96c2-484b-9bbf-a78763195b66))
- (pin "2" (uuid 9db3a66c-2d1b-4584-a5b0-f006f3cb290f))
- )
- (symbol (lib_id "power:GND") (at 228.6 146.05 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 32d2ac55-cc63-4901-8668-24b71663069f)
- (property "Reference" "#PWR0253" (id 0) (at 228.6 152.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 228.727 150.4442 0))
- (property "Footprint" "" (id 2) (at 228.6 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 228.6 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6e75788b-2832-4b40-b21a-03631fb4c8c5))
- )
- (symbol (lib_id "Device:C") (at 198.12 50.8 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 3451e0b8-e5cc-4bd4-9ee5-586832783336)
- (property "Reference" "C57" (id 0) (at 201.041 49.6316 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 201.041 51.943 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 199.0852 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 198.12 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 198.12 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e3b3bdb5-8e1a-4d04-921c-019aa07fd8e9))
- (pin "2" (uuid 1cb3ec4c-1105-40f6-9e94-81f1270b1f6e))
- )
- (symbol (lib_id "power:GND") (at 105.41 139.7 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 37191450-a834-4171-80df-9fee91b104fd)
- (property "Reference" "#PWR0191" (id 0) (at 105.41 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 105.537 144.0942 0))
- (property "Footprint" "" (id 2) (at 105.41 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 105.41 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 69a65e47-e837-483a-bd2b-f412a2c11ef0))
- )
- (symbol (lib_id "Device:R") (at 52.07 62.23 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 376504a8-15f0-43da-95a7-b6fc08c06053)
- (property "Reference" "R59" (id 0) (at 50.8 59.69 90))
- (property "Value" "1k" (id 1) (at 55.88 59.69 90))
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 60.452 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 52.07 62.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 52.07 62.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid eb97e33a-05d8-478d-9735-59d4fe89eda1))
- (pin "2" (uuid cb3b4fff-88a7-4d52-a377-3bd733aaae99))
- )
- (symbol (lib_id "power:GNDA") (at 156.21 54.61 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 37eddccd-66cd-4aae-afaa-68dcc9005132)
- (property "Reference" "#PWR0240" (id 0) (at 156.21 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 156.337 59.0042 0))
- (property "Footprint" "" (id 2) (at 156.21 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 156.21 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d48d0988-1a90-4e49-a0e4-8c75376681c0))
- )
- (symbol (lib_id "power:+3V3") (at 228.6 125.73 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 39be1a80-3abf-4cc9-a03f-277d4498dff6)
- (property "Reference" "#PWR0252" (id 0) (at 228.6 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 228.981 121.3358 0))
- (property "Footprint" "" (id 2) (at 228.6 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 228.6 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a85725c3-8402-44d8-97a4-256028888dbd))
- )
- (symbol (lib_id "power:+3.3VADC") (at 64.77 36.83 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 3c0f3210-25b2-405c-98da-8abdc48a0da4)
- (property "Reference" "#PWR0249" (id 0) (at 68.58 38.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3VADC" (id 1) (at 65.278 33.1978 0))
- (property "Footprint" "" (id 2) (at 64.77 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 64.77 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 12b4641d-c2b6-4d4b-88cc-fd4b73ae7d98))
- )
- (symbol (lib_id "Device:C") (at 102.87 72.39 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 3f8bce2f-f092-4b69-a2f7-7ebff8165487)
- (property "Reference" "C60" (id 0) (at 104.14 69.85 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "18pF" (id 1) (at 104.14 74.93 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 101.9048 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 102.87 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1549" (id 4) (at 102.87 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 98893e1a-8043-4a29-b959-364bec7b743b))
- (pin "2" (uuid 1ef8d051-42bb-43b4-aca9-1d13b188e1ed))
- )
- (symbol (lib_id "power:+3V3") (at 120.65 24.13 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 3fb74797-86cc-4b2b-bcc9-333f56933c4c)
- (property "Reference" "#PWR0235" (id 0) (at 120.65 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 121.031 19.7358 0))
- (property "Footprint" "" (id 2) (at 120.65 24.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 120.65 24.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9cd72f16-ea8c-494e-aadf-6467928fac0d))
- )
- (symbol (lib_id "Device:R") (at 36.83 135.89 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 40ba2de4-e92f-4d99-9118-a68407bb88ff)
- (property "Reference" "R66" (id 0) (at 36.83 130.6322 90))
- (property "Value" "1k" (id 1) (at 36.83 132.9436 90))
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 134.112 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 36.83 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 36.83 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d0542f4e-ae03-4339-a72b-e810d417e75c))
- (pin "2" (uuid 4142e150-0155-4c03-8963-8cfbbca03939))
- )
- (symbol (lib_id "power:GNDA") (at 212.09 102.87 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 4520838b-b386-4c1a-ae61-0999e4bb0c70)
- (property "Reference" "#PWR0199" (id 0) (at 212.09 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 212.217 107.2642 0))
- (property "Footprint" "" (id 2) (at 212.09 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 212.09 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2222cea1-32b2-4088-970d-b48750d85806))
- )
- (symbol (lib_id "Device:R") (at 52.07 27.94 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 46617fbe-d99c-4562-8e6d-b69c8cd6a29e)
- (property "Reference" "R58" (id 0) (at 52.07 22.6822 90))
- (property "Value" "1k" (id 1) (at 52.07 24.9936 90))
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 26.162 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 52.07 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 52.07 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 33df4e5a-a31b-46c3-889c-d9617c6a97a3))
- (pin "2" (uuid 96117d00-f55b-4275-9b56-80253338dc1c))
- )
- (symbol (lib_id "Greaseweazle:AD8138-ad8138") (at 78.74 127 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 483f3754-695f-4639-a7d4-e12085459452)
- (property "Reference" "U9" (id 0) (at 78.74 113.665 0))
- (property "Value" "AD8138ARZ-R7" (id 1) (at 78.74 115.9764 0))
- (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 71.12 139.7 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf" (id 3) (at 71.12 142.24 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Farnell" "2725700" (id 4) (at 71.12 144.78 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (pin "1" (uuid 421963e3-c4d9-45a6-a858-7510689811cb))
- (pin "2" (uuid aeaeca6e-737e-4911-b61f-6ac3ab48cd9d))
- (pin "3" (uuid 7e2d0869-e4b5-4aaf-b7dc-4bb91371c711))
- (pin "4" (uuid 8c0f041b-c225-48e4-af73-fd07366ad93d))
- (pin "5" (uuid 669af895-5f0e-46a5-81d6-0d914ce156f4))
- (pin "6" (uuid bdd53c4e-70cb-4da3-9938-f2845cccd432))
- (pin "7" (uuid 3cec015d-d1fa-4633-8b10-dbf5b4a973e7))
- (pin "8" (uuid 2df97751-26f5-49e1-b7b7-3eb26a3ceb55))
- )
- (symbol (lib_id "Device:C") (at 156.21 129.54 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 494bf120-7732-48b5-a8d5-04599731a5ad)
- (property "Reference" "C70" (id 0) (at 159.131 128.3716 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100nF" (id 1) (at 159.131 130.683 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 155.2448 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 156.21 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 156.21 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8b9c903a-a1b7-40a7-addb-8e88734521e1))
- (pin "2" (uuid 2bf67420-d466-4370-92dd-a2f430d91e45))
- )
- (symbol (lib_id "Device:R") (at 97.79 49.53 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 4d519c3a-abc8-4421-803d-ced69e37d9f7)
- (property "Reference" "R61" (id 0) (at 92.71 46.99 90))
- (property "Value" "22" (id 1) (at 101.6 46.99 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 47.752 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 97.79 49.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25092" (id 4) (at 97.79 49.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d0787549-a728-4ff6-b4bb-264b3a96755c))
- (pin "2" (uuid e22252f8-d606-4a0b-9230-a9e8317bc21b))
- )
- (symbol (lib_id "power:-3V3") (at 57.15 38.1 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 4d71b557-d950-40f1-9a8f-35bdf0b88b9a)
- (property "Reference" "#PWR0248" (id 0) (at 57.15 35.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "-3V3" (id 1) (at 57.531 33.7058 0))
- (property "Footprint" "" (id 2) (at 57.15 38.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 57.15 38.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8bd054af-151a-4863-91aa-7f5241170492))
- )
- (symbol (lib_id "Greaseweazle:CP_Small-Device") (at 148.59 39.37 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 4dbb4c65-f29c-4e56-a3ae-edd9ec7100ab)
- (property "Reference" "C64" (id 0) (at 150.8252 38.2016 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "47uF" (id 1) (at 150.8252 40.513 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 148.59 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 148.59 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C140782" (id 4) (at 148.59 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5712eb39-f5a4-42bc-82f3-3678a9fc07f6))
- (pin "2" (uuid 87f8744c-22ba-43f8-a180-c60f26a70f95))
- )
- (symbol (lib_id "power:GNDA") (at 203.2 102.87 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 4deb904e-fd2d-4d48-8ca1-9d6a1354ae8d)
- (property "Reference" "#PWR0183" (id 0) (at 203.2 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 203.327 107.2642 0))
- (property "Footprint" "" (id 2) (at 203.2 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 203.2 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 92b401d4-4029-44b2-973a-5ed09d14a032))
- )
- (symbol (lib_id "Device:C") (at 168.91 50.8 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 4e2e1f17-b513-4179-b43e-f34d94712930)
- (property "Reference" "C69" (id 0) (at 171.831 49.6316 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100nF" (id 1) (at 171.831 51.943 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 167.9448 46.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 168.91 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 168.91 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b3bfbbd9-031b-474d-a57d-5331244510bf))
- (pin "2" (uuid 766f03e8-f246-4bae-86bd-56dabf555c57))
- )
- (symbol (lib_id "power:GNDA") (at 92.71 154.94 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 50eda5fa-93e9-477a-9ecd-081aa0fb8923)
- (property "Reference" "#PWR0194" (id 0) (at 92.71 161.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 92.837 159.3342 0))
- (property "Footprint" "" (id 2) (at 92.71 154.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 92.71 154.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ec63d9f0-094b-482f-9234-3187f4ba9e6b))
- )
- (symbol (lib_id "Greaseweazle:LM2664-tinkerforge") (at 222.25 40.64 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 530796e2-7331-4204-8f24-dcc33f1230f9)
- (property "Reference" "U14" (id 0) (at 222.25 30.2768 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "LM2664" (id 1) (at 222.25 32.9692 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 203.2 66.04 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Datasheet" "" (id 3) (at 203.2 66.04 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "LCSC" "C840095" (id 4) (at 222.25 40.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b41e696a-a7eb-4b70-98ad-f2a8f41945ec))
- (pin "2" (uuid bafbdfad-c206-495d-9c2c-618e11170b65))
- (pin "3" (uuid f16f5d78-4c7d-460a-882c-6ef282940218))
- (pin "4" (uuid cd16ba71-d159-496c-b18d-1b782968d1d9))
- (pin "5" (uuid 8be89ae9-e198-42ab-9c71-6f71417ddbc5))
- (pin "6" (uuid 3c304074-f87f-463b-b572-6e81cfd8df98))
- )
- (symbol (lib_id "power:+3V3") (at 180.34 91.44 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 54d04f66-b81d-46aa-89e0-c9e6591e7c8d)
- (property "Reference" "#PWR0189" (id 0) (at 180.34 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 180.721 87.0458 0))
- (property "Footprint" "" (id 2) (at 180.34 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 180.34 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3ee28ef7-7d9d-4cb9-8251-afe3aaa07396))
- )
- (symbol (lib_id "power:+3.3VADC") (at 64.77 115.57 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 56cf5c35-6aa6-4082-ba0d-e6c3653bc82c)
- (property "Reference" "#PWR0203" (id 0) (at 68.58 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3VADC" (id 1) (at 65.278 111.9378 0))
- (property "Footprint" "" (id 2) (at 64.77 115.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 64.77 115.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid df8054a8-3657-48cf-8f67-6249cd897592))
- )
- (symbol (lib_id "Device:C") (at 158.75 39.37 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 62b2e931-73fe-4a9d-8601-8cb8563b3f67)
- (property "Reference" "C67" (id 0) (at 161.671 38.2016 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100nF" (id 1) (at 161.671 40.513 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 157.7848 35.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 158.75 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 158.75 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 86f253d0-96e9-4942-9cec-26776fa83239))
- (pin "2" (uuid 2403e689-bd13-4f66-a950-989dc9204bf6))
- )
- (symbol (lib_id "Oscillator:ASCO") (at 228.6 135.89 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 656588a1-55c1-4d4d-8c13-9231f5e2846a)
- (property "Reference" "X2" (id 0) (at 239.8776 134.7216 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "ASFLMB-60.000MHZ-LC-T" (id 1) (at 239.8776 137.033 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Oscillator:Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm" (id 2) (at 226.06 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://datasheet.lcsc.com/lcsc/1810170931_Yangxing-Tech-O705065MEDA4SC_C62025.pdf" (id 3) (at 234.315 132.715 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MOUSER" "" (id 4) (at 228.6 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C62025" (id 5) (at 228.6 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6e9e4e60-1ea2-4028-9787-f6d07a407eed))
- (pin "2" (uuid e8382691-5416-4301-a49b-79f5a2fa9684))
- (pin "3" (uuid 2fee1669-fbda-44d9-a035-9cd90629dc2b))
- (pin "4" (uuid b0bd54c7-965a-45dd-930d-83148d8af081))
- )
- (symbol (lib_id "power:GND") (at 102.87 113.03 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 660ec9e9-a96b-418b-bf77-78b1133eaaa7)
- (property "Reference" "#PWR0211" (id 0) (at 102.87 119.38 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 102.997 117.4242 0))
- (property "Footprint" "" (id 2) (at 102.87 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 102.87 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b10756aa-2e06-4939-9446-6151225b3a4e))
- )
- (symbol (lib_id "Greaseweazle:CP_Small-Device") (at 203.2 96.52 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 690cc8a8-660a-4d68-85d8-28464242ed6c)
- (property "Reference" "C56" (id 0) (at 205.4352 95.3516 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "47uF" (id 1) (at 205.4352 97.663 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 203.2 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 203.2 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C140782" (id 4) (at 203.2 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 380faec0-7ae0-470a-ae1a-a27c5003ecf2))
- (pin "2" (uuid 207a02e2-26cf-48bb-86cf-bc2dbce25656))
- )
- (symbol (lib_id "Device:C") (at 63.5 68.58 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 6eaa4b52-7e9e-469f-809c-5821d7afb4a1)
- (property "Reference" "C52" (id 0) (at 66.421 67.4116 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100nF" (id 1) (at 66.421 69.723 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 62.5348 64.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 63.5 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 63.5 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 240baf7e-6f2e-4ef8-a99c-f5e1a6da97b8))
- (pin "2" (uuid 842acb61-f992-462f-a29a-65c85881fa0d))
- )
- (symbol (lib_id "power:GNDA") (at 124.46 87.63 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 71f39067-782c-458e-889e-e78f7a279a0a)
- (property "Reference" "#PWR0200" (id 0) (at 124.46 93.98 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 124.587 92.0242 0))
- (property "Footprint" "" (id 2) (at 124.46 87.63 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 124.46 87.63 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 88daac98-6887-4c62-9221-05b834848a2f))
- )
- (symbol (lib_id "Greaseweazle:CP_Small-Device") (at 180.34 95.25 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 74c6cdf0-1811-4024-880f-2fc2fbce716a)
- (property "Reference" "C49" (id 0) (at 182.5752 94.0816 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "47uF" (id 1) (at 182.5752 96.393 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 180.34 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 180.34 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C140782" (id 4) (at 180.34 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c63e6346-30bc-4a75-8ce0-332575bbadf6))
- (pin "2" (uuid 82117aad-5819-40c6-9dae-f51d791a04d0))
- )
- (symbol (lib_id "Device:R") (at 52.07 140.97 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 756b0a26-47b6-45ab-9b00-76ddfba740d4)
- (property "Reference" "R68" (id 0) (at 49.53 138.43 90))
- (property "Value" "1k" (id 1) (at 54.61 138.43 90))
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 52.07 139.192 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 52.07 140.97 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 52.07 140.97 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 7654e945-76e8-4fca-a400-60064077e553))
- (pin "2" (uuid 4c06db55-4bab-4b90-a899-00f5ff0a019a))
- )
- (symbol (lib_id "power:GNDA") (at 156.21 133.35 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 77286fe1-c01a-4d48-94a1-e4ecfcbede1f)
- (property "Reference" "#PWR0215" (id 0) (at 156.21 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 156.337 137.7442 0))
- (property "Footprint" "" (id 2) (at 156.21 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 156.21 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dfc59c19-d5b7-479d-89d2-5ea60930bc0f))
- )
- (symbol (lib_id "power:+3V3") (at 120.65 102.87 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 7be74137-1904-41a3-b044-50d9530ffcd8)
- (property "Reference" "#PWR0209" (id 0) (at 120.65 106.68 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 121.031 98.4758 0))
- (property "Footprint" "" (id 2) (at 120.65 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 120.65 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 28d79330-7def-4d53-b47d-39cda0c181bc))
- )
- (symbol (lib_id "Device:C_Polarized_Small") (at 256.54 50.8 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 7da573c9-2ed3-46bd-9520-ce143e314f93)
- (property "Reference" "C65" (id 0) (at 253.619 51.9684 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "3.3uF" (id 1) (at 253.619 49.657 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 256.54 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 256.54 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C87864" (id 4) (at 256.54 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8622a3df-302b-4a9d-8e32-722512ac5de6))
- (pin "2" (uuid 6f6e6b04-7157-48cc-9171-e7e00a10db6c))
- )
- (symbol (lib_id "Greaseweazle:AD9235BR-ad9235") (at 125.73 135.89 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 85fd9882-f192-4cf4-a9fb-2e6abbcba5e2)
- (property "Reference" "U10" (id 0) (at 128.27 109.22 0))
- (property "Value" "AD9235BRUZ-65" (id 1) (at 132.08 111.76 0))
- (property "Footprint" "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm" (id 2) (at 111.76 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 111.76 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid bff4c2fd-2ef8-4228-8c84-1782bde579d3))
- (pin "10" (uuid 5c6012f2-3a1e-4c7a-b2c3-aa94c8afb2ca))
- (pin "11" (uuid d0b7ebb9-b0de-4ed7-85bc-b198cc46fd3e))
- (pin "12" (uuid f4797f2b-7628-44af-b42e-ea7a122b3ebd))
- (pin "13" (uuid 01c81964-8055-477f-ad7a-ab9d57c69b23))
- (pin "14" (uuid c2fabdbd-76ec-4123-92ca-60a8169ffceb))
- (pin "15" (uuid 2803325f-6a44-46d0-bd49-8ed5d9e2a6ba))
- (pin "16" (uuid 0bc41fbf-e3a3-4b86-8db7-995daf941e14))
- (pin "17" (uuid fe2088aa-e2c8-4e2c-83ff-ffcdb89b2925))
- (pin "18" (uuid 7a65f7c4-b720-417a-bbab-c9e4bfc26961))
- (pin "19" (uuid 3d42e81a-527e-42c4-8fcc-f5cd6eb93c8a))
- (pin "2" (uuid 68431a9e-841e-40be-841f-2fa9993a1c3b))
- (pin "20" (uuid b754cd22-efd1-4aef-91b6-3428e81102dd))
- (pin "21" (uuid d2a79010-9458-49ec-bbca-13003b91e995))
- (pin "22" (uuid 4614dfe2-4102-4db4-8d5e-8d466ab80308))
- (pin "23" (uuid d5509717-e0af-4270-aede-ff85e7991de8))
- (pin "24" (uuid cb3cd281-41ad-489c-9622-c198a4b6f5f9))
- (pin "25" (uuid 6d748516-a8be-4e5f-92c5-e33009447865))
- (pin "26" (uuid c14cff43-b67f-4e6d-b6ff-03ba4ba3761c))
- (pin "27" (uuid 341ab06a-66d5-4f64-9742-90361546c7c0))
- (pin "28" (uuid 4aef2f2a-289d-49e6-ab9f-4592b3a02283))
- (pin "3" (uuid 1ac7777d-f186-4dbd-a90e-aa8615be215c))
- (pin "4" (uuid 57b6227d-56d4-4daa-a6a9-4ffd4051883c))
- (pin "5" (uuid 3959242b-ea54-4426-9701-cf780754fd66))
- (pin "6" (uuid 1fbb7453-cc20-4a32-84b2-be743ca1a95c))
- (pin "7" (uuid 41430edc-db5c-41e4-8d33-828c9e32995b))
- (pin "8" (uuid 10a04fca-45ef-42c2-98bb-237d52387975))
- (pin "9" (uuid 55a81d5c-131f-48ef-8686-0498e698bb75))
- )
- (symbol (lib_id "power:GND") (at 228.6 104.14 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 8745a1d9-71fe-4b5f-a509-2ed0c97c06df)
- (property "Reference" "#PWR0259" (id 0) (at 228.6 110.49 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 228.6 109.22 0))
- (property "Footprint" "" (id 2) (at 228.6 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 228.6 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 07bc6a79-794c-4ca4-9176-35803f2a6a81))
- )
- (symbol (lib_id "Greaseweazle:AD9235BR-ad9235") (at 125.73 57.15 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 88b45647-4a30-4371-8202-00f0cba17aa0)
- (property "Reference" "U15" (id 0) (at 128.27 30.48 0))
- (property "Value" "AD9235BRUZ-65" (id 1) (at 132.08 33.02 0))
- (property "Footprint" "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm" (id 2) (at 111.76 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 111.76 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 70e8d5ab-b105-4f19-864f-337ebfe9ca88))
- (pin "10" (uuid 03799776-4323-46ce-9dcb-7d94dd9f75cd))
- (pin "11" (uuid 91210497-91ce-45b5-bb50-5d9b860d782b))
- (pin "12" (uuid 501bd998-3688-474f-9b24-4394804eab9f))
- (pin "13" (uuid 7e9cc2bc-9d4a-44c8-9ddf-2ad218fe11d5))
- (pin "14" (uuid 74e606c4-24a2-4a53-999c-2e5da91d1508))
- (pin "15" (uuid bdd9ff82-48f4-4def-b8ba-001aa681823c))
- (pin "16" (uuid 9ce0d460-3ff1-464c-b3af-910c3cff3c34))
- (pin "17" (uuid c55c7f39-d4ff-41b9-b820-ec45b9b3caa5))
- (pin "18" (uuid 866cc43c-92b3-4020-acb1-58fe84b0ec88))
- (pin "19" (uuid 7d0b6438-0a0d-42f4-8508-3202aaa4b2db))
- (pin "2" (uuid 4aa96a9f-6b14-42a9-83be-d6be5852f31e))
- (pin "20" (uuid 3c08add0-1884-4a50-932a-ddc36919eb54))
- (pin "21" (uuid 4aadaf4a-dfb6-430e-9ce2-c852317b61ad))
- (pin "22" (uuid 234a2c3d-8f5b-4807-a1ce-0ec84d3096c6))
- (pin "23" (uuid cd4ef58f-416b-4a7e-8d6f-0dba18db77c4))
- (pin "24" (uuid ee8d87b5-8076-4607-aa0d-d188497ea96d))
- (pin "25" (uuid 1a113d33-d6ad-4b3e-ba30-fdb4a8db2a8a))
- (pin "26" (uuid e4a1be57-4159-4c6b-9951-87e1d5781010))
- (pin "27" (uuid 062be8b5-1fe1-4c54-9524-0165750bf97a))
- (pin "28" (uuid 85a5668c-71f0-4b39-a07b-d9009820de81))
- (pin "3" (uuid a46d19ae-4278-4bc6-b154-aedcd5e19ce3))
- (pin "4" (uuid bc95273d-07cd-406c-8c72-61b77bfaf526))
- (pin "5" (uuid 640c1cb6-079f-4292-bfc7-d49fc2115641))
- (pin "6" (uuid a955775b-da66-4bd0-9c62-192e218a7119))
- (pin "7" (uuid c50ca0e4-453d-4dac-a954-f6a1ea2b1484))
- (pin "8" (uuid 9b401a9b-1f30-47bb-a7ed-49096c6dc057))
- (pin "9" (uuid 3df4570b-4c8f-43ad-b4e6-b6e546d8957d))
- )
- (symbol (lib_id "Device:C") (at 212.09 96.52 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 90ec0fa0-8653-4b41-aa06-80c30336e014)
- (property "Reference" "C58" (id 0) (at 215.011 95.3516 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 215.011 97.663 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 213.0552 100.33 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 212.09 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 212.09 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 446ccf02-33e4-4167-8ea8-d0e8f9510b21))
- (pin "2" (uuid 75b200d2-b24b-4a42-8f47-b1d381f10ed0))
- )
- (symbol (lib_id "Device:C") (at 267.97 50.8 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 925eea5a-795f-4716-bbbb-1e1b6a567a73)
- (property "Reference" "C68" (id 0) (at 270.891 49.6316 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 270.891 51.943 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 268.9352 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 267.97 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 267.97 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a936a2ad-0727-44c1-a6ad-b6a111289f80))
- (pin "2" (uuid 82cd93d7-3fd7-492d-98fb-651fb0fa1b29))
- )
- (symbol (lib_id "power:GND") (at 129.54 87.63 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 94c7b6b8-12f7-4936-a936-7dc672feb5ee)
- (property "Reference" "#PWR0201" (id 0) (at 129.54 93.98 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 129.667 92.0242 0))
- (property "Footprint" "" (id 2) (at 129.54 87.63 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 129.54 87.63 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fbc43b96-219b-4612-9d84-2ddb7a3d9582))
- )
- (symbol (lib_id "Device:C") (at 156.21 50.8 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 9ab79c72-a815-4fd5-bbaf-5a52783d05ce)
- (property "Reference" "C66" (id 0) (at 159.131 49.6316 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100nF" (id 1) (at 159.131 51.943 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 155.2448 46.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 156.21 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 156.21 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fc18ea79-2273-422c-92b8-ecff344a19d6))
- (pin "2" (uuid 93241bf1-6ce0-4a2d-86b4-2c87bc880049))
- )
- (symbol (lib_id "Device:C_Polarized_Small") (at 241.3 36.83 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 9feecfcf-7d25-40cf-ad2d-488769ee4aad)
- (property "Reference" "C62" (id 0) (at 241.3 43.2308 90))
- (property "Value" "3.3uF" (id 1) (at 241.3 40.9194 90))
- (property "Footprint" "Capacitor_SMD:CP_Elec_4x5.4" (id 2) (at 241.3 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 241.3 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C87864" (id 4) (at 241.3 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ecf81949-fcc3-4ccd-a6af-11d2b1fc7b77))
- (pin "2" (uuid 0dc9b52d-f09a-4f62-91cd-b7501164c2e6))
- )
- (symbol (lib_id "Device:R") (at 97.79 123.19 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid a0b4b5f9-8033-4f4a-b05f-6a9cf7772979)
- (property "Reference" "R69" (id 0) (at 93.98 120.65 90))
- (property "Value" "22" (id 1) (at 101.6 120.65 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 121.412 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 97.79 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25092" (id 4) (at 97.79 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0099ac25-e5ba-4f21-8370-bb4d60c7aa57))
- (pin "2" (uuid 4e605b44-88d7-4d11-b078-621bba644033))
- )
- (symbol (lib_id "power:GNDA") (at 92.71 76.2 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid a3aeb7d3-55b8-43c9-8d53-5192d486c987)
- (property "Reference" "#PWR0244" (id 0) (at 92.71 82.55 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 92.837 80.5942 0))
- (property "Footprint" "" (id 2) (at 92.71 76.2 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 92.71 76.2 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a2e4ac2d-7d7a-43cc-9059-c4f5119a5671))
- )
- (symbol (lib_id "power:GND") (at 129.54 166.37 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid a3b7dfab-9d62-4ac7-97a3-e2e31b3f84ba)
- (property "Reference" "#PWR0214" (id 0) (at 129.54 172.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 129.667 170.7642 0))
- (property "Footprint" "" (id 2) (at 129.54 166.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 129.54 166.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d55df681-b9c9-4dbc-a643-b119b9899cfa))
- )
- (symbol (lib_id "power:GND") (at 208.28 46.99 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid ae23faac-f730-4d4b-a62c-3c8216cd43d3)
- (property "Reference" "#PWR0197" (id 0) (at 208.28 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 212.09 49.53 0))
- (property "Footprint" "" (id 2) (at 208.28 46.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 208.28 46.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4b26d7a2-26dc-45b6-9857-d9fb35dd9be8))
- )
- (symbol (lib_id "Connector:Conn_01x03_Male") (at 19.05 130.81 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b1301c60-ff7e-469f-b090-63f6a467a427)
- (property "Reference" "J17" (id 0) (at 21.7424 126.2888 0))
- (property "Value" "FLOPPY-SIDE-0" (id 1) (at 22.86 123.19 0))
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 19.05 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 19.05 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d691f162-750b-482e-a2a4-5a1f5f430bd5))
- (pin "2" (uuid 25c413b9-74fe-4c32-b6e7-a086a6a57f5a))
- (pin "3" (uuid ae4acb2f-cb55-42d5-ab77-c22a075902be))
- )
- (symbol (lib_id "Device:C") (at 102.87 151.13 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b45c8235-0e72-46e9-b581-1e9ec7ba5169)
- (property "Reference" "C51" (id 0) (at 104.14 148.59 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "18pF" (id 1) (at 104.14 153.67 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 101.9048 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 102.87 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1549" (id 4) (at 102.87 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0185b174-ea09-4d96-9d6c-686fc2bef238))
- (pin "2" (uuid d56d6c90-ec10-42dc-a55f-baf173dc2e04))
- )
- (symbol (lib_id "Device:C") (at 92.71 151.13 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b49381b7-86d8-4468-9408-0d3f72bf79fd)
- (property "Reference" "C50" (id 0) (at 93.98 148.59 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "18pF" (id 1) (at 93.98 153.67 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 91.7448 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 92.71 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1549" (id 4) (at 92.71 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 496aedaf-696f-4b6c-b578-c198614f3415))
- (pin "2" (uuid 63b00eae-4c5b-422c-a7b6-8cc09d35701c))
- )
- (symbol (lib_id "Device:R") (at 102.87 30.48 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b4981be0-4d5c-4698-bfe3-c33355328d33)
- (property "Reference" "R63" (id 0) (at 97.79 29.21 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "2k" (id 1) (at 99.06 31.75 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 104.648 30.48 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 102.87 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C4109" (id 4) (at 102.87 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 74e7f55d-8bef-4769-a557-60b4472867c1))
- (pin "2" (uuid 30ed9266-7e77-463a-9f92-a333601be4ac))
- )
- (symbol (lib_id "Device:R") (at 97.79 128.27 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b62a4fb1-6880-4226-9be9-56d9577fb96f)
- (property "Reference" "R70" (id 0) (at 93.98 125.73 90))
- (property "Value" "22" (id 1) (at 101.6 125.73 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 126.492 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 97.79 128.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25092" (id 4) (at 97.79 128.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b2472114-4a51-4f5f-826e-bab3c8936801))
- (pin "2" (uuid 812eae82-6d3a-4db6-a3e9-54762c1497d2))
- )
- (symbol (lib_id "power:+3V3") (at 102.87 19.05 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b8258162-88b0-4f4d-8180-41d50177f4d6)
- (property "Reference" "#PWR0239" (id 0) (at 102.87 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 103.251 14.6558 0))
- (property "Footprint" "" (id 2) (at 102.87 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 102.87 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 12fe1a12-bab9-4c38-b58d-a18ac94dc37f))
- )
- (symbol (lib_id "power:GNDA") (at 74.93 72.39 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b9908ee4-2959-4eaf-a1e7-a2f3914d7ae8)
- (property "Reference" "#PWR0234" (id 0) (at 74.93 78.74 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 75.057 76.7842 0))
- (property "Footprint" "" (id 2) (at 74.93 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 74.93 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e156f821-facc-4435-829d-4b2d5a4fe0ff))
- )
- (symbol (lib_id "power:GND") (at 198.12 57.15 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b9a5576a-8f1f-407b-8db8-2597d5ccf48b)
- (property "Reference" "#PWR0198" (id 0) (at 198.12 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 198.247 61.5442 0))
- (property "Footprint" "" (id 2) (at 198.12 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 198.12 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e00139d5-5193-45ae-ba35-842cff58a2ff))
- )
- (symbol (lib_id "power:GNDA") (at 168.91 54.61 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid baa41b16-fe89-4046-aead-081c4c338957)
- (property "Reference" "#PWR0213" (id 0) (at 168.91 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 169.037 59.0042 0))
- (property "Footprint" "" (id 2) (at 168.91 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 168.91 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d2d3b3ef-7530-473f-9bcd-b7730a7ad41a))
- )
- (symbol (lib_id "Device:R") (at 102.87 109.22 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid badea698-84a4-43e3-b805-1a4cd74cddd7)
- (property "Reference" "R72" (id 0) (at 97.79 107.95 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "2k" (id 1) (at 99.06 110.49 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 104.648 109.22 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 102.87 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C4109" (id 4) (at 102.87 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c3cd5365-7a1d-48bd-b4fd-c414a05e6d9a))
- (pin "2" (uuid 840d8e92-59fd-4358-8fab-cbe8610efeb4))
- )
- (symbol (lib_id "power:GNDA") (at 102.87 154.94 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid bd2cb2aa-a578-4ea4-83ab-829eeaee310a)
- (property "Reference" "#PWR0193" (id 0) (at 102.87 161.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 102.997 159.3342 0))
- (property "Footprint" "" (id 2) (at 102.87 154.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 102.87 154.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 81bce148-d6a5-482d-b677-64d9be6160c3))
- )
- (symbol (lib_id "power:+3V3") (at 102.87 97.79 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid bdb85bdc-171e-4460-aebf-8d0d5c5d34a2)
- (property "Reference" "#PWR0208" (id 0) (at 102.87 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 103.251 93.3958 0))
- (property "Footprint" "" (id 2) (at 102.87 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 102.87 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 155ac39d-72ff-4d68-bb83-2d564b04c303))
- )
- (symbol (lib_id "Connector:Conn_01x03_Male") (at 19.05 52.07 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid c44eb0b7-9260-4b83-a166-21f9ddc296fb)
- (property "Reference" "J14" (id 0) (at 21.7424 47.5488 0))
- (property "Value" "FLOPPY-GND" (id 1) (at 21.7424 49.8602 0))
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 19.05 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 19.05 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0c9e6899-45d8-476c-bc75-d2755ba6195c))
- (pin "2" (uuid 27e992e2-b4e8-4409-8081-734626f5ebda))
- (pin "3" (uuid 8c6b816c-6512-4c04-a5eb-5a999990520c))
- )
- (symbol (lib_id "power:GNDA") (at 168.91 133.35 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid c88011a8-c447-40cf-ae4a-39b4de961c04)
- (property "Reference" "#PWR0216" (id 0) (at 168.91 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 169.037 137.7442 0))
- (property "Footprint" "" (id 2) (at 168.91 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 168.91 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 49b94203-3b94-4848-995c-a61657dcc582))
- )
- (symbol (lib_id "power:GND") (at 102.87 34.29 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid c9319b83-cc89-49ae-bb43-b86703b863eb)
- (property "Reference" "#PWR0238" (id 0) (at 102.87 40.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 102.997 38.6842 0))
- (property "Footprint" "" (id 2) (at 102.87 34.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 102.87 34.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 47e15088-6780-4ffe-a8ff-3e7bfcbd7323))
- )
- (symbol (lib_id "Device:R") (at 102.87 101.6 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid cbabf5a1-56c1-4765-8f8f-ba34e1fcd706)
- (property "Reference" "R71" (id 0) (at 97.79 100.33 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "1k" (id 1) (at 99.06 102.87 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 104.648 101.6 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 102.87 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 102.87 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dc6fc934-44db-4ca8-9c74-d7de30a2f685))
- (pin "2" (uuid 10d6590c-df8f-47cf-b4ad-55e89248be6f))
- )
- (symbol (lib_id "Device:R") (at 36.83 46.99 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid cd7ebafb-fcbb-4229-adc5-b9407a585ed9)
- (property "Reference" "R56" (id 0) (at 36.83 41.7322 90))
- (property "Value" "1k" (id 1) (at 36.83 44.0436 90))
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 45.212 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 36.83 46.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 36.83 46.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ee7a25a3-9d91-4fe4-be8f-5b9b4e60e7ea))
- (pin "2" (uuid 609120b5-f05e-4dd7-b792-e4bc12bf4a92))
- )
- (symbol (lib_id "Device:L") (at 250.19 44.45 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid cff86929-ce63-4508-8edc-a0fb9eb66289)
- (property "Reference" "L4" (id 0) (at 250.19 39.624 90))
- (property "Value" "100uH" (id 1) (at 250.19 41.9354 90))
- (property "Footprint" "Greaseweazle:L_6.3x6.3_H3" (id 2) (at 250.19 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 250.19 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C434839" (id 4) (at 250.19 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c4f76870-2059-4614-aa38-10eb64d8992c))
- (pin "2" (uuid ed73bde9-dfb9-41f9-9778-fdeb98714f32))
- )
- (symbol (lib_id "Device:C") (at 193.04 96.52 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid d0e4d675-6dec-4855-84b2-3dd0bb949370)
- (property "Reference" "C53" (id 0) (at 195.961 95.3516 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 195.961 97.663 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 194.0052 100.33 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 193.04 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 193.04 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f8670335-ddce-4b21-bf12-ea4fb4691d97))
- (pin "2" (uuid 740d42a4-c137-4bb8-862d-3560748efca8))
- )
- (symbol (lib_id "Greaseweazle:AD8138-ad8138") (at 78.74 48.26 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid d24c061c-67bd-4714-97be-eb58b1700e60)
- (property "Reference" "U12" (id 0) (at 78.74 34.925 0))
- (property "Value" "AD8138ARZ-R7" (id 1) (at 78.74 37.2364 0))
- (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 71.12 60.96 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "http://www.analog.com/media/en/technical-documentation/data-sheets/AD8138.pdf" (id 3) (at 71.12 63.5 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Farnell" "" (id 4) (at 71.12 66.04 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (pin "1" (uuid aae09d49-963b-4e74-9c87-48398fa0bef4))
- (pin "2" (uuid 3dde72c7-cb21-499a-94be-a0ae45941f3f))
- (pin "3" (uuid 92552a7c-b5e6-4f2a-8df8-d82ba1a1de49))
- (pin "4" (uuid 3aacc9f1-a937-4e2d-b46d-8825ccc0b345))
- (pin "5" (uuid 81dd53eb-e070-4f67-b5b0-c807171dd4ef))
- (pin "6" (uuid 48533a57-d9b4-4814-ac03-cbc1c5c4cba2))
- (pin "7" (uuid bef7a174-50ef-4ad0-b38f-3c61c50175a2))
- (pin "8" (uuid 86c15fc7-511a-4309-8b16-35ba2cae759b))
- )
- (symbol (lib_id "power:-3V3") (at 256.54 44.45 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid d84ef48d-75f6-4f2a-bbb4-6b10fa08f99d)
- (property "Reference" "#PWR0206" (id 0) (at 256.54 41.91 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "-3V3" (id 1) (at 256.921 40.0558 0))
- (property "Footprint" "" (id 2) (at 256.54 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 256.54 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d86e6062-0ed9-4cc8-90ca-316592b34f81))
- )
- (symbol (lib_id "power:GNDA") (at 193.04 102.87 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid db86c91b-5306-439e-923d-f0a0603bec55)
- (property "Reference" "#PWR0184" (id 0) (at 193.04 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 193.167 107.2642 0))
- (property "Footprint" "" (id 2) (at 193.04 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 193.04 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 606576fe-8641-42eb-8d27-332abdc46dea))
- )
- (symbol (lib_id "power:GNDA") (at 267.97 57.15 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid dbea19a7-d3cf-4adf-910d-4ca6d1d43f18)
- (property "Reference" "#PWR0187" (id 0) (at 267.97 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 268.097 61.5442 0))
- (property "Footprint" "" (id 2) (at 267.97 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 267.97 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 53a9c5af-f078-486e-8eb3-607e6e7daad7))
- )
- (symbol (lib_id "power:GNDA") (at 236.22 104.14 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid e078b70d-e62d-4a0d-8422-652097a4c099)
- (property "Reference" "#PWR0258" (id 0) (at 236.22 110.49 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 236.22 109.22 0))
- (property "Footprint" "" (id 2) (at 236.22 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 236.22 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c2530457-a764-49c1-91cf-4275c5912406))
- )
- (symbol (lib_id "Device:R") (at 36.83 57.15 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid e12e12b8-bd55-4675-8170-62b4affa5540)
- (property "Reference" "R57" (id 0) (at 36.83 51.8922 90))
- (property "Value" "1k" (id 1) (at 36.83 54.2036 90))
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 55.372 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 36.83 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 36.83 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e8923134-79b9-4f55-abdc-4b01a39d9ff7))
- (pin "2" (uuid fedc46c6-e739-4ed7-9661-4d8405b277d3))
- )
- (symbol (lib_id "power:+3.3VADC") (at 203.2 88.9 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid e28a05db-55cf-4f3b-8a53-7501eb154f18)
- (property "Reference" "#PWR0186" (id 0) (at 207.01 90.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3VADC" (id 1) (at 203.708 85.2678 0))
- (property "Footprint" "" (id 2) (at 203.2 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 203.2 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 7ec2d9ee-0697-404f-bdbc-3fd98652139d))
- )
- (symbol (lib_id "power:+3V3") (at 208.28 35.56 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid e504f737-afa3-4e8f-813d-636cac6e64c2)
- (property "Reference" "#PWR0196" (id 0) (at 208.28 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 208.661 31.1658 0))
- (property "Footprint" "" (id 2) (at 208.28 35.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 208.28 35.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 66feeb29-fde1-42db-bfc6-d2da7e9e90d1))
- )
- (symbol (lib_id "AnalogFluxReader-rescue:CP_Small-Device") (at 74.93 146.05 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid e6fe311c-62ea-4949-9548-07e5a2a2fbf5)
- (property "Reference" "C48" (id 0) (at 77.1652 144.8816 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "47uF" (id 1) (at 77.1652 147.193 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 74.93 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 74.93 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C140782" (id 4) (at 74.93 146.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5fb4066f-eaf0-4c53-9d84-ae26ab226f67))
- (pin "2" (uuid 5ff206f2-1ccb-4d6a-98c3-d9e20c6e310e))
- )
- (symbol (lib_id "Device:R") (at 36.83 125.73 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid e7ccc987-ceaf-4508-8dbc-ea6b1d931777)
- (property "Reference" "R65" (id 0) (at 36.83 120.4722 90))
- (property "Value" "1k" (id 1) (at 36.83 122.7836 90))
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (id 2) (at 36.83 123.952 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 36.83 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 36.83 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3b2097ba-5312-4b2d-bbca-87144d6584fc))
- (pin "2" (uuid f54cf17d-ac4a-49cc-bf4c-516ee1063503))
- )
- (symbol (lib_id "Device:C") (at 158.75 118.11 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid e8d93bc9-2d59-4913-8099-f98850f69c17)
- (property "Reference" "C71" (id 0) (at 161.671 116.9416 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100nF" (id 1) (at 161.671 119.253 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 157.7848 114.3 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 158.75 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 158.75 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 39186f39-e254-450c-90ed-9e1081cb0601))
- (pin "2" (uuid dba8b7e3-9651-4e3e-9850-6a587ae61507))
- )
- (symbol (lib_id "Device:R") (at 102.87 22.86 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid ecc88c66-df50-4406-98a5-56d24055f0c5)
- (property "Reference" "R62" (id 0) (at 97.79 21.59 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "1k" (id 1) (at 99.06 24.13 0)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 104.648 22.86 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 102.87 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 102.87 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e3202640-1cd5-4d39-81e4-ad0cc3e2c316))
- (pin "2" (uuid 3193f412-d83e-4208-a5ae-9a5f8739c09f))
- )
- (symbol (lib_id "power:GND") (at 243.84 57.15 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid ed632bc7-7448-4fcc-b2cb-45c037bf88b8)
- (property "Reference" "#PWR0204" (id 0) (at 243.84 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 243.967 61.5442 0))
- (property "Footprint" "" (id 2) (at 243.84 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 243.84 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3bf5a0b8-4fb0-4c19-9790-3b6daf160d1a))
- )
- (symbol (lib_id "AnalogFluxReader-rescue:CP_Small-Device") (at 74.93 67.31 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid f015ad2c-3080-4147-bb24-2dc075a03e15)
- (property "Reference" "C54" (id 0) (at 77.1652 66.1416 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "47uF" (id 1) (at 77.1652 68.453 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 74.93 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 74.93 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C140782" (id 4) (at 74.93 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b47fa16f-a6e0-4da8-adac-05e6f9dda077))
- (pin "2" (uuid 9a01dcdc-ac4e-47f2-9f35-314982cab16a))
- )
- (symbol (lib_id "power:PWR_FLAG") (at 194.31 88.9 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid f5496f64-fa88-46b0-96c0-0a7db8062989)
- (property "Reference" "#FLG0101" (id 0) (at 194.31 86.995 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "PWR_FLAG" (id 1) (at 194.31 84.4804 0))
- (property "Footprint" "" (id 2) (at 194.31 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 194.31 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 09e84763-2145-4343-b8d6-112c5bc1a4c9))
- )
- (symbol (lib_id "power:+3.3VADC") (at 115.57 29.21 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid f7bba936-eaf0-487f-b62b-1d6e52cc7ab5)
- (property "Reference" "#PWR0236" (id 0) (at 119.38 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3VADC" (id 1) (at 115.57 25.4 0))
- (property "Footprint" "" (id 2) (at 115.57 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 115.57 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2c49a5ed-130b-4d8f-80a6-5061184c3e94))
- )
- (symbol (lib_id "power:GND") (at 180.34 102.87 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid f8943277-c0ad-4703-bab4-a2905995b5cd)
- (property "Reference" "#PWR0177" (id 0) (at 180.34 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 180.467 107.2642 0))
- (property "Footprint" "" (id 2) (at 180.34 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 180.34 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1feb6be6-1ac0-47a1-ba63-74e88d393715))
- )
- (symbol (lib_id "power:GNDA") (at 63.5 151.13 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid fb0b8725-c9f5-4019-8f2d-5d01dc6047a1)
- (property "Reference" "#PWR0202" (id 0) (at 63.5 157.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GNDA" (id 1) (at 63.627 155.5242 0))
- (property "Footprint" "" (id 2) (at 63.5 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 63.5 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c32b69c5-b821-4da8-9860-0a252e78e86e))
- )
- (sheet_instances
- (path "/" (page "1"))
- )
- (symbol_instances
- (path "/00000000-0000-0000-0000-00005cde74b8"
- (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005cd2c575"
- (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005cd5d664"
- (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005cd7f637"
- (reference "#FLG0104") (unit 1) (value "PWR_FLAG") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005cd7fa07"
- (reference "#FLG0105") (unit 1) (value "PWR_FLAG") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000601e4296"
- (reference "#PWR01") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f36108"
- (reference "#PWR02") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f33bf4"
- (reference "#PWR03") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f33642"
- (reference "#PWR04") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006811b79d"
- (reference "#PWR05") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f33c76"
- (reference "#PWR06") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000601e430f"
- (reference "#PWR07") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f354c5"
- (reference "#PWR08") (unit 1) (value "+3.3VADC") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f35476"
- (reference "#PWR09") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f35943"
- (reference "#PWR010") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f36144"
- (reference "#PWR011") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f38597"
- (reference "#PWR012") (unit 1) (value "-3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006811ac8b"
- (reference "#PWR013") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f385c0"
- (reference "#PWR014") (unit 1) (value "+3.3VADC") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000682a5ac8"
- (reference "#PWR015") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000681fcfb5"
- (reference "#PWR017") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000068310a3c"
- (reference "#PWR018") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006831097d"
- (reference "#PWR019") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000681fd02a"
- (reference "#PWR020") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f33827"
- (reference "#PWR021") (unit 1) (value "-3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f3370a"
- (reference "#PWR022") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000682e11cf"
- (reference "#PWR023") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f36f98"
- (reference "#PWR024") (unit 1) (value "+3.3VADC") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f36f6f"
- (reference "#PWR025") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f33e7d"
- (reference "#PWR026") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f33f08"
- (reference "#PWR027") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000682a5940"
- (reference "#PWR028") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000682a58c5"
- (reference "#PWR029") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f4311d"
- (reference "#PWR030") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067ff8963"
- (reference "#PWR031") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000068044f78"
- (reference "#PWR032") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f61744"
- (reference "#PWR033") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f6794a"
- (reference "#PWR034") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006080bd70"
- (reference "#PWR035") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005ce21ab3"
- (reference "#PWR036") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000601e4388"
- (reference "#PWR037") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000601e4401"
- (reference "#PWR038") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000601e447a"
- (reference "#PWR039") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000603d1a3d"
- (reference "#PWR040") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000602f360d"
- (reference "#PWR041") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006031ee7f"
- (reference "#PWR042") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000603a4701"
- (reference "#PWR043") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006034b31d"
- (reference "#PWR044") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000604166c1"
- (reference "#PWR045") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006045b881"
- (reference "#PWR046") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006045b7c2"
- (reference "#PWR047") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006058b065"
- (reference "#PWR048") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006058afa0"
- (reference "#PWR049") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000605ec611"
- (reference "#PWR050") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060886783"
- (reference "#PWR051") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006091c048"
- (reference "#PWR052") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006091bfb5"
- (reference "#PWR053") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060ccc11d"
- (reference "#PWR054") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060dcae98"
- (reference "#PWR055") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060dcaf37"
- (reference "#PWR056") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005cd6e712"
- (reference "#PWR0101") (unit 1) (value "GNDA") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005cd6e7d1"
- (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005cee703a"
- (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006016fd10"
- (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006016ff1c"
- (reference "#PWR0105") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000601906cb"
- (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000601e6807"
- (reference "#PWR0107") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000602eb547"
- (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000602eb5b8"
- (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-0000603f3ee5"
- (reference "#PWR0110") (unit 1) (value "+3V3") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060b1cc1c"
- (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060b50ff9"
- (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060b860c6"
- (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060b86161"
- (reference "#PWR0114") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000060e41116"
- (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000067f33505"
- (reference "C1") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
- )
- (path "/00000000-0000-0000-0000-000067f3618f"
- (reference "C2") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
- )
- (path "/00000000-0000-0000-0000-000067f333c2"
- (reference "C3") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
- )
- (path "/00000000-0000-0000-0000-000067f33983"
- (reference "C4") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-000060573243"
- (reference "C5") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000605d3dde"
- (reference "C6") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
- )
- (path "/00000000-0000-0000-0000-000067f35ad5"
- (reference "C7") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00006811abcd"
- (reference "C8") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000682a5ef5"
- (reference "C9") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
- )
- (path "/00000000-0000-0000-0000-00006817bac3"
- (reference "C10") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00006817bb7f"
- (reference "C11") (unit 1) (value "15p") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000682a5e0b"
- (reference "C12") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
- )
- (path "/00000000-0000-0000-0000-00006826e6ea"
- (reference "C13") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00006826e5ae"
- (reference "C14") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00006826e658"
- (reference "C15") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000605a3749"
- (reference "C16") (unit 1) (value "47u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
- )
- (path "/00000000-0000-0000-0000-0000605733e7"
- (reference "C17") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000605ec422"
- (reference "C18") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00006080bb6d"
- (reference "C19") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000608866d1"
- (reference "C20") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00006091be4b"
- (reference "C21") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00006091bf05"
- (reference "C22") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-000060dcad0e"
- (reference "C23") (unit 1) (value "3.3u") (footprint "Capacitor_SMD:CP_Elec_4x5.4")
- )
- (path "/00000000-0000-0000-0000-000060dcadd6"
- (reference "C24") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000607a7b49"
- (reference "J1") (unit 1) (value "Conn_02x10_Odd_Even") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical")
- )
- (path "/00000000-0000-0000-0000-0000607bfe64"
- (reference "J2") (unit 1) (value "Conn_02x10_Odd_Even") (footprint "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical")
- )
- (path "/00000000-0000-0000-0000-000060a99ea0"
- (reference "J3") (unit 1) (value "Conn_02x05_Top_Bottom") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00006075c457"
- (reference "J4") (unit 1) (value "FLOPPY+") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
- )
- (path "/00000000-0000-0000-0000-00006075c549"
- (reference "J5") (unit 1) (value "FLOPPY-GND") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
- )
- (path "/00000000-0000-0000-0000-00006075c86c"
- (reference "J6") (unit 1) (value "FLOPPY-") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical")
- )
- (path "/00000000-0000-0000-0000-000067f33478"
- (reference "L1") (unit 1) (value "100u") (footprint "AnalogFluxReader:1007")
- )
- (path "/00000000-0000-0000-0000-000067f339d4"
- (reference "L2") (unit 1) (value "100u") (footprint "AnalogFluxReader:1007")
- )
- (path "/00000000-0000-0000-0000-000067ffd36b"
- (reference "R1") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-000067ffd287"
- (reference "R2") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000601e4212"
- (reference "R3") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-000067ffd3cd"
- (reference "R4") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-000068124e90"
- (reference "R5") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
- )
- (path "/00000000-0000-0000-0000-00006812500f"
- (reference "R6") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
- )
- (path "/00000000-0000-0000-0000-000068125111"
- (reference "R7") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
- )
- (path "/00000000-0000-0000-0000-000068125089"
- (reference "R8") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
- )
- (path "/00000000-0000-0000-0000-0000681fce61"
- (reference "R9") (unit 1) (value "22") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000681fcf33"
- (reference "R10") (unit 1) (value "22") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000682d1ca8"
- (reference "R11") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000682d1b98"
- (reference "R12") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00005cdb3fe6"
- (reference "R13") (unit 1) (value "0") (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal")
- )
- (path "/00000000-0000-0000-0000-0000601e4190"
- (reference "R14") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000601e410c"
- (reference "R15") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000601e4076"
- (reference "R16") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000601e3d20"
- (reference "R17") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000603d19a7"
- (reference "R18") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000603090fe"
- (reference "R19") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-0000603a4631"
- (reference "R20") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-00006034b20f"
- (reference "R21") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-000060416617"
- (reference "R22") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
- )
- (path "/00000000-0000-0000-0000-000067f2fabd"
- (reference "U1") (unit 1) (value "AD9235BR") (footprint "Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm")
- )
- (path "/00000000-0000-0000-0000-000060066c9f"
- (reference "U2") (unit 1) (value "74AC163") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000067f2dfb3"
- (reference "U3") (unit 1) (value "AD8138") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000067ffcfca"
- (reference "U4") (unit 1) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000067ffd148"
- (reference "U4") (unit 2) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000067ffd1a4"
- (reference "U4") (unit 3) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000060b50f2b"
- (reference "U4") (unit 4) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000060b85f26"
- (reference "U4") (unit 5) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000060b85ffe"
- (reference "U4") (unit 6) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-00005ceb04ef"
- (reference "U4") (unit 7) (value "74HC14") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-00006003ebe7"
- (reference "U5") (unit 1) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000068081084"
- (reference "U5") (unit 2) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-0000680810f8"
- (reference "U5") (unit 3) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000068081170"
- (reference "U5") (unit 4) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-0000680811f4"
- (reference "U5") (unit 5) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000060b1c5f9"
- (reference "U5") (unit 6) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-00005ce570f5"
- (reference "U5") (unit 7) (value "74HC05") (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000067f2e1a8"
- (reference "U6") (unit 1) (value "LM2664") (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering")
- )
- (path "/00000000-0000-0000-0000-00006026b111"
- (reference "U8") (unit 1) (value "74AC153") (footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm")
- )
- (path "/00000000-0000-0000-0000-000060133146"
- (reference "U9") (unit 1) (value "MCP23017_SP") (footprint "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm")
- )
- )
- )
|