proc.kicad_sch 173 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809
  1. (kicad_sch (version 20230121) (generator eeschema)
  2. (uuid e097b152-7eac-4218-984f-e86f016c5a43)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "DIodeInc:AP3211KTR-G1" (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (at 3.81 -10.16 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "AP3211KTR-G1" (at 0 10.16 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (at 2.54 -2.54 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "" (at 2.54 -2.54 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "Partkeepr" "?" (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (symbol "AP3211KTR-G1_0_0"
  22. (pin power_in line (at 0 -11.43 90) (length 2.54)
  23. (name "GND" (effects (font (size 1.27 1.27))))
  24. (number "2" (effects (font (size 1.27 1.27))))
  25. )
  26. (pin passive line (at 7.62 -6.35 180) (length 2.54)
  27. (name "FB" (effects (font (size 1.27 1.27))))
  28. (number "3" (effects (font (size 1.27 1.27))))
  29. )
  30. (pin input line (at -7.62 -6.35 0) (length 2.54)
  31. (name "EN" (effects (font (size 1.27 1.27))))
  32. (number "4" (effects (font (size 1.27 1.27))))
  33. )
  34. (pin power_in line (at -7.62 6.35 0) (length 2.54)
  35. (name "IN" (effects (font (size 1.27 1.27))))
  36. (number "5" (effects (font (size 1.27 1.27))))
  37. )
  38. (pin power_out line (at 7.62 0 180) (length 2.54)
  39. (name "SW" (effects (font (size 1.27 1.27))))
  40. (number "6" (effects (font (size 1.27 1.27))))
  41. )
  42. )
  43. (symbol "AP3211KTR-G1_0_1"
  44. (rectangle (start -5.08 8.89) (end 5.08 -8.89)
  45. (stroke (width 0) (type default))
  46. (fill (type background))
  47. )
  48. )
  49. (symbol "AP3211KTR-G1_1_1"
  50. (pin passive line (at 7.62 6.35 180) (length 2.54)
  51. (name "BS" (effects (font (size 1.27 1.27))))
  52. (number "1" (effects (font (size 1.27 1.27))))
  53. )
  54. )
  55. )
  56. (symbol "Module:ESP-12F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  57. (property "Reference" "U" (at 11.43 -15.24 0)
  58. (effects (font (size 1.524 1.524)))
  59. )
  60. (property "Value" "ESP-12F" (at 0 15.24 0)
  61. (effects (font (size 1.524 1.524)))
  62. )
  63. (property "Footprint" "" (at 0 -1.27 0)
  64. (effects (font (size 1.524 1.524)) hide)
  65. )
  66. (property "Datasheet" "" (at 0 -1.27 0)
  67. (effects (font (size 1.524 1.524)) hide)
  68. )
  69. (symbol "ESP-12F_0_1"
  70. (rectangle (start -12.7 -12.7) (end 12.7 13.97)
  71. (stroke (width 0) (type default))
  72. (fill (type none))
  73. )
  74. (rectangle (start 6.35 -12.7) (end 6.35 -12.7)
  75. (stroke (width 0) (type default))
  76. (fill (type none))
  77. )
  78. )
  79. (symbol "ESP-12F_1_1"
  80. (pin input line (at -17.78 11.43 0) (length 5.08)
  81. (name "RST" (effects (font (size 1.27 1.27))))
  82. (number "1" (effects (font (size 1.27 1.27))))
  83. )
  84. (pin input line (at -3.81 -17.78 90) (length 5.08)
  85. (name "MISO" (effects (font (size 1.27 1.27))))
  86. (number "10" (effects (font (size 1.27 1.27))))
  87. )
  88. (pin input line (at -1.27 -17.78 90) (length 5.08)
  89. (name "GPIO9" (effects (font (size 1.27 1.27))))
  90. (number "11" (effects (font (size 1.27 1.27))))
  91. )
  92. (pin input line (at 1.27 -17.78 90) (length 5.08)
  93. (name "GPIO10" (effects (font (size 1.27 1.27))))
  94. (number "12" (effects (font (size 1.27 1.27))))
  95. )
  96. (pin input line (at 3.81 -17.78 90) (length 5.08)
  97. (name "MOSI" (effects (font (size 1.27 1.27))))
  98. (number "13" (effects (font (size 1.27 1.27))))
  99. )
  100. (pin input line (at 6.35 -17.78 90) (length 5.08)
  101. (name "SCLK" (effects (font (size 1.27 1.27))))
  102. (number "14" (effects (font (size 1.27 1.27))))
  103. )
  104. (pin input line (at 17.78 -6.35 180) (length 5.08)
  105. (name "GND" (effects (font (size 1.27 1.27))))
  106. (number "15" (effects (font (size 1.27 1.27))))
  107. )
  108. (pin input line (at 17.78 -3.81 180) (length 5.08)
  109. (name "GPIO15" (effects (font (size 1.27 1.27))))
  110. (number "16" (effects (font (size 1.27 1.27))))
  111. )
  112. (pin input line (at 17.78 -1.27 180) (length 5.08)
  113. (name "GPIO2" (effects (font (size 1.27 1.27))))
  114. (number "17" (effects (font (size 1.27 1.27))))
  115. )
  116. (pin input line (at 17.78 1.27 180) (length 5.08)
  117. (name "GPIO0" (effects (font (size 1.27 1.27))))
  118. (number "18" (effects (font (size 1.27 1.27))))
  119. )
  120. (pin input line (at 17.78 3.81 180) (length 5.08)
  121. (name "GPIO4" (effects (font (size 1.27 1.27))))
  122. (number "19" (effects (font (size 1.27 1.27))))
  123. )
  124. (pin input line (at -17.78 8.89 0) (length 5.08)
  125. (name "ADC" (effects (font (size 1.27 1.27))))
  126. (number "2" (effects (font (size 1.27 1.27))))
  127. )
  128. (pin input line (at 17.78 6.35 180) (length 5.08)
  129. (name "GPIO5" (effects (font (size 1.27 1.27))))
  130. (number "20" (effects (font (size 1.27 1.27))))
  131. )
  132. (pin input line (at 17.78 8.89 180) (length 5.08)
  133. (name "RXD" (effects (font (size 1.27 1.27))))
  134. (number "21" (effects (font (size 1.27 1.27))))
  135. )
  136. (pin input line (at 17.78 11.43 180) (length 5.08)
  137. (name "TXD" (effects (font (size 1.27 1.27))))
  138. (number "22" (effects (font (size 1.27 1.27))))
  139. )
  140. (pin input line (at -17.78 6.35 0) (length 5.08)
  141. (name "EN" (effects (font (size 1.27 1.27))))
  142. (number "3" (effects (font (size 1.27 1.27))))
  143. )
  144. (pin input line (at -17.78 3.81 0) (length 5.08)
  145. (name "GPIO16" (effects (font (size 1.27 1.27))))
  146. (number "4" (effects (font (size 1.27 1.27))))
  147. )
  148. (pin input line (at -17.78 1.27 0) (length 5.08)
  149. (name "GPIO14" (effects (font (size 1.27 1.27))))
  150. (number "5" (effects (font (size 1.27 1.27))))
  151. )
  152. (pin input line (at -17.78 -1.27 0) (length 5.08)
  153. (name "GPIO12" (effects (font (size 1.27 1.27))))
  154. (number "6" (effects (font (size 1.27 1.27))))
  155. )
  156. (pin input line (at -17.78 -3.81 0) (length 5.08)
  157. (name "GPIO13" (effects (font (size 1.27 1.27))))
  158. (number "7" (effects (font (size 1.27 1.27))))
  159. )
  160. (pin input line (at -17.78 -6.35 0) (length 5.08)
  161. (name "VCC" (effects (font (size 1.27 1.27))))
  162. (number "8" (effects (font (size 1.27 1.27))))
  163. )
  164. (pin input line (at -6.35 -17.78 90) (length 5.08)
  165. (name "CS0" (effects (font (size 1.27 1.27))))
  166. (number "9" (effects (font (size 1.27 1.27))))
  167. )
  168. )
  169. )
  170. (symbol "ST:M24C32" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  171. (property "Reference" "U" (at 5.08 -1.27 0)
  172. (effects (font (size 1.524 1.524)))
  173. )
  174. (property "Value" "M24C32" (at 0 11.43 0)
  175. (effects (font (size 1.524 1.524)))
  176. )
  177. (property "Footprint" "" (at 0 0 0)
  178. (effects (font (size 1.524 1.524)))
  179. )
  180. (property "Datasheet" "" (at 0 0 0)
  181. (effects (font (size 1.524 1.524)))
  182. )
  183. (symbol "M24C32_0_1"
  184. (rectangle (start -6.35 10.16) (end 6.35 0)
  185. (stroke (width 0) (type default))
  186. (fill (type none))
  187. )
  188. )
  189. (symbol "M24C32_1_1"
  190. (pin input line (at 11.43 8.89 180) (length 5.08)
  191. (name "E0" (effects (font (size 1.27 1.27))))
  192. (number "1" (effects (font (size 1.27 1.27))))
  193. )
  194. (pin input line (at 11.43 6.35 180) (length 5.08)
  195. (name "E1" (effects (font (size 1.27 1.27))))
  196. (number "2" (effects (font (size 1.27 1.27))))
  197. )
  198. (pin input line (at 11.43 3.81 180) (length 5.08)
  199. (name "E2" (effects (font (size 1.27 1.27))))
  200. (number "3" (effects (font (size 1.27 1.27))))
  201. )
  202. (pin power_in line (at 11.43 1.27 180) (length 5.08)
  203. (name "VSS" (effects (font (size 1.27 1.27))))
  204. (number "4" (effects (font (size 1.27 1.27))))
  205. )
  206. (pin power_in line (at -11.43 8.89 0) (length 5.08)
  207. (name "VCC" (effects (font (size 1.27 1.27))))
  208. (number "5" (effects (font (size 1.27 1.27))))
  209. )
  210. (pin input line (at -11.43 6.35 0) (length 5.08)
  211. (name "~{WC}" (effects (font (size 1.27 1.27))))
  212. (number "6" (effects (font (size 1.27 1.27))))
  213. )
  214. (pin input line (at -11.43 3.81 0) (length 5.08)
  215. (name "SCL" (effects (font (size 1.27 1.27))))
  216. (number "7" (effects (font (size 1.27 1.27))))
  217. )
  218. (pin bidirectional line (at -11.43 1.27 0) (length 5.08)
  219. (name "SDA" (effects (font (size 1.27 1.27))))
  220. (number "8" (effects (font (size 1.27 1.27))))
  221. )
  222. )
  223. )
  224. (symbol "ST:M41T83" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  225. (property "Reference" "U" (at 0 35.56 0)
  226. (effects (font (size 1.524 1.524)))
  227. )
  228. (property "Value" "M41T83" (at 0 5.08 0)
  229. (effects (font (size 1.524 1.524)))
  230. )
  231. (property "Footprint" "" (at 0 0 0)
  232. (effects (font (size 1.524 1.524)))
  233. )
  234. (property "Datasheet" "" (at 0 0 0)
  235. (effects (font (size 1.524 1.524)))
  236. )
  237. (symbol "M41T83_0_1"
  238. (rectangle (start -11.43 7.62) (end 11.43 33.02)
  239. (stroke (width 0) (type default))
  240. (fill (type none))
  241. )
  242. )
  243. (symbol "M41T83_1_1"
  244. (pin input line (at -16.51 30.48 0) (length 5.08)
  245. (name "NC" (effects (font (size 1.27 1.27))))
  246. (number "1" (effects (font (size 1.27 1.27))))
  247. )
  248. (pin input line (at 16.51 10.16 180) (length 5.08)
  249. (name "SDA" (effects (font (size 1.27 1.27))))
  250. (number "10" (effects (font (size 1.27 1.27))))
  251. )
  252. (pin input line (at 16.51 12.7 180) (length 5.08)
  253. (name "SCL" (effects (font (size 1.27 1.27))))
  254. (number "11" (effects (font (size 1.27 1.27))))
  255. )
  256. (pin input line (at 16.51 15.24 180) (length 5.08)
  257. (name "~{IRQ1}/FT/OUT" (effects (font (size 1.27 1.27))))
  258. (number "12" (effects (font (size 1.27 1.27))))
  259. )
  260. (pin input line (at 16.51 17.78 180) (length 5.08)
  261. (name "NC" (effects (font (size 1.27 1.27))))
  262. (number "13" (effects (font (size 1.27 1.27))))
  263. )
  264. (pin input line (at 16.51 20.32 180) (length 5.08)
  265. (name "~{IRQ2}" (effects (font (size 1.27 1.27))))
  266. (number "14" (effects (font (size 1.27 1.27))))
  267. )
  268. (pin input line (at 16.51 22.86 180) (length 5.08)
  269. (name "VCC" (effects (font (size 1.27 1.27))))
  270. (number "15" (effects (font (size 1.27 1.27))))
  271. )
  272. (pin input line (at 16.51 25.4 180) (length 5.08)
  273. (name "NF" (effects (font (size 1.27 1.27))))
  274. (number "16" (effects (font (size 1.27 1.27))))
  275. )
  276. (pin input line (at 16.51 27.94 180) (length 5.08)
  277. (name "NF" (effects (font (size 1.27 1.27))))
  278. (number "17" (effects (font (size 1.27 1.27))))
  279. )
  280. (pin input line (at 16.51 30.48 180) (length 5.08)
  281. (name "NC" (effects (font (size 1.27 1.27))))
  282. (number "18" (effects (font (size 1.27 1.27))))
  283. )
  284. (pin input line (at -16.51 27.94 0) (length 5.08)
  285. (name "NF" (effects (font (size 1.27 1.27))))
  286. (number "2" (effects (font (size 1.27 1.27))))
  287. )
  288. (pin input line (at -16.51 25.4 0) (length 5.08)
  289. (name "NF" (effects (font (size 1.27 1.27))))
  290. (number "3" (effects (font (size 1.27 1.27))))
  291. )
  292. (pin input line (at -16.51 22.86 0) (length 5.08)
  293. (name "NC" (effects (font (size 1.27 1.27))))
  294. (number "4" (effects (font (size 1.27 1.27))))
  295. )
  296. (pin input line (at -16.51 20.32 0) (length 5.08)
  297. (name "~{RST}" (effects (font (size 1.27 1.27))))
  298. (number "5" (effects (font (size 1.27 1.27))))
  299. )
  300. (pin input line (at -16.51 17.78 0) (length 5.08)
  301. (name "DU" (effects (font (size 1.27 1.27))))
  302. (number "6" (effects (font (size 1.27 1.27))))
  303. )
  304. (pin input line (at -16.51 15.24 0) (length 5.08)
  305. (name "SQW" (effects (font (size 1.27 1.27))))
  306. (number "7" (effects (font (size 1.27 1.27))))
  307. )
  308. (pin input line (at -16.51 12.7 0) (length 5.08)
  309. (name "VBAT" (effects (font (size 1.27 1.27))))
  310. (number "8" (effects (font (size 1.27 1.27))))
  311. )
  312. (pin input line (at -16.51 10.16 0) (length 5.08)
  313. (name "VSS" (effects (font (size 1.27 1.27))))
  314. (number "9" (effects (font (size 1.27 1.27))))
  315. )
  316. )
  317. )
  318. (symbol "ST:STM32F401RC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  319. (property "Reference" "U" (at 25.4 -27.94 0)
  320. (effects (font (size 1.524 1.524)))
  321. )
  322. (property "Value" "STM32F401RC" (at -1.27 -17.78 0)
  323. (effects (font (size 1.524 1.524)))
  324. )
  325. (property "Footprint" "U:LQFP64" (at -30.48 -16.51 0)
  326. (effects (font (size 1.524 1.524)) hide)
  327. )
  328. (property "Datasheet" "" (at -30.48 -16.51 0)
  329. (effects (font (size 1.524 1.524)) hide)
  330. )
  331. (symbol "STM32F401RC_0_1"
  332. (rectangle (start -26.67 -26.67) (end 26.67 26.67)
  333. (stroke (width 0) (type default))
  334. (fill (type none))
  335. )
  336. )
  337. (symbol "STM32F401RC_1_1"
  338. (pin power_in line (at -31.75 19.05 0) (length 5.08)
  339. (name "VBAT" (effects (font (size 1.27 1.27))))
  340. (number "1" (effects (font (size 1.27 1.27))))
  341. )
  342. (pin bidirectional line (at -31.75 -3.81 0) (length 5.08)
  343. (name "PC2" (effects (font (size 1.27 1.27))))
  344. (number "10" (effects (font (size 1.27 1.27))))
  345. )
  346. (pin bidirectional line (at -31.75 -6.35 0) (length 5.08)
  347. (name "PC3" (effects (font (size 1.27 1.27))))
  348. (number "11" (effects (font (size 1.27 1.27))))
  349. )
  350. (pin power_in line (at -31.75 -8.89 0) (length 5.08)
  351. (name "VSSA" (effects (font (size 1.27 1.27))))
  352. (number "12" (effects (font (size 1.27 1.27))))
  353. )
  354. (pin power_in line (at -31.75 -11.43 0) (length 5.08)
  355. (name "VDDA" (effects (font (size 1.27 1.27))))
  356. (number "13" (effects (font (size 1.27 1.27))))
  357. )
  358. (pin bidirectional line (at -31.75 -13.97 0) (length 5.08)
  359. (name "PA0" (effects (font (size 1.27 1.27))))
  360. (number "14" (effects (font (size 1.27 1.27))))
  361. )
  362. (pin bidirectional line (at -31.75 -16.51 0) (length 5.08)
  363. (name "PA1" (effects (font (size 1.27 1.27))))
  364. (number "15" (effects (font (size 1.27 1.27))))
  365. )
  366. (pin bidirectional line (at -31.75 -19.05 0) (length 5.08)
  367. (name "PA2" (effects (font (size 1.27 1.27))))
  368. (number "16" (effects (font (size 1.27 1.27))))
  369. )
  370. (pin bidirectional line (at -19.05 -31.75 90) (length 5.08)
  371. (name "PA3" (effects (font (size 1.27 1.27))))
  372. (number "17" (effects (font (size 1.27 1.27))))
  373. )
  374. (pin power_in line (at -16.51 -31.75 90) (length 5.08)
  375. (name "VSS" (effects (font (size 1.27 1.27))))
  376. (number "18" (effects (font (size 1.27 1.27))))
  377. )
  378. (pin power_in line (at -13.97 -31.75 90) (length 5.08)
  379. (name "VDD" (effects (font (size 1.27 1.27))))
  380. (number "19" (effects (font (size 1.27 1.27))))
  381. )
  382. (pin bidirectional line (at -31.75 16.51 0) (length 5.08)
  383. (name "PC13" (effects (font (size 1.27 1.27))))
  384. (number "2" (effects (font (size 1.27 1.27))))
  385. )
  386. (pin bidirectional line (at -11.43 -31.75 90) (length 5.08)
  387. (name "PA4" (effects (font (size 1.27 1.27))))
  388. (number "20" (effects (font (size 1.27 1.27))))
  389. )
  390. (pin bidirectional line (at -8.89 -31.75 90) (length 5.08)
  391. (name "PA5" (effects (font (size 1.27 1.27))))
  392. (number "21" (effects (font (size 1.27 1.27))))
  393. )
  394. (pin bidirectional line (at -6.35 -31.75 90) (length 5.08)
  395. (name "PA6" (effects (font (size 1.27 1.27))))
  396. (number "22" (effects (font (size 1.27 1.27))))
  397. )
  398. (pin bidirectional line (at -3.81 -31.75 90) (length 5.08)
  399. (name "PA7" (effects (font (size 1.27 1.27))))
  400. (number "23" (effects (font (size 1.27 1.27))))
  401. )
  402. (pin bidirectional line (at -1.27 -31.75 90) (length 5.08)
  403. (name "PC4" (effects (font (size 1.27 1.27))))
  404. (number "24" (effects (font (size 1.27 1.27))))
  405. )
  406. (pin bidirectional line (at 1.27 -31.75 90) (length 5.08)
  407. (name "PC5" (effects (font (size 1.27 1.27))))
  408. (number "25" (effects (font (size 1.27 1.27))))
  409. )
  410. (pin bidirectional line (at 3.81 -31.75 90) (length 5.08)
  411. (name "PB0" (effects (font (size 1.27 1.27))))
  412. (number "26" (effects (font (size 1.27 1.27))))
  413. )
  414. (pin bidirectional line (at 6.35 -31.75 90) (length 5.08)
  415. (name "PB1" (effects (font (size 1.27 1.27))))
  416. (number "27" (effects (font (size 1.27 1.27))))
  417. )
  418. (pin bidirectional line (at 8.89 -31.75 90) (length 5.08)
  419. (name "PB2" (effects (font (size 1.27 1.27))))
  420. (number "28" (effects (font (size 1.27 1.27))))
  421. )
  422. (pin passive line (at 11.43 -31.75 90) (length 5.08)
  423. (name "PB10" (effects (font (size 1.27 1.27))))
  424. (number "29" (effects (font (size 1.27 1.27))))
  425. )
  426. (pin bidirectional line (at -31.75 13.97 0) (length 5.08)
  427. (name "PC14" (effects (font (size 1.27 1.27))))
  428. (number "3" (effects (font (size 1.27 1.27))))
  429. )
  430. (pin power_in line (at 13.97 -31.75 90) (length 5.08)
  431. (name "VCAP1" (effects (font (size 1.27 1.27))))
  432. (number "30" (effects (font (size 1.27 1.27))))
  433. )
  434. (pin power_in line (at 16.51 -31.75 90) (length 5.08)
  435. (name "VSS" (effects (font (size 1.27 1.27))))
  436. (number "31" (effects (font (size 1.27 1.27))))
  437. )
  438. (pin power_in line (at 19.05 -31.75 90) (length 5.08)
  439. (name "VDD" (effects (font (size 1.27 1.27))))
  440. (number "32" (effects (font (size 1.27 1.27))))
  441. )
  442. (pin bidirectional line (at 31.75 -19.05 180) (length 5.08)
  443. (name "PB12" (effects (font (size 1.27 1.27))))
  444. (number "33" (effects (font (size 1.27 1.27))))
  445. )
  446. (pin bidirectional line (at 31.75 -16.51 180) (length 5.08)
  447. (name "PB13" (effects (font (size 1.27 1.27))))
  448. (number "34" (effects (font (size 1.27 1.27))))
  449. )
  450. (pin bidirectional line (at 31.75 -13.97 180) (length 5.08)
  451. (name "PB14" (effects (font (size 1.27 1.27))))
  452. (number "35" (effects (font (size 1.27 1.27))))
  453. )
  454. (pin bidirectional line (at 31.75 -11.43 180) (length 5.08)
  455. (name "PB15" (effects (font (size 1.27 1.27))))
  456. (number "36" (effects (font (size 1.27 1.27))))
  457. )
  458. (pin bidirectional line (at 31.75 -8.89 180) (length 5.08)
  459. (name "PC6" (effects (font (size 1.27 1.27))))
  460. (number "37" (effects (font (size 1.27 1.27))))
  461. )
  462. (pin bidirectional line (at 31.75 -6.35 180) (length 5.08)
  463. (name "PC7" (effects (font (size 1.27 1.27))))
  464. (number "38" (effects (font (size 1.27 1.27))))
  465. )
  466. (pin bidirectional line (at 31.75 -3.81 180) (length 5.08)
  467. (name "PC8" (effects (font (size 1.27 1.27))))
  468. (number "39" (effects (font (size 1.27 1.27))))
  469. )
  470. (pin bidirectional line (at -31.75 11.43 0) (length 5.08)
  471. (name "PC15" (effects (font (size 1.27 1.27))))
  472. (number "4" (effects (font (size 1.27 1.27))))
  473. )
  474. (pin bidirectional line (at 31.75 -1.27 180) (length 5.08)
  475. (name "PC9" (effects (font (size 1.27 1.27))))
  476. (number "40" (effects (font (size 1.27 1.27))))
  477. )
  478. (pin bidirectional line (at 31.75 1.27 180) (length 5.08)
  479. (name "PA8" (effects (font (size 1.27 1.27))))
  480. (number "41" (effects (font (size 1.27 1.27))))
  481. )
  482. (pin bidirectional line (at 31.75 3.81 180) (length 5.08)
  483. (name "PA9" (effects (font (size 1.27 1.27))))
  484. (number "42" (effects (font (size 1.27 1.27))))
  485. )
  486. (pin bidirectional line (at 31.75 6.35 180) (length 5.08)
  487. (name "PA10" (effects (font (size 1.27 1.27))))
  488. (number "43" (effects (font (size 1.27 1.27))))
  489. )
  490. (pin bidirectional line (at 31.75 8.89 180) (length 5.08)
  491. (name "PA11" (effects (font (size 1.27 1.27))))
  492. (number "44" (effects (font (size 1.27 1.27))))
  493. )
  494. (pin bidirectional line (at 31.75 11.43 180) (length 5.08)
  495. (name "PA12" (effects (font (size 1.27 1.27))))
  496. (number "45" (effects (font (size 1.27 1.27))))
  497. )
  498. (pin bidirectional line (at 31.75 13.97 180) (length 5.08)
  499. (name "PA13" (effects (font (size 1.27 1.27))))
  500. (number "46" (effects (font (size 1.27 1.27))))
  501. )
  502. (pin power_in line (at 31.75 16.51 180) (length 5.08)
  503. (name "VDD" (effects (font (size 1.27 1.27))))
  504. (number "47" (effects (font (size 1.27 1.27))))
  505. )
  506. (pin power_in line (at 31.75 19.05 180) (length 5.08)
  507. (name "VSS" (effects (font (size 1.27 1.27))))
  508. (number "48" (effects (font (size 1.27 1.27))))
  509. )
  510. (pin bidirectional line (at 19.05 31.75 270) (length 5.08)
  511. (name "PA14" (effects (font (size 1.27 1.27))))
  512. (number "49" (effects (font (size 1.27 1.27))))
  513. )
  514. (pin bidirectional line (at -31.75 8.89 0) (length 5.08)
  515. (name "PH0" (effects (font (size 1.27 1.27))))
  516. (number "5" (effects (font (size 1.27 1.27))))
  517. )
  518. (pin bidirectional line (at 16.51 31.75 270) (length 5.08)
  519. (name "PA15" (effects (font (size 1.27 1.27))))
  520. (number "50" (effects (font (size 1.27 1.27))))
  521. )
  522. (pin bidirectional line (at 13.97 31.75 270) (length 5.08)
  523. (name "PC10" (effects (font (size 1.27 1.27))))
  524. (number "51" (effects (font (size 1.27 1.27))))
  525. )
  526. (pin bidirectional line (at 11.43 31.75 270) (length 5.08)
  527. (name "PC11" (effects (font (size 1.27 1.27))))
  528. (number "52" (effects (font (size 1.27 1.27))))
  529. )
  530. (pin bidirectional line (at 8.89 31.75 270) (length 5.08)
  531. (name "PC12" (effects (font (size 1.27 1.27))))
  532. (number "53" (effects (font (size 1.27 1.27))))
  533. )
  534. (pin bidirectional line (at 6.35 31.75 270) (length 5.08)
  535. (name "PD2" (effects (font (size 1.27 1.27))))
  536. (number "54" (effects (font (size 1.27 1.27))))
  537. )
  538. (pin bidirectional line (at 3.81 31.75 270) (length 5.08)
  539. (name "PB3" (effects (font (size 1.27 1.27))))
  540. (number "55" (effects (font (size 1.27 1.27))))
  541. )
  542. (pin bidirectional line (at 1.27 31.75 270) (length 5.08)
  543. (name "PB4" (effects (font (size 1.27 1.27))))
  544. (number "56" (effects (font (size 1.27 1.27))))
  545. )
  546. (pin bidirectional line (at -1.27 31.75 270) (length 5.08)
  547. (name "PB5" (effects (font (size 1.27 1.27))))
  548. (number "57" (effects (font (size 1.27 1.27))))
  549. )
  550. (pin bidirectional line (at -3.81 31.75 270) (length 5.08)
  551. (name "PB6" (effects (font (size 1.27 1.27))))
  552. (number "58" (effects (font (size 1.27 1.27))))
  553. )
  554. (pin bidirectional line (at -6.35 31.75 270) (length 5.08)
  555. (name "PB7" (effects (font (size 1.27 1.27))))
  556. (number "59" (effects (font (size 1.27 1.27))))
  557. )
  558. (pin bidirectional line (at -31.75 6.35 0) (length 5.08)
  559. (name "PH1" (effects (font (size 1.27 1.27))))
  560. (number "6" (effects (font (size 1.27 1.27))))
  561. )
  562. (pin input line (at -8.89 31.75 270) (length 5.08)
  563. (name "BOOT0" (effects (font (size 1.27 1.27))))
  564. (number "60" (effects (font (size 1.27 1.27))))
  565. )
  566. (pin bidirectional line (at -11.43 31.75 270) (length 5.08)
  567. (name "PB8" (effects (font (size 1.27 1.27))))
  568. (number "61" (effects (font (size 1.27 1.27))))
  569. )
  570. (pin bidirectional line (at -13.97 31.75 270) (length 5.08)
  571. (name "PB9" (effects (font (size 1.27 1.27))))
  572. (number "62" (effects (font (size 1.27 1.27))))
  573. )
  574. (pin power_in line (at -16.51 31.75 270) (length 5.08)
  575. (name "VSS" (effects (font (size 1.27 1.27))))
  576. (number "63" (effects (font (size 1.27 1.27))))
  577. )
  578. (pin power_in line (at -19.05 31.75 270) (length 5.08)
  579. (name "VDD" (effects (font (size 1.27 1.27))))
  580. (number "64" (effects (font (size 1.27 1.27))))
  581. )
  582. (pin bidirectional line (at -31.75 3.81 0) (length 5.08)
  583. (name "NRST" (effects (font (size 1.27 1.27))))
  584. (number "7" (effects (font (size 1.27 1.27))))
  585. )
  586. (pin bidirectional line (at -31.75 1.27 0) (length 5.08)
  587. (name "PC0" (effects (font (size 1.27 1.27))))
  588. (number "8" (effects (font (size 1.27 1.27))))
  589. )
  590. (pin bidirectional line (at -31.75 -1.27 0) (length 5.08)
  591. (name "PC1" (effects (font (size 1.27 1.27))))
  592. (number "9" (effects (font (size 1.27 1.27))))
  593. )
  594. )
  595. )
  596. (symbol "conn:CONN_01X01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  597. (property "Reference" "P" (at 0 2.54 0)
  598. (effects (font (size 1.27 1.27)))
  599. )
  600. (property "Value" "CONN_01X01" (at 2.54 0 90)
  601. (effects (font (size 1.27 1.27)))
  602. )
  603. (property "Footprint" "" (at 0 0 0)
  604. (effects (font (size 1.27 1.27)))
  605. )
  606. (property "Datasheet" "" (at 0 0 0)
  607. (effects (font (size 1.27 1.27)))
  608. )
  609. (property "ki_fp_filters" "Pin_Header_Straight_1X01 Pin_Header_Angled_1X01 Socket_Strip_Straight_1X01 Socket_Strip_Angled_1X01" (at 0 0 0)
  610. (effects (font (size 1.27 1.27)) hide)
  611. )
  612. (symbol "CONN_01X01_0_1"
  613. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  614. (stroke (width 0) (type default))
  615. (fill (type none))
  616. )
  617. (rectangle (start -1.27 1.27) (end 1.27 -1.27)
  618. (stroke (width 0) (type default))
  619. (fill (type none))
  620. )
  621. )
  622. (symbol "CONN_01X01_1_1"
  623. (pin passive line (at -5.08 0 0) (length 3.81)
  624. (name "P1" (effects (font (size 1.27 1.27))))
  625. (number "1" (effects (font (size 1.27 1.27))))
  626. )
  627. )
  628. )
  629. (symbol "conn:CONN_01X02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  630. (property "Reference" "P" (at 0 3.81 0)
  631. (effects (font (size 1.27 1.27)))
  632. )
  633. (property "Value" "CONN_01X02" (at 2.54 0 90)
  634. (effects (font (size 1.27 1.27)))
  635. )
  636. (property "Footprint" "" (at 0 0 0)
  637. (effects (font (size 1.27 1.27)))
  638. )
  639. (property "Datasheet" "" (at 0 0 0)
  640. (effects (font (size 1.27 1.27)))
  641. )
  642. (property "ki_fp_filters" "Pin_Header_Straight_1X02 Pin_Header_Angled_1X02 Socket_Strip_Straight_1X02 Socket_Strip_Angled_1X02" (at 0 0 0)
  643. (effects (font (size 1.27 1.27)) hide)
  644. )
  645. (symbol "CONN_01X02_0_1"
  646. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  647. (stroke (width 0) (type default))
  648. (fill (type none))
  649. )
  650. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  651. (stroke (width 0) (type default))
  652. (fill (type none))
  653. )
  654. (rectangle (start -1.27 2.54) (end 1.27 -2.54)
  655. (stroke (width 0) (type default))
  656. (fill (type none))
  657. )
  658. )
  659. (symbol "CONN_01X02_1_1"
  660. (pin passive line (at -5.08 1.27 0) (length 3.81)
  661. (name "P1" (effects (font (size 1.27 1.27))))
  662. (number "1" (effects (font (size 1.27 1.27))))
  663. )
  664. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  665. (name "P2" (effects (font (size 1.27 1.27))))
  666. (number "2" (effects (font (size 1.27 1.27))))
  667. )
  668. )
  669. )
  670. (symbol "conn:CONN_01X03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  671. (property "Reference" "P" (at 0 5.08 0)
  672. (effects (font (size 1.27 1.27)))
  673. )
  674. (property "Value" "CONN_01X03" (at 2.54 0 90)
  675. (effects (font (size 1.27 1.27)))
  676. )
  677. (property "Footprint" "" (at 0 0 0)
  678. (effects (font (size 1.27 1.27)))
  679. )
  680. (property "Datasheet" "" (at 0 0 0)
  681. (effects (font (size 1.27 1.27)))
  682. )
  683. (property "ki_fp_filters" "Pin_Header_Straight_1X03 Pin_Header_Angled_1X03 Socket_Strip_Straight_1X03 Socket_Strip_Angled_1X03" (at 0 0 0)
  684. (effects (font (size 1.27 1.27)) hide)
  685. )
  686. (symbol "CONN_01X03_0_1"
  687. (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
  688. (stroke (width 0) (type default))
  689. (fill (type none))
  690. )
  691. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  692. (stroke (width 0) (type default))
  693. (fill (type none))
  694. )
  695. (rectangle (start -1.27 2.667) (end 0.254 2.413)
  696. (stroke (width 0) (type default))
  697. (fill (type none))
  698. )
  699. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  700. (stroke (width 0) (type default))
  701. (fill (type none))
  702. )
  703. )
  704. (symbol "CONN_01X03_1_1"
  705. (pin passive line (at -5.08 2.54 0) (length 3.81)
  706. (name "P1" (effects (font (size 1.27 1.27))))
  707. (number "1" (effects (font (size 1.27 1.27))))
  708. )
  709. (pin passive line (at -5.08 0 0) (length 3.81)
  710. (name "P2" (effects (font (size 1.27 1.27))))
  711. (number "2" (effects (font (size 1.27 1.27))))
  712. )
  713. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  714. (name "P3" (effects (font (size 1.27 1.27))))
  715. (number "3" (effects (font (size 1.27 1.27))))
  716. )
  717. )
  718. )
  719. (symbol "conn:CONN_01X04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  720. (property "Reference" "P" (at 0 6.35 0)
  721. (effects (font (size 1.27 1.27)))
  722. )
  723. (property "Value" "CONN_01X04" (at 2.54 0 90)
  724. (effects (font (size 1.27 1.27)))
  725. )
  726. (property "Footprint" "" (at 0 0 0)
  727. (effects (font (size 1.27 1.27)))
  728. )
  729. (property "Datasheet" "" (at 0 0 0)
  730. (effects (font (size 1.27 1.27)))
  731. )
  732. (property "ki_fp_filters" "Pin_Header_Straight_1X04 Pin_Header_Angled_1X04 Socket_Strip_Straight_1X04 Socket_Strip_Angled_1X04" (at 0 0 0)
  733. (effects (font (size 1.27 1.27)) hide)
  734. )
  735. (symbol "CONN_01X04_0_1"
  736. (rectangle (start -1.27 -3.683) (end 0.254 -3.937)
  737. (stroke (width 0) (type default))
  738. (fill (type none))
  739. )
  740. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  741. (stroke (width 0) (type default))
  742. (fill (type none))
  743. )
  744. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  745. (stroke (width 0) (type default))
  746. (fill (type none))
  747. )
  748. (rectangle (start -1.27 3.937) (end 0.254 3.683)
  749. (stroke (width 0) (type default))
  750. (fill (type none))
  751. )
  752. (rectangle (start -1.27 5.08) (end 1.27 -5.08)
  753. (stroke (width 0) (type default))
  754. (fill (type none))
  755. )
  756. )
  757. (symbol "CONN_01X04_1_1"
  758. (pin passive line (at -5.08 3.81 0) (length 3.81)
  759. (name "P1" (effects (font (size 1.27 1.27))))
  760. (number "1" (effects (font (size 1.27 1.27))))
  761. )
  762. (pin passive line (at -5.08 1.27 0) (length 3.81)
  763. (name "P2" (effects (font (size 1.27 1.27))))
  764. (number "2" (effects (font (size 1.27 1.27))))
  765. )
  766. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  767. (name "P3" (effects (font (size 1.27 1.27))))
  768. (number "3" (effects (font (size 1.27 1.27))))
  769. )
  770. (pin passive line (at -5.08 -3.81 0) (length 3.81)
  771. (name "P4" (effects (font (size 1.27 1.27))))
  772. (number "4" (effects (font (size 1.27 1.27))))
  773. )
  774. )
  775. )
  776. (symbol "conn:CONN_01X05" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  777. (property "Reference" "P" (at 0 7.62 0)
  778. (effects (font (size 1.27 1.27)))
  779. )
  780. (property "Value" "CONN_01X05" (at 2.54 0 90)
  781. (effects (font (size 1.27 1.27)))
  782. )
  783. (property "Footprint" "" (at 0 0 0)
  784. (effects (font (size 1.27 1.27)))
  785. )
  786. (property "Datasheet" "" (at 0 0 0)
  787. (effects (font (size 1.27 1.27)))
  788. )
  789. (property "ki_fp_filters" "Pin_Header_Straight_1X05 Pin_Header_Angled_1X05 Socket_Strip_Straight_1X05 Socket_Strip_Angled_1X05" (at 0 0 0)
  790. (effects (font (size 1.27 1.27)) hide)
  791. )
  792. (symbol "CONN_01X05_0_1"
  793. (rectangle (start -1.27 -4.953) (end 0.254 -5.207)
  794. (stroke (width 0) (type default))
  795. (fill (type none))
  796. )
  797. (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
  798. (stroke (width 0) (type default))
  799. (fill (type none))
  800. )
  801. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  802. (stroke (width 0) (type default))
  803. (fill (type none))
  804. )
  805. (rectangle (start -1.27 2.667) (end 0.254 2.413)
  806. (stroke (width 0) (type default))
  807. (fill (type none))
  808. )
  809. (rectangle (start -1.27 5.207) (end 0.254 4.953)
  810. (stroke (width 0) (type default))
  811. (fill (type none))
  812. )
  813. (rectangle (start -1.27 6.35) (end 1.27 -6.35)
  814. (stroke (width 0) (type default))
  815. (fill (type none))
  816. )
  817. )
  818. (symbol "CONN_01X05_1_1"
  819. (pin passive line (at -5.08 5.08 0) (length 3.81)
  820. (name "P1" (effects (font (size 1.27 1.27))))
  821. (number "1" (effects (font (size 1.27 1.27))))
  822. )
  823. (pin passive line (at -5.08 2.54 0) (length 3.81)
  824. (name "P2" (effects (font (size 1.27 1.27))))
  825. (number "2" (effects (font (size 1.27 1.27))))
  826. )
  827. (pin passive line (at -5.08 0 0) (length 3.81)
  828. (name "P3" (effects (font (size 1.27 1.27))))
  829. (number "3" (effects (font (size 1.27 1.27))))
  830. )
  831. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  832. (name "P4" (effects (font (size 1.27 1.27))))
  833. (number "4" (effects (font (size 1.27 1.27))))
  834. )
  835. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  836. (name "P5" (effects (font (size 1.27 1.27))))
  837. (number "5" (effects (font (size 1.27 1.27))))
  838. )
  839. )
  840. )
  841. (symbol "conn:CONN_01X06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  842. (property "Reference" "P" (at 0 8.89 0)
  843. (effects (font (size 1.27 1.27)))
  844. )
  845. (property "Value" "CONN_01X06" (at 2.54 0 90)
  846. (effects (font (size 1.27 1.27)))
  847. )
  848. (property "Footprint" "" (at 0 0 0)
  849. (effects (font (size 1.27 1.27)))
  850. )
  851. (property "Datasheet" "" (at 0 0 0)
  852. (effects (font (size 1.27 1.27)))
  853. )
  854. (property "ki_fp_filters" "Pin_Header_Straight_1X06 Pin_Header_Angled_1X06 Socket_Strip_Straight_1X06 Socket_Strip_Angled_1X06" (at 0 0 0)
  855. (effects (font (size 1.27 1.27)) hide)
  856. )
  857. (symbol "CONN_01X06_0_1"
  858. (rectangle (start -1.27 -6.223) (end 0.254 -6.477)
  859. (stroke (width 0) (type default))
  860. (fill (type none))
  861. )
  862. (rectangle (start -1.27 -3.683) (end 0.254 -3.937)
  863. (stroke (width 0) (type default))
  864. (fill (type none))
  865. )
  866. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  867. (stroke (width 0) (type default))
  868. (fill (type none))
  869. )
  870. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  871. (stroke (width 0) (type default))
  872. (fill (type none))
  873. )
  874. (rectangle (start -1.27 3.937) (end 0.254 3.683)
  875. (stroke (width 0) (type default))
  876. (fill (type none))
  877. )
  878. (rectangle (start -1.27 6.477) (end 0.254 6.223)
  879. (stroke (width 0) (type default))
  880. (fill (type none))
  881. )
  882. (rectangle (start -1.27 7.62) (end 1.27 -7.62)
  883. (stroke (width 0) (type default))
  884. (fill (type none))
  885. )
  886. )
  887. (symbol "CONN_01X06_1_1"
  888. (pin passive line (at -5.08 6.35 0) (length 3.81)
  889. (name "P1" (effects (font (size 1.27 1.27))))
  890. (number "1" (effects (font (size 1.27 1.27))))
  891. )
  892. (pin passive line (at -5.08 3.81 0) (length 3.81)
  893. (name "P2" (effects (font (size 1.27 1.27))))
  894. (number "2" (effects (font (size 1.27 1.27))))
  895. )
  896. (pin passive line (at -5.08 1.27 0) (length 3.81)
  897. (name "P3" (effects (font (size 1.27 1.27))))
  898. (number "3" (effects (font (size 1.27 1.27))))
  899. )
  900. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  901. (name "P4" (effects (font (size 1.27 1.27))))
  902. (number "4" (effects (font (size 1.27 1.27))))
  903. )
  904. (pin passive line (at -5.08 -3.81 0) (length 3.81)
  905. (name "P5" (effects (font (size 1.27 1.27))))
  906. (number "5" (effects (font (size 1.27 1.27))))
  907. )
  908. (pin passive line (at -5.08 -6.35 0) (length 3.81)
  909. (name "P6" (effects (font (size 1.27 1.27))))
  910. (number "6" (effects (font (size 1.27 1.27))))
  911. )
  912. )
  913. )
  914. (symbol "conn:Micro_USB" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  915. (property "Reference" "J" (at 6.35 -8.89 0)
  916. (effects (font (size 1.524 1.524)))
  917. )
  918. (property "Value" "Micro_USB" (at 1.27 8.89 0)
  919. (effects (font (size 1.524 1.524)))
  920. )
  921. (property "Footprint" "" (at 5.08 -5.08 0)
  922. (effects (font (size 1.524 1.524)) hide)
  923. )
  924. (property "Datasheet" "" (at 5.08 -5.08 0)
  925. (effects (font (size 1.524 1.524)) hide)
  926. )
  927. (symbol "Micro_USB_0_1"
  928. (polyline
  929. (pts
  930. (xy -5.08 -7.62)
  931. (xy -7.62 -5.08)
  932. (xy -7.62 5.08)
  933. (xy -5.08 7.62)
  934. )
  935. (stroke (width 0) (type default))
  936. (fill (type none))
  937. )
  938. (rectangle (start 7.62 -7.62) (end -5.08 7.62)
  939. (stroke (width 0) (type default))
  940. (fill (type none))
  941. )
  942. )
  943. (symbol "Micro_USB_1_1"
  944. (pin input line (at -3.81 -10.16 90) (length 2.54)
  945. (name "USB_SH" (effects (font (size 1.27 1.27))))
  946. (number "0" (effects (font (size 1.27 1.27))))
  947. )
  948. (pin power_out line (at 12.7 5.08 180) (length 5.08)
  949. (name "USB_VBUS" (effects (font (size 1.27 1.27))))
  950. (number "1" (effects (font (size 1.27 1.27))))
  951. )
  952. (pin bidirectional line (at 12.7 2.54 180) (length 5.08)
  953. (name "USB_N" (effects (font (size 1.27 1.27))))
  954. (number "2" (effects (font (size 1.27 1.27))))
  955. )
  956. (pin bidirectional line (at 12.7 0 180) (length 5.08)
  957. (name "USB_P" (effects (font (size 1.27 1.27))))
  958. (number "3" (effects (font (size 1.27 1.27))))
  959. )
  960. (pin input line (at 12.7 -2.54 180) (length 5.08)
  961. (name "USB_ID" (effects (font (size 1.27 1.27))))
  962. (number "4" (effects (font (size 1.27 1.27))))
  963. )
  964. (pin passive line (at 12.7 -5.08 180) (length 5.08)
  965. (name "USB_GND" (effects (font (size 1.27 1.27))))
  966. (number "5" (effects (font (size 1.27 1.27))))
  967. )
  968. )
  969. )
  970. (symbol "connconn:CONN_01X03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  971. (property "Reference" "P" (at 0 5.08 0)
  972. (effects (font (size 1.27 1.27)))
  973. )
  974. (property "Value" "CONN_01X03" (at 2.54 0 90)
  975. (effects (font (size 1.27 1.27)))
  976. )
  977. (property "Footprint" "" (at 0 0 0)
  978. (effects (font (size 1.27 1.27)))
  979. )
  980. (property "Datasheet" "" (at 0 0 0)
  981. (effects (font (size 1.27 1.27)))
  982. )
  983. (property "ki_fp_filters" "Pin_Header_Straight_1X03 Pin_Header_Angled_1X03 Socket_Strip_Straight_1X03 Socket_Strip_Angled_1X03" (at 0 0 0)
  984. (effects (font (size 1.27 1.27)) hide)
  985. )
  986. (symbol "CONN_01X03_0_1"
  987. (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
  988. (stroke (width 0) (type default))
  989. (fill (type none))
  990. )
  991. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  992. (stroke (width 0) (type default))
  993. (fill (type none))
  994. )
  995. (rectangle (start -1.27 2.667) (end 0.254 2.413)
  996. (stroke (width 0) (type default))
  997. (fill (type none))
  998. )
  999. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  1000. (stroke (width 0) (type default))
  1001. (fill (type none))
  1002. )
  1003. )
  1004. (symbol "CONN_01X03_1_1"
  1005. (pin passive line (at -5.08 2.54 0) (length 3.81)
  1006. (name "P1" (effects (font (size 1.27 1.27))))
  1007. (number "1" (effects (font (size 1.27 1.27))))
  1008. )
  1009. (pin passive line (at -5.08 0 0) (length 3.81)
  1010. (name "P2" (effects (font (size 1.27 1.27))))
  1011. (number "2" (effects (font (size 1.27 1.27))))
  1012. )
  1013. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  1014. (name "P3" (effects (font (size 1.27 1.27))))
  1015. (number "3" (effects (font (size 1.27 1.27))))
  1016. )
  1017. )
  1018. )
  1019. (symbol "global:Battery" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1020. (property "Reference" "BT" (at 2.54 1.27 0)
  1021. (effects (font (size 1.27 1.27)) (justify left))
  1022. )
  1023. (property "Value" "Battery" (at 2.54 -1.27 0)
  1024. (effects (font (size 1.27 1.27)) (justify left))
  1025. )
  1026. (property "Footprint" "" (at 0 1.016 90)
  1027. (effects (font (size 1.27 1.27)))
  1028. )
  1029. (property "Datasheet" "" (at 0 1.016 90)
  1030. (effects (font (size 1.27 1.27)))
  1031. )
  1032. (symbol "Battery_0_1"
  1033. (rectangle (start -2.286 -0.1778) (end 2.286 -0.4318)
  1034. (stroke (width 0) (type default))
  1035. (fill (type outline))
  1036. )
  1037. (rectangle (start -2.286 1.27) (end 2.286 1.016)
  1038. (stroke (width 0) (type default))
  1039. (fill (type outline))
  1040. )
  1041. (rectangle (start -1.5748 -0.762) (end 1.4732 -1.27)
  1042. (stroke (width 0) (type default))
  1043. (fill (type outline))
  1044. )
  1045. (rectangle (start -1.5748 0.6858) (end 1.4732 0.1778)
  1046. (stroke (width 0) (type default))
  1047. (fill (type outline))
  1048. )
  1049. (polyline
  1050. (pts
  1051. (xy 0.508 2.413)
  1052. (xy 1.524 2.413)
  1053. )
  1054. (stroke (width 0.254) (type default))
  1055. (fill (type none))
  1056. )
  1057. (polyline
  1058. (pts
  1059. (xy 1.016 2.921)
  1060. (xy 1.016 1.905)
  1061. )
  1062. (stroke (width 0.254) (type default))
  1063. (fill (type none))
  1064. )
  1065. )
  1066. (symbol "Battery_1_1"
  1067. (pin power_out line (at 0 3.81 270) (length 2.54)
  1068. (name "~" (effects (font (size 1.27 1.27))))
  1069. (number "1" (effects (font (size 1.27 1.27))))
  1070. )
  1071. (pin passive line (at 0 -3.81 90) (length 2.54)
  1072. (name "~" (effects (font (size 1.27 1.27))))
  1073. (number "2" (effects (font (size 1.27 1.27))))
  1074. )
  1075. )
  1076. )
  1077. (symbol "global:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1078. (property "Reference" "C" (at 0.635 2.54 0)
  1079. (effects (font (size 1.27 1.27)) (justify left))
  1080. )
  1081. (property "Value" "C" (at 0.635 -2.54 0)
  1082. (effects (font (size 1.27 1.27)) (justify left))
  1083. )
  1084. (property "Footprint" "" (at 0.9652 -3.81 0)
  1085. (effects (font (size 1.27 1.27)))
  1086. )
  1087. (property "Datasheet" "" (at 0 0 0)
  1088. (effects (font (size 1.27 1.27)))
  1089. )
  1090. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*" (at 0 0 0)
  1091. (effects (font (size 1.27 1.27)) hide)
  1092. )
  1093. (symbol "C_0_1"
  1094. (polyline
  1095. (pts
  1096. (xy -2.032 -0.762)
  1097. (xy 2.032 -0.762)
  1098. )
  1099. (stroke (width 0.508) (type default))
  1100. (fill (type none))
  1101. )
  1102. (polyline
  1103. (pts
  1104. (xy -2.032 0.762)
  1105. (xy 2.032 0.762)
  1106. )
  1107. (stroke (width 0.508) (type default))
  1108. (fill (type none))
  1109. )
  1110. )
  1111. (symbol "C_1_1"
  1112. (pin passive line (at 0 3.81 270) (length 2.794)
  1113. (name "~" (effects (font (size 1.016 1.016))))
  1114. (number "1" (effects (font (size 1.016 1.016))))
  1115. )
  1116. (pin passive line (at 0 -3.81 90) (length 2.794)
  1117. (name "~" (effects (font (size 1.016 1.016))))
  1118. (number "2" (effects (font (size 1.016 1.016))))
  1119. )
  1120. )
  1121. )
  1122. (symbol "global:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1123. (property "Reference" "Y" (at 0 3.81 0)
  1124. (effects (font (size 1.27 1.27)))
  1125. )
  1126. (property "Value" "Crystal" (at 0 -3.81 0)
  1127. (effects (font (size 1.27 1.27)))
  1128. )
  1129. (property "Footprint" "" (at 0 0 0)
  1130. (effects (font (size 1.27 1.27)))
  1131. )
  1132. (property "Datasheet" "" (at 0 0 0)
  1133. (effects (font (size 1.27 1.27)))
  1134. )
  1135. (property "ki_fp_filters" "Crystal_*" (at 0 0 0)
  1136. (effects (font (size 1.27 1.27)) hide)
  1137. )
  1138. (symbol "Crystal_0_1"
  1139. (rectangle (start -1.27 2.54) (end 1.27 -2.54)
  1140. (stroke (width 0.3048) (type default))
  1141. (fill (type none))
  1142. )
  1143. (polyline
  1144. (pts
  1145. (xy -2.54 -1.27)
  1146. (xy -2.54 1.27)
  1147. )
  1148. (stroke (width 0.3048) (type default))
  1149. (fill (type none))
  1150. )
  1151. (polyline
  1152. (pts
  1153. (xy 2.54 -1.27)
  1154. (xy 2.54 1.27)
  1155. )
  1156. (stroke (width 0.3048) (type default))
  1157. (fill (type none))
  1158. )
  1159. )
  1160. (symbol "Crystal_1_1"
  1161. (pin passive line (at -3.81 0 0) (length 1.27)
  1162. (name "1" (effects (font (size 1.016 1.016))))
  1163. (number "1" (effects (font (size 1.016 1.016))))
  1164. )
  1165. (pin passive line (at 3.81 0 180) (length 1.27)
  1166. (name "2" (effects (font (size 1.016 1.016))))
  1167. (number "2" (effects (font (size 1.016 1.016))))
  1168. )
  1169. )
  1170. )
  1171. (symbol "global:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1172. (property "Reference" "D" (at 0 2.54 0)
  1173. (effects (font (size 1.27 1.27)))
  1174. )
  1175. (property "Value" "D" (at 0 -2.54 0)
  1176. (effects (font (size 1.27 1.27)))
  1177. )
  1178. (property "Footprint" "" (at 0 0 0)
  1179. (effects (font (size 1.27 1.27)))
  1180. )
  1181. (property "Datasheet" "" (at 0 0 0)
  1182. (effects (font (size 1.27 1.27)))
  1183. )
  1184. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (at 0 0 0)
  1185. (effects (font (size 1.27 1.27)) hide)
  1186. )
  1187. (symbol "D_0_1"
  1188. (polyline
  1189. (pts
  1190. (xy -1.27 1.27)
  1191. (xy -1.27 -1.27)
  1192. )
  1193. (stroke (width 0.1524) (type default))
  1194. (fill (type none))
  1195. )
  1196. (polyline
  1197. (pts
  1198. (xy 1.27 1.27)
  1199. (xy -1.27 0)
  1200. (xy 1.27 -1.27)
  1201. )
  1202. (stroke (width 0) (type default))
  1203. (fill (type outline))
  1204. )
  1205. )
  1206. (symbol "D_1_1"
  1207. (pin passive line (at -3.81 0 0) (length 2.54)
  1208. (name "K" (effects (font (size 1.27 1.27))))
  1209. (number "1" (effects (font (size 1.27 1.27))))
  1210. )
  1211. (pin passive line (at 3.81 0 180) (length 2.54)
  1212. (name "A" (effects (font (size 1.27 1.27))))
  1213. (number "2" (effects (font (size 1.27 1.27))))
  1214. )
  1215. )
  1216. )
  1217. (symbol "global:FUSE" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1218. (property "Reference" "F" (at 2.54 1.27 0)
  1219. (effects (font (size 1.27 1.27)))
  1220. )
  1221. (property "Value" "FUSE" (at -2.54 -1.27 0)
  1222. (effects (font (size 1.27 1.27)))
  1223. )
  1224. (property "Footprint" "" (at 0 0 0)
  1225. (effects (font (size 1.27 1.27)))
  1226. )
  1227. (property "Datasheet" "" (at 0 0 0)
  1228. (effects (font (size 1.27 1.27)))
  1229. )
  1230. (symbol "FUSE_0_1"
  1231. (arc (start 0 0) (mid -1.905 1.8967) (end -3.81 0)
  1232. (stroke (width 0) (type default))
  1233. (fill (type none))
  1234. )
  1235. (arc (start 0 0) (mid 1.905 -1.8967) (end 3.81 0)
  1236. (stroke (width 0) (type default))
  1237. (fill (type none))
  1238. )
  1239. )
  1240. (symbol "FUSE_1_1"
  1241. (pin input line (at -6.35 0 0) (length 2.54)
  1242. (name "~" (effects (font (size 1.016 1.016))))
  1243. (number "1" (effects (font (size 1.016 1.016))))
  1244. )
  1245. (pin input line (at 6.35 0 180) (length 2.54)
  1246. (name "~" (effects (font (size 1.016 1.016))))
  1247. (number "2" (effects (font (size 1.016 1.016))))
  1248. )
  1249. )
  1250. )
  1251. (symbol "global:INDUCTOR" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1252. (property "Reference" "L" (at -1.27 0 90)
  1253. (effects (font (size 1.27 1.27)))
  1254. )
  1255. (property "Value" "INDUCTOR" (at 2.54 0 90)
  1256. (effects (font (size 1.27 1.27)))
  1257. )
  1258. (property "Footprint" "" (at 0 0 0)
  1259. (effects (font (size 1.27 1.27)))
  1260. )
  1261. (property "Datasheet" "" (at 0 0 0)
  1262. (effects (font (size 1.27 1.27)))
  1263. )
  1264. (symbol "INDUCTOR_0_1"
  1265. (arc (start 0.0254 -5.0546) (mid 1.2449 -3.8097) (end 0.0254 -2.54)
  1266. (stroke (width 0) (type default))
  1267. (fill (type none))
  1268. )
  1269. (arc (start 0.0254 -2.5146) (mid 1.2703 -1.2444) (end 0.0254 0.0508)
  1270. (stroke (width 0) (type default))
  1271. (fill (type none))
  1272. )
  1273. (arc (start 0.0254 0.0254) (mid 1.2703 1.2956) (end 0.0254 2.5908)
  1274. (stroke (width 0) (type default))
  1275. (fill (type none))
  1276. )
  1277. (arc (start 0.0254 2.5654) (mid 1.1941 3.7595) (end 0.0254 4.9784)
  1278. (stroke (width 0) (type default))
  1279. (fill (type none))
  1280. )
  1281. )
  1282. (symbol "INDUCTOR_1_1"
  1283. (pin passive line (at 0 7.62 270) (length 2.54)
  1284. (name "1" (effects (font (size 1.27 1.27))))
  1285. (number "1" (effects (font (size 1.27 1.27))))
  1286. )
  1287. (pin passive line (at 0 -7.62 90) (length 2.54)
  1288. (name "2" (effects (font (size 1.27 1.27))))
  1289. (number "2" (effects (font (size 1.27 1.27))))
  1290. )
  1291. )
  1292. )
  1293. (symbol "global:LED" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1294. (property "Reference" "D" (at 0 2.54 0)
  1295. (effects (font (size 1.27 1.27)))
  1296. )
  1297. (property "Value" "LED" (at 0 -2.54 0)
  1298. (effects (font (size 1.27 1.27)))
  1299. )
  1300. (property "Footprint" "" (at 0 0 0)
  1301. (effects (font (size 1.27 1.27)) hide)
  1302. )
  1303. (property "Datasheet" "" (at 0 0 0)
  1304. (effects (font (size 1.27 1.27)))
  1305. )
  1306. (property "ki_fp_filters" "LED-3MM LED-5MM LED-10MM LED-0603 LED-0805 LED-1206 LEDV" (at 0 0 0)
  1307. (effects (font (size 1.27 1.27)) hide)
  1308. )
  1309. (symbol "LED_0_1"
  1310. (polyline
  1311. (pts
  1312. (xy -1.27 1.27)
  1313. (xy -1.27 -1.27)
  1314. )
  1315. (stroke (width 0) (type default))
  1316. (fill (type none))
  1317. )
  1318. (polyline
  1319. (pts
  1320. (xy -2.032 -0.635)
  1321. (xy -3.175 -1.651)
  1322. (xy -3.048 -1.016)
  1323. )
  1324. (stroke (width 0) (type default))
  1325. (fill (type none))
  1326. )
  1327. (polyline
  1328. (pts
  1329. (xy -1.651 -1.016)
  1330. (xy -2.794 -2.032)
  1331. (xy -2.667 -1.397)
  1332. )
  1333. (stroke (width 0) (type default))
  1334. (fill (type none))
  1335. )
  1336. (polyline
  1337. (pts
  1338. (xy 1.27 1.27)
  1339. (xy -1.27 0)
  1340. (xy 1.27 -1.27)
  1341. )
  1342. (stroke (width 0) (type default))
  1343. (fill (type outline))
  1344. )
  1345. )
  1346. (symbol "LED_1_1"
  1347. (pin passive line (at -5.08 0 0) (length 3.81)
  1348. (name "K" (effects (font (size 1.016 1.016))))
  1349. (number "1" (effects (font (size 1.016 1.016))))
  1350. )
  1351. (pin passive line (at 5.08 0 180) (length 3.81)
  1352. (name "A" (effects (font (size 1.016 1.016))))
  1353. (number "2" (effects (font (size 1.016 1.016))))
  1354. )
  1355. )
  1356. )
  1357. (symbol "global:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1358. (property "Reference" "R" (at 2.032 0 90)
  1359. (effects (font (size 1.27 1.27)))
  1360. )
  1361. (property "Value" "R" (at 0 0 90)
  1362. (effects (font (size 1.27 1.27)))
  1363. )
  1364. (property "Footprint" "" (at -1.778 0 90)
  1365. (effects (font (size 1.27 1.27)))
  1366. )
  1367. (property "Datasheet" "" (at 0 0 0)
  1368. (effects (font (size 1.27 1.27)))
  1369. )
  1370. (property "ki_fp_filters" "R_* Resistor_*" (at 0 0 0)
  1371. (effects (font (size 1.27 1.27)) hide)
  1372. )
  1373. (symbol "R_0_1"
  1374. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  1375. (stroke (width 0.254) (type default))
  1376. (fill (type none))
  1377. )
  1378. )
  1379. (symbol "R_1_1"
  1380. (pin passive line (at 0 3.81 270) (length 1.27)
  1381. (name "~" (effects (font (size 1.27 1.27))))
  1382. (number "1" (effects (font (size 1.27 1.27))))
  1383. )
  1384. (pin passive line (at 0 -3.81 90) (length 1.27)
  1385. (name "~" (effects (font (size 1.27 1.27))))
  1386. (number "2" (effects (font (size 1.27 1.27))))
  1387. )
  1388. )
  1389. )
  1390. (symbol "global:SW_PUSH" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1391. (property "Reference" "SW" (at 3.81 2.794 0)
  1392. (effects (font (size 1.27 1.27)))
  1393. )
  1394. (property "Value" "SW_PUSH" (at 0 -2.032 0)
  1395. (effects (font (size 1.27 1.27)))
  1396. )
  1397. (property "Footprint" "" (at 0 0 0)
  1398. (effects (font (size 1.27 1.27)))
  1399. )
  1400. (property "Datasheet" "" (at 0 0 0)
  1401. (effects (font (size 1.27 1.27)))
  1402. )
  1403. (symbol "SW_PUSH_0_1"
  1404. (rectangle (start -4.318 1.27) (end 4.318 1.524)
  1405. (stroke (width 0) (type default))
  1406. (fill (type none))
  1407. )
  1408. (polyline
  1409. (pts
  1410. (xy -1.016 1.524)
  1411. (xy -0.762 2.286)
  1412. (xy 0.762 2.286)
  1413. (xy 1.016 1.524)
  1414. )
  1415. (stroke (width 0) (type default))
  1416. (fill (type none))
  1417. )
  1418. (pin passive inverted (at -7.62 0 0) (length 5.08)
  1419. (name "1" (effects (font (size 1.27 1.27))))
  1420. (number "1" (effects (font (size 1.27 1.27))))
  1421. )
  1422. (pin passive inverted (at 7.62 0 180) (length 5.08)
  1423. (name "2" (effects (font (size 1.27 1.27))))
  1424. (number "2" (effects (font (size 1.27 1.27))))
  1425. )
  1426. )
  1427. )
  1428. (symbol "global:TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1429. (property "Reference" "D" (at 3.81 0 90)
  1430. (effects (font (size 1.27 1.27)))
  1431. )
  1432. (property "Value" "TVS" (at -3.81 0 90)
  1433. (effects (font (size 1.27 1.27)))
  1434. )
  1435. (property "Footprint" "" (at 0 0 90)
  1436. (effects (font (size 1.27 1.27)))
  1437. )
  1438. (property "Datasheet" "" (at 0 0 90)
  1439. (effects (font (size 1.27 1.27)))
  1440. )
  1441. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (at 0 0 0)
  1442. (effects (font (size 1.27 1.27)) hide)
  1443. )
  1444. (symbol "TVS_0_1"
  1445. (polyline
  1446. (pts
  1447. (xy -1.27 1.27)
  1448. (xy -2.54 0)
  1449. )
  1450. (stroke (width 0) (type default))
  1451. (fill (type none))
  1452. )
  1453. (polyline
  1454. (pts
  1455. (xy 1.27 1.27)
  1456. (xy -1.27 1.27)
  1457. )
  1458. (stroke (width 0.1524) (type default))
  1459. (fill (type none))
  1460. )
  1461. (polyline
  1462. (pts
  1463. (xy 1.27 1.27)
  1464. (xy 2.54 2.54)
  1465. )
  1466. (stroke (width 0) (type default))
  1467. (fill (type none))
  1468. )
  1469. (polyline
  1470. (pts
  1471. (xy 1.27 -1.27)
  1472. (xy 0 1.27)
  1473. (xy -1.27 -1.27)
  1474. )
  1475. (stroke (width 0) (type default))
  1476. (fill (type outline))
  1477. )
  1478. )
  1479. (symbol "TVS_1_1"
  1480. (pin passive line (at 0 3.81 270) (length 2.54)
  1481. (name "K" (effects (font (size 1.27 1.27))))
  1482. (number "1" (effects (font (size 1.27 1.27))))
  1483. )
  1484. (pin passive line (at 0 -3.81 90) (length 2.54)
  1485. (name "A" (effects (font (size 1.27 1.27))))
  1486. (number "2" (effects (font (size 1.27 1.27))))
  1487. )
  1488. )
  1489. )
  1490. )
  1491. (junction (at 158.75 149.86) (diameter 0) (color 0 0 0 0)
  1492. (uuid 046a655e-d959-4343-aa81-bb9fb6305320)
  1493. )
  1494. (junction (at 129.54 29.21) (diameter 0) (color 0 0 0 0)
  1495. (uuid 07a61ad5-020a-4ecd-b328-6ced800d1c76)
  1496. )
  1497. (junction (at 40.64 22.86) (diameter 0) (color 0 0 0 0)
  1498. (uuid 0942a490-a6b6-4270-ba6d-ab23ddd60ce5)
  1499. )
  1500. (junction (at 116.84 29.21) (diameter 0) (color 0 0 0 0)
  1501. (uuid 16e95311-3516-44d3-a298-2f22d7601232)
  1502. )
  1503. (junction (at 260.35 22.225) (diameter 0) (color 0 0 0 0)
  1504. (uuid 17164ce1-f714-4f3e-9a2e-78754645d48d)
  1505. )
  1506. (junction (at 158.75 154.94) (diameter 0) (color 0 0 0 0)
  1507. (uuid 1af4a106-8485-4e0a-b1ea-2bbaf56aa31c)
  1508. )
  1509. (junction (at 184.15 33.02) (diameter 0) (color 0 0 0 0)
  1510. (uuid 20893af9-ce7a-4799-a2bb-3bc65430bb21)
  1511. )
  1512. (junction (at 53.34 191.77) (diameter 0) (color 0 0 0 0)
  1513. (uuid 22a1dd6c-d6c5-42d9-8504-4c2f716948c7)
  1514. )
  1515. (junction (at 179.07 21.59) (diameter 0) (color 0 0 0 0)
  1516. (uuid 28ae6c99-e15f-438a-ad58-b8ebcbe160bd)
  1517. )
  1518. (junction (at 62.23 22.86) (diameter 0) (color 0 0 0 0)
  1519. (uuid 3bac670d-205f-485a-a659-4634a93ed1d9)
  1520. )
  1521. (junction (at 246.38 104.14) (diameter 0) (color 0 0 0 0)
  1522. (uuid 3ec135cd-b2e4-459c-91e5-3fe900b572fe)
  1523. )
  1524. (junction (at 220.98 80.01) (diameter 0) (color 0 0 0 0)
  1525. (uuid 488b8362-2274-4ea4-b936-90a51d7114a5)
  1526. )
  1527. (junction (at 53.34 184.15) (diameter 0) (color 0 0 0 0)
  1528. (uuid 5023539c-4c4b-42f4-b9fd-08c98e0e4fc0)
  1529. )
  1530. (junction (at 187.96 93.98) (diameter 0) (color 0 0 0 0)
  1531. (uuid 5088e3b7-5e44-4255-bba4-a5285d280ef0)
  1532. )
  1533. (junction (at 30.48 191.77) (diameter 0) (color 0 0 0 0)
  1534. (uuid 54c96308-bb29-4759-b201-7ea8c114bd79)
  1535. )
  1536. (junction (at 37.465 184.15) (diameter 0) (color 0 0 0 0)
  1537. (uuid 62f401cb-640c-4099-a957-4d52c3772b58)
  1538. )
  1539. (junction (at 262.89 52.07) (diameter 0) (color 0 0 0 0)
  1540. (uuid 63035f8a-03f5-4efa-92e4-4795a9ca14e1)
  1541. )
  1542. (junction (at 220.98 72.39) (diameter 0) (color 0 0 0 0)
  1543. (uuid 7170e1d2-b085-4ba6-8645-1369c831f676)
  1544. )
  1545. (junction (at 173.99 38.1) (diameter 0) (color 0 0 0 0)
  1546. (uuid 74e58d40-ac1f-49a1-bdc7-81464711e757)
  1547. )
  1548. (junction (at 93.98 29.21) (diameter 0) (color 0 0 0 0)
  1549. (uuid 75256b0d-7001-4bf9-aedc-3fad32d38bfd)
  1550. )
  1551. (junction (at 252.73 90.17) (diameter 0) (color 0 0 0 0)
  1552. (uuid 757d5cfe-a15c-4755-9d99-7f6a7c5b08e1)
  1553. )
  1554. (junction (at 55.88 22.86) (diameter 0) (color 0 0 0 0)
  1555. (uuid 76ae0f0d-6a3f-41f7-8381-d017d6284b72)
  1556. )
  1557. (junction (at 179.07 35.56) (diameter 0) (color 0 0 0 0)
  1558. (uuid 76f92104-98ad-43cd-8e2b-932615cacee5)
  1559. )
  1560. (junction (at 22.86 184.15) (diameter 0) (color 0 0 0 0)
  1561. (uuid 7ac5b004-9729-4572-9569-58e169b6f4d6)
  1562. )
  1563. (junction (at 194.31 152.4) (diameter 0) (color 0 0 0 0)
  1564. (uuid 7b992900-11da-44aa-831e-e6787c2e2519)
  1565. )
  1566. (junction (at 34.29 127) (diameter 0) (color 0 0 0 0)
  1567. (uuid 85908a73-5a2d-47f2-b796-5b60980b517b)
  1568. )
  1569. (junction (at 90.17 29.21) (diameter 0) (color 0 0 0 0)
  1570. (uuid 8dd20b3f-af35-41ac-9a4f-1a0fd82fe79f)
  1571. )
  1572. (junction (at 158.75 152.4) (diameter 0) (color 0 0 0 0)
  1573. (uuid 8f2faa10-2c95-495c-ac14-f992e4f6f03e)
  1574. )
  1575. (junction (at 60.96 184.15) (diameter 0) (color 0 0 0 0)
  1576. (uuid 9735943b-a2e3-476f-85d0-646d02f76b1e)
  1577. )
  1578. (junction (at 26.67 77.47) (diameter 0) (color 0 0 0 0)
  1579. (uuid a1f6baf8-d621-4662-ad5c-a36da33054f0)
  1580. )
  1581. (junction (at 44.45 191.77) (diameter 0) (color 0 0 0 0)
  1582. (uuid a2320f41-0e1f-4512-8181-0712f57f4b29)
  1583. )
  1584. (junction (at 34.29 134.62) (diameter 0) (color 0 0 0 0)
  1585. (uuid abbb9536-8b31-4339-81c8-beeaab843c31)
  1586. )
  1587. (junction (at 30.48 184.15) (diameter 0) (color 0 0 0 0)
  1588. (uuid b7b53d4a-79f5-4e44-b2b3-6311a4553af0)
  1589. )
  1590. (junction (at 116.84 39.37) (diameter 0) (color 0 0 0 0)
  1591. (uuid c3590806-3207-4e87-890e-ef2d118ecf94)
  1592. )
  1593. (junction (at 60.96 191.77) (diameter 0) (color 0 0 0 0)
  1594. (uuid c3fa4aac-fa8d-4456-b06e-9dda65292162)
  1595. )
  1596. (junction (at 22.86 191.77) (diameter 0) (color 0 0 0 0)
  1597. (uuid dabcd6c7-1852-4962-919f-f17083ee68ac)
  1598. )
  1599. (junction (at 44.45 184.15) (diameter 0) (color 0 0 0 0)
  1600. (uuid de3cd423-d3d7-4475-96a0-4d27b2892069)
  1601. )
  1602. (junction (at 181.61 82.55) (diameter 0) (color 0 0 0 0)
  1603. (uuid ef33d032-6417-47b5-9811-7ffcb6d12dba)
  1604. )
  1605. (junction (at 37.465 191.77) (diameter 0) (color 0 0 0 0)
  1606. (uuid fbf44756-24aa-4f19-85e6-aacf893ee84c)
  1607. )
  1608. (junction (at 41.91 77.47) (diameter 0) (color 0 0 0 0)
  1609. (uuid ff312f20-0fe5-4290-b05c-32b59f22beb8)
  1610. )
  1611. (no_connect (at 52.705 144.78) (uuid 048c5920-95c0-4bcf-85ef-0770d6f9715c))
  1612. (no_connect (at 224.79 45.72) (uuid 05c5612e-bf10-44c0-925f-308208ba9912))
  1613. (no_connect (at 224.79 53.34) (uuid 0b34f40a-6ed4-4318-94f5-21c669c02b10))
  1614. (no_connect (at 218.44 123.19) (uuid 0b4958e7-bc06-497b-adb3-d9ac19c09762))
  1615. (no_connect (at 191.77 53.34) (uuid 1b24b570-b223-48f4-b759-cd1f52bbc833))
  1616. (no_connect (at 167.64 188.595) (uuid 1b6bfca1-97b3-4b05-a3f7-87b0718ffc20))
  1617. (no_connect (at 152.4 189.865) (uuid 1c236a2c-194e-4c1c-ba65-84e0562e65b9))
  1618. (no_connect (at 83.185 170.18) (uuid 24b50a77-7ac5-40ff-97f5-9adb09d2f04e))
  1619. (no_connect (at 208.28 123.19) (uuid 2889c0e4-84da-47b5-aba3-ef7adacd8ff7))
  1620. (no_connect (at 194.31 101.6) (uuid 297816c2-cc56-4daf-b7a3-53fbe9f20237))
  1621. (no_connect (at 224.79 38.1) (uuid 2b66f669-b354-4e62-9780-915c11e4022a))
  1622. (no_connect (at 52.705 119.38) (uuid 2c02be56-6c5d-41f9-a88b-1bc9cde0c4fa))
  1623. (no_connect (at 210.82 123.19) (uuid 33269aef-d51f-4441-9fd6-c3cdf1a97b31))
  1624. (no_connect (at 152.4 174.625) (uuid 41b0b023-2273-416a-b503-4c7049f550dc))
  1625. (no_connect (at 93.345 106.68) (uuid 4432fa25-1f8f-4898-bc28-08c1530554bc))
  1626. (no_connect (at 52.705 142.24) (uuid 450951b1-ee9f-4769-84aa-699fd25109f0))
  1627. (no_connect (at 85.725 170.18) (uuid 4d3434b3-b555-41b5-86da-9663d8e2bcde))
  1628. (no_connect (at 194.31 96.52) (uuid 4f75d3fb-0564-4526-b6dd-d6048c755819))
  1629. (no_connect (at 116.205 142.24) (uuid 5da48c3f-96c7-451a-baea-811e2e3371b3))
  1630. (no_connect (at 224.79 43.18) (uuid 61ad6d15-4f8a-4258-9689-c77228f8ae91))
  1631. (no_connect (at 213.36 123.19) (uuid 61f93433-0135-41c7-978c-7793e8ca0900))
  1632. (no_connect (at 52.705 121.92) (uuid 63d0d6e0-0915-4dae-b2f5-206e31372ec0))
  1633. (no_connect (at 83.185 106.68) (uuid 69f16fa9-bf84-4ce6-90fa-d92b6cb1e57f))
  1634. (no_connect (at 191.77 40.64) (uuid 6c23495a-ce6c-449e-b85a-439b42019003))
  1635. (no_connect (at 75.565 170.18) (uuid 791ada29-831b-46e4-bf30-628fea534853))
  1636. (no_connect (at 98.425 106.68) (uuid 7d00809e-89bd-4287-afd3-3efd3d180af9))
  1637. (no_connect (at 61.595 88.9) (uuid 7e9600d2-f829-403f-9569-40578456bca9))
  1638. (no_connect (at 215.9 123.19) (uuid 82b12ca1-683a-4795-825b-7dabc427fe97))
  1639. (no_connect (at 229.87 101.6) (uuid 8af3e693-17d2-44f7-94cd-98b818195f96))
  1640. (no_connect (at 194.31 109.22) (uuid 8efcfaaf-7155-4a0a-9001-1f3504585945))
  1641. (no_connect (at 100.965 106.68) (uuid 96887178-318e-4aee-8b0a-2aaadecabe0b))
  1642. (no_connect (at 229.87 99.06) (uuid 9b8e4271-f772-4c17-af2a-4b279b16024c))
  1643. (no_connect (at 95.885 106.68) (uuid 9caeb40a-aa04-45cd-be09-1de3b0b89c2a))
  1644. (no_connect (at 205.74 123.19) (uuid 9fd70b94-41b9-4e9a-9cca-dec6153465a4))
  1645. (no_connect (at 52.705 127) (uuid a1a3432b-898d-4df3-90cd-ff67d7e66204))
  1646. (no_connect (at 167.64 174.625) (uuid a419e3e0-da0c-41ea-b6cf-4760f5a8062b))
  1647. (no_connect (at 85.725 106.68) (uuid ae0850e1-5ef1-41e4-853a-1fcd6f6e63f3))
  1648. (no_connect (at 52.705 137.16) (uuid b9828ff5-d00c-4d03-aa1b-68b20d709558))
  1649. (no_connect (at 52.705 139.7) (uuid bc122e4c-4e18-45a7-8034-cd880af43710))
  1650. (no_connect (at 194.31 106.68) (uuid bdb1c8e1-0066-472e-8b74-4f72de8f3fe0))
  1651. (no_connect (at 194.31 104.14) (uuid c57f82ee-e0e2-41ff-8a6a-40e5b1d4fdde))
  1652. (no_connect (at 90.805 106.68) (uuid e06cfe33-460b-49da-ad2d-dc9a342c67be))
  1653. (no_connect (at 116.205 149.86) (uuid e40cf66b-e5a9-42b3-b29b-bf3a732052a1))
  1654. (no_connect (at 191.77 43.18) (uuid e4ceb0e8-fd22-469e-986b-32564ff76dc0))
  1655. (wire (pts (xy 116.84 29.21) (xy 129.54 29.21))
  1656. (stroke (width 0) (type default))
  1657. (uuid 001c2e10-cf08-498d-854b-ba5b624d2b98)
  1658. )
  1659. (polyline (pts (xy 161.29 67.31) (xy 161.29 12.7))
  1660. (stroke (width 0) (type default))
  1661. (uuid 009ef41a-fb4d-4ca5-8578-798d78e5c5ee)
  1662. )
  1663. (wire (pts (xy 191.77 48.26) (xy 187.96 48.26))
  1664. (stroke (width 0) (type default))
  1665. (uuid 02737ac3-d852-44c0-8ffa-7180cfac613e)
  1666. )
  1667. (wire (pts (xy 246.38 90.17) (xy 252.73 90.17))
  1668. (stroke (width 0) (type default))
  1669. (uuid 078bf642-e453-490a-a9db-a01200f70a21)
  1670. )
  1671. (wire (pts (xy 260.35 27.94) (xy 264.16 27.94))
  1672. (stroke (width 0) (type default))
  1673. (uuid 080f95e0-bccb-47a8-b792-ae2961088fe1)
  1674. )
  1675. (wire (pts (xy 173.99 38.1) (xy 173.99 29.21))
  1676. (stroke (width 0) (type default))
  1677. (uuid 0ae3e1f3-b4a6-45d0-8e24-55fd3f102f00)
  1678. )
  1679. (wire (pts (xy 262.89 52.07) (xy 259.08 52.07))
  1680. (stroke (width 0) (type default))
  1681. (uuid 0fc60457-492e-4af6-8053-837db2fe93c5)
  1682. )
  1683. (polyline (pts (xy 151.13 67.31) (xy 151.13 127))
  1684. (stroke (width 0) (type default))
  1685. (uuid 10e0a4a6-4c64-4972-be4a-476cad0ac20d)
  1686. )
  1687. (wire (pts (xy 229.87 104.14) (xy 246.38 104.14))
  1688. (stroke (width 0) (type default))
  1689. (uuid 10fa1442-235b-4dd3-90b5-3805820b70ea)
  1690. )
  1691. (wire (pts (xy 181.61 152.4) (xy 194.31 152.4))
  1692. (stroke (width 0) (type default))
  1693. (uuid 11386ce6-c8d1-4b45-a2c5-6b50ad6e447b)
  1694. )
  1695. (wire (pts (xy 224.79 50.8) (xy 224.79 48.26))
  1696. (stroke (width 0) (type default))
  1697. (uuid 14162e01-b257-4e30-9a79-7b32b62ce4b1)
  1698. )
  1699. (wire (pts (xy 27.305 134.62) (xy 34.29 134.62))
  1700. (stroke (width 0) (type default))
  1701. (uuid 1444451c-eeed-47c5-93d9-115fe839cc3b)
  1702. )
  1703. (polyline (pts (xy 104.14 67.31) (xy 104.14 92.71))
  1704. (stroke (width 0) (type default))
  1705. (uuid 1a2f6b4c-9abd-477b-a622-8437b10bdab0)
  1706. )
  1707. (wire (pts (xy 246.38 97.79) (xy 246.38 104.14))
  1708. (stroke (width 0) (type default))
  1709. (uuid 1acf168d-881c-4fe4-b920-fa3e3cf5af90)
  1710. )
  1711. (wire (pts (xy 34.29 134.62) (xy 42.545 134.62))
  1712. (stroke (width 0) (type default))
  1713. (uuid 1ce97292-caed-4301-aed6-cf447fabbe48)
  1714. )
  1715. (wire (pts (xy 44.45 184.15) (xy 53.34 184.15))
  1716. (stroke (width 0) (type default))
  1717. (uuid 20a90d8a-5ea8-4fe0-99b1-ba562b7914f0)
  1718. )
  1719. (wire (pts (xy 181.61 82.55) (xy 187.96 82.55))
  1720. (stroke (width 0) (type default))
  1721. (uuid 22bdf90b-9302-4b26-93d4-0af1025316e6)
  1722. )
  1723. (wire (pts (xy 42.545 127) (xy 42.545 129.54))
  1724. (stroke (width 0) (type default))
  1725. (uuid 23b4645a-2eb7-4b72-afcb-54ef3f018af8)
  1726. )
  1727. (wire (pts (xy 19.05 184.15) (xy 22.86 184.15))
  1728. (stroke (width 0) (type default))
  1729. (uuid 27e83b16-afd5-49a9-a2cd-27a19af203c5)
  1730. )
  1731. (wire (pts (xy 82.55 29.21) (xy 90.17 29.21))
  1732. (stroke (width 0) (type default))
  1733. (uuid 290c8bf3-1e62-4700-a598-9577f78bffa1)
  1734. )
  1735. (wire (pts (xy 30.48 191.77) (xy 37.465 191.77))
  1736. (stroke (width 0) (type default))
  1737. (uuid 2d6ddb65-9a58-43e6-b38c-0c3e5b292c47)
  1738. )
  1739. (polyline (pts (xy 207.01 127) (xy 205.74 127))
  1740. (stroke (width 0) (type default))
  1741. (uuid 2e2a7648-0bb4-47ee-9874-8a268222dd53)
  1742. )
  1743. (wire (pts (xy 278.13 52.07) (xy 279.4 52.07))
  1744. (stroke (width 0) (type default))
  1745. (uuid 2fb7f4f7-f169-4924-8ee5-f93e305d0a85)
  1746. )
  1747. (wire (pts (xy 27.305 127) (xy 34.29 127))
  1748. (stroke (width 0) (type default))
  1749. (uuid 2feb17c6-ed9d-45a7-b918-b8b4db0f3927)
  1750. )
  1751. (wire (pts (xy 179.07 21.59) (xy 184.15 21.59))
  1752. (stroke (width 0) (type default))
  1753. (uuid 336985e2-cb7d-4fb5-a994-a00a79956823)
  1754. )
  1755. (wire (pts (xy 26.67 77.47) (xy 26.67 85.09))
  1756. (stroke (width 0) (type default))
  1757. (uuid 342c741b-5a74-4300-a8ae-fe7c9974d657)
  1758. )
  1759. (wire (pts (xy 275.59 27.94) (xy 275.59 22.225))
  1760. (stroke (width 0) (type default))
  1761. (uuid 367345a2-08fc-4e54-9a83-d20888d85964)
  1762. )
  1763. (wire (pts (xy 26.67 69.85) (xy 26.67 77.47))
  1764. (stroke (width 0) (type default))
  1765. (uuid 37d09eb7-368c-4141-9c65-d0a13d803ea2)
  1766. )
  1767. (polyline (pts (xy 250.19 67.31) (xy 250.19 11.43))
  1768. (stroke (width 0) (type default))
  1769. (uuid 44178978-0a94-46da-835a-de62e7659a26)
  1770. )
  1771. (polyline (pts (xy 177.8 166.37) (xy 151.13 166.37))
  1772. (stroke (width 0) (type default))
  1773. (uuid 48e87f57-b752-404f-9a54-5403c527fa18)
  1774. )
  1775. (polyline (pts (xy 12.7 67.31) (xy 285.75 67.31))
  1776. (stroke (width 0) (type default))
  1777. (uuid 48f599ef-e530-4d20-94fd-00a12f258cb9)
  1778. )
  1779. (wire (pts (xy 246.38 104.14) (xy 257.81 104.14))
  1780. (stroke (width 0) (type default))
  1781. (uuid 4b16e085-e1dd-4a0a-bcc4-d3c7961646cd)
  1782. )
  1783. (wire (pts (xy 184.15 29.21) (xy 184.15 33.02))
  1784. (stroke (width 0) (type default))
  1785. (uuid 4b4aa8d4-0a8f-44ce-9f14-3a4985ffa093)
  1786. )
  1787. (wire (pts (xy 187.96 93.98) (xy 194.31 93.98))
  1788. (stroke (width 0) (type default))
  1789. (uuid 4c7686fd-90ae-489e-a9ca-4ae393356159)
  1790. )
  1791. (wire (pts (xy 173.99 38.1) (xy 191.77 38.1))
  1792. (stroke (width 0) (type default))
  1793. (uuid 52650057-a475-41cd-bb54-0c96262b6141)
  1794. )
  1795. (wire (pts (xy 224.79 48.26) (xy 228.6 48.26))
  1796. (stroke (width 0) (type default))
  1797. (uuid 55e969ab-262f-4362-adce-1092c6286360)
  1798. )
  1799. (wire (pts (xy 40.64 22.86) (xy 55.88 22.86))
  1800. (stroke (width 0) (type default))
  1801. (uuid 56b7f59d-1da9-488b-8b55-508e3796b503)
  1802. )
  1803. (wire (pts (xy 260.35 15.875) (xy 260.35 22.225))
  1804. (stroke (width 0) (type default))
  1805. (uuid 58bb9421-f14b-4e89-ae8a-11a30a2272b9)
  1806. )
  1807. (wire (pts (xy 82.55 35.56) (xy 82.55 39.37))
  1808. (stroke (width 0) (type default))
  1809. (uuid 59881c65-00b7-4e47-ac17-6e9b9ecfa99d)
  1810. )
  1811. (wire (pts (xy 22.86 184.15) (xy 30.48 184.15))
  1812. (stroke (width 0) (type default))
  1813. (uuid 5bcc4608-719e-4de0-9a4d-6f869bf15aa1)
  1814. )
  1815. (wire (pts (xy 260.35 22.225) (xy 260.35 27.94))
  1816. (stroke (width 0) (type default))
  1817. (uuid 5c7346f0-c5bc-4c5f-893d-d0d750132579)
  1818. )
  1819. (wire (pts (xy 19.05 191.77) (xy 22.86 191.77))
  1820. (stroke (width 0) (type default))
  1821. (uuid 5dad4086-de31-4808-bd9a-ed48c13f4d78)
  1822. )
  1823. (wire (pts (xy 42.545 129.54) (xy 52.705 129.54))
  1824. (stroke (width 0) (type default))
  1825. (uuid 6198135f-ec52-4ab7-9f0a-044ec6a01167)
  1826. )
  1827. (wire (pts (xy 181.61 99.06) (xy 194.31 99.06))
  1828. (stroke (width 0) (type default))
  1829. (uuid 64d40153-104f-42fa-90e2-1a0f0c2b5723)
  1830. )
  1831. (wire (pts (xy 52.705 132.08) (xy 42.545 132.08))
  1832. (stroke (width 0) (type default))
  1833. (uuid 6731ad11-8a42-4d5c-b2c6-37afd784c91c)
  1834. )
  1835. (wire (pts (xy 55.88 22.86) (xy 62.23 22.86))
  1836. (stroke (width 0) (type default))
  1837. (uuid 679816ce-b4cb-4106-8ad5-5af29a9859f9)
  1838. )
  1839. (wire (pts (xy 30.48 69.85) (xy 26.67 69.85))
  1840. (stroke (width 0) (type default))
  1841. (uuid 68f0e8d4-da0c-420c-844e-9279560077b3)
  1842. )
  1843. (wire (pts (xy 194.31 152.4) (xy 200.66 152.4))
  1844. (stroke (width 0) (type default))
  1845. (uuid 6dadd00e-696b-4140-9c0d-991ef51bbff4)
  1846. )
  1847. (wire (pts (xy 115.57 29.21) (xy 116.84 29.21))
  1848. (stroke (width 0) (type default))
  1849. (uuid 6ec576ae-c123-4131-a9c5-ef3feb675f7d)
  1850. )
  1851. (wire (pts (xy 34.29 127) (xy 42.545 127))
  1852. (stroke (width 0) (type default))
  1853. (uuid 74928715-3496-4bd8-b1e8-95a0191199b4)
  1854. )
  1855. (wire (pts (xy 179.07 82.55) (xy 181.61 82.55))
  1856. (stroke (width 0) (type default))
  1857. (uuid 75b22925-1f4a-4346-b63e-5bc6afe09169)
  1858. )
  1859. (polyline (pts (xy 54.61 67.31) (xy 54.61 92.71))
  1860. (stroke (width 0) (type default))
  1861. (uuid 76e4736b-97f4-466c-8236-d0cf2a0251f9)
  1862. )
  1863. (wire (pts (xy 53.34 191.77) (xy 60.96 191.77))
  1864. (stroke (width 0) (type default))
  1865. (uuid 77533d73-0a10-40c1-8167-d5048bd79304)
  1866. )
  1867. (wire (pts (xy 181.61 90.17) (xy 181.61 99.06))
  1868. (stroke (width 0) (type default))
  1869. (uuid 776e3b59-3815-4076-816d-335a333cdcd2)
  1870. )
  1871. (wire (pts (xy 179.07 29.21) (xy 179.07 35.56))
  1872. (stroke (width 0) (type default))
  1873. (uuid 7870389e-11c4-4286-97e0-e5de03ff1647)
  1874. )
  1875. (wire (pts (xy 212.09 154.94) (xy 218.44 154.94))
  1876. (stroke (width 0) (type default))
  1877. (uuid 804792d8-1e7c-4f2a-b57f-a6fc3b81adae)
  1878. )
  1879. (wire (pts (xy 158.75 154.94) (xy 158.75 157.48))
  1880. (stroke (width 0) (type default))
  1881. (uuid 804d95d3-57d8-41cd-9564-9f7b3f446420)
  1882. )
  1883. (wire (pts (xy 90.17 29.21) (xy 93.98 29.21))
  1884. (stroke (width 0) (type default))
  1885. (uuid 823d2bc8-0716-4faf-8f13-0849687a05fd)
  1886. )
  1887. (wire (pts (xy 229.87 106.68) (xy 252.73 106.68))
  1888. (stroke (width 0) (type default))
  1889. (uuid 84c5e138-99de-40d8-b942-34a4f9be70c1)
  1890. )
  1891. (wire (pts (xy 271.78 27.94) (xy 275.59 27.94))
  1892. (stroke (width 0) (type default))
  1893. (uuid 87415549-6b31-4e72-8b40-5040be02a21c)
  1894. )
  1895. (wire (pts (xy 37.465 184.15) (xy 44.45 184.15))
  1896. (stroke (width 0) (type default))
  1897. (uuid 8ac122a2-d0ae-4c9e-8a05-305908a3cb57)
  1898. )
  1899. (wire (pts (xy 98.425 170.18) (xy 98.425 180.34))
  1900. (stroke (width 0) (type default))
  1901. (uuid 8f829c97-556b-4628-8d26-9c6a0e403b95)
  1902. )
  1903. (polyline (pts (xy 207.01 166.37) (xy 207.01 127))
  1904. (stroke (width 0) (type default))
  1905. (uuid 901c29f5-4d9a-426b-9253-c8cdf7de43db)
  1906. )
  1907. (wire (pts (xy 38.1 85.09) (xy 41.91 85.09))
  1908. (stroke (width 0) (type default))
  1909. (uuid 964c3e94-24b9-4b69-8ca1-5db1ed5937a2)
  1910. )
  1911. (polyline (pts (xy 284.48 127) (xy 151.13 127))
  1912. (stroke (width 0) (type default))
  1913. (uuid 985beb5f-bdd8-4827-b72f-ecc58ed8b48a)
  1914. )
  1915. (wire (pts (xy 62.23 22.86) (xy 67.31 22.86))
  1916. (stroke (width 0) (type default))
  1917. (uuid 9bbfa685-364d-4fff-bfd7-89fb3ce1dee5)
  1918. )
  1919. (wire (pts (xy 260.35 15.875) (xy 264.16 15.875))
  1920. (stroke (width 0) (type default))
  1921. (uuid 9d66fbee-8849-45e1-8d1b-895367606e42)
  1922. )
  1923. (wire (pts (xy 170.18 38.1) (xy 173.99 38.1))
  1924. (stroke (width 0) (type default))
  1925. (uuid 9dabfa15-9e9b-42cc-82e0-ba34850d197d)
  1926. )
  1927. (wire (pts (xy 170.18 33.02) (xy 184.15 33.02))
  1928. (stroke (width 0) (type default))
  1929. (uuid 9e087426-2813-4c8f-8ecb-2ad50eb4ec06)
  1930. )
  1931. (wire (pts (xy 179.07 35.56) (xy 191.77 35.56))
  1932. (stroke (width 0) (type default))
  1933. (uuid 9ee38967-600b-4177-842c-f4f19e8a6b5f)
  1934. )
  1935. (wire (pts (xy 187.96 90.17) (xy 187.96 93.98))
  1936. (stroke (width 0) (type default))
  1937. (uuid a10ae24d-2809-4404-b41d-ed9b30efb327)
  1938. )
  1939. (wire (pts (xy 170.18 35.56) (xy 179.07 35.56))
  1940. (stroke (width 0) (type default))
  1941. (uuid a1e533a7-3860-4845-95fd-7072ef3370a8)
  1942. )
  1943. (wire (pts (xy 129.54 29.21) (xy 142.24 29.21))
  1944. (stroke (width 0) (type default))
  1945. (uuid a47924eb-5411-447f-a91e-f8c5782ec6a2)
  1946. )
  1947. (wire (pts (xy 35.56 22.86) (xy 40.64 22.86))
  1948. (stroke (width 0) (type default))
  1949. (uuid a5fe1c28-e408-408a-86ba-dc4d0fc96e0e)
  1950. )
  1951. (wire (pts (xy 42.545 132.08) (xy 42.545 134.62))
  1952. (stroke (width 0) (type default))
  1953. (uuid a81719ad-0f7d-4a4d-909f-124a6ed6a059)
  1954. )
  1955. (wire (pts (xy 240.03 35.56) (xy 224.79 35.56))
  1956. (stroke (width 0) (type default))
  1957. (uuid aa575866-e46f-45fb-9aa0-fe0597f7628a)
  1958. )
  1959. (wire (pts (xy 60.96 191.77) (xy 68.58 191.77))
  1960. (stroke (width 0) (type default))
  1961. (uuid aa7a8304-f35f-4a3b-a8e4-5739dbf1e9e0)
  1962. )
  1963. (wire (pts (xy 266.7 44.45) (xy 262.89 44.45))
  1964. (stroke (width 0) (type default))
  1965. (uuid ab9e9bbc-21cd-45e3-bc90-3b39661996b7)
  1966. )
  1967. (wire (pts (xy 278.13 59.69) (xy 278.13 52.07))
  1968. (stroke (width 0) (type default))
  1969. (uuid ad4d8d05-5981-4bdd-9230-870cbc3cc16f)
  1970. )
  1971. (wire (pts (xy 53.34 184.15) (xy 60.96 184.15))
  1972. (stroke (width 0) (type default))
  1973. (uuid ae0b2107-5abf-463a-ae0f-2b71520d229e)
  1974. )
  1975. (wire (pts (xy 43.18 69.85) (xy 38.1 69.85))
  1976. (stroke (width 0) (type default))
  1977. (uuid ae3afb11-50c3-4b21-99cc-4bed8ccaa50d)
  1978. )
  1979. (wire (pts (xy 41.91 85.09) (xy 41.91 77.47))
  1980. (stroke (width 0) (type default))
  1981. (uuid afd872c6-daf3-4b6e-82fd-e905357587eb)
  1982. )
  1983. (wire (pts (xy 191.77 50.8) (xy 191.77 48.26))
  1984. (stroke (width 0) (type default))
  1985. (uuid b0e30ef2-4b31-4f43-bb07-c339745f9336)
  1986. )
  1987. (wire (pts (xy 215.9 80.01) (xy 220.98 80.01))
  1988. (stroke (width 0) (type default))
  1989. (uuid b31203c9-1f1e-4686-aada-69afe0d0419f)
  1990. )
  1991. (wire (pts (xy 158.75 147.32) (xy 158.75 149.86))
  1992. (stroke (width 0) (type default))
  1993. (uuid b5450184-0826-4565-8c0f-c291cddc1811)
  1994. )
  1995. (wire (pts (xy 262.89 44.45) (xy 262.89 52.07))
  1996. (stroke (width 0) (type default))
  1997. (uuid b816f470-d575-4459-af2a-8e78d40c63be)
  1998. )
  1999. (wire (pts (xy 271.78 15.875) (xy 279.4 15.875))
  2000. (stroke (width 0) (type default))
  2001. (uuid ba93c7a8-9e13-43a1-9059-ba162eaca0c5)
  2002. )
  2003. (wire (pts (xy 60.96 184.15) (xy 68.58 184.15))
  2004. (stroke (width 0) (type default))
  2005. (uuid bba5ea19-2949-4e60-9f12-7291a863e8c7)
  2006. )
  2007. (wire (pts (xy 63.5 35.56) (xy 67.31 35.56))
  2008. (stroke (width 0) (type default))
  2009. (uuid c12a944f-abd3-4293-b43f-43b22e9e2e79)
  2010. )
  2011. (wire (pts (xy 175.26 93.98) (xy 187.96 93.98))
  2012. (stroke (width 0) (type default))
  2013. (uuid c190e40f-02cc-4ce1-8fa2-b36e91b840c9)
  2014. )
  2015. (wire (pts (xy 26.67 77.47) (xy 22.86 77.47))
  2016. (stroke (width 0) (type default))
  2017. (uuid c41d2c50-ac2b-495f-90bd-143edd1dceb2)
  2018. )
  2019. (wire (pts (xy 220.98 72.39) (xy 229.87 72.39))
  2020. (stroke (width 0) (type default))
  2021. (uuid c8c3d23f-590e-4014-bd71-c069dfdca76c)
  2022. )
  2023. (wire (pts (xy 83.82 22.86) (xy 83.82 21.59))
  2024. (stroke (width 0) (type default))
  2025. (uuid c8d24e9d-0abc-4c71-a38a-4082d6ff1af9)
  2026. )
  2027. (wire (pts (xy 116.84 39.37) (xy 116.84 40.64))
  2028. (stroke (width 0) (type default))
  2029. (uuid c9e5141f-7e6c-4133-89d2-4a700da21dac)
  2030. )
  2031. (wire (pts (xy 179.07 21.59) (xy 179.07 20.32))
  2032. (stroke (width 0) (type default))
  2033. (uuid cb7eaf61-be69-4fd0-94a0-facc174863f5)
  2034. )
  2035. (wire (pts (xy 82.55 39.37) (xy 116.84 39.37))
  2036. (stroke (width 0) (type default))
  2037. (uuid d0ab4c7b-ad80-4b80-bc2c-f1c0903ce96e)
  2038. )
  2039. (wire (pts (xy 275.59 22.225) (xy 278.765 22.225))
  2040. (stroke (width 0) (type default))
  2041. (uuid d3a373c0-0a66-43b6-8c85-5cccc72fce96)
  2042. )
  2043. (wire (pts (xy 82.55 22.86) (xy 83.82 22.86))
  2044. (stroke (width 0) (type default))
  2045. (uuid d404337a-aa86-435c-ab72-5d0111dec657)
  2046. )
  2047. (wire (pts (xy 83.82 21.59) (xy 90.17 21.59))
  2048. (stroke (width 0) (type default))
  2049. (uuid d441b495-aebc-4f86-9989-d4a8cdda890d)
  2050. )
  2051. (wire (pts (xy 158.75 149.86) (xy 158.75 152.4))
  2052. (stroke (width 0) (type default))
  2053. (uuid d460434d-650c-4d6a-9ad8-d2d13027aa4b)
  2054. )
  2055. (wire (pts (xy 26.67 85.09) (xy 30.48 85.09))
  2056. (stroke (width 0) (type default))
  2057. (uuid d518d090-92a7-4388-b842-e6dd5ee506b0)
  2058. )
  2059. (wire (pts (xy 93.98 29.21) (xy 100.33 29.21))
  2060. (stroke (width 0) (type default))
  2061. (uuid d6a0638b-a88c-446e-8657-55285b5142a2)
  2062. )
  2063. (wire (pts (xy 215.9 72.39) (xy 220.98 72.39))
  2064. (stroke (width 0) (type default))
  2065. (uuid d902ef84-8068-4240-b882-ba298d100c30)
  2066. )
  2067. (wire (pts (xy 262.89 52.07) (xy 262.89 59.69))
  2068. (stroke (width 0) (type default))
  2069. (uuid d9dfa2d4-afe1-40e9-a68d-a08c082c2d30)
  2070. )
  2071. (wire (pts (xy 260.35 22.225) (xy 258.445 22.225))
  2072. (stroke (width 0) (type default))
  2073. (uuid da8d1712-40d2-4505-b317-9fd8b0855390)
  2074. )
  2075. (wire (pts (xy 22.86 191.77) (xy 30.48 191.77))
  2076. (stroke (width 0) (type default))
  2077. (uuid dbbbd6d9-fa2c-4e68-941d-ae8d00896555)
  2078. )
  2079. (wire (pts (xy 116.84 29.21) (xy 116.84 30.48))
  2080. (stroke (width 0) (type default))
  2081. (uuid dcf1263d-068d-452f-a727-b65b87b0357f)
  2082. )
  2083. (wire (pts (xy 116.84 38.1) (xy 116.84 39.37))
  2084. (stroke (width 0) (type default))
  2085. (uuid dea393d2-e46b-43a9-a553-eac1047133ea)
  2086. )
  2087. (wire (pts (xy 44.45 191.77) (xy 53.34 191.77))
  2088. (stroke (width 0) (type default))
  2089. (uuid dee4917a-0009-4b27-9129-cd75828127a6)
  2090. )
  2091. (wire (pts (xy 37.465 191.77) (xy 44.45 191.77))
  2092. (stroke (width 0) (type default))
  2093. (uuid e2f9358a-b60a-4324-b5c3-22bdcd704baa)
  2094. )
  2095. (polyline (pts (xy 151.13 127) (xy 151.13 198.12))
  2096. (stroke (width 0) (type default))
  2097. (uuid e5b8a23c-5180-40ee-9d20-467baeec8e26)
  2098. )
  2099. (wire (pts (xy 184.15 33.02) (xy 191.77 33.02))
  2100. (stroke (width 0) (type default))
  2101. (uuid e652e349-b688-4477-81e0-d475e84259e1)
  2102. )
  2103. (wire (pts (xy 41.91 77.47) (xy 43.18 77.47))
  2104. (stroke (width 0) (type default))
  2105. (uuid e66d409c-3e37-44e9-b556-2798907c35c4)
  2106. )
  2107. (wire (pts (xy 262.89 59.69) (xy 266.7 59.69))
  2108. (stroke (width 0) (type default))
  2109. (uuid e7f689ad-7658-46a5-aee1-3b6e9ec7ccd8)
  2110. )
  2111. (wire (pts (xy 252.73 90.17) (xy 255.27 90.17))
  2112. (stroke (width 0) (type default))
  2113. (uuid eacdffba-93d5-4cdc-b6d2-251c6f9d06ae)
  2114. )
  2115. (wire (pts (xy 279.4 44.45) (xy 274.32 44.45))
  2116. (stroke (width 0) (type default))
  2117. (uuid ed64fbef-06f5-4da6-9484-e16b71bf2697)
  2118. )
  2119. (wire (pts (xy 173.99 21.59) (xy 179.07 21.59))
  2120. (stroke (width 0) (type default))
  2121. (uuid ed9cfeff-5007-4fa2-bd5f-ce76b53f8414)
  2122. )
  2123. (wire (pts (xy 55.88 35.56) (xy 55.88 22.86))
  2124. (stroke (width 0) (type default))
  2125. (uuid ef64f944-1092-4018-8afc-0c28ade042bd)
  2126. )
  2127. (wire (pts (xy 158.75 152.4) (xy 158.75 154.94))
  2128. (stroke (width 0) (type default))
  2129. (uuid f6f9d302-5687-4bab-a063-c5809ca4550d)
  2130. )
  2131. (wire (pts (xy 220.98 80.01) (xy 229.87 80.01))
  2132. (stroke (width 0) (type default))
  2133. (uuid f8f06393-6349-4768-bfe5-f78c86e1236b)
  2134. )
  2135. (wire (pts (xy 274.32 59.69) (xy 278.13 59.69))
  2136. (stroke (width 0) (type default))
  2137. (uuid f943360e-e417-411e-939f-9f4b413c10cc)
  2138. )
  2139. (wire (pts (xy 252.73 97.79) (xy 252.73 106.68))
  2140. (stroke (width 0) (type default))
  2141. (uuid fb1eeb1a-0b91-4939-8a3c-7ada68081582)
  2142. )
  2143. (wire (pts (xy 30.48 184.15) (xy 37.465 184.15))
  2144. (stroke (width 0) (type default))
  2145. (uuid fb24793d-5712-4184-a755-76f3128aba67)
  2146. )
  2147. (polyline (pts (xy 12.7 92.71) (xy 151.13 92.71))
  2148. (stroke (width 0) (type default))
  2149. (uuid ff72d355-b971-4248-8189-2803811c686d)
  2150. )
  2151. (text "RTC\n" (at 205.74 16.51 0)
  2152. (effects (font (size 1.524 1.524)) (justify left bottom))
  2153. (uuid 0579f118-26ff-4124-96e1-3252fe2edb1e)
  2154. )
  2155. (text "V4 : changement de l'ali et de l'esp, rajout d'une résistance en série pour la pt1000"
  2156. (at 179.07 168.91 0)
  2157. (effects (font (size 1.524 1.524)) (justify left bottom))
  2158. (uuid 641f2142-3058-49c8-b29b-d831a813dacc)
  2159. )
  2160. (text "montage\n" (at 160.02 196.85 0)
  2161. (effects (font (size 1.524 1.524)) (justify left bottom))
  2162. (uuid 8b3b8173-bf62-48ea-affa-e6a98238e239)
  2163. )
  2164. (label "GND" (at 34.29 43.18 0) (fields_autoplaced)
  2165. (effects (font (size 1.524 1.524)) (justify left bottom))
  2166. (uuid 0021b708-fed0-4326-bab2-a85ee14f1bce)
  2167. )
  2168. (label "sda" (at 170.18 33.02 180) (fields_autoplaced)
  2169. (effects (font (size 1.524 1.524)) (justify right bottom))
  2170. (uuid 021f471f-687f-4dd2-bd58-ac7814273e5b)
  2171. )
  2172. (label "GND" (at 228.6 48.26 0) (fields_autoplaced)
  2173. (effects (font (size 1.524 1.524)) (justify left bottom))
  2174. (uuid 03405ce8-0ff0-4fca-b54b-b2c6728be36b)
  2175. )
  2176. (label "CMD" (at 52.705 154.94 180) (fields_autoplaced)
  2177. (effects (font (size 1.524 1.524)) (justify right bottom))
  2178. (uuid 0466c02c-fb2c-441a-9f11-f640af90e739)
  2179. )
  2180. (label "L_orange" (at 142.24 166.37 90) (fields_autoplaced)
  2181. (effects (font (size 1.524 1.524)) (justify left bottom))
  2182. (uuid 04b38da3-0fa7-4163-b44d-00d96bf30c61)
  2183. )
  2184. (label "Themp" (at 218.44 157.48 180) (fields_autoplaced)
  2185. (effects (font (size 1.524 1.524)) (justify right bottom))
  2186. (uuid 0580dfe1-1060-4208-8959-706b619cd7c4)
  2187. )
  2188. (label "3.3V" (at 215.9 72.39 180) (fields_autoplaced)
  2189. (effects (font (size 1.524 1.524)) (justify right bottom))
  2190. (uuid 05ee8da1-371b-473e-b053-2902738519a1)
  2191. )
  2192. (label "GND" (at 116.205 121.92 0) (fields_autoplaced)
  2193. (effects (font (size 1.524 1.524)) (justify left bottom))
  2194. (uuid 06e32014-7625-4e48-b2c0-464a2ad7c01b)
  2195. )
  2196. (label "GND" (at 234.95 160.655 180) (fields_autoplaced)
  2197. (effects (font (size 1.524 1.524)) (justify right bottom))
  2198. (uuid 0bbf697e-2e3f-4978-84e5-3da8616c26d7)
  2199. )
  2200. (label "USB_OTG_FS_N" (at 116.205 129.54 0) (fields_autoplaced)
  2201. (effects (font (size 1.524 1.524)) (justify left bottom))
  2202. (uuid 0fcda57c-75fb-46c5-8061-8e13a18d65ca)
  2203. )
  2204. (label "S2" (at 219.075 137.795 180) (fields_autoplaced)
  2205. (effects (font (size 1.524 1.524)) (justify right bottom))
  2206. (uuid 1390947c-461c-4984-adca-43f4dc6b0401)
  2207. )
  2208. (label "GND" (at 93.98 36.83 180) (fields_autoplaced)
  2209. (effects (font (size 1.27 1.27)) (justify right bottom))
  2210. (uuid 16d72a4b-7b96-48d4-8fb4-7efb3689cddd)
  2211. )
  2212. (label "S10" (at 234.95 142.875 180) (fields_autoplaced)
  2213. (effects (font (size 1.524 1.524)) (justify right bottom))
  2214. (uuid 171a23a8-88f2-4557-a180-3cc0827b0445)
  2215. )
  2216. (label "3.3V" (at 70.485 170.18 270) (fields_autoplaced)
  2217. (effects (font (size 1.524 1.524)) (justify right bottom))
  2218. (uuid 1ce21285-2066-4b1b-9051-35c0f8f81d07)
  2219. )
  2220. (label "L_orange" (at 116.205 152.4 0) (fields_autoplaced)
  2221. (effects (font (size 1.524 1.524)) (justify left bottom))
  2222. (uuid 23194221-7a18-46b0-9491-98ff847abbb7)
  2223. )
  2224. (label "mfp" (at 170.18 38.1 180) (fields_autoplaced)
  2225. (effects (font (size 1.524 1.524)) (justify right bottom))
  2226. (uuid 260c07dc-aea1-4301-bc64-f285166af053)
  2227. )
  2228. (label "GND" (at 98.425 187.96 270) (fields_autoplaced)
  2229. (effects (font (size 1.524 1.524)) (justify right bottom))
  2230. (uuid 272dadb6-6b1c-464d-80e0-f0a0451d925d)
  2231. )
  2232. (label "3.3V" (at 194.31 111.76 180) (fields_autoplaced)
  2233. (effects (font (size 1.524 1.524)) (justify right bottom))
  2234. (uuid 292a1c76-78c9-457c-8ce2-eba6e654d04b)
  2235. )
  2236. (label "GND" (at 278.765 22.225 0) (fields_autoplaced)
  2237. (effects (font (size 1.524 1.524)) (justify left bottom))
  2238. (uuid 2b84cfbc-4b37-4a42-a9af-52e263cc9401)
  2239. )
  2240. (label "12V" (at 234.95 155.575 180) (fields_autoplaced)
  2241. (effects (font (size 1.524 1.524)) (justify right bottom))
  2242. (uuid 2c0e7ed6-a6b5-452a-8aec-376fb44ecb7f)
  2243. )
  2244. (label "boot0" (at 259.08 52.07 180) (fields_autoplaced)
  2245. (effects (font (size 1.524 1.524)) (justify right bottom))
  2246. (uuid 319e3401-f904-4f8b-bc5c-17310d756634)
  2247. )
  2248. (label "3.3V" (at 52.705 149.86 180) (fields_autoplaced)
  2249. (effects (font (size 1.524 1.524)) (justify right bottom))
  2250. (uuid 31cab4f6-057a-4a3c-b123-68df69d009ea)
  2251. )
  2252. (label "swdio" (at 135.89 107.95 180) (fields_autoplaced)
  2253. (effects (font (size 1.524 1.524)) (justify right bottom))
  2254. (uuid 344c3712-71eb-4ba1-acb0-a09690dad886)
  2255. )
  2256. (label "TX" (at 116.205 144.78 0) (fields_autoplaced)
  2257. (effects (font (size 1.524 1.524)) (justify left bottom))
  2258. (uuid 3594dd91-7a4d-473e-a4df-28728be14268)
  2259. )
  2260. (label "3.3V" (at 179.07 20.32 90) (fields_autoplaced)
  2261. (effects (font (size 1.524 1.524)) (justify left bottom))
  2262. (uuid 37ce1562-0974-4a28-b583-b9258fb529a2)
  2263. )
  2264. (label "GND" (at 19.685 127 180) (fields_autoplaced)
  2265. (effects (font (size 1.524 1.524)) (justify right bottom))
  2266. (uuid 394cb2f9-8bec-41e8-b270-87ff3ca79054)
  2267. )
  2268. (label "GND" (at 74.93 40.64 270) (fields_autoplaced)
  2269. (effects (font (size 1.27 1.27)) (justify right bottom))
  2270. (uuid 399b8b9a-fe91-43da-9cb6-c4470baff4bc)
  2271. )
  2272. (label "sdl" (at 181.61 149.86 0) (fields_autoplaced)
  2273. (effects (font (size 1.524 1.524)) (justify left bottom))
  2274. (uuid 3d261eee-3bff-412b-af58-69c37a491318)
  2275. )
  2276. (label "aquit" (at 22.86 77.47 180) (fields_autoplaced)
  2277. (effects (font (size 1.524 1.524)) (justify right bottom))
  2278. (uuid 3de23887-7b4c-4663-a62c-c3a06fbce74f)
  2279. )
  2280. (label "3.3V" (at 65.405 106.68 90) (fields_autoplaced)
  2281. (effects (font (size 1.524 1.524)) (justify left bottom))
  2282. (uuid 3df98879-3f93-4f01-a68b-c1ad0e703156)
  2283. )
  2284. (label "12V" (at 22.86 22.86 180) (fields_autoplaced)
  2285. (effects (font (size 1.524 1.524)) (justify right bottom))
  2286. (uuid 3ea442f5-c0c9-4379-a481-30a8c32d9630)
  2287. )
  2288. (label "RX" (at 229.87 96.52 0) (fields_autoplaced)
  2289. (effects (font (size 1.524 1.524)) (justify left bottom))
  2290. (uuid 401f6a68-4a87-4a31-9695-0ba28f3516c2)
  2291. )
  2292. (label "Themp" (at 73.025 170.18 270) (fields_autoplaced)
  2293. (effects (font (size 1.524 1.524)) (justify right bottom))
  2294. (uuid 43ad75d7-e739-45ac-8895-71aee8989e98)
  2295. )
  2296. (label "3.3V" (at 194.31 144.78 0) (fields_autoplaced)
  2297. (effects (font (size 1.524 1.524)) (justify left bottom))
  2298. (uuid 4418207c-f553-48a4-b7cd-fee073f6229b)
  2299. )
  2300. (label "GPIO0" (at 271.78 93.98 180) (fields_autoplaced)
  2301. (effects (font (size 1.27 1.27)) (justify right bottom))
  2302. (uuid 4d12cc50-3139-49aa-a0c0-94a908b22fd2)
  2303. )
  2304. (label "GND" (at 129.54 36.83 270) (fields_autoplaced)
  2305. (effects (font (size 1.27 1.27)) (justify right bottom))
  2306. (uuid 4edb91b3-0de3-4581-aaa0-bec83ff7df80)
  2307. )
  2308. (label "3.3V" (at 181.61 154.94 0) (fields_autoplaced)
  2309. (effects (font (size 1.524 1.524)) (justify left bottom))
  2310. (uuid 526da67c-98a3-4a9c-a451-38b272f5a6cf)
  2311. )
  2312. (label "S10" (at 70.485 106.68 90) (fields_autoplaced)
  2313. (effects (font (size 1.524 1.524)) (justify left bottom))
  2314. (uuid 53efcebb-e3c6-4a29-b643-dfe779785779)
  2315. )
  2316. (label "GND" (at 215.9 80.01 180) (fields_autoplaced)
  2317. (effects (font (size 1.524 1.524)) (justify right bottom))
  2318. (uuid 544bd3dd-90de-4f20-9f6c-20832babf70c)
  2319. )
  2320. (label "3.3V" (at 179.07 82.55 180) (fields_autoplaced)
  2321. (effects (font (size 1.524 1.524)) (justify right bottom))
  2322. (uuid 56af1fa1-2c3e-4a67-aca3-2987a081dcc3)
  2323. )
  2324. (label "S1" (at 219.075 135.255 180) (fields_autoplaced)
  2325. (effects (font (size 1.524 1.524)) (justify right bottom))
  2326. (uuid 5a9e18f4-0a11-4ae2-a143-167465348fdf)
  2327. )
  2328. (label "swclk" (at 135.89 102.87 180) (fields_autoplaced)
  2329. (effects (font (size 1.524 1.524)) (justify right bottom))
  2330. (uuid 5f46da3d-2c63-4d8e-8856-c93ba2b9da4c)
  2331. )
  2332. (label "RST" (at 271.78 96.52 180) (fields_autoplaced)
  2333. (effects (font (size 1.27 1.27)) (justify right bottom))
  2334. (uuid 616c507c-f0b5-4f23-8b99-f05b85d2d3a3)
  2335. )
  2336. (label "S6" (at 90.805 170.18 270) (fields_autoplaced)
  2337. (effects (font (size 1.524 1.524)) (justify right bottom))
  2338. (uuid 6491a9f7-8fb7-4dba-866d-887906f61971)
  2339. )
  2340. (label "GND" (at 279.4 44.45 0) (fields_autoplaced)
  2341. (effects (font (size 1.524 1.524)) (justify left bottom))
  2342. (uuid 66470888-e606-469b-8855-d47f6f1bd2f4)
  2343. )
  2344. (label "nrst" (at 258.445 22.225 180) (fields_autoplaced)
  2345. (effects (font (size 1.524 1.524)) (justify right bottom))
  2346. (uuid 66e1bccf-54a4-4803-944a-4dda2fe99a72)
  2347. )
  2348. (label "I2C2_SDL" (at 95.885 170.18 270) (fields_autoplaced)
  2349. (effects (font (size 1.524 1.524)) (justify right bottom))
  2350. (uuid 6a294da2-a70c-4ddf-b6d3-ca4734e6226e)
  2351. )
  2352. (label "3.3V" (at 103.505 170.18 270) (fields_autoplaced)
  2353. (effects (font (size 1.524 1.524)) (justify right bottom))
  2354. (uuid 6d8f9f40-21e8-4263-a74f-23b2a50842bb)
  2355. )
  2356. (label "GND" (at 132.08 184.15 270) (fields_autoplaced)
  2357. (effects (font (size 1.524 1.524)) (justify right bottom))
  2358. (uuid 779e0830-c526-433d-84ff-800104a0730d)
  2359. )
  2360. (label "GND" (at 158.75 157.48 270) (fields_autoplaced)
  2361. (effects (font (size 1.524 1.524)) (justify right bottom))
  2362. (uuid 77aa2d52-7e50-4457-a243-396464e3308b)
  2363. )
  2364. (label "GND" (at 257.81 155.575 180) (fields_autoplaced)
  2365. (effects (font (size 1.524 1.524)) (justify right bottom))
  2366. (uuid 79f76c26-f0f4-4160-8c80-f815332ad23d)
  2367. )
  2368. (label "mfp" (at 93.345 170.18 270) (fields_autoplaced)
  2369. (effects (font (size 1.524 1.524)) (justify right bottom))
  2370. (uuid 7aa57a1c-e85d-48c7-bda0-f7426580a1ec)
  2371. )
  2372. (label "GND" (at 67.945 106.68 90) (fields_autoplaced)
  2373. (effects (font (size 1.524 1.524)) (justify left bottom))
  2374. (uuid 80dbc1d9-35e3-4c2b-9dac-f40fe79ec690)
  2375. )
  2376. (label "RST" (at 175.26 93.98 180) (fields_autoplaced)
  2377. (effects (font (size 1.27 1.27)) (justify right bottom))
  2378. (uuid 833b5572-3e77-4aa9-bffa-355b3f6ffd26)
  2379. )
  2380. (label "S4" (at 80.645 170.18 270) (fields_autoplaced)
  2381. (effects (font (size 1.524 1.524)) (justify right bottom))
  2382. (uuid 87293bd3-54c1-4332-b68b-1a49496f9506)
  2383. )
  2384. (label "GND" (at 67.945 170.18 270) (fields_autoplaced)
  2385. (effects (font (size 1.524 1.524)) (justify right bottom))
  2386. (uuid 8956e11d-565e-425e-882e-a21b13887ada)
  2387. )
  2388. (label "3.3V" (at 19.05 184.15 180) (fields_autoplaced)
  2389. (effects (font (size 1.524 1.524)) (justify right bottom))
  2390. (uuid 89831278-f793-48f5-8d5b-adb511902494)
  2391. )
  2392. (label "GND" (at 218.44 160.02 180) (fields_autoplaced)
  2393. (effects (font (size 1.524 1.524)) (justify right bottom))
  2394. (uuid 8d067603-6eca-478a-9ed2-6a7f04164957)
  2395. )
  2396. (label "USB_OTG_FS_P" (at 78.105 78.74 0) (fields_autoplaced)
  2397. (effects (font (size 1.524 1.524)) (justify left bottom))
  2398. (uuid 8d526a41-4ae6-45b8-be60-212695cafcc1)
  2399. )
  2400. (label "sda" (at 116.205 139.7 0) (fields_autoplaced)
  2401. (effects (font (size 1.524 1.524)) (justify left bottom))
  2402. (uuid 8e52e590-ddbd-4e72-831f-1f0be7d921d9)
  2403. )
  2404. (label "GND" (at 19.05 191.77 180) (fields_autoplaced)
  2405. (effects (font (size 1.524 1.524)) (justify right bottom))
  2406. (uuid 934d9955-f69a-42bf-adb4-6e3598b754d7)
  2407. )
  2408. (label "boot0" (at 75.565 106.68 90) (fields_autoplaced)
  2409. (effects (font (size 1.524 1.524)) (justify left bottom))
  2410. (uuid 95a385a0-887d-41a9-8638-2aa7f7de6dc4)
  2411. )
  2412. (label "I2C2_SDA" (at 257.81 158.115 180) (fields_autoplaced)
  2413. (effects (font (size 1.524 1.524)) (justify right bottom))
  2414. (uuid 95c9e6c8-1644-4f03-ae37-80e4be4cae2a)
  2415. )
  2416. (label "nrst" (at 52.705 134.62 180) (fields_autoplaced)
  2417. (effects (font (size 1.524 1.524)) (justify right bottom))
  2418. (uuid 97502f93-5f36-44b1-8a4b-420bab62d9da)
  2419. )
  2420. (label "12V" (at 34.29 40.64 0) (fields_autoplaced)
  2421. (effects (font (size 1.524 1.524)) (justify left bottom))
  2422. (uuid 97987b99-2ede-405c-9798-d1e0711d5606)
  2423. )
  2424. (label "sdl" (at 116.205 137.16 0) (fields_autoplaced)
  2425. (effects (font (size 1.524 1.524)) (justify left bottom))
  2426. (uuid 9890a9f0-3877-4123-874e-fc4638f5a6bc)
  2427. )
  2428. (label "3.3V" (at 116.205 119.38 0) (fields_autoplaced)
  2429. (effects (font (size 1.524 1.524)) (justify left bottom))
  2430. (uuid 9a586f1a-3025-4298-a545-191d6bcbdb8a)
  2431. )
  2432. (label "GND" (at 229.87 109.22 0) (fields_autoplaced)
  2433. (effects (font (size 1.524 1.524)) (justify left bottom))
  2434. (uuid 9aa7865a-1396-4b06-952d-acee742b1bbb)
  2435. )
  2436. (label "GND" (at 187.96 48.26 180) (fields_autoplaced)
  2437. (effects (font (size 1.524 1.524)) (justify right bottom))
  2438. (uuid 9b0456b0-0e98-4954-82a1-ccc70e365fed)
  2439. )
  2440. (label "swclk" (at 103.505 106.68 90) (fields_autoplaced)
  2441. (effects (font (size 1.524 1.524)) (justify left bottom))
  2442. (uuid 9d43939c-714c-43f4-9e1d-a5fbabc193b8)
  2443. )
  2444. (label "RX" (at 116.205 147.32 0) (fields_autoplaced)
  2445. (effects (font (size 1.524 1.524)) (justify left bottom))
  2446. (uuid 9d5a5e6d-d66f-4120-a20a-6a0a15a4cecc)
  2447. )
  2448. (label "S8" (at 78.105 106.68 90) (fields_autoplaced)
  2449. (effects (font (size 1.524 1.524)) (justify left bottom))
  2450. (uuid 9f149468-df27-4ea3-ac68-6bc192d627a4)
  2451. )
  2452. (label "GND" (at 19.685 134.62 180) (fields_autoplaced)
  2453. (effects (font (size 1.524 1.524)) (justify right bottom))
  2454. (uuid a2bb0301-1099-4e1d-b036-c1ce5de35d5b)
  2455. )
  2456. (label "sdl" (at 170.18 35.56 180) (fields_autoplaced)
  2457. (effects (font (size 1.524 1.524)) (justify right bottom))
  2458. (uuid a33d9c93-13aa-4718-a94f-5f0bac86fc02)
  2459. )
  2460. (label "3.3V" (at 142.24 29.21 0) (fields_autoplaced)
  2461. (effects (font (size 1.524 1.524)) (justify left bottom))
  2462. (uuid a7536fca-9ed5-4dea-8482-9d93a93044f8)
  2463. )
  2464. (label "USB_OTG_FS_N" (at 78.105 76.2 0) (fields_autoplaced)
  2465. (effects (font (size 1.524 1.524)) (justify left bottom))
  2466. (uuid a8824b4f-5873-46a1-882f-3bedfcebc298)
  2467. )
  2468. (label "S4" (at 219.075 142.875 180) (fields_autoplaced)
  2469. (effects (font (size 1.524 1.524)) (justify right bottom))
  2470. (uuid a8aa7a54-e25e-4223-a9d7-29492be241da)
  2471. )
  2472. (label "S1" (at 52.705 157.48 180) (fields_autoplaced)
  2473. (effects (font (size 1.524 1.524)) (justify right bottom))
  2474. (uuid a8f98b0f-49bb-4d21-8b12-a4d97c5e797a)
  2475. )
  2476. (label "GND" (at 229.87 111.76 0) (fields_autoplaced)
  2477. (effects (font (size 1.524 1.524)) (justify left bottom))
  2478. (uuid aa1d7d9d-5f17-4d2d-accc-5877bb108b93)
  2479. )
  2480. (label "S6" (at 219.075 147.955 180) (fields_autoplaced)
  2481. (effects (font (size 1.524 1.524)) (justify right bottom))
  2482. (uuid aedc1746-bc85-4146-8162-03da8be750c2)
  2483. )
  2484. (label "RX" (at 271.78 91.44 180) (fields_autoplaced)
  2485. (effects (font (size 1.524 1.524)) (justify right bottom))
  2486. (uuid b415dc9b-81f9-459a-999e-8ed90a3086ad)
  2487. )
  2488. (label "GND" (at 135.89 105.41 180) (fields_autoplaced)
  2489. (effects (font (size 1.524 1.524)) (justify right bottom))
  2490. (uuid b415e97d-0afc-4bc8-85a9-6bff6476b563)
  2491. )
  2492. (label "3.3V" (at 43.18 69.85 0) (fields_autoplaced)
  2493. (effects (font (size 1.524 1.524)) (justify left bottom))
  2494. (uuid b4611b5c-6e50-4a9f-babe-e189e3b5b88b)
  2495. )
  2496. (label "USB_OTG_FS_VBUS" (at 116.205 134.62 0) (fields_autoplaced)
  2497. (effects (font (size 1.524 1.524)) (justify left bottom))
  2498. (uuid b5965461-ddca-4ab8-983f-6df9982944d7)
  2499. )
  2500. (label "USB_OTG_FS_VBUS" (at 78.105 73.66 0) (fields_autoplaced)
  2501. (effects (font (size 1.524 1.524)) (justify left bottom))
  2502. (uuid b7ef6f71-f6b2-423f-ba86-4a4b6ad533de)
  2503. )
  2504. (label "USB_OTG_FS_ID" (at 116.205 132.08 0) (fields_autoplaced)
  2505. (effects (font (size 1.524 1.524)) (justify left bottom))
  2506. (uuid b9c7a092-9a18-4899-9451-bb5c802b69f8)
  2507. )
  2508. (label "3.3V" (at 135.89 100.33 180) (fields_autoplaced)
  2509. (effects (font (size 1.524 1.524)) (justify right bottom))
  2510. (uuid ba0b1b30-de0d-42a9-9ecc-f431072c9940)
  2511. )
  2512. (label "wc" (at 200.66 152.4 0) (fields_autoplaced)
  2513. (effects (font (size 1.524 1.524)) (justify left bottom))
  2514. (uuid bcda1c86-873b-40ef-8ae2-12bc8d4c7392)
  2515. )
  2516. (label "3.3V" (at 279.4 52.07 0) (fields_autoplaced)
  2517. (effects (font (size 1.524 1.524)) (justify left bottom))
  2518. (uuid bd1ca98f-af63-43c1-89a7-27d821a619e1)
  2519. )
  2520. (label "TX" (at 229.87 93.98 0) (fields_autoplaced)
  2521. (effects (font (size 1.524 1.524)) (justify left bottom))
  2522. (uuid bec2ceea-af85-438c-a8ae-d0d489bf310f)
  2523. )
  2524. (label "S9" (at 73.025 106.68 90) (fields_autoplaced)
  2525. (effects (font (size 1.524 1.524)) (justify left bottom))
  2526. (uuid c1d75a32-7b6d-4dc6-9350-58976303b000)
  2527. )
  2528. (label "L_vert" (at 116.205 154.94 0) (fields_autoplaced)
  2529. (effects (font (size 1.524 1.524)) (justify left bottom))
  2530. (uuid c47d5fd5-dc7a-4c8e-bc3b-2356f28ea770)
  2531. )
  2532. (label "3.3V" (at 279.4 15.875 0) (fields_autoplaced)
  2533. (effects (font (size 1.524 1.524)) (justify left bottom))
  2534. (uuid c6057ea4-e81f-4256-b421-eee597d58551)
  2535. )
  2536. (label "3.3V" (at 212.09 147.32 180) (fields_autoplaced)
  2537. (effects (font (size 1.524 1.524)) (justify right bottom))
  2538. (uuid c6c15d4d-2c26-4dc9-9e0e-5a383370e7e1)
  2539. )
  2540. (label "L_vert" (at 132.08 166.37 90) (fields_autoplaced)
  2541. (effects (font (size 1.524 1.524)) (justify left bottom))
  2542. (uuid c733a55e-5ff8-46a5-a0e6-4b2a297fa4ab)
  2543. )
  2544. (label "S7" (at 80.645 106.68 90) (fields_autoplaced)
  2545. (effects (font (size 1.524 1.524)) (justify left bottom))
  2546. (uuid c95a5706-5251-47a3-a028-5492e7244710)
  2547. )
  2548. (label "3.3V" (at 191.77 45.72 180) (fields_autoplaced)
  2549. (effects (font (size 1.524 1.524)) (justify right bottom))
  2550. (uuid cba7f6b5-e1b1-425a-a758-8458a7537f60)
  2551. )
  2552. (label "S5" (at 219.075 145.415 180) (fields_autoplaced)
  2553. (effects (font (size 1.524 1.524)) (justify right bottom))
  2554. (uuid ccbeb253-522d-4be5-9173-6c1d75b74e98)
  2555. )
  2556. (label "I2C2_SDA" (at 88.265 106.68 90) (fields_autoplaced)
  2557. (effects (font (size 1.524 1.524)) (justify left bottom))
  2558. (uuid cfdeef8d-d51d-4ff6-b131-920580c27c96)
  2559. )
  2560. (label "aquit" (at 52.705 152.4 180) (fields_autoplaced)
  2561. (effects (font (size 1.524 1.524)) (justify right bottom))
  2562. (uuid d0ab2c14-6f32-471b-a6d8-5fda623349c1)
  2563. )
  2564. (label "wc" (at 52.705 124.46 180) (fields_autoplaced)
  2565. (effects (font (size 1.524 1.524)) (justify right bottom))
  2566. (uuid d38fdca9-00dc-4883-91bc-4cd8c4b2844a)
  2567. )
  2568. (label "swdio" (at 116.205 124.46 0) (fields_autoplaced)
  2569. (effects (font (size 1.524 1.524)) (justify left bottom))
  2570. (uuid d68fdc5c-d664-4f7b-b6de-1e1929e69b25)
  2571. )
  2572. (label "L_rouge" (at 137.16 166.37 90) (fields_autoplaced)
  2573. (effects (font (size 1.524 1.524)) (justify left bottom))
  2574. (uuid d7465603-8b8e-4a71-b0b2-5566be3cd7f1)
  2575. )
  2576. (label "GND" (at 240.03 43.18 270) (fields_autoplaced)
  2577. (effects (font (size 1.524 1.524)) (justify right bottom))
  2578. (uuid d89985fa-9859-4795-a1b5-8eccf8095f51)
  2579. )
  2580. (label "S3" (at 78.105 170.18 270) (fields_autoplaced)
  2581. (effects (font (size 1.524 1.524)) (justify right bottom))
  2582. (uuid d8db4cb5-bd4f-4f83-b0a3-06bcaac6db75)
  2583. )
  2584. (label "GND" (at 43.18 77.47 0) (fields_autoplaced)
  2585. (effects (font (size 1.524 1.524)) (justify left bottom))
  2586. (uuid da3c809c-bff6-4b71-af9d-899b48aadb93)
  2587. )
  2588. (label "nrst" (at 135.89 110.49 180) (fields_autoplaced)
  2589. (effects (font (size 1.524 1.524)) (justify right bottom))
  2590. (uuid db93a35d-92e3-40a7-8007-ef5d757b8c10)
  2591. )
  2592. (label "USB_OTG_FS_P" (at 116.205 127 0) (fields_autoplaced)
  2593. (effects (font (size 1.524 1.524)) (justify left bottom))
  2594. (uuid dba4b138-d130-4946-bb01-ac19d1154af7)
  2595. )
  2596. (label "3.3V" (at 224.79 40.64 0) (fields_autoplaced)
  2597. (effects (font (size 1.524 1.524)) (justify left bottom))
  2598. (uuid dc8df901-de4b-4b97-a2db-a6864b2afa39)
  2599. )
  2600. (label "GND" (at 224.79 33.02 0) (fields_autoplaced)
  2601. (effects (font (size 1.524 1.524)) (justify left bottom))
  2602. (uuid dee70b5c-4189-408f-9f17-7fe8625becac)
  2603. )
  2604. (label "CMD" (at 234.95 158.115 180) (fields_autoplaced)
  2605. (effects (font (size 1.524 1.524)) (justify right bottom))
  2606. (uuid df6900db-3ca0-4801-ac0e-5943f4d1e547)
  2607. )
  2608. (label "GND" (at 100.965 170.18 270) (fields_autoplaced)
  2609. (effects (font (size 1.524 1.524)) (justify right bottom))
  2610. (uuid e19af755-1f91-4c2a-b262-d65cdfc30d4a)
  2611. )
  2612. (label "L_rouge" (at 116.205 157.48 0) (fields_autoplaced)
  2613. (effects (font (size 1.524 1.524)) (justify left bottom))
  2614. (uuid e3176c81-8bfe-4f81-a17c-603ba4d59d92)
  2615. )
  2616. (label "I2C2_SDL" (at 257.81 160.655 180) (fields_autoplaced)
  2617. (effects (font (size 1.524 1.524)) (justify right bottom))
  2618. (uuid e361df45-3a5d-4b3f-a350-a45c0a667482)
  2619. )
  2620. (label "S2" (at 65.405 170.18 270) (fields_autoplaced)
  2621. (effects (font (size 1.524 1.524)) (justify right bottom))
  2622. (uuid e52fc21a-012a-4667-8934-b320691b4180)
  2623. )
  2624. (label "S7" (at 234.95 135.255 180) (fields_autoplaced)
  2625. (effects (font (size 1.524 1.524)) (justify right bottom))
  2626. (uuid e57e43dd-af0a-4bc6-8de7-f46d41fa21e2)
  2627. )
  2628. (label "S8" (at 234.95 137.795 180) (fields_autoplaced)
  2629. (effects (font (size 1.524 1.524)) (justify right bottom))
  2630. (uuid e599e43b-f4f4-4d38-aa71-3beab369cb0a)
  2631. )
  2632. (label "GND" (at 40.64 30.48 270) (fields_autoplaced)
  2633. (effects (font (size 1.27 1.27)) (justify right bottom))
  2634. (uuid e6028230-379e-464d-8f5f-d1b2b6d9b1d4)
  2635. )
  2636. (label "GND" (at 52.705 147.32 180) (fields_autoplaced)
  2637. (effects (font (size 1.524 1.524)) (justify right bottom))
  2638. (uuid e68fd6f0-f7a4-4e43-b9f4-0b6e3822a84b)
  2639. )
  2640. (label "GND" (at 271.78 99.06 180) (fields_autoplaced)
  2641. (effects (font (size 1.524 1.524)) (justify right bottom))
  2642. (uuid ea85d7cc-1bd6-4990-ba6d-2afc9c5a1a97)
  2643. )
  2644. (label "GND" (at 78.105 83.82 0) (fields_autoplaced)
  2645. (effects (font (size 1.524 1.524)) (justify left bottom))
  2646. (uuid ee5c008b-80f5-4478-9e4a-c5f3e844673f)
  2647. )
  2648. (label "GPIO0" (at 257.81 104.14 0) (fields_autoplaced)
  2649. (effects (font (size 1.27 1.27)) (justify left bottom))
  2650. (uuid eea493ab-b62d-41da-9c92-33ae9dd5522f)
  2651. )
  2652. (label "S5" (at 88.265 170.18 270) (fields_autoplaced)
  2653. (effects (font (size 1.524 1.524)) (justify right bottom))
  2654. (uuid eea903df-32ee-436f-aad9-1b6ab166e523)
  2655. )
  2656. (label "GND" (at 62.23 30.48 180) (fields_autoplaced)
  2657. (effects (font (size 1.27 1.27)) (justify right bottom))
  2658. (uuid ef1bb0d1-7e43-4a3d-9e18-d55112bcb402)
  2659. )
  2660. (label "3.3V" (at 255.27 90.17 0) (fields_autoplaced)
  2661. (effects (font (size 1.524 1.524)) (justify left bottom))
  2662. (uuid f10b8a24-7005-4fdb-b76b-242528e43230)
  2663. )
  2664. (label "S9" (at 234.95 140.335 180) (fields_autoplaced)
  2665. (effects (font (size 1.524 1.524)) (justify right bottom))
  2666. (uuid f69a0247-0249-40fd-a325-a3896a59045c)
  2667. )
  2668. (label "TX" (at 271.78 88.9 180) (fields_autoplaced)
  2669. (effects (font (size 1.524 1.524)) (justify right bottom))
  2670. (uuid f6f095a1-a5e0-40eb-965a-c6d1b7152661)
  2671. )
  2672. (label "USB_OTG_FS_ID" (at 78.105 81.28 0) (fields_autoplaced)
  2673. (effects (font (size 1.524 1.524)) (justify left bottom))
  2674. (uuid f8844f16-5039-432e-8688-286c662c1492)
  2675. )
  2676. (label "GND" (at 137.16 184.15 270) (fields_autoplaced)
  2677. (effects (font (size 1.524 1.524)) (justify right bottom))
  2678. (uuid f978b897-74b3-4456-98fe-ea195a42c839)
  2679. )
  2680. (label "S3" (at 219.075 140.335 180) (fields_autoplaced)
  2681. (effects (font (size 1.524 1.524)) (justify right bottom))
  2682. (uuid fa6646a3-8370-4f6a-be15-c82ebfb5045e)
  2683. )
  2684. (label "GND" (at 116.84 48.26 270) (fields_autoplaced)
  2685. (effects (font (size 1.27 1.27)) (justify right bottom))
  2686. (uuid fb2434aa-e3eb-4f5f-8c58-3f24fc79a938)
  2687. )
  2688. (label "sda" (at 181.61 147.32 0) (fields_autoplaced)
  2689. (effects (font (size 1.524 1.524)) (justify left bottom))
  2690. (uuid fb951a07-a6ae-4f21-a6f4-2c5e51c79fd2)
  2691. )
  2692. (label "GND" (at 142.24 184.15 270) (fields_autoplaced)
  2693. (effects (font (size 1.524 1.524)) (justify right bottom))
  2694. (uuid fc8ee32f-3119-4b9d-b780-3cd40dcdc6b1)
  2695. )
  2696. (symbol (lib_id "global:R") (at 184.15 25.4 0) (unit 1)
  2697. (in_bom yes) (on_board yes) (dnp no)
  2698. (uuid 00000000-0000-0000-0000-000056c61bdd)
  2699. (property "Reference" "R5" (at 186.182 25.4 90)
  2700. (effects (font (size 1.27 1.27)))
  2701. )
  2702. (property "Value" "10K" (at 184.15 25.4 90)
  2703. (effects (font (size 1.27 1.27)))
  2704. )
  2705. (property "Footprint" "R:0805" (at 182.372 25.4 90)
  2706. (effects (font (size 1.27 1.27)) hide)
  2707. )
  2708. (property "Datasheet" "" (at 184.15 25.4 0)
  2709. (effects (font (size 1.27 1.27)) hide)
  2710. )
  2711. (property "Partkeepr" "910" (at 1.27 50.8 0)
  2712. (effects (font (size 1.27 1.27)) hide)
  2713. )
  2714. (pin "1" (uuid e53fb559-cae3-47ee-86c2-03e041a1d078))
  2715. (pin "2" (uuid 0a52a871-f77a-43ac-a1fb-2fbbe8c10005))
  2716. (instances
  2717. (project "proc"
  2718. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2719. (reference "R5") (unit 1)
  2720. )
  2721. )
  2722. )
  2723. )
  2724. (symbol (lib_id "global:R") (at 179.07 25.4 0) (unit 1)
  2725. (in_bom yes) (on_board yes) (dnp no)
  2726. (uuid 00000000-0000-0000-0000-000056c61c77)
  2727. (property "Reference" "R4" (at 181.102 25.4 90)
  2728. (effects (font (size 1.27 1.27)))
  2729. )
  2730. (property "Value" "10K" (at 179.07 25.4 90)
  2731. (effects (font (size 1.27 1.27)))
  2732. )
  2733. (property "Footprint" "R:0805" (at 177.292 25.4 90)
  2734. (effects (font (size 1.27 1.27)) hide)
  2735. )
  2736. (property "Datasheet" "" (at 179.07 25.4 0)
  2737. (effects (font (size 1.27 1.27)) hide)
  2738. )
  2739. (property "Partkeepr" "910" (at 1.27 50.8 0)
  2740. (effects (font (size 1.27 1.27)) hide)
  2741. )
  2742. (pin "1" (uuid 76e5deba-9775-4022-b685-e052d12f30cb))
  2743. (pin "2" (uuid 2aac5a4a-4f32-4e93-ab49-7d519acb9092))
  2744. (instances
  2745. (project "proc"
  2746. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2747. (reference "R4") (unit 1)
  2748. )
  2749. )
  2750. )
  2751. )
  2752. (symbol (lib_id "global:R") (at 173.99 25.4 0) (unit 1)
  2753. (in_bom yes) (on_board yes) (dnp no)
  2754. (uuid 00000000-0000-0000-0000-000056c61cd4)
  2755. (property "Reference" "R3" (at 176.022 25.4 90)
  2756. (effects (font (size 1.27 1.27)))
  2757. )
  2758. (property "Value" "10K" (at 173.99 25.4 90)
  2759. (effects (font (size 1.27 1.27)))
  2760. )
  2761. (property "Footprint" "R:0805" (at 172.212 25.4 90)
  2762. (effects (font (size 1.27 1.27)) hide)
  2763. )
  2764. (property "Datasheet" "" (at 173.99 25.4 0)
  2765. (effects (font (size 1.27 1.27)) hide)
  2766. )
  2767. (property "Partkeepr" "910" (at 1.27 50.8 0)
  2768. (effects (font (size 1.27 1.27)) hide)
  2769. )
  2770. (pin "1" (uuid 5b0fbc56-3057-4ecb-b547-b2895f4f04db))
  2771. (pin "2" (uuid 59911c1b-2802-4164-9f25-4d15d49f79b2))
  2772. (instances
  2773. (project "proc"
  2774. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2775. (reference "R3") (unit 1)
  2776. )
  2777. )
  2778. )
  2779. )
  2780. (symbol (lib_id "conn:CONN_01X02") (at 29.21 41.91 180) (unit 1)
  2781. (in_bom yes) (on_board yes) (dnp no)
  2782. (uuid 00000000-0000-0000-0000-000056c85860)
  2783. (property "Reference" "P7" (at 29.21 45.72 0)
  2784. (effects (font (size 1.27 1.27)))
  2785. )
  2786. (property "Value" "Alim" (at 26.67 41.91 90)
  2787. (effects (font (size 1.27 1.27)))
  2788. )
  2789. (property "Footprint" "Bornier:Bornier2.54_1x2" (at 29.21 41.91 0)
  2790. (effects (font (size 1.27 1.27)) hide)
  2791. )
  2792. (property "Datasheet" "" (at 29.21 41.91 0)
  2793. (effects (font (size 1.27 1.27)) hide)
  2794. )
  2795. (property "Partkeepr" "4" (at 252.73 -38.735 0)
  2796. (effects (font (size 1.27 1.27)) hide)
  2797. )
  2798. (pin "1" (uuid d62a93d3-504f-4ba5-8259-7c465c3cd618))
  2799. (pin "2" (uuid 1b48811c-1817-4839-8b2e-0cc5ee43b428))
  2800. (instances
  2801. (project "proc"
  2802. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2803. (reference "P7") (unit 1)
  2804. )
  2805. )
  2806. )
  2807. )
  2808. (symbol (lib_id "global:C") (at 30.48 187.96 0) (unit 1)
  2809. (in_bom yes) (on_board yes) (dnp no)
  2810. (uuid 00000000-0000-0000-0000-000057054bc2)
  2811. (property "Reference" "C2" (at 31.115 185.42 0)
  2812. (effects (font (size 1.27 1.27)) (justify left))
  2813. )
  2814. (property "Value" "100nF" (at 31.115 190.5 0)
  2815. (effects (font (size 1.27 1.27)) (justify left))
  2816. )
  2817. (property "Footprint" "C:0805" (at 31.4452 191.77 0)
  2818. (effects (font (size 1.27 1.27)) hide)
  2819. )
  2820. (property "Datasheet" "" (at 30.48 187.96 0)
  2821. (effects (font (size 1.27 1.27)) hide)
  2822. )
  2823. (property "Partkeepr" "606" (at -34.925 291.465 0)
  2824. (effects (font (size 1.27 1.27)) hide)
  2825. )
  2826. (pin "1" (uuid 6af8bb8f-d43c-48db-a7e9-9cb107e7cffb))
  2827. (pin "2" (uuid d7695879-e76f-4672-a5b0-a8147758f0c3))
  2828. (instances
  2829. (project "proc"
  2830. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2831. (reference "C2") (unit 1)
  2832. )
  2833. )
  2834. )
  2835. )
  2836. (symbol (lib_id "global:SW_PUSH") (at 267.97 22.225 0) (unit 1)
  2837. (in_bom yes) (on_board yes) (dnp no)
  2838. (uuid 00000000-0000-0000-0000-000057061862)
  2839. (property "Reference" "SW1" (at 271.78 19.431 0)
  2840. (effects (font (size 1.27 1.27)))
  2841. )
  2842. (property "Value" "boot" (at 267.97 24.257 0)
  2843. (effects (font (size 1.27 1.27)))
  2844. )
  2845. (property "Footprint" "SW:1812" (at 267.97 22.225 0)
  2846. (effects (font (size 1.27 1.27)) hide)
  2847. )
  2848. (property "Datasheet" "" (at 267.97 22.225 0)
  2849. (effects (font (size 1.27 1.27)) hide)
  2850. )
  2851. (property "Partkeepr" "200" (at 1.27 44.45 0)
  2852. (effects (font (size 1.27 1.27)) hide)
  2853. )
  2854. (pin "1" (uuid 5d4be9b1-9ff5-47ab-a0d4-49e1d7a7ba5f))
  2855. (pin "2" (uuid 4938653c-bfee-4cb0-9a83-9673cec60202))
  2856. (instances
  2857. (project "proc"
  2858. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2859. (reference "SW1") (unit 1)
  2860. )
  2861. )
  2862. )
  2863. )
  2864. (symbol (lib_id "global:R") (at 270.51 44.45 270) (unit 1)
  2865. (in_bom yes) (on_board yes) (dnp no)
  2866. (uuid 00000000-0000-0000-0000-000057061f55)
  2867. (property "Reference" "R9" (at 270.51 46.482 90)
  2868. (effects (font (size 1.27 1.27)))
  2869. )
  2870. (property "Value" "10K" (at 270.51 44.45 90)
  2871. (effects (font (size 1.27 1.27)))
  2872. )
  2873. (property "Footprint" "R:0805" (at 270.51 42.672 90)
  2874. (effects (font (size 1.27 1.27)) hide)
  2875. )
  2876. (property "Datasheet" "" (at 270.51 44.45 0)
  2877. (effects (font (size 1.27 1.27)) hide)
  2878. )
  2879. (property "Partkeepr" "910" (at 226.06 -224.79 0)
  2880. (effects (font (size 1.27 1.27)) hide)
  2881. )
  2882. (pin "1" (uuid 2af158a3-f1cb-480f-b52c-8f453d950dae))
  2883. (pin "2" (uuid 4f693ee5-f1b7-471b-9bc6-7a1158a305a5))
  2884. (instances
  2885. (project "proc"
  2886. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2887. (reference "R9") (unit 1)
  2888. )
  2889. )
  2890. )
  2891. )
  2892. (symbol (lib_id "global:SW_PUSH") (at 270.51 52.07 0) (unit 1)
  2893. (in_bom yes) (on_board yes) (dnp no)
  2894. (uuid 00000000-0000-0000-0000-000057061f5b)
  2895. (property "Reference" "SW2" (at 274.32 49.276 0)
  2896. (effects (font (size 1.27 1.27)))
  2897. )
  2898. (property "Value" "reset" (at 270.51 54.102 0)
  2899. (effects (font (size 1.27 1.27)))
  2900. )
  2901. (property "Footprint" "SW:1812" (at 270.51 52.07 0)
  2902. (effects (font (size 1.27 1.27)) hide)
  2903. )
  2904. (property "Datasheet" "" (at 270.51 52.07 0)
  2905. (effects (font (size 1.27 1.27)) hide)
  2906. )
  2907. (property "Partkeepr" "200" (at 1.27 104.14 0)
  2908. (effects (font (size 1.27 1.27)) hide)
  2909. )
  2910. (pin "1" (uuid d12cac52-f2a1-4565-9d20-95e4602c8c11))
  2911. (pin "2" (uuid 2503e44f-8ec6-40e3-b782-af5a0b25b301))
  2912. (instances
  2913. (project "proc"
  2914. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2915. (reference "SW2") (unit 1)
  2916. )
  2917. )
  2918. )
  2919. )
  2920. (symbol (lib_id "conn:CONN_01X05") (at 140.97 105.41 0) (unit 1)
  2921. (in_bom yes) (on_board yes) (dnp no)
  2922. (uuid 00000000-0000-0000-0000-000057062f1c)
  2923. (property "Reference" "P8" (at 140.97 97.79 0)
  2924. (effects (font (size 1.27 1.27)))
  2925. )
  2926. (property "Value" "Debug" (at 143.51 105.41 90)
  2927. (effects (font (size 1.27 1.27)))
  2928. )
  2929. (property "Footprint" "PinHeader:PinHeader2.54_1X5" (at 140.97 105.41 0)
  2930. (effects (font (size 1.27 1.27)) hide)
  2931. )
  2932. (property "Datasheet" "" (at 140.97 105.41 0)
  2933. (effects (font (size 1.27 1.27)) hide)
  2934. )
  2935. (property "Partkeepr" "100" (at -139.065 261.62 0)
  2936. (effects (font (size 1.27 1.27)) hide)
  2937. )
  2938. (pin "1" (uuid 20c7bd82-3056-4e31-a7b5-4da1eb216ac8))
  2939. (pin "2" (uuid f7e09954-af1e-40e8-85fa-170ea72380cf))
  2940. (pin "3" (uuid 49866773-75c9-4223-8502-c3a6d4d32a27))
  2941. (pin "4" (uuid 6d17839b-b767-42be-b6ef-7e954c24e99e))
  2942. (pin "5" (uuid 64d94403-5438-4c3f-a5ad-d70789dd755d))
  2943. (instances
  2944. (project "proc"
  2945. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2946. (reference "P8") (unit 1)
  2947. )
  2948. )
  2949. )
  2950. )
  2951. (symbol (lib_id "conn:CONN_01X06") (at 224.155 141.605 0) (unit 1)
  2952. (in_bom yes) (on_board yes) (dnp no)
  2953. (uuid 00000000-0000-0000-0000-0000570cfb57)
  2954. (property "Reference" "P5" (at 224.155 132.715 0)
  2955. (effects (font (size 1.27 1.27)))
  2956. )
  2957. (property "Value" "CONN_01X06" (at 226.695 141.605 90)
  2958. (effects (font (size 1.27 1.27)))
  2959. )
  2960. (property "Footprint" "Bornier:Bornier2.54_1x6" (at 224.155 141.605 0)
  2961. (effects (font (size 1.27 1.27)) hide)
  2962. )
  2963. (property "Datasheet" "" (at 224.155 141.605 0)
  2964. (effects (font (size 1.27 1.27)) hide)
  2965. )
  2966. (property "Partkeepr" "2" (at 4.445 282.575 0)
  2967. (effects (font (size 1.27 1.27)) hide)
  2968. )
  2969. (pin "1" (uuid 36839f4e-b1a5-4061-a10e-d2c06b0982a3))
  2970. (pin "2" (uuid f42716eb-df8e-4745-8b45-aa0a077d069e))
  2971. (pin "3" (uuid 74dda219-2619-4a24-a414-70a507742da1))
  2972. (pin "4" (uuid 830c4e5a-9025-4007-83a1-934dfc51e394))
  2973. (pin "5" (uuid 66e10b0d-a093-4e36-9c96-3017977337d8))
  2974. (pin "6" (uuid f84d5509-f50c-405b-a6f9-c216d7e9549b))
  2975. (instances
  2976. (project "proc"
  2977. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  2978. (reference "P5") (unit 1)
  2979. )
  2980. )
  2981. )
  2982. )
  2983. (symbol (lib_id "global:R") (at 137.16 170.18 180) (unit 1)
  2984. (in_bom yes) (on_board yes) (dnp no)
  2985. (uuid 00000000-0000-0000-0000-0000570e42c5)
  2986. (property "Reference" "R1" (at 135.128 170.18 90)
  2987. (effects (font (size 1.27 1.27)))
  2988. )
  2989. (property "Value" "100" (at 137.16 170.18 90)
  2990. (effects (font (size 1.27 1.27)))
  2991. )
  2992. (property "Footprint" "R:0805" (at 138.938 170.18 90)
  2993. (effects (font (size 1.27 1.27)) hide)
  2994. )
  2995. (property "Datasheet" "" (at 137.16 170.18 0)
  2996. (effects (font (size 1.27 1.27)) hide)
  2997. )
  2998. (property "Partkeepr" "912" (at 273.05 -1.27 0)
  2999. (effects (font (size 1.27 1.27)) hide)
  3000. )
  3001. (pin "1" (uuid 99f132d2-b20b-4bb0-83fc-1e97f07003ba))
  3002. (pin "2" (uuid 4db804b5-43c5-48bc-ad3a-5212816d76a3))
  3003. (instances
  3004. (project "proc"
  3005. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3006. (reference "R1") (unit 1)
  3007. )
  3008. )
  3009. )
  3010. )
  3011. (symbol (lib_id "global:LED") (at 137.16 179.07 90) (unit 1)
  3012. (in_bom yes) (on_board yes) (dnp no)
  3013. (uuid 00000000-0000-0000-0000-0000570e4326)
  3014. (property "Reference" "D1" (at 139.065 183.515 0)
  3015. (effects (font (size 1.27 1.27)))
  3016. )
  3017. (property "Value" "rouge" (at 139.065 177.165 0)
  3018. (effects (font (size 1.27 1.27)))
  3019. )
  3020. (property "Footprint" "LED:0805" (at 137.16 179.07 0)
  3021. (effects (font (size 1.27 1.27)) hide)
  3022. )
  3023. (property "Datasheet" "" (at 137.16 179.07 0)
  3024. (effects (font (size 1.27 1.27)) hide)
  3025. )
  3026. (property "Partkeepr" "1103" (at 317.5 314.96 0)
  3027. (effects (font (size 1.27 1.27)) hide)
  3028. )
  3029. (pin "1" (uuid 3c43f88c-43e9-488c-975f-ec94657142ee))
  3030. (pin "2" (uuid 41b65eaa-4e44-40e3-ad39-11ec86755cfb))
  3031. (instances
  3032. (project "proc"
  3033. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3034. (reference "D1") (unit 1)
  3035. )
  3036. )
  3037. )
  3038. )
  3039. (symbol (lib_id "global:R") (at 132.08 170.18 180) (unit 1)
  3040. (in_bom yes) (on_board yes) (dnp no)
  3041. (uuid 00000000-0000-0000-0000-0000570e4510)
  3042. (property "Reference" "R2" (at 130.048 170.18 90)
  3043. (effects (font (size 1.27 1.27)))
  3044. )
  3045. (property "Value" "100" (at 132.08 170.18 90)
  3046. (effects (font (size 1.27 1.27)))
  3047. )
  3048. (property "Footprint" "R:0805" (at 133.858 170.18 90)
  3049. (effects (font (size 1.27 1.27)) hide)
  3050. )
  3051. (property "Datasheet" "" (at 132.08 170.18 0)
  3052. (effects (font (size 1.27 1.27)) hide)
  3053. )
  3054. (property "Partkeepr" "912" (at 262.89 -1.27 0)
  3055. (effects (font (size 1.27 1.27)) hide)
  3056. )
  3057. (pin "1" (uuid b31bdfbd-bafa-4d78-9979-3efcbf092826))
  3058. (pin "2" (uuid bbafcbd6-3fa4-4c5b-8dc2-f25ec15fa1be))
  3059. (instances
  3060. (project "proc"
  3061. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3062. (reference "R2") (unit 1)
  3063. )
  3064. )
  3065. )
  3066. )
  3067. (symbol (lib_id "global:LED") (at 132.08 179.07 90) (unit 1)
  3068. (in_bom yes) (on_board yes) (dnp no)
  3069. (uuid 00000000-0000-0000-0000-0000570e4516)
  3070. (property "Reference" "D2" (at 133.35 183.515 0)
  3071. (effects (font (size 1.27 1.27)))
  3072. )
  3073. (property "Value" "vert" (at 133.985 176.53 0)
  3074. (effects (font (size 1.27 1.27)))
  3075. )
  3076. (property "Footprint" "LED:0805" (at 132.08 179.07 0)
  3077. (effects (font (size 1.27 1.27)) hide)
  3078. )
  3079. (property "Datasheet" "" (at 132.08 179.07 0)
  3080. (effects (font (size 1.27 1.27)) hide)
  3081. )
  3082. (property "Partkeepr" "1106" (at 312.42 309.88 0)
  3083. (effects (font (size 1.27 1.27)) hide)
  3084. )
  3085. (pin "1" (uuid 02956ccd-9f49-4a6f-a28f-a98e04ac044d))
  3086. (pin "2" (uuid 20c8a90c-e2ba-41ca-860a-3f0a749376af))
  3087. (instances
  3088. (project "proc"
  3089. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3090. (reference "D2") (unit 1)
  3091. )
  3092. )
  3093. )
  3094. )
  3095. (symbol (lib_id "conn:CONN_01X01") (at 172.72 174.625 0) (unit 1)
  3096. (in_bom yes) (on_board yes) (dnp no)
  3097. (uuid 00000000-0000-0000-0000-000057237b4f)
  3098. (property "Reference" "P3" (at 172.72 172.085 0)
  3099. (effects (font (size 1.27 1.27)))
  3100. )
  3101. (property "Value" "MH" (at 175.26 174.625 90)
  3102. (effects (font (size 1.27 1.27)))
  3103. )
  3104. (property "Footprint" "MH:MH3mm" (at 172.72 174.625 0)
  3105. (effects (font (size 1.27 1.27)) hide)
  3106. )
  3107. (property "Datasheet" "" (at 172.72 174.625 0)
  3108. (effects (font (size 1.27 1.27)) hide)
  3109. )
  3110. (property "Partkeepr" "NC" (at 1.27 349.25 0)
  3111. (effects (font (size 1.27 1.27)) hide)
  3112. )
  3113. (pin "1" (uuid e4e100dd-36bd-45ae-aae9-7c5e8556c788))
  3114. (instances
  3115. (project "proc"
  3116. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3117. (reference "P3") (unit 1)
  3118. )
  3119. )
  3120. )
  3121. )
  3122. (symbol (lib_id "conn:CONN_01X01") (at 172.72 188.595 0) (unit 1)
  3123. (in_bom yes) (on_board yes) (dnp no)
  3124. (uuid 00000000-0000-0000-0000-000057237bda)
  3125. (property "Reference" "P4" (at 172.72 186.055 0)
  3126. (effects (font (size 1.27 1.27)))
  3127. )
  3128. (property "Value" "MH" (at 175.26 188.595 90)
  3129. (effects (font (size 1.27 1.27)))
  3130. )
  3131. (property "Footprint" "MH:MH3mm" (at 172.72 188.595 0)
  3132. (effects (font (size 1.27 1.27)) hide)
  3133. )
  3134. (property "Datasheet" "" (at 172.72 188.595 0)
  3135. (effects (font (size 1.27 1.27)) hide)
  3136. )
  3137. (property "Partkeepr" "NC" (at 1.27 377.19 0)
  3138. (effects (font (size 1.27 1.27)) hide)
  3139. )
  3140. (pin "1" (uuid 357b835d-5c4b-4e3f-9e98-0225526641db))
  3141. (instances
  3142. (project "proc"
  3143. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3144. (reference "P4") (unit 1)
  3145. )
  3146. )
  3147. )
  3148. )
  3149. (symbol (lib_id "conn:CONN_01X01") (at 157.48 174.625 0) (unit 1)
  3150. (in_bom yes) (on_board yes) (dnp no)
  3151. (uuid 00000000-0000-0000-0000-000057237c51)
  3152. (property "Reference" "P1" (at 157.48 172.085 0)
  3153. (effects (font (size 1.27 1.27)))
  3154. )
  3155. (property "Value" "MH" (at 160.02 174.625 90)
  3156. (effects (font (size 1.27 1.27)))
  3157. )
  3158. (property "Footprint" "MH:MH3mm" (at 157.48 174.625 0)
  3159. (effects (font (size 1.27 1.27)) hide)
  3160. )
  3161. (property "Datasheet" "" (at 157.48 174.625 0)
  3162. (effects (font (size 1.27 1.27)) hide)
  3163. )
  3164. (property "Partkeepr" "NC" (at 1.27 349.25 0)
  3165. (effects (font (size 1.27 1.27)) hide)
  3166. )
  3167. (pin "1" (uuid a5ceaed9-35d0-4ede-bec7-6f6f545a7dc5))
  3168. (instances
  3169. (project "proc"
  3170. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3171. (reference "P1") (unit 1)
  3172. )
  3173. )
  3174. )
  3175. )
  3176. (symbol (lib_id "conn:CONN_01X01") (at 157.48 189.865 0) (unit 1)
  3177. (in_bom yes) (on_board yes) (dnp no)
  3178. (uuid 00000000-0000-0000-0000-000057237cc8)
  3179. (property "Reference" "P2" (at 157.48 187.325 0)
  3180. (effects (font (size 1.27 1.27)))
  3181. )
  3182. (property "Value" "MH" (at 160.02 189.865 90)
  3183. (effects (font (size 1.27 1.27)))
  3184. )
  3185. (property "Footprint" "MH:MH3mm" (at 157.48 189.865 0)
  3186. (effects (font (size 1.27 1.27)) hide)
  3187. )
  3188. (property "Datasheet" "" (at 157.48 189.865 0)
  3189. (effects (font (size 1.27 1.27)) hide)
  3190. )
  3191. (property "Partkeepr" "NC" (at 1.27 379.73 0)
  3192. (effects (font (size 1.27 1.27)) hide)
  3193. )
  3194. (pin "1" (uuid 3d6d9997-164f-4267-b505-b353c233f017))
  3195. (instances
  3196. (project "proc"
  3197. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3198. (reference "P2") (unit 1)
  3199. )
  3200. )
  3201. )
  3202. )
  3203. (symbol (lib_id "global:Battery") (at 240.03 39.37 0) (unit 1)
  3204. (in_bom yes) (on_board yes) (dnp no)
  3205. (uuid 00000000-0000-0000-0000-00005725fa6c)
  3206. (property "Reference" "BT1" (at 242.57 38.1 0)
  3207. (effects (font (size 1.27 1.27)) (justify left))
  3208. )
  3209. (property "Value" "Battery" (at 242.57 40.64 0)
  3210. (effects (font (size 1.27 1.27)) (justify left))
  3211. )
  3212. (property "Footprint" "Connector:batterie" (at 240.03 38.354 90)
  3213. (effects (font (size 1.27 1.27)) hide)
  3214. )
  3215. (property "Datasheet" "" (at 240.03 38.354 90)
  3216. (effects (font (size 1.27 1.27)) hide)
  3217. )
  3218. (property "Partkeepr" "3" (at 240.03 39.37 0)
  3219. (effects (font (size 1.27 1.27)) hide)
  3220. )
  3221. (pin "1" (uuid dd898406-c060-421b-8450-76f2fb7a24d8))
  3222. (pin "2" (uuid aab80474-dfb4-489e-aa0d-5b4dfcd36680))
  3223. (instances
  3224. (project "proc"
  3225. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3226. (reference "BT1") (unit 1)
  3227. )
  3228. )
  3229. )
  3230. )
  3231. (symbol (lib_id "global:R") (at 194.31 148.59 0) (unit 1)
  3232. (in_bom yes) (on_board yes) (dnp no)
  3233. (uuid 00000000-0000-0000-0000-00005729f1b3)
  3234. (property "Reference" "R10" (at 196.342 148.59 90)
  3235. (effects (font (size 1.27 1.27)))
  3236. )
  3237. (property "Value" "10K" (at 194.31 148.59 90)
  3238. (effects (font (size 1.27 1.27)))
  3239. )
  3240. (property "Footprint" "R:0805" (at 192.532 148.59 90)
  3241. (effects (font (size 1.27 1.27)) hide)
  3242. )
  3243. (property "Datasheet" "" (at 194.31 148.59 0)
  3244. (effects (font (size 1.27 1.27)) hide)
  3245. )
  3246. (property "Partkeepr" "910" (at 1.27 297.18 0)
  3247. (effects (font (size 1.27 1.27)) hide)
  3248. )
  3249. (pin "1" (uuid b20767ab-7a58-4fd5-a842-f1874d4a3284))
  3250. (pin "2" (uuid 5ce4efc0-95a4-42de-9b47-ffd120ad8e23))
  3251. (instances
  3252. (project "proc"
  3253. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3254. (reference "R10") (unit 1)
  3255. )
  3256. )
  3257. )
  3258. )
  3259. (symbol (lib_id "ST:M24C32") (at 170.18 146.05 180) (unit 1)
  3260. (in_bom yes) (on_board yes) (dnp no)
  3261. (uuid 00000000-0000-0000-0000-000057e3bdff)
  3262. (property "Reference" "U2" (at 165.1 144.78 0)
  3263. (effects (font (size 1.524 1.524)))
  3264. )
  3265. (property "Value" "M24C32" (at 170.18 157.48 0)
  3266. (effects (font (size 1.524 1.524)))
  3267. )
  3268. (property "Footprint" "U:SO8N" (at 170.18 146.05 0)
  3269. (effects (font (size 1.524 1.524)) hide)
  3270. )
  3271. (property "Datasheet" "" (at 170.18 146.05 0)
  3272. (effects (font (size 1.524 1.524)) hide)
  3273. )
  3274. (property "Partkeepr" "1700" (at 339.09 0 0)
  3275. (effects (font (size 1.27 1.27)) hide)
  3276. )
  3277. (pin "1" (uuid 66fd7abb-7380-4fed-b46b-db8137ef270e))
  3278. (pin "2" (uuid 11232156-7ea8-4495-9523-db41469ad725))
  3279. (pin "3" (uuid 57dc07ad-6536-4427-8be9-7bb9ddc1ebd8))
  3280. (pin "4" (uuid b983c6c4-5617-4d2e-92f7-b7eb6e1c234f))
  3281. (pin "5" (uuid a7d8ebd5-7257-4295-9739-3e062bc71053))
  3282. (pin "6" (uuid c0ea19a2-f571-43b4-8004-12c6e9c66196))
  3283. (pin "7" (uuid 2a00d1c4-7ecf-4e77-8155-274b4450a783))
  3284. (pin "8" (uuid 97ee4c98-1944-4e6a-b650-22845364c6f4))
  3285. (instances
  3286. (project "proc"
  3287. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3288. (reference "U2") (unit 1)
  3289. )
  3290. )
  3291. )
  3292. )
  3293. (symbol (lib_id "ST:M41T83") (at 208.28 22.86 180) (unit 1)
  3294. (in_bom yes) (on_board yes) (dnp no)
  3295. (uuid 00000000-0000-0000-0000-000057e3c0bf)
  3296. (property "Reference" "U3" (at 208.28 58.42 0)
  3297. (effects (font (size 1.524 1.524)))
  3298. )
  3299. (property "Value" "M41T83" (at 208.28 27.94 0)
  3300. (effects (font (size 1.524 1.524)))
  3301. )
  3302. (property "Footprint" "U:SOX18" (at 208.28 22.86 0)
  3303. (effects (font (size 1.524 1.524)) hide)
  3304. )
  3305. (property "Datasheet" "" (at 208.28 22.86 0)
  3306. (effects (font (size 1.524 1.524)) hide)
  3307. )
  3308. (property "Partkeepr" "1600" (at 415.29 0 0)
  3309. (effects (font (size 1.27 1.27)) hide)
  3310. )
  3311. (pin "1" (uuid 5ab43838-6281-4ec4-b8fd-0491b2e26846))
  3312. (pin "10" (uuid 00beb7c9-4cbc-4f6c-b5ae-bb97511f1b23))
  3313. (pin "11" (uuid 3b8ab805-e665-469a-a451-4b28d87fca01))
  3314. (pin "12" (uuid f1ddc3d7-79b4-4c15-9cf8-60d632f9e78b))
  3315. (pin "13" (uuid 906dc7d1-e5b0-4e84-a603-d9f324d35a8e))
  3316. (pin "14" (uuid c0d3061a-4c5a-447a-9de2-3869ba6aaa27))
  3317. (pin "15" (uuid 1f2ddadf-a7ef-420c-ab37-124be8c73947))
  3318. (pin "16" (uuid 37f064a7-8f98-457c-be76-bd1cef4d3280))
  3319. (pin "17" (uuid 2d39f751-92d3-431a-9f45-43e54fd2c8af))
  3320. (pin "18" (uuid 19b1dd7e-e68a-43e7-8f4c-9a6de1ba91e2))
  3321. (pin "2" (uuid ef805683-558b-44f4-a1fe-3fe657474b76))
  3322. (pin "3" (uuid ca1a132d-e902-421d-a0e0-b47a874736ea))
  3323. (pin "4" (uuid 67e6e9b7-9dfd-4f2f-bc7f-80c829893a8f))
  3324. (pin "5" (uuid dae5c794-6d69-4ff6-bd43-485cf3ab7cac))
  3325. (pin "6" (uuid d6dec7cc-a3d3-4220-990e-62e0d47e8c81))
  3326. (pin "7" (uuid b6307f26-09c4-48d8-9890-7c1fbaf94df7))
  3327. (pin "8" (uuid 500285d7-9d55-437d-a3b6-7f23f2914532))
  3328. (pin "9" (uuid 50e545b0-8099-4740-a54f-4e87da0801d6))
  3329. (instances
  3330. (project "proc"
  3331. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3332. (reference "U3") (unit 1)
  3333. )
  3334. )
  3335. )
  3336. )
  3337. (symbol (lib_id "global:C") (at 267.97 27.94 270) (unit 1)
  3338. (in_bom yes) (on_board yes) (dnp no)
  3339. (uuid 00000000-0000-0000-0000-000057e50214)
  3340. (property "Reference" "C6" (at 270.51 28.575 0)
  3341. (effects (font (size 1.27 1.27)) (justify left))
  3342. )
  3343. (property "Value" "1µF" (at 265.43 28.575 0)
  3344. (effects (font (size 1.27 1.27)) (justify left))
  3345. )
  3346. (property "Footprint" "C:0805" (at 264.16 28.9052 0)
  3347. (effects (font (size 1.27 1.27)) hide)
  3348. )
  3349. (property "Datasheet" "" (at 267.97 27.94 0)
  3350. (effects (font (size 1.27 1.27)) hide)
  3351. )
  3352. (property "Partkeepr" "0606" (at 240.03 -238.76 0)
  3353. (effects (font (size 1.27 1.27)) hide)
  3354. )
  3355. (pin "1" (uuid 5dc3cf1f-2e87-462f-a3a5-88066f97f3a1))
  3356. (pin "2" (uuid 56cc6b4c-40f3-496d-b5e4-63240b13ec42))
  3357. (instances
  3358. (project "proc"
  3359. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3360. (reference "C6") (unit 1)
  3361. )
  3362. )
  3363. )
  3364. )
  3365. (symbol (lib_id "global:R") (at 267.97 15.875 270) (unit 1)
  3366. (in_bom yes) (on_board yes) (dnp no)
  3367. (uuid 00000000-0000-0000-0000-000057e50ded)
  3368. (property "Reference" "R8" (at 267.97 17.907 90)
  3369. (effects (font (size 1.27 1.27)))
  3370. )
  3371. (property "Value" "100K" (at 267.97 15.875 90)
  3372. (effects (font (size 1.27 1.27)))
  3373. )
  3374. (property "Footprint" "R:0805" (at 267.97 14.097 90)
  3375. (effects (font (size 1.27 1.27)) hide)
  3376. )
  3377. (property "Datasheet" "" (at 267.97 15.875 0)
  3378. (effects (font (size 1.27 1.27)) hide)
  3379. )
  3380. (property "Partkeepr" "0916" (at 252.095 -250.825 0)
  3381. (effects (font (size 1.27 1.27)) hide)
  3382. )
  3383. (pin "1" (uuid 83c7a9ab-f353-45d3-b3e9-93bfd7ac0988))
  3384. (pin "2" (uuid 84c094ef-4769-4fe2-bcc5-cdd1e523867b))
  3385. (instances
  3386. (project "proc"
  3387. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3388. (reference "R8") (unit 1)
  3389. )
  3390. )
  3391. )
  3392. )
  3393. (symbol (lib_id "global:C") (at 270.51 59.69 270) (unit 1)
  3394. (in_bom yes) (on_board yes) (dnp no)
  3395. (uuid 00000000-0000-0000-0000-000057e518cc)
  3396. (property "Reference" "C7" (at 273.05 60.325 0)
  3397. (effects (font (size 1.27 1.27)) (justify left))
  3398. )
  3399. (property "Value" "100nF" (at 267.97 60.325 0)
  3400. (effects (font (size 1.27 1.27)) (justify left))
  3401. )
  3402. (property "Footprint" "C:0805" (at 266.7 60.6552 0)
  3403. (effects (font (size 1.27 1.27)) hide)
  3404. )
  3405. (property "Datasheet" "" (at 270.51 59.69 0)
  3406. (effects (font (size 1.27 1.27)) hide)
  3407. )
  3408. (property "Partkeepr" "606" (at 210.82 -209.55 0)
  3409. (effects (font (size 1.27 1.27)) hide)
  3410. )
  3411. (pin "1" (uuid 48250c20-6cfe-4b71-9272-f87d3982305a))
  3412. (pin "2" (uuid 99930e5d-9239-4318-b94a-cc068343c12e))
  3413. (instances
  3414. (project "proc"
  3415. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3416. (reference "C7") (unit 1)
  3417. )
  3418. )
  3419. )
  3420. )
  3421. (symbol (lib_id "conn:Micro_USB") (at 65.405 78.74 0) (unit 1)
  3422. (in_bom yes) (on_board yes) (dnp no)
  3423. (uuid 00000000-0000-0000-0000-000059256a87)
  3424. (property "Reference" "J1" (at 71.755 87.63 0)
  3425. (effects (font (size 1.524 1.524)))
  3426. )
  3427. (property "Value" "Micro_USB" (at 66.675 69.85 0)
  3428. (effects (font (size 1.524 1.524)))
  3429. )
  3430. (property "Footprint" "Connector:Micro-USB" (at 70.485 83.82 0)
  3431. (effects (font (size 1.524 1.524)) hide)
  3432. )
  3433. (property "Datasheet" "" (at 70.485 83.82 0)
  3434. (effects (font (size 1.524 1.524)) hide)
  3435. )
  3436. (property "Partkeepr" "50" (at -95.885 171.45 0)
  3437. (effects (font (size 1.27 1.27)) hide)
  3438. )
  3439. (pin "0" (uuid e7d1cf28-5b71-4cd2-9a3f-a76076f35404))
  3440. (pin "1" (uuid 14a740eb-b4b2-4746-8f46-552232f036f5))
  3441. (pin "2" (uuid 518c8991-1c1a-4791-914a-56f527a384f7))
  3442. (pin "3" (uuid a1d799ce-c682-4d47-911d-c505192f1227))
  3443. (pin "4" (uuid 98bf53d2-b699-409a-a0fa-bfc3d39fd22a))
  3444. (pin "5" (uuid 007fad06-0861-4e10-9571-0a55370a009d))
  3445. (instances
  3446. (project "proc"
  3447. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3448. (reference "J1") (unit 1)
  3449. )
  3450. )
  3451. )
  3452. )
  3453. (symbol (lib_id "ST:STM32F401RC") (at 84.455 138.43 0) (unit 1)
  3454. (in_bom yes) (on_board yes) (dnp no)
  3455. (uuid 00000000-0000-0000-0000-0000592dbf4d)
  3456. (property "Reference" "U1" (at 109.855 166.37 0)
  3457. (effects (font (size 1.524 1.524)))
  3458. )
  3459. (property "Value" "STM32F401RC" (at 83.185 156.21 0)
  3460. (effects (font (size 1.524 1.524)))
  3461. )
  3462. (property "Footprint" "U:LQFP64" (at 53.975 154.94 0)
  3463. (effects (font (size 1.524 1.524)) hide)
  3464. )
  3465. (property "Datasheet" "" (at 53.975 154.94 0)
  3466. (effects (font (size 1.524 1.524)) hide)
  3467. )
  3468. (property "Partkeepr" "2102" (at 1.27 278.13 0)
  3469. (effects (font (size 1.27 1.27)) hide)
  3470. )
  3471. (pin "1" (uuid 2a24203b-775b-4e87-8773-e04660d98099))
  3472. (pin "10" (uuid 34fb610c-bf1f-43fe-b3f6-883fdd7a409f))
  3473. (pin "11" (uuid 2bb2f070-333f-43f3-b836-43af5a4341ea))
  3474. (pin "12" (uuid 81c73015-aaf8-48a1-a6c5-1022a1f8899b))
  3475. (pin "13" (uuid 1c5b86f7-1d24-4d59-b5d1-34f209b3b982))
  3476. (pin "14" (uuid 5315f2b5-f04d-4245-bc0c-263e8fc07362))
  3477. (pin "15" (uuid 7c7069f8-bf7b-4a91-85ee-aa7f3b9b50f4))
  3478. (pin "16" (uuid 89172958-9ddf-4ea5-9ac6-7e4ac2eafc27))
  3479. (pin "17" (uuid d03b2591-ae09-418f-b2e4-e41743f8cad8))
  3480. (pin "18" (uuid ecb49b2f-8020-4aa1-9d3f-1b49cdf00b11))
  3481. (pin "19" (uuid 7f36df90-3b17-4d65-95bd-f02d4cb26a44))
  3482. (pin "2" (uuid 024c6a74-a590-458e-acb8-2c1ad4a055dc))
  3483. (pin "20" (uuid ca192db0-8500-43f7-bdf8-55077f59d5b0))
  3484. (pin "21" (uuid 21e0a0d1-f7d4-4717-b649-894936594231))
  3485. (pin "22" (uuid 47843965-ee14-4ae3-b8ed-ecc010dd6930))
  3486. (pin "23" (uuid dfd0e49d-c9e3-42f9-a738-f8d3aa28505b))
  3487. (pin "24" (uuid 4049ef1a-48ee-4714-9cc9-169136b47434))
  3488. (pin "25" (uuid 4892527a-e03c-4205-8674-d34e2aa7236d))
  3489. (pin "26" (uuid b33ffa8a-d5bd-4928-a393-64c7909ac175))
  3490. (pin "27" (uuid 65171539-c610-457d-b565-6710aa620d43))
  3491. (pin "28" (uuid ee11f18d-a463-4aee-a423-77bb654ee242))
  3492. (pin "29" (uuid 2920e631-a968-49ca-8845-1bb1993952a6))
  3493. (pin "3" (uuid b46a2b5a-e99e-440c-b3e5-ae8154fabdae))
  3494. (pin "30" (uuid dc0aeb8b-7d7e-4ec8-ab78-9451b77059eb))
  3495. (pin "31" (uuid 964b91c6-c477-4545-9dd5-0f92bd5e5363))
  3496. (pin "32" (uuid db6ecdc2-9fd4-4845-a67e-48de58f37aa4))
  3497. (pin "33" (uuid 1a3ae5a2-dc8a-425e-a691-e67874ccc6cb))
  3498. (pin "34" (uuid 465a0f82-9713-4e42-ae96-ef215f9b3cfc))
  3499. (pin "35" (uuid 94b25dd8-820f-4a9f-a4d2-fa7cadc2ec6a))
  3500. (pin "36" (uuid 2a818093-0760-4a99-ab7c-1983f69dd33a))
  3501. (pin "37" (uuid 220de544-dda7-411a-9461-e4e12013cfff))
  3502. (pin "38" (uuid 1165dcb5-d6fa-4dbf-af49-bd40f8434a3d))
  3503. (pin "39" (uuid 5091ae80-4e1d-4b39-9b95-5311bb48979b))
  3504. (pin "4" (uuid d6b310b3-b79b-4daf-abf0-8890c9e7a40e))
  3505. (pin "40" (uuid e240bf5c-9468-4d6e-a233-0e3603f76c7f))
  3506. (pin "41" (uuid 0611d7ad-cff4-417c-a6e3-7b7d2ff14148))
  3507. (pin "42" (uuid 000d23c5-c0b9-4b68-86be-eab36f9c5629))
  3508. (pin "43" (uuid df2840f5-bbbc-446b-82ee-0b7a125ee43b))
  3509. (pin "44" (uuid cce23a5f-2211-4a7e-a531-8fad4b3eb37c))
  3510. (pin "45" (uuid f77b900d-200b-456f-a333-699cffdc4e84))
  3511. (pin "46" (uuid 0f6b18ef-1bee-47f9-8e72-570083268e11))
  3512. (pin "47" (uuid 217f856b-add5-4598-aeff-9b8fe4ddd34c))
  3513. (pin "48" (uuid df96d105-f33d-4531-8eab-ebf6de2567b2))
  3514. (pin "49" (uuid 84204078-f178-40bd-910a-fb3e81d8df32))
  3515. (pin "5" (uuid 538714a0-dca9-4a04-b6b0-d5af4911d026))
  3516. (pin "50" (uuid 0339010a-02cf-4c13-a545-4427244fcac4))
  3517. (pin "51" (uuid fc7062e4-00d8-4cb4-90bc-3a2850e9a5d3))
  3518. (pin "52" (uuid 01389e51-bdd3-49c6-ac79-f6df6704153c))
  3519. (pin "53" (uuid 52c0e656-04a3-4c7e-8cb7-ed28e61c4489))
  3520. (pin "54" (uuid 9789cab2-8f31-485e-b6ab-e957a9c5dec2))
  3521. (pin "55" (uuid 73ee06d8-d00e-4461-88a9-441f8d234406))
  3522. (pin "56" (uuid 7d6e4181-7c05-4c26-968a-2719f56ec0fa))
  3523. (pin "57" (uuid 2d11438e-2054-4b98-93b6-9c3e6676b189))
  3524. (pin "58" (uuid 75dc5f52-d95f-4d38-9492-e354351cc8ec))
  3525. (pin "59" (uuid a59e0563-9202-4629-bd8d-10a588d49982))
  3526. (pin "6" (uuid 641593af-6ca3-4588-aba5-9b13a07a6a29))
  3527. (pin "60" (uuid fd663e48-2d36-469b-bdb6-341351b89d83))
  3528. (pin "61" (uuid f8edd214-6b79-4830-b073-31173b8cb730))
  3529. (pin "62" (uuid d2f39944-b3bc-4d72-9b02-563074216ac2))
  3530. (pin "63" (uuid 06814ea2-6721-4e12-a54c-53798adfdb91))
  3531. (pin "64" (uuid 04ff3900-dea1-4766-8ec1-af3d46ebc81f))
  3532. (pin "7" (uuid bcaf809f-a47a-4682-8e1e-d90fd63ecee5))
  3533. (pin "8" (uuid 6f1dfced-8001-4b63-bcc6-f9c68a6177aa))
  3534. (pin "9" (uuid 338ce6da-2a8b-4802-9ff9-505b3bce25af))
  3535. (instances
  3536. (project "proc"
  3537. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3538. (reference "U1") (unit 1)
  3539. )
  3540. )
  3541. )
  3542. )
  3543. (symbol (lib_id "global:Crystal") (at 34.29 130.81 270) (unit 1)
  3544. (in_bom yes) (on_board yes) (dnp no)
  3545. (uuid 00000000-0000-0000-0000-0000592e1245)
  3546. (property "Reference" "Y1" (at 38.1 130.81 0)
  3547. (effects (font (size 1.27 1.27)))
  3548. )
  3549. (property "Value" "25Mhz" (at 30.48 130.81 0)
  3550. (effects (font (size 1.27 1.27)))
  3551. )
  3552. (property "Footprint" "Y:5032" (at 34.29 130.81 0)
  3553. (effects (font (size 1.27 1.27)) hide)
  3554. )
  3555. (property "Datasheet" "" (at 34.29 130.81 0)
  3556. (effects (font (size 1.27 1.27)) hide)
  3557. )
  3558. (property "Partkeepr" "1650" (at -97.79 97.79 0)
  3559. (effects (font (size 1.27 1.27)) hide)
  3560. )
  3561. (pin "1" (uuid 1ab2bf36-53e6-4587-ae19-41526f622911))
  3562. (pin "2" (uuid 7cc1960d-1334-402c-aab1-634237251f06))
  3563. (instances
  3564. (project "proc"
  3565. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3566. (reference "Y1") (unit 1)
  3567. )
  3568. )
  3569. )
  3570. )
  3571. (symbol (lib_id "global:C") (at 23.495 134.62 270) (unit 1)
  3572. (in_bom yes) (on_board yes) (dnp no)
  3573. (uuid 00000000-0000-0000-0000-0000592e1b87)
  3574. (property "Reference" "C10" (at 26.035 135.255 0)
  3575. (effects (font (size 1.27 1.27)) (justify left))
  3576. )
  3577. (property "Value" "22pF" (at 20.955 135.255 0)
  3578. (effects (font (size 1.27 1.27)) (justify left))
  3579. )
  3580. (property "Footprint" "C:0603" (at 19.685 135.5852 0)
  3581. (effects (font (size 1.27 1.27)) hide)
  3582. )
  3583. (property "Datasheet" "" (at 23.495 134.62 0)
  3584. (effects (font (size 1.27 1.27)) hide)
  3585. )
  3586. (property "Partkeepr" "600" (at -112.395 112.395 0)
  3587. (effects (font (size 1.27 1.27)) hide)
  3588. )
  3589. (pin "1" (uuid e03fd983-fe35-4e03-bc3f-09d38b726912))
  3590. (pin "2" (uuid a06aab30-fccb-4bd0-97e8-ef6d8a8d05d1))
  3591. (instances
  3592. (project "proc"
  3593. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3594. (reference "C10") (unit 1)
  3595. )
  3596. )
  3597. )
  3598. )
  3599. (symbol (lib_id "global:C") (at 23.495 127 270) (unit 1)
  3600. (in_bom yes) (on_board yes) (dnp no)
  3601. (uuid 00000000-0000-0000-0000-0000592e1cb0)
  3602. (property "Reference" "C11" (at 26.035 127.635 0)
  3603. (effects (font (size 1.27 1.27)) (justify left))
  3604. )
  3605. (property "Value" "22pF" (at 20.955 127.635 0)
  3606. (effects (font (size 1.27 1.27)) (justify left))
  3607. )
  3608. (property "Footprint" "C:0603" (at 19.685 127.9652 0)
  3609. (effects (font (size 1.27 1.27)) hide)
  3610. )
  3611. (property "Datasheet" "" (at 23.495 127 0)
  3612. (effects (font (size 1.27 1.27)) hide)
  3613. )
  3614. (property "Partkeepr" "600" (at -104.775 104.775 0)
  3615. (effects (font (size 1.27 1.27)) hide)
  3616. )
  3617. (pin "1" (uuid 6889a9c9-fdc6-40f6-9cdd-ff2a4d5dc113))
  3618. (pin "2" (uuid 56427218-eb34-4fdc-8d8c-49eaff2b0fab))
  3619. (instances
  3620. (project "proc"
  3621. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3622. (reference "C11") (unit 1)
  3623. )
  3624. )
  3625. )
  3626. )
  3627. (symbol (lib_id "global:C") (at 60.96 187.96 0) (unit 1)
  3628. (in_bom yes) (on_board yes) (dnp no)
  3629. (uuid 00000000-0000-0000-0000-0000592e7e79)
  3630. (property "Reference" "C13" (at 61.595 185.42 0)
  3631. (effects (font (size 1.27 1.27)) (justify left))
  3632. )
  3633. (property "Value" "100nF" (at 61.595 190.5 0)
  3634. (effects (font (size 1.27 1.27)) (justify left))
  3635. )
  3636. (property "Footprint" "C:0805" (at 61.9252 191.77 0)
  3637. (effects (font (size 1.27 1.27)) hide)
  3638. )
  3639. (property "Datasheet" "" (at 60.96 187.96 0)
  3640. (effects (font (size 1.27 1.27)) hide)
  3641. )
  3642. (property "Partkeepr" "606" (at -41.275 370.205 0)
  3643. (effects (font (size 1.27 1.27)) hide)
  3644. )
  3645. (pin "1" (uuid 0b204111-4541-428f-b306-5da3039e3bb8))
  3646. (pin "2" (uuid fa1be591-78dd-4364-9228-069924ae2a92))
  3647. (instances
  3648. (project "proc"
  3649. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3650. (reference "C13") (unit 1)
  3651. )
  3652. )
  3653. )
  3654. )
  3655. (symbol (lib_id "global:C") (at 68.58 187.96 0) (unit 1)
  3656. (in_bom yes) (on_board yes) (dnp no)
  3657. (uuid 00000000-0000-0000-0000-0000592e8599)
  3658. (property "Reference" "C14" (at 69.215 185.42 0)
  3659. (effects (font (size 1.27 1.27)) (justify left))
  3660. )
  3661. (property "Value" "100nF" (at 69.215 190.5 0)
  3662. (effects (font (size 1.27 1.27)) (justify left))
  3663. )
  3664. (property "Footprint" "C:0805" (at 69.5452 191.77 0)
  3665. (effects (font (size 1.27 1.27)) hide)
  3666. )
  3667. (property "Datasheet" "" (at 68.58 187.96 0)
  3668. (effects (font (size 1.27 1.27)) hide)
  3669. )
  3670. (property "Partkeepr" "606" (at -55.88 309.88 0)
  3671. (effects (font (size 1.27 1.27)) hide)
  3672. )
  3673. (pin "1" (uuid c5b5d258-ad6d-4829-b53f-8b1ec24f50ff))
  3674. (pin "2" (uuid f391df5e-395b-48a9-9ae0-7ea01f3395f7))
  3675. (instances
  3676. (project "proc"
  3677. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3678. (reference "C14") (unit 1)
  3679. )
  3680. )
  3681. )
  3682. )
  3683. (symbol (lib_id "global:C") (at 53.34 187.96 0) (unit 1)
  3684. (in_bom yes) (on_board yes) (dnp no)
  3685. (uuid 00000000-0000-0000-0000-0000592e893a)
  3686. (property "Reference" "C9" (at 53.975 185.42 0)
  3687. (effects (font (size 1.27 1.27)) (justify left))
  3688. )
  3689. (property "Value" "100nF" (at 53.975 190.5 0)
  3690. (effects (font (size 1.27 1.27)) (justify left))
  3691. )
  3692. (property "Footprint" "C:0805" (at 54.3052 191.77 0)
  3693. (effects (font (size 1.27 1.27)) hide)
  3694. )
  3695. (property "Datasheet" "" (at 53.34 187.96 0)
  3696. (effects (font (size 1.27 1.27)) hide)
  3697. )
  3698. (property "Partkeepr" "606" (at -14.605 368.935 0)
  3699. (effects (font (size 1.27 1.27)) hide)
  3700. )
  3701. (pin "1" (uuid 79ee435a-3fe3-4108-934c-23e659bd89eb))
  3702. (pin "2" (uuid b78cc572-f62c-4006-a403-8bc13b1d2bef))
  3703. (instances
  3704. (project "proc"
  3705. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3706. (reference "C9") (unit 1)
  3707. )
  3708. )
  3709. )
  3710. )
  3711. (symbol (lib_id "global:C") (at 44.45 187.96 0) (unit 1)
  3712. (in_bom yes) (on_board yes) (dnp no)
  3713. (uuid 00000000-0000-0000-0000-0000592e8dca)
  3714. (property "Reference" "C8" (at 45.085 185.42 0)
  3715. (effects (font (size 1.27 1.27)) (justify left))
  3716. )
  3717. (property "Value" "100nF" (at 45.085 190.5 0)
  3718. (effects (font (size 1.27 1.27)) (justify left))
  3719. )
  3720. (property "Footprint" "C:0805" (at 45.4152 191.77 0)
  3721. (effects (font (size 1.27 1.27)) hide)
  3722. )
  3723. (property "Datasheet" "" (at 44.45 187.96 0)
  3724. (effects (font (size 1.27 1.27)) hide)
  3725. )
  3726. (property "Partkeepr" "606" (at 2.54 337.82 0)
  3727. (effects (font (size 1.27 1.27)) hide)
  3728. )
  3729. (pin "1" (uuid 2c142821-6413-4ec4-96ff-98c0766e50de))
  3730. (pin "2" (uuid 75089b70-1418-47eb-b136-fcc667cbce84))
  3731. (instances
  3732. (project "proc"
  3733. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3734. (reference "C8") (unit 1)
  3735. )
  3736. )
  3737. )
  3738. )
  3739. (symbol (lib_id "global:C") (at 37.465 187.96 0) (unit 1)
  3740. (in_bom yes) (on_board yes) (dnp no)
  3741. (uuid 00000000-0000-0000-0000-0000592e902a)
  3742. (property "Reference" "C3" (at 38.1 185.42 0)
  3743. (effects (font (size 1.27 1.27)) (justify left))
  3744. )
  3745. (property "Value" "1µF" (at 38.1 190.5 0)
  3746. (effects (font (size 1.27 1.27)) (justify left))
  3747. )
  3748. (property "Footprint" "C:0805" (at 38.4302 191.77 0)
  3749. (effects (font (size 1.27 1.27)) hide)
  3750. )
  3751. (property "Datasheet" "" (at 37.465 187.96 0)
  3752. (effects (font (size 1.27 1.27)) hide)
  3753. )
  3754. (property "Partkeepr" "0606" (at 2.54 337.82 0)
  3755. (effects (font (size 1.27 1.27)) hide)
  3756. )
  3757. (pin "1" (uuid f369ac2e-b7ac-4f82-8323-7788e58e7481))
  3758. (pin "2" (uuid 754a3f00-f26f-4043-a6aa-24ffd1970a41))
  3759. (instances
  3760. (project "proc"
  3761. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3762. (reference "C3") (unit 1)
  3763. )
  3764. )
  3765. )
  3766. )
  3767. (symbol (lib_id "global:C") (at 98.425 184.15 0) (unit 1)
  3768. (in_bom yes) (on_board yes) (dnp no)
  3769. (uuid 00000000-0000-0000-0000-0000592e97a8)
  3770. (property "Reference" "C12" (at 99.06 181.61 0)
  3771. (effects (font (size 1.27 1.27)) (justify left))
  3772. )
  3773. (property "Value" "4.7µF" (at 99.06 186.69 0)
  3774. (effects (font (size 1.27 1.27)) (justify left))
  3775. )
  3776. (property "Footprint" "C:0805" (at 99.3902 187.96 0)
  3777. (effects (font (size 1.27 1.27)) hide)
  3778. )
  3779. (property "Datasheet" "" (at 98.425 184.15 0)
  3780. (effects (font (size 1.27 1.27)) hide)
  3781. )
  3782. (property "Partkeepr" "607" (at 8.255 372.745 0)
  3783. (effects (font (size 1.27 1.27)) hide)
  3784. )
  3785. (pin "1" (uuid d5368926-2274-4659-bfb5-71ac1f393e1f))
  3786. (pin "2" (uuid 5ebe8468-c9dd-43d5-975c-1d0a63dc29bf))
  3787. (instances
  3788. (project "proc"
  3789. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3790. (reference "C12") (unit 1)
  3791. )
  3792. )
  3793. )
  3794. )
  3795. (symbol (lib_id "global:C") (at 22.86 187.96 0) (unit 1)
  3796. (in_bom yes) (on_board yes) (dnp no)
  3797. (uuid 00000000-0000-0000-0000-0000592e9bbe)
  3798. (property "Reference" "C1" (at 23.495 185.42 0)
  3799. (effects (font (size 1.27 1.27)) (justify left))
  3800. )
  3801. (property "Value" "4.7µF" (at 23.495 190.5 0)
  3802. (effects (font (size 1.27 1.27)) (justify left))
  3803. )
  3804. (property "Footprint" "C:0805" (at 23.8252 191.77 0)
  3805. (effects (font (size 1.27 1.27)) hide)
  3806. )
  3807. (property "Datasheet" "" (at 22.86 187.96 0)
  3808. (effects (font (size 1.27 1.27)) hide)
  3809. )
  3810. (property "Partkeepr" "607" (at 2.54 365.125 0)
  3811. (effects (font (size 1.27 1.27)) hide)
  3812. )
  3813. (pin "1" (uuid 82f959b4-a230-41d4-acb0-61ddc13c33be))
  3814. (pin "2" (uuid a6d6a8a1-d9a6-4456-9c4a-c4eff432492c))
  3815. (instances
  3816. (project "proc"
  3817. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3818. (reference "C1") (unit 1)
  3819. )
  3820. )
  3821. )
  3822. )
  3823. (symbol (lib_id "conn:CONN_01X03") (at 262.89 158.115 0) (unit 1)
  3824. (in_bom yes) (on_board yes) (dnp no)
  3825. (uuid 00000000-0000-0000-0000-000059b166c5)
  3826. (property "Reference" "P9" (at 262.89 153.035 0)
  3827. (effects (font (size 1.27 1.27)))
  3828. )
  3829. (property "Value" "I2C" (at 265.43 158.115 90)
  3830. (effects (font (size 1.27 1.27)))
  3831. )
  3832. (property "Footprint" "Bornier:Bornier2.54_1x3" (at 262.89 158.115 0)
  3833. (effects (font (size 1.27 1.27)) hide)
  3834. )
  3835. (property "Datasheet" "" (at 262.89 158.115 0)
  3836. (effects (font (size 1.27 1.27)) hide)
  3837. )
  3838. (property "Partkeepr" "5" (at 8.255 315.595 0)
  3839. (effects (font (size 1.27 1.27)) hide)
  3840. )
  3841. (pin "1" (uuid 0c9e0e67-fd05-4dbf-8757-17071509c31c))
  3842. (pin "2" (uuid e33929b4-78f8-4083-97ca-78dc616333a5))
  3843. (pin "3" (uuid b7d75f62-e43a-48ef-b332-8f4ce5c0546a))
  3844. (instances
  3845. (project "proc"
  3846. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3847. (reference "P9") (unit 1)
  3848. )
  3849. )
  3850. )
  3851. )
  3852. (symbol (lib_id "conn:CONN_01X03") (at 240.03 158.115 0) (unit 1)
  3853. (in_bom yes) (on_board yes) (dnp no)
  3854. (uuid 00000000-0000-0000-0000-00005b364cd7)
  3855. (property "Reference" "P11" (at 240.03 153.035 0)
  3856. (effects (font (size 1.27 1.27)))
  3857. )
  3858. (property "Value" "Ventilateur" (at 242.57 158.115 90)
  3859. (effects (font (size 1.27 1.27)))
  3860. )
  3861. (property "Footprint" "Bornier:Bornier2.54_1x3" (at 240.03 158.115 0)
  3862. (effects (font (size 1.27 1.27)) hide)
  3863. )
  3864. (property "Datasheet" "" (at 240.03 158.115 0)
  3865. (effects (font (size 1.27 1.27)) hide)
  3866. )
  3867. (property "Partkeepr" "5" (at 6.985 315.595 0)
  3868. (effects (font (size 1.27 1.27)) hide)
  3869. )
  3870. (pin "1" (uuid 9d0a7473-7ad7-4770-a0f1-3add9d1f6155))
  3871. (pin "2" (uuid 17014d90-4d87-4b52-a26a-2e1738249348))
  3872. (pin "3" (uuid 6c028055-461e-48a0-b0bc-1ede5834fd8b))
  3873. (instances
  3874. (project "proc"
  3875. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3876. (reference "P11") (unit 1)
  3877. )
  3878. )
  3879. )
  3880. )
  3881. (symbol (lib_id "global:LED") (at 142.24 179.07 90) (unit 1)
  3882. (in_bom yes) (on_board yes) (dnp no)
  3883. (uuid 00000000-0000-0000-0000-00005b3a77c2)
  3884. (property "Reference" "D3" (at 144.145 183.515 0)
  3885. (effects (font (size 1.27 1.27)))
  3886. )
  3887. (property "Value" "Orange" (at 144.145 177.165 0)
  3888. (effects (font (size 1.27 1.27)))
  3889. )
  3890. (property "Footprint" "LED:0805" (at 142.24 179.07 0)
  3891. (effects (font (size 1.27 1.27)) hide)
  3892. )
  3893. (property "Datasheet" "" (at 142.24 179.07 0)
  3894. (effects (font (size 1.27 1.27)) hide)
  3895. )
  3896. (property "Partkeepr" "1102" (at 322.58 320.04 0)
  3897. (effects (font (size 1.27 1.27)) hide)
  3898. )
  3899. (pin "1" (uuid 3bd848d1-80e5-4836-99eb-4464cbda6e17))
  3900. (pin "2" (uuid aa63e1da-bf74-4bc6-bffa-48a516449c21))
  3901. (instances
  3902. (project "proc"
  3903. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3904. (reference "D3") (unit 1)
  3905. )
  3906. )
  3907. )
  3908. )
  3909. (symbol (lib_id "global:R") (at 142.24 170.18 180) (unit 1)
  3910. (in_bom yes) (on_board yes) (dnp no)
  3911. (uuid 00000000-0000-0000-0000-00005b3a7872)
  3912. (property "Reference" "R13" (at 140.208 170.18 90)
  3913. (effects (font (size 1.27 1.27)))
  3914. )
  3915. (property "Value" "100" (at 142.24 170.18 90)
  3916. (effects (font (size 1.27 1.27)))
  3917. )
  3918. (property "Footprint" "R:0805" (at 144.018 170.18 90)
  3919. (effects (font (size 1.27 1.27)) hide)
  3920. )
  3921. (property "Datasheet" "" (at 142.24 170.18 0)
  3922. (effects (font (size 1.27 1.27)) hide)
  3923. )
  3924. (property "Partkeepr" "912" (at 283.21 -1.27 0)
  3925. (effects (font (size 1.27 1.27)) hide)
  3926. )
  3927. (pin "1" (uuid b135e6d3-8338-4190-8c40-e7f31192224e))
  3928. (pin "2" (uuid 3fd2ccee-d1a4-4c9d-b767-705eb368c709))
  3929. (instances
  3930. (project "proc"
  3931. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3932. (reference "R13") (unit 1)
  3933. )
  3934. )
  3935. )
  3936. )
  3937. (symbol (lib_id "conn:CONN_01X03") (at 223.52 157.48 0) (unit 1)
  3938. (in_bom yes) (on_board yes) (dnp no)
  3939. (uuid 00000000-0000-0000-0000-00005b3ae3c4)
  3940. (property "Reference" "P10" (at 223.52 152.4 0)
  3941. (effects (font (size 1.27 1.27)))
  3942. )
  3943. (property "Value" "Thermometre" (at 226.06 157.48 90)
  3944. (effects (font (size 1.27 1.27)))
  3945. )
  3946. (property "Footprint" "Bornier:Bornier2.54_1x3" (at 223.52 157.48 0)
  3947. (effects (font (size 1.27 1.27)) hide)
  3948. )
  3949. (property "Datasheet" "" (at 223.52 157.48 0)
  3950. (effects (font (size 1.27 1.27)) hide)
  3951. )
  3952. (property "Partkeepr" "5" (at 5.08 314.325 0)
  3953. (effects (font (size 1.27 1.27)) hide)
  3954. )
  3955. (pin "1" (uuid 498a2ce4-57f1-4941-ab08-5650cddbf1b5))
  3956. (pin "2" (uuid 8da31492-fda3-41a5-b1b1-fd422f703a24))
  3957. (pin "3" (uuid 722258df-ba5a-4933-9e3b-d718b6f4de0e))
  3958. (instances
  3959. (project "proc"
  3960. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3961. (reference "P10") (unit 1)
  3962. )
  3963. )
  3964. )
  3965. )
  3966. (symbol (lib_id "conn:CONN_01X04") (at 240.03 139.065 0) (unit 1)
  3967. (in_bom yes) (on_board yes) (dnp no)
  3968. (uuid 00000000-0000-0000-0000-00005b3ce1cc)
  3969. (property "Reference" "P6" (at 240.03 132.715 0)
  3970. (effects (font (size 1.27 1.27)))
  3971. )
  3972. (property "Value" "CONN_01X04" (at 242.57 139.065 90)
  3973. (effects (font (size 1.27 1.27)))
  3974. )
  3975. (property "Footprint" "Bornier:Bornier2.54_1x4" (at 240.03 139.065 0)
  3976. (effects (font (size 1.27 1.27)) hide)
  3977. )
  3978. (property "Datasheet" "" (at 240.03 139.065 0)
  3979. (effects (font (size 1.27 1.27)) hide)
  3980. )
  3981. (property "Partkeepr" "6" (at 4.445 277.495 0)
  3982. (effects (font (size 1.27 1.27)) hide)
  3983. )
  3984. (pin "1" (uuid 09878252-e512-456b-b4b7-ddb553d5b753))
  3985. (pin "2" (uuid e5b44ebc-e518-4798-ab3c-0cf01217fc13))
  3986. (pin "3" (uuid c231126b-76dc-4a48-9ff5-f8dce39afed1))
  3987. (pin "4" (uuid ed7c45bb-6809-4780-ab48-9ea8b8506a28))
  3988. (instances
  3989. (project "proc"
  3990. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  3991. (reference "P6") (unit 1)
  3992. )
  3993. )
  3994. )
  3995. )
  3996. (symbol (lib_id "global:R") (at 34.29 69.85 270) (unit 1)
  3997. (in_bom yes) (on_board yes) (dnp no)
  3998. (uuid 00000000-0000-0000-0000-00005b3d4e22)
  3999. (property "Reference" "R14" (at 34.29 71.882 90)
  4000. (effects (font (size 1.27 1.27)))
  4001. )
  4002. (property "Value" "10K" (at 34.29 69.85 90)
  4003. (effects (font (size 1.27 1.27)))
  4004. )
  4005. (property "Footprint" "R:0805" (at 34.29 68.072 90)
  4006. (effects (font (size 1.27 1.27)) hide)
  4007. )
  4008. (property "Datasheet" "" (at 34.29 69.85 0)
  4009. (effects (font (size 1.27 1.27)) hide)
  4010. )
  4011. (property "Partkeepr" "910" (at 17.78 -75.565 0)
  4012. (effects (font (size 1.27 1.27)) hide)
  4013. )
  4014. (pin "1" (uuid 096eec3c-93c9-4608-a2e3-c738887ee11b))
  4015. (pin "2" (uuid 465b8079-41e6-464b-9757-8d0887508ed3))
  4016. (instances
  4017. (project "proc"
  4018. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4019. (reference "R14") (unit 1)
  4020. )
  4021. )
  4022. )
  4023. )
  4024. (symbol (lib_id "global:C") (at 34.29 85.09 270) (unit 1)
  4025. (in_bom yes) (on_board yes) (dnp no)
  4026. (uuid 00000000-0000-0000-0000-00005b3d4e2b)
  4027. (property "Reference" "C15" (at 36.83 85.725 0)
  4028. (effects (font (size 1.27 1.27)) (justify left))
  4029. )
  4030. (property "Value" "100nF" (at 31.75 85.725 0)
  4031. (effects (font (size 1.27 1.27)) (justify left))
  4032. )
  4033. (property "Footprint" "C:0805" (at 30.48 86.0552 0)
  4034. (effects (font (size 1.27 1.27)) hide)
  4035. )
  4036. (property "Datasheet" "" (at 34.29 85.09 0)
  4037. (effects (font (size 1.27 1.27)) hide)
  4038. )
  4039. (property "Partkeepr" "606" (at 2.54 -60.325 0)
  4040. (effects (font (size 1.27 1.27)) hide)
  4041. )
  4042. (pin "1" (uuid dabd563c-b406-4dd4-be0c-3ebf952d28c3))
  4043. (pin "2" (uuid eade498e-46c7-41f7-9365-7659da908618))
  4044. (instances
  4045. (project "proc"
  4046. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4047. (reference "C15") (unit 1)
  4048. )
  4049. )
  4050. )
  4051. )
  4052. (symbol (lib_id "global:SW_PUSH") (at 34.29 77.47 0) (unit 1)
  4053. (in_bom yes) (on_board yes) (dnp no)
  4054. (uuid 00000000-0000-0000-0000-00005b3d4e31)
  4055. (property "Reference" "SW3" (at 38.1 74.676 0)
  4056. (effects (font (size 1.27 1.27)))
  4057. )
  4058. (property "Value" "aquit" (at 34.29 79.502 0)
  4059. (effects (font (size 1.27 1.27)))
  4060. )
  4061. (property "Footprint" "SW:1812" (at 34.29 77.47 0)
  4062. (effects (font (size 1.27 1.27)) hide)
  4063. )
  4064. (property "Datasheet" "" (at 34.29 77.47 0)
  4065. (effects (font (size 1.27 1.27)) hide)
  4066. )
  4067. (property "Partkeepr" "200" (at -111.125 101.6 0)
  4068. (effects (font (size 1.27 1.27)) hide)
  4069. )
  4070. (pin "1" (uuid 7ace5647-42ba-4c01-a462-5103b32ef13f))
  4071. (pin "2" (uuid 7b029228-8216-4f47-9326-153ba3640d83))
  4072. (instances
  4073. (project "proc"
  4074. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4075. (reference "SW3") (unit 1)
  4076. )
  4077. )
  4078. )
  4079. )
  4080. (symbol (lib_id "Module:ESP-12F") (at 212.09 105.41 0) (unit 1)
  4081. (in_bom yes) (on_board yes) (dnp no)
  4082. (uuid 0e4b48c7-643c-43fb-82f7-2a824e73b30c)
  4083. (property "Reference" "U6" (at 212.09 86.6902 0)
  4084. (effects (font (size 1.524 1.524)))
  4085. )
  4086. (property "Value" "ESP-12F" (at 212.09 89.3826 0)
  4087. (effects (font (size 1.524 1.524)))
  4088. )
  4089. (property "Footprint" "Module:ESP-12F" (at 212.09 106.68 0)
  4090. (effects (font (size 1.524 1.524)) hide)
  4091. )
  4092. (property "Datasheet" "" (at 212.09 106.68 0)
  4093. (effects (font (size 1.524 1.524)) hide)
  4094. )
  4095. (property "Partkeepr" "2800" (at 212.09 105.41 0)
  4096. (effects (font (size 1.27 1.27)) hide)
  4097. )
  4098. (pin "1" (uuid c180582d-d2b0-445a-81db-180f83e3192c))
  4099. (pin "10" (uuid 0013cacd-1920-476d-8904-ba26c69ec612))
  4100. (pin "11" (uuid 15b21fb3-1e86-427e-822a-476962447c2c))
  4101. (pin "12" (uuid 337508e9-8829-47d2-8c98-40b12b01ebef))
  4102. (pin "13" (uuid 41cddc60-d61b-4094-b6b5-f83f31420ecf))
  4103. (pin "14" (uuid ef988624-a01c-4547-92f5-71678bfbd7e3))
  4104. (pin "15" (uuid c4f541d9-cbf8-4843-bdc9-a837db827c70))
  4105. (pin "16" (uuid a2771073-3dcf-4c74-9110-3dffcda48b07))
  4106. (pin "17" (uuid ca32b04d-358f-41e0-8505-545abebebf3a))
  4107. (pin "18" (uuid 9e6dafa5-b9cd-4c2c-ac1d-2fc3a5e2336b))
  4108. (pin "19" (uuid a595c1d4-8639-405c-a333-5580443fb1bc))
  4109. (pin "2" (uuid 9fe23f3b-41e4-463c-a9f0-706b8a60fbea))
  4110. (pin "20" (uuid 57055d9f-c2f7-4f0f-97b8-59c7a305717d))
  4111. (pin "21" (uuid f9ae38d7-508f-433f-939e-1339ef2cb972))
  4112. (pin "22" (uuid 2a8b9b92-d843-4ad6-8c71-a5db02a1d74d))
  4113. (pin "3" (uuid 37cbc230-732c-403e-a6b0-66902eb9f0ab))
  4114. (pin "4" (uuid 1fd6d2d8-a030-4460-92a2-6c00bb0e2620))
  4115. (pin "5" (uuid 0b65ba20-007f-4133-917d-daef433cb45c))
  4116. (pin "6" (uuid cbd2da90-b555-48dd-8b1b-2f2fbd8b4761))
  4117. (pin "7" (uuid 1a551b2d-b5a3-43a5-9c7e-d87e209203a2))
  4118. (pin "8" (uuid d353c46e-ab91-4110-8921-480a1248ddd3))
  4119. (pin "9" (uuid 774ac278-418d-43da-8122-e0dfe7fe2867))
  4120. (instances
  4121. (project "proc"
  4122. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4123. (reference "U6") (unit 1)
  4124. )
  4125. )
  4126. )
  4127. )
  4128. (symbol (lib_id "global:R") (at 181.61 86.36 0) (unit 1)
  4129. (in_bom yes) (on_board yes) (dnp no)
  4130. (uuid 20fccb3b-2ca6-4209-98e3-dd09f0868379)
  4131. (property "Reference" "R19" (at 183.642 86.36 90)
  4132. (effects (font (size 1.27 1.27)))
  4133. )
  4134. (property "Value" "10K" (at 181.61 86.36 90)
  4135. (effects (font (size 1.27 1.27)))
  4136. )
  4137. (property "Footprint" "R:0805" (at 179.832 86.36 90)
  4138. (effects (font (size 1.27 1.27)) hide)
  4139. )
  4140. (property "Datasheet" "" (at 181.61 86.36 0)
  4141. (effects (font (size 1.27 1.27)))
  4142. )
  4143. (property "Partkeepr" "0910" (at 153.67 109.22 0)
  4144. (effects (font (size 1.27 1.27)) hide)
  4145. )
  4146. (pin "1" (uuid df167fc0-c739-40fc-9018-c77b24fbfc6d))
  4147. (pin "2" (uuid dd1aa588-d4bb-4c4a-acc9-45f6dcc834c4))
  4148. (instances
  4149. (project "proc"
  4150. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4151. (reference "R19") (unit 1)
  4152. )
  4153. )
  4154. )
  4155. )
  4156. (symbol (lib_id "global:R") (at 212.09 151.13 0) (unit 1)
  4157. (in_bom yes) (on_board yes) (dnp no)
  4158. (uuid 2aac33d7-5893-4a90-9c49-a6896dba7e0b)
  4159. (property "Reference" "R11" (at 214.122 151.13 90)
  4160. (effects (font (size 1.27 1.27)))
  4161. )
  4162. (property "Value" "10K" (at 212.09 151.13 90)
  4163. (effects (font (size 1.27 1.27)))
  4164. )
  4165. (property "Footprint" "R:0805" (at 210.312 151.13 90)
  4166. (effects (font (size 1.27 1.27)) hide)
  4167. )
  4168. (property "Datasheet" "" (at 212.09 151.13 0)
  4169. (effects (font (size 1.27 1.27)))
  4170. )
  4171. (property "Partkeepr" "0910" (at 137.16 181.61 0)
  4172. (effects (font (size 1.27 1.27)) hide)
  4173. )
  4174. (pin "1" (uuid 110d352a-f735-40d5-ba00-9928ada60f6f))
  4175. (pin "2" (uuid e30552ff-3e77-4a61-b59e-957482e8d5c3))
  4176. (instances
  4177. (project "proc"
  4178. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4179. (reference "R11") (unit 1)
  4180. )
  4181. )
  4182. )
  4183. )
  4184. (symbol (lib_id "global:TVS") (at 40.64 26.67 0) (unit 1)
  4185. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4186. (uuid 36473aad-0058-4b9a-9b56-5c50795f6f30)
  4187. (property "Reference" "D4" (at 44.45 24.765 0)
  4188. (effects (font (size 1.27 1.27)) (justify left))
  4189. )
  4190. (property "Value" "TVS" (at 44.45 27.305 0)
  4191. (effects (font (size 1.27 1.27)) (justify left))
  4192. )
  4193. (property "Footprint" "D:SMB" (at 40.64 26.67 90)
  4194. (effects (font (size 1.27 1.27)))
  4195. )
  4196. (property "Datasheet" "" (at 40.64 26.67 90)
  4197. (effects (font (size 1.27 1.27)))
  4198. )
  4199. (property "Partkeepr" "1400" (at 40.64 26.67 0)
  4200. (effects (font (size 1.27 1.27)) hide)
  4201. )
  4202. (pin "1" (uuid cb921316-b756-47c1-82a2-4da60aa814ff))
  4203. (pin "2" (uuid 14d6a881-cb25-4f4b-b8d7-9bcdd7abb9b1))
  4204. (instances
  4205. (project "proc"
  4206. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4207. (reference "D4") (unit 1)
  4208. )
  4209. )
  4210. (project "AP3211KTR"
  4211. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4212. (reference "D1") (unit 1)
  4213. )
  4214. )
  4215. )
  4216. )
  4217. (symbol (lib_id "global:C") (at 229.87 76.2 0) (unit 1)
  4218. (in_bom yes) (on_board yes) (dnp no)
  4219. (uuid 5cb50bc2-8645-4fe4-800f-cdff77ceb441)
  4220. (property "Reference" "C20" (at 232.791 75.0316 0)
  4221. (effects (font (size 1.27 1.27)) (justify left))
  4222. )
  4223. (property "Value" "100nF" (at 232.791 77.343 0)
  4224. (effects (font (size 1.27 1.27)) (justify left))
  4225. )
  4226. (property "Footprint" "C:0805" (at 230.8352 80.01 0)
  4227. (effects (font (size 1.27 1.27)) hide)
  4228. )
  4229. (property "Datasheet" "" (at 229.87 76.2 0)
  4230. (effects (font (size 1.27 1.27)))
  4231. )
  4232. (property "Partkeepr" "0605" (at 198.12 124.46 0)
  4233. (effects (font (size 1.27 1.27)) hide)
  4234. )
  4235. (pin "1" (uuid f57bf051-53d7-4db8-a726-beee47712907))
  4236. (pin "2" (uuid 63a23c0e-6487-4492-a54e-ad2af1830853))
  4237. (instances
  4238. (project "proc"
  4239. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4240. (reference "C20") (unit 1)
  4241. )
  4242. )
  4243. )
  4244. )
  4245. (symbol (lib_id "global:R") (at 116.84 44.45 0) (unit 1)
  4246. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4247. (uuid 60d46624-aa45-463e-9a7e-3ee93d7b9509)
  4248. (property "Reference" "R18" (at 119.38 43.1799 0)
  4249. (effects (font (size 1.27 1.27)) (justify left))
  4250. )
  4251. (property "Value" "16.3K" (at 119.38 45.7199 0)
  4252. (effects (font (size 1.27 1.27)) (justify left))
  4253. )
  4254. (property "Footprint" "R:0805" (at 115.062 44.45 90)
  4255. (effects (font (size 1.27 1.27)) hide)
  4256. )
  4257. (property "Datasheet" "" (at 116.84 44.45 0)
  4258. (effects (font (size 1.27 1.27)))
  4259. )
  4260. (property "Partkeepr" "0933" (at 116.84 44.45 0)
  4261. (effects (font (size 1.27 1.27)) hide)
  4262. )
  4263. (pin "1" (uuid 5304a58a-40a0-4508-ada7-83713ec4690c))
  4264. (pin "2" (uuid a96ae5b5-ee69-4325-9209-1243cf01b25a))
  4265. (instances
  4266. (project "proc"
  4267. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4268. (reference "R18") (unit 1)
  4269. )
  4270. )
  4271. (project "AP3211KTR"
  4272. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4273. (reference "R?") (unit 1)
  4274. )
  4275. )
  4276. )
  4277. )
  4278. (symbol (lib_id "global:C") (at 62.23 26.67 0) (unit 1)
  4279. (in_bom yes) (on_board yes) (dnp no)
  4280. (uuid 64dab7f2-4475-407b-af1e-d3bf677fe203)
  4281. (property "Reference" "C4" (at 63.5 24.13 0)
  4282. (effects (font (size 1.27 1.27)) (justify left))
  4283. )
  4284. (property "Value" "10µF" (at 63.5 29.21 0)
  4285. (effects (font (size 1.27 1.27)) (justify left))
  4286. )
  4287. (property "Footprint" "C:0805" (at 63.1952 30.48 0)
  4288. (effects (font (size 1.27 1.27)))
  4289. )
  4290. (property "Datasheet" "" (at 62.23 26.67 0)
  4291. (effects (font (size 1.27 1.27)))
  4292. )
  4293. (property "Partkeepr" "" (at 62.23 26.67 0)
  4294. (effects (font (size 1.27 1.27)) hide)
  4295. )
  4296. (pin "1" (uuid 0bf7eb18-4bab-4978-8929-434556e16ae8))
  4297. (pin "2" (uuid 12b0855a-2e69-46a9-9e61-690c8ca0df49))
  4298. (instances
  4299. (project "proc"
  4300. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4301. (reference "C4") (unit 1)
  4302. )
  4303. )
  4304. (project "AP3211KTR"
  4305. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4306. (reference "C?") (unit 1)
  4307. )
  4308. )
  4309. )
  4310. )
  4311. (symbol (lib_id "global:R") (at 59.69 35.56 270) (unit 1)
  4312. (in_bom yes) (on_board yes) (dnp no)
  4313. (uuid 6a2ac76b-55af-44f8-a5a7-02993d33007d)
  4314. (property "Reference" "R6" (at 58.42 38.1 90)
  4315. (effects (font (size 1.27 1.27)) (justify left))
  4316. )
  4317. (property "Value" "100K" (at 57.15 35.56 90)
  4318. (effects (font (size 1.27 1.27)) (justify left))
  4319. )
  4320. (property "Footprint" "R:0805" (at 59.69 33.782 90)
  4321. (effects (font (size 1.27 1.27)) hide)
  4322. )
  4323. (property "Datasheet" "" (at 59.69 35.56 0)
  4324. (effects (font (size 1.27 1.27)))
  4325. )
  4326. (property "Partkeepr" "0916" (at 59.69 35.56 0)
  4327. (effects (font (size 1.27 1.27)) hide)
  4328. )
  4329. (pin "1" (uuid 2cbbf3b6-0e09-4720-9f80-099ac06bc1c0))
  4330. (pin "2" (uuid 1aafd289-0de0-49a4-b6ec-ea3d7c631808))
  4331. (instances
  4332. (project "proc"
  4333. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4334. (reference "R6") (unit 1)
  4335. )
  4336. )
  4337. (project "AP3211KTR"
  4338. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4339. (reference "R?") (unit 1)
  4340. )
  4341. )
  4342. )
  4343. )
  4344. (symbol (lib_id "global:FUSE") (at 29.21 22.86 0) (unit 1)
  4345. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4346. (uuid 6ac78366-9e9a-44e5-a23a-789fe9a044f0)
  4347. (property "Reference" "F2" (at 29.21 16.51 0)
  4348. (effects (font (size 1.27 1.27)))
  4349. )
  4350. (property "Value" "FUSE" (at 29.21 19.05 0)
  4351. (effects (font (size 1.27 1.27)))
  4352. )
  4353. (property "Footprint" "F:1812" (at 29.21 22.86 0)
  4354. (effects (font (size 1.27 1.27)))
  4355. )
  4356. (property "Datasheet" "" (at 29.21 22.86 0)
  4357. (effects (font (size 1.27 1.27)))
  4358. )
  4359. (property "Partkeepr" "1450" (at 29.21 22.86 0)
  4360. (effects (font (size 1.27 1.27)) hide)
  4361. )
  4362. (pin "1" (uuid 83a90eab-4ba5-4a9b-890f-d54dcc0449f8))
  4363. (pin "2" (uuid 51cf6e02-0e80-472a-9a46-8091e55a9caf))
  4364. (instances
  4365. (project "proc"
  4366. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4367. (reference "F2") (unit 1)
  4368. )
  4369. )
  4370. (project "AP3211KTR"
  4371. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4372. (reference "F1") (unit 1)
  4373. )
  4374. )
  4375. )
  4376. )
  4377. (symbol (lib_id "global:R") (at 116.84 34.29 0) (unit 1)
  4378. (in_bom yes) (on_board yes) (dnp no)
  4379. (uuid 7cce7429-df92-4324-b5b9-1580fd0b7e86)
  4380. (property "Reference" "R7" (at 119.38 33.0199 0)
  4381. (effects (font (size 1.27 1.27)) (justify left))
  4382. )
  4383. (property "Value" "49.9K" (at 118.11 35.56 0)
  4384. (effects (font (size 1.27 1.27)) (justify left))
  4385. )
  4386. (property "Footprint" "R:0805" (at 115.062 34.29 90)
  4387. (effects (font (size 1.27 1.27)) hide)
  4388. )
  4389. (property "Datasheet" "" (at 116.84 34.29 0)
  4390. (effects (font (size 1.27 1.27)))
  4391. )
  4392. (property "Partkeepr" "0932" (at 116.84 34.29 0)
  4393. (effects (font (size 1.27 1.27)) hide)
  4394. )
  4395. (pin "1" (uuid 9a524dc7-5a2c-4d40-b9a6-519c48c8d8e2))
  4396. (pin "2" (uuid d626cd02-ed9e-44ea-8709-0c4ba785e7bb))
  4397. (instances
  4398. (project "proc"
  4399. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4400. (reference "R7") (unit 1)
  4401. )
  4402. )
  4403. (project "AP3211KTR"
  4404. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4405. (reference "R?") (unit 1)
  4406. )
  4407. )
  4408. )
  4409. )
  4410. (symbol (lib_id "global:C") (at 129.54 33.02 0) (unit 1)
  4411. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4412. (uuid 85625153-997c-4c67-a8fa-99879192deb8)
  4413. (property "Reference" "C18" (at 133.35 31.7499 0)
  4414. (effects (font (size 1.27 1.27)) (justify left))
  4415. )
  4416. (property "Value" "22µF" (at 133.35 34.2899 0)
  4417. (effects (font (size 1.27 1.27)) (justify left))
  4418. )
  4419. (property "Footprint" "C:0603" (at 130.5052 36.83 0)
  4420. (effects (font (size 1.27 1.27)))
  4421. )
  4422. (property "Datasheet" "" (at 129.54 33.02 0)
  4423. (effects (font (size 1.27 1.27)))
  4424. )
  4425. (property "Partkeepr" "0622" (at 129.54 33.02 0)
  4426. (effects (font (size 1.27 1.27)) hide)
  4427. )
  4428. (pin "1" (uuid 1d2e5719-c4a3-4cea-9fcb-a94bdf295003))
  4429. (pin "2" (uuid a423a522-a5c7-4396-aaae-2140b542c551))
  4430. (instances
  4431. (project "proc"
  4432. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4433. (reference "C18") (unit 1)
  4434. )
  4435. )
  4436. (project "AP3211KTR"
  4437. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4438. (reference "C?") (unit 1)
  4439. )
  4440. )
  4441. )
  4442. )
  4443. (symbol (lib_id "global:C") (at 220.98 76.2 0) (unit 1)
  4444. (in_bom yes) (on_board yes) (dnp no)
  4445. (uuid 89abc644-c1a5-44ab-b208-94932790e0eb)
  4446. (property "Reference" "C19" (at 221.615 73.66 0)
  4447. (effects (font (size 1.27 1.27)) (justify left))
  4448. )
  4449. (property "Value" "4.7µF" (at 221.615 78.74 0)
  4450. (effects (font (size 1.27 1.27)) (justify left))
  4451. )
  4452. (property "Footprint" "C:0805" (at 221.9452 80.01 0)
  4453. (effects (font (size 1.27 1.27)) hide)
  4454. )
  4455. (property "Datasheet" "" (at 220.98 76.2 0)
  4456. (effects (font (size 1.27 1.27)))
  4457. )
  4458. (property "Partkeepr" "0607" (at 200.66 253.365 0)
  4459. (effects (font (size 1.27 1.27)) hide)
  4460. )
  4461. (pin "1" (uuid 6bf582e4-e05c-471f-a6bc-d3dac041c1af))
  4462. (pin "2" (uuid e0408703-800c-4df2-97c0-eb73f622a8fe))
  4463. (instances
  4464. (project "proc"
  4465. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4466. (reference "C19") (unit 1)
  4467. )
  4468. )
  4469. )
  4470. )
  4471. (symbol (lib_id "DIodeInc:AP3211KTR-G1") (at 74.93 29.21 0) (unit 1)
  4472. (in_bom yes) (on_board yes) (dnp no)
  4473. (uuid aa7215e2-6d7c-4959-9f2c-631959440ade)
  4474. (property "Reference" "U4" (at 77.47 39.37 0)
  4475. (effects (font (size 1.27 1.27)) (justify left))
  4476. )
  4477. (property "Value" "AP3211KTR-G1" (at 67.31 19.05 0)
  4478. (effects (font (size 1.27 1.27)) (justify left))
  4479. )
  4480. (property "Footprint" "U:SOT23-6" (at 74.93 29.21 0)
  4481. (effects (font (size 1.27 1.27)) hide)
  4482. )
  4483. (property "Datasheet" "" (at 74.93 29.21 0)
  4484. (effects (font (size 1.27 1.27)) hide)
  4485. )
  4486. (property "Partkeepr" "1809" (at 74.93 29.21 0)
  4487. (effects (font (size 1.27 1.27)) hide)
  4488. )
  4489. (pin "2" (uuid 68ae9886-cbfb-410c-99a7-5593be623229))
  4490. (pin "3" (uuid d36f2ce5-2609-4343-87fb-796b2bf90e1d))
  4491. (pin "4" (uuid bde82862-5e65-4e9a-be04-2c1225ffaac0))
  4492. (pin "5" (uuid ae0198b3-66a4-445b-b237-36d85878e036))
  4493. (pin "6" (uuid c33bad49-ead1-4ced-8b16-03b5bc925da1))
  4494. (pin "1" (uuid f2fca707-29e8-47b2-b1b8-113a2ba55ad0))
  4495. (instances
  4496. (project "proc"
  4497. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4498. (reference "U4") (unit 1)
  4499. )
  4500. )
  4501. (project "AP3211KTR"
  4502. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4503. (reference "U?") (unit 1)
  4504. )
  4505. )
  4506. )
  4507. )
  4508. (symbol (lib_id "global:D") (at 93.98 33.02 270) (unit 1)
  4509. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4510. (uuid ab0a3c77-e490-4a59-a89f-c9dab1310009)
  4511. (property "Reference" "D5" (at 96.52 31.7118 90)
  4512. (effects (font (size 1.27 1.27)) (justify left))
  4513. )
  4514. (property "Value" "D" (at 96.52 34.2518 90)
  4515. (effects (font (size 1.27 1.27)) (justify left))
  4516. )
  4517. (property "Footprint" "D:SOD-123" (at 93.98 33.02 0)
  4518. (effects (font (size 1.27 1.27)) hide)
  4519. )
  4520. (property "Datasheet" "" (at 93.98 33.02 0)
  4521. (effects (font (size 1.27 1.27)))
  4522. )
  4523. (property "Partkeepr" "1300" (at 93.98 33.02 0)
  4524. (effects (font (size 1.27 1.27)) hide)
  4525. )
  4526. (pin "1" (uuid 8a58fef6-ef44-4da7-82fd-465ac6dc0f11))
  4527. (pin "2" (uuid 8fc86577-a51b-41f9-a395-b225888ad57b))
  4528. (instances
  4529. (project "proc"
  4530. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4531. (reference "D5") (unit 1)
  4532. )
  4533. )
  4534. (project "AP3211KTR"
  4535. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4536. (reference "D?") (unit 1)
  4537. )
  4538. )
  4539. )
  4540. )
  4541. (symbol (lib_id "global:R") (at 246.38 93.98 0) (unit 1)
  4542. (in_bom yes) (on_board yes) (dnp no)
  4543. (uuid b7c5c4f4-6062-4b21-b46e-72238878f775)
  4544. (property "Reference" "R21" (at 248.412 93.98 90)
  4545. (effects (font (size 1.27 1.27)))
  4546. )
  4547. (property "Value" "10K" (at 246.38 93.98 90)
  4548. (effects (font (size 1.27 1.27)))
  4549. )
  4550. (property "Footprint" "R:0805" (at 244.602 93.98 90)
  4551. (effects (font (size 1.27 1.27)) hide)
  4552. )
  4553. (property "Datasheet" "" (at 246.38 93.98 0)
  4554. (effects (font (size 1.27 1.27)))
  4555. )
  4556. (property "Partkeepr" "0910" (at 171.45 124.46 0)
  4557. (effects (font (size 1.27 1.27)) hide)
  4558. )
  4559. (pin "1" (uuid 185d8b2d-f4d8-45f3-ad14-9ed18b6c0ab8))
  4560. (pin "2" (uuid 5635d1a7-c9c8-444f-b875-f5159eb8e9c1))
  4561. (instances
  4562. (project "proc"
  4563. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4564. (reference "R21") (unit 1)
  4565. )
  4566. )
  4567. )
  4568. )
  4569. (symbol (lib_id "global:INDUCTOR") (at 107.95 29.21 90) (unit 1)
  4570. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4571. (uuid bfdae916-9e93-45ee-b929-a93a86b5fbc1)
  4572. (property "Reference" "L1" (at 107.95 22.86 90)
  4573. (effects (font (size 1.27 1.27)))
  4574. )
  4575. (property "Value" "4.7µH" (at 107.95 25.4 90)
  4576. (effects (font (size 1.27 1.27)))
  4577. )
  4578. (property "Footprint" "L:0630" (at 107.95 29.21 0)
  4579. (effects (font (size 1.27 1.27)))
  4580. )
  4581. (property "Datasheet" "" (at 107.95 29.21 0)
  4582. (effects (font (size 1.27 1.27)))
  4583. )
  4584. (property "Partkeepr" "0805" (at 107.95 29.21 0)
  4585. (effects (font (size 1.27 1.27)) hide)
  4586. )
  4587. (pin "1" (uuid 1f3dd1eb-72ed-424d-940b-4bf66f4fdd98))
  4588. (pin "2" (uuid b2b37a31-7746-4a33-bf37-3a6ff0cc3bbd))
  4589. (instances
  4590. (project "proc"
  4591. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4592. (reference "L1") (unit 1)
  4593. )
  4594. )
  4595. (project "AP3211KTR"
  4596. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4597. (reference "L?") (unit 1)
  4598. )
  4599. )
  4600. )
  4601. )
  4602. (symbol (lib_id "global:R") (at 252.73 93.98 0) (unit 1)
  4603. (in_bom yes) (on_board yes) (dnp no)
  4604. (uuid c5618f80-e058-49a6-a0d3-eeb580cb4415)
  4605. (property "Reference" "R22" (at 254.762 93.98 90)
  4606. (effects (font (size 1.27 1.27)))
  4607. )
  4608. (property "Value" "10K" (at 252.73 93.98 90)
  4609. (effects (font (size 1.27 1.27)))
  4610. )
  4611. (property "Footprint" "R:0805" (at 250.952 93.98 90)
  4612. (effects (font (size 1.27 1.27)) hide)
  4613. )
  4614. (property "Datasheet" "" (at 252.73 93.98 0)
  4615. (effects (font (size 1.27 1.27)))
  4616. )
  4617. (property "Partkeepr" "0910" (at 175.26 135.89 0)
  4618. (effects (font (size 1.27 1.27)) hide)
  4619. )
  4620. (pin "1" (uuid a48a5ab1-2006-4923-a91a-221ebec13687))
  4621. (pin "2" (uuid ad3f3cf6-f7cc-4fc0-b15a-593233167d0d))
  4622. (instances
  4623. (project "proc"
  4624. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4625. (reference "R22") (unit 1)
  4626. )
  4627. )
  4628. )
  4629. )
  4630. (symbol (lib_id "global:C") (at 90.17 25.4 0) (unit 1)
  4631. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4632. (uuid da291178-8ed0-45e9-a698-70901a897108)
  4633. (property "Reference" "C5" (at 93.98 24.1299 0)
  4634. (effects (font (size 1.27 1.27)) (justify left))
  4635. )
  4636. (property "Value" "10nF" (at 93.98 26.6699 0)
  4637. (effects (font (size 1.27 1.27)) (justify left))
  4638. )
  4639. (property "Footprint" "C:0805" (at 91.1352 29.21 0)
  4640. (effects (font (size 1.27 1.27)) hide)
  4641. )
  4642. (property "Datasheet" "" (at 90.17 25.4 0)
  4643. (effects (font (size 1.27 1.27)))
  4644. )
  4645. (property "Partkeepr" "0604" (at 90.17 25.4 0)
  4646. (effects (font (size 1.27 1.27)) hide)
  4647. )
  4648. (pin "1" (uuid d11707ea-2a94-419c-8267-63be7e4cb941))
  4649. (pin "2" (uuid 838aeb10-ac1c-45f0-aab5-57c7c908b3b7))
  4650. (instances
  4651. (project "proc"
  4652. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4653. (reference "C5") (unit 1)
  4654. )
  4655. )
  4656. (project "AP3211KTR"
  4657. (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
  4658. (reference "C?") (unit 1)
  4659. )
  4660. )
  4661. )
  4662. )
  4663. (symbol (lib_id "global:R") (at 187.96 86.36 0) (unit 1)
  4664. (in_bom yes) (on_board yes) (dnp no)
  4665. (uuid f572e92c-129c-4adf-9371-919b581fe822)
  4666. (property "Reference" "R20" (at 189.992 86.36 90)
  4667. (effects (font (size 1.27 1.27)))
  4668. )
  4669. (property "Value" "10K" (at 187.96 86.36 90)
  4670. (effects (font (size 1.27 1.27)))
  4671. )
  4672. (property "Footprint" "R:0805" (at 186.182 86.36 90)
  4673. (effects (font (size 1.27 1.27)) hide)
  4674. )
  4675. (property "Datasheet" "" (at 187.96 86.36 0)
  4676. (effects (font (size 1.27 1.27)))
  4677. )
  4678. (property "Partkeepr" "0910" (at 160.02 104.14 0)
  4679. (effects (font (size 1.27 1.27)) hide)
  4680. )
  4681. (pin "1" (uuid b53e0616-ec79-4de0-a1b3-7dde3aba9864))
  4682. (pin "2" (uuid 5d4fb3f7-6b16-4e0c-8324-9fd1887d0d77))
  4683. (instances
  4684. (project "proc"
  4685. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4686. (reference "R20") (unit 1)
  4687. )
  4688. )
  4689. )
  4690. )
  4691. (symbol (lib_id "conn:CONN_01X05") (at 276.86 93.98 0) (unit 1)
  4692. (in_bom yes) (on_board yes) (dnp no)
  4693. (uuid f5b75d0b-4fb9-4cf1-9fae-a16498924a29)
  4694. (property "Reference" "P13" (at 275.59 86.36 0)
  4695. (effects (font (size 1.27 1.27)) (justify left))
  4696. )
  4697. (property "Value" "CONN_01X05" (at 279.4 100.33 90)
  4698. (effects (font (size 1.27 1.27)) (justify left))
  4699. )
  4700. (property "Footprint" "PinHeader:PinHeader2.54_1X5" (at 276.86 93.98 0)
  4701. (effects (font (size 1.27 1.27)) hide)
  4702. )
  4703. (property "Datasheet" "" (at 276.86 93.98 0)
  4704. (effects (font (size 1.27 1.27)))
  4705. )
  4706. (property "Partkeepr" "0100" (at 276.86 93.98 0)
  4707. (effects (font (size 1.27 1.27)) hide)
  4708. )
  4709. (pin "1" (uuid 727c7401-643a-4ff6-a052-dd760d5941ff))
  4710. (pin "2" (uuid 8af25451-7219-4262-9343-6a286b1574e2))
  4711. (pin "3" (uuid 6c32b8e9-4659-4776-9a41-f1b14540cb2e))
  4712. (pin "4" (uuid 4d81d6f0-4327-48a0-8b33-a3ca6874de4a))
  4713. (pin "5" (uuid c8a58c37-8480-40b3-9d07-38ed1fd343ed))
  4714. (instances
  4715. (project "proc"
  4716. (path "/e097b152-7eac-4218-984f-e86f016c5a43"
  4717. (reference "P13") (unit 1)
  4718. )
  4719. )
  4720. )
  4721. )
  4722. (sheet_instances
  4723. (path "/" (page "1"))
  4724. )
  4725. )