Ordinateur.kicad_sch 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 440ccfee-59e1-453c-b043-d29f1d7d5b84)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "Module:ESP-12F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at 11.43 -15.24 0)
  7. (effects (font (size 1.524 1.524)))
  8. )
  9. (property "Value" "ESP-12F" (id 1) (at 0 15.24 0)
  10. (effects (font (size 1.524 1.524)))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 -1.27 0)
  13. (effects (font (size 1.524 1.524)) hide)
  14. )
  15. (property "Datasheet" "" (id 3) (at 0 -1.27 0)
  16. (effects (font (size 1.524 1.524)) hide)
  17. )
  18. (symbol "ESP-12F_0_1"
  19. (rectangle (start -12.7 -12.7) (end 12.7 13.97)
  20. (stroke (width 0) (type default) (color 0 0 0 0))
  21. (fill (type none))
  22. )
  23. (rectangle (start 6.35 -12.7) (end 6.35 -12.7)
  24. (stroke (width 0) (type default) (color 0 0 0 0))
  25. (fill (type none))
  26. )
  27. )
  28. (symbol "ESP-12F_1_1"
  29. (pin input line (at -17.78 11.43 0) (length 5.08)
  30. (name "RST" (effects (font (size 1.27 1.27))))
  31. (number "1" (effects (font (size 1.27 1.27))))
  32. )
  33. (pin input line (at -3.81 -17.78 90) (length 5.08)
  34. (name "MISO" (effects (font (size 1.27 1.27))))
  35. (number "10" (effects (font (size 1.27 1.27))))
  36. )
  37. (pin input line (at -1.27 -17.78 90) (length 5.08)
  38. (name "GPIO9" (effects (font (size 1.27 1.27))))
  39. (number "11" (effects (font (size 1.27 1.27))))
  40. )
  41. (pin input line (at 1.27 -17.78 90) (length 5.08)
  42. (name "GPIO10" (effects (font (size 1.27 1.27))))
  43. (number "12" (effects (font (size 1.27 1.27))))
  44. )
  45. (pin input line (at 3.81 -17.78 90) (length 5.08)
  46. (name "MOSI" (effects (font (size 1.27 1.27))))
  47. (number "13" (effects (font (size 1.27 1.27))))
  48. )
  49. (pin input line (at 6.35 -17.78 90) (length 5.08)
  50. (name "SCLK" (effects (font (size 1.27 1.27))))
  51. (number "14" (effects (font (size 1.27 1.27))))
  52. )
  53. (pin input line (at 17.78 -6.35 180) (length 5.08)
  54. (name "GND" (effects (font (size 1.27 1.27))))
  55. (number "15" (effects (font (size 1.27 1.27))))
  56. )
  57. (pin input line (at 17.78 -3.81 180) (length 5.08)
  58. (name "GPIO15" (effects (font (size 1.27 1.27))))
  59. (number "16" (effects (font (size 1.27 1.27))))
  60. )
  61. (pin input line (at 17.78 -1.27 180) (length 5.08)
  62. (name "GPIO2" (effects (font (size 1.27 1.27))))
  63. (number "17" (effects (font (size 1.27 1.27))))
  64. )
  65. (pin input line (at 17.78 1.27 180) (length 5.08)
  66. (name "GPIO0" (effects (font (size 1.27 1.27))))
  67. (number "18" (effects (font (size 1.27 1.27))))
  68. )
  69. (pin input line (at 17.78 3.81 180) (length 5.08)
  70. (name "GPIO4" (effects (font (size 1.27 1.27))))
  71. (number "19" (effects (font (size 1.27 1.27))))
  72. )
  73. (pin input line (at -17.78 8.89 0) (length 5.08)
  74. (name "ADC" (effects (font (size 1.27 1.27))))
  75. (number "2" (effects (font (size 1.27 1.27))))
  76. )
  77. (pin input line (at 17.78 6.35 180) (length 5.08)
  78. (name "GPIO5" (effects (font (size 1.27 1.27))))
  79. (number "20" (effects (font (size 1.27 1.27))))
  80. )
  81. (pin input line (at 17.78 8.89 180) (length 5.08)
  82. (name "RXD" (effects (font (size 1.27 1.27))))
  83. (number "21" (effects (font (size 1.27 1.27))))
  84. )
  85. (pin input line (at 17.78 11.43 180) (length 5.08)
  86. (name "TXD" (effects (font (size 1.27 1.27))))
  87. (number "22" (effects (font (size 1.27 1.27))))
  88. )
  89. (pin input line (at -17.78 6.35 0) (length 5.08)
  90. (name "EN" (effects (font (size 1.27 1.27))))
  91. (number "3" (effects (font (size 1.27 1.27))))
  92. )
  93. (pin input line (at -17.78 3.81 0) (length 5.08)
  94. (name "GPIO16" (effects (font (size 1.27 1.27))))
  95. (number "4" (effects (font (size 1.27 1.27))))
  96. )
  97. (pin input line (at -17.78 1.27 0) (length 5.08)
  98. (name "GPIO14" (effects (font (size 1.27 1.27))))
  99. (number "5" (effects (font (size 1.27 1.27))))
  100. )
  101. (pin input line (at -17.78 -1.27 0) (length 5.08)
  102. (name "GPIO12" (effects (font (size 1.27 1.27))))
  103. (number "6" (effects (font (size 1.27 1.27))))
  104. )
  105. (pin input line (at -17.78 -3.81 0) (length 5.08)
  106. (name "GPIO13" (effects (font (size 1.27 1.27))))
  107. (number "7" (effects (font (size 1.27 1.27))))
  108. )
  109. (pin input line (at -17.78 -6.35 0) (length 5.08)
  110. (name "VCC" (effects (font (size 1.27 1.27))))
  111. (number "8" (effects (font (size 1.27 1.27))))
  112. )
  113. (pin input line (at -6.35 -17.78 90) (length 5.08)
  114. (name "CS0" (effects (font (size 1.27 1.27))))
  115. (number "9" (effects (font (size 1.27 1.27))))
  116. )
  117. )
  118. )
  119. (symbol "ST:M24C32" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  120. (property "Reference" "U" (id 0) (at -5.08 -6.35 0)
  121. (effects (font (size 1.524 1.524)))
  122. )
  123. (property "Value" "M24C32" (id 1) (at 0 6.35 0)
  124. (effects (font (size 1.524 1.524)))
  125. )
  126. (property "Footprint" "U:SO8N" (id 2) (at 0 -5.08 0)
  127. (effects (font (size 1.524 1.524)) hide)
  128. )
  129. (property "Datasheet" "" (id 3) (at 0 -5.08 0)
  130. (effects (font (size 1.524 1.524)))
  131. )
  132. (property "Partkeepr" "1700" (id 4) (at 0 0 0)
  133. (effects (font (size 1.27 1.27)) hide)
  134. )
  135. (symbol "M24C32_0_1"
  136. (rectangle (start -6.35 -5.08) (end 6.35 5.08)
  137. (stroke (width 0) (type default) (color 0 0 0 0))
  138. (fill (type none))
  139. )
  140. )
  141. (symbol "M24C32_1_1"
  142. (pin input line (at -11.43 3.81 0) (length 5.08)
  143. (name "E0" (effects (font (size 1.27 1.27))))
  144. (number "1" (effects (font (size 1.27 1.27))))
  145. )
  146. (pin input line (at -11.43 1.27 0) (length 5.08)
  147. (name "E1" (effects (font (size 1.27 1.27))))
  148. (number "2" (effects (font (size 1.27 1.27))))
  149. )
  150. (pin input line (at -11.43 -1.27 0) (length 5.08)
  151. (name "E2" (effects (font (size 1.27 1.27))))
  152. (number "3" (effects (font (size 1.27 1.27))))
  153. )
  154. (pin power_in line (at -11.43 -3.81 0) (length 5.08)
  155. (name "VSS" (effects (font (size 1.27 1.27))))
  156. (number "4" (effects (font (size 1.27 1.27))))
  157. )
  158. (pin bidirectional line (at 11.43 -3.81 180) (length 5.08)
  159. (name "SDA" (effects (font (size 1.27 1.27))))
  160. (number "5" (effects (font (size 1.27 1.27))))
  161. )
  162. (pin input line (at 11.43 -1.27 180) (length 5.08)
  163. (name "SCL" (effects (font (size 1.27 1.27))))
  164. (number "6" (effects (font (size 1.27 1.27))))
  165. )
  166. (pin input line (at 11.43 1.27 180) (length 5.08)
  167. (name "~{WC}" (effects (font (size 1.27 1.27))))
  168. (number "7" (effects (font (size 1.27 1.27))))
  169. )
  170. (pin power_in line (at 11.43 3.81 180) (length 5.08)
  171. (name "VCC" (effects (font (size 1.27 1.27))))
  172. (number "8" (effects (font (size 1.27 1.27))))
  173. )
  174. )
  175. )
  176. (symbol "ST:M41T83" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  177. (property "Reference" "U" (id 0) (at 0 35.56 0)
  178. (effects (font (size 1.524 1.524)))
  179. )
  180. (property "Value" "M41T83" (id 1) (at 0 5.08 0)
  181. (effects (font (size 1.524 1.524)))
  182. )
  183. (property "Footprint" "" (id 2) (at 0 0 0)
  184. (effects (font (size 1.524 1.524)))
  185. )
  186. (property "Datasheet" "" (id 3) (at 0 0 0)
  187. (effects (font (size 1.524 1.524)))
  188. )
  189. (symbol "M41T83_0_1"
  190. (rectangle (start -11.43 7.62) (end 11.43 33.02)
  191. (stroke (width 0) (type default) (color 0 0 0 0))
  192. (fill (type none))
  193. )
  194. )
  195. (symbol "M41T83_1_1"
  196. (pin input line (at -16.51 30.48 0) (length 5.08)
  197. (name "NC" (effects (font (size 1.27 1.27))))
  198. (number "1" (effects (font (size 1.27 1.27))))
  199. )
  200. (pin input line (at 16.51 10.16 180) (length 5.08)
  201. (name "SDA" (effects (font (size 1.27 1.27))))
  202. (number "10" (effects (font (size 1.27 1.27))))
  203. )
  204. (pin input line (at 16.51 12.7 180) (length 5.08)
  205. (name "SCL" (effects (font (size 1.27 1.27))))
  206. (number "11" (effects (font (size 1.27 1.27))))
  207. )
  208. (pin input line (at 16.51 15.24 180) (length 5.08)
  209. (name "~{IRQ1}/FT/OUT" (effects (font (size 1.27 1.27))))
  210. (number "12" (effects (font (size 1.27 1.27))))
  211. )
  212. (pin input line (at 16.51 17.78 180) (length 5.08)
  213. (name "NC" (effects (font (size 1.27 1.27))))
  214. (number "13" (effects (font (size 1.27 1.27))))
  215. )
  216. (pin input line (at 16.51 20.32 180) (length 5.08)
  217. (name "~{IRQ2}" (effects (font (size 1.27 1.27))))
  218. (number "14" (effects (font (size 1.27 1.27))))
  219. )
  220. (pin input line (at 16.51 22.86 180) (length 5.08)
  221. (name "VCC" (effects (font (size 1.27 1.27))))
  222. (number "15" (effects (font (size 1.27 1.27))))
  223. )
  224. (pin input line (at 16.51 25.4 180) (length 5.08)
  225. (name "NF" (effects (font (size 1.27 1.27))))
  226. (number "16" (effects (font (size 1.27 1.27))))
  227. )
  228. (pin input line (at 16.51 27.94 180) (length 5.08)
  229. (name "NF" (effects (font (size 1.27 1.27))))
  230. (number "17" (effects (font (size 1.27 1.27))))
  231. )
  232. (pin input line (at 16.51 30.48 180) (length 5.08)
  233. (name "NC" (effects (font (size 1.27 1.27))))
  234. (number "18" (effects (font (size 1.27 1.27))))
  235. )
  236. (pin input line (at -16.51 27.94 0) (length 5.08)
  237. (name "NF" (effects (font (size 1.27 1.27))))
  238. (number "2" (effects (font (size 1.27 1.27))))
  239. )
  240. (pin input line (at -16.51 25.4 0) (length 5.08)
  241. (name "NF" (effects (font (size 1.27 1.27))))
  242. (number "3" (effects (font (size 1.27 1.27))))
  243. )
  244. (pin input line (at -16.51 22.86 0) (length 5.08)
  245. (name "NC" (effects (font (size 1.27 1.27))))
  246. (number "4" (effects (font (size 1.27 1.27))))
  247. )
  248. (pin input line (at -16.51 20.32 0) (length 5.08)
  249. (name "~{RST}" (effects (font (size 1.27 1.27))))
  250. (number "5" (effects (font (size 1.27 1.27))))
  251. )
  252. (pin input line (at -16.51 17.78 0) (length 5.08)
  253. (name "DU" (effects (font (size 1.27 1.27))))
  254. (number "6" (effects (font (size 1.27 1.27))))
  255. )
  256. (pin input line (at -16.51 15.24 0) (length 5.08)
  257. (name "SQW" (effects (font (size 1.27 1.27))))
  258. (number "7" (effects (font (size 1.27 1.27))))
  259. )
  260. (pin input line (at -16.51 12.7 0) (length 5.08)
  261. (name "VBAT" (effects (font (size 1.27 1.27))))
  262. (number "8" (effects (font (size 1.27 1.27))))
  263. )
  264. (pin input line (at -16.51 10.16 0) (length 5.08)
  265. (name "VSS" (effects (font (size 1.27 1.27))))
  266. (number "9" (effects (font (size 1.27 1.27))))
  267. )
  268. )
  269. )
  270. (symbol "ST:STM32F030C8" (pin_names (offset 1.27)) (in_bom yes) (on_board yes)
  271. (property "Reference" "U" (id 0) (at 17.78 21.59 0)
  272. (effects (font (size 1.27 1.27)))
  273. )
  274. (property "Value" "STM32F030C8" (id 1) (at 0 -11.43 0)
  275. (effects (font (size 1.27 1.27)))
  276. )
  277. (property "Footprint" "" (id 2) (at 0 0 0)
  278. (effects (font (size 1.524 1.524)))
  279. )
  280. (property "Datasheet" "" (id 3) (at -12.7 19.05 90)
  281. (effects (font (size 1.27 1.27)))
  282. )
  283. (symbol "STM32F030C8_0_1"
  284. (rectangle (start -20.32 20.32) (end 20.32 -20.32)
  285. (stroke (width 0) (type default) (color 0 0 0 0))
  286. (fill (type none))
  287. )
  288. )
  289. (symbol "STM32F030C8_1_1"
  290. (pin power_in line (at -24.13 13.97 0) (length 3.81)
  291. (name "VDD" (effects (font (size 1.27 1.27))))
  292. (number "1" (effects (font (size 1.27 1.27))))
  293. )
  294. (pin bidirectional line (at -24.13 -8.89 0) (length 3.81)
  295. (name "PA0" (effects (font (size 1.27 1.27))))
  296. (number "10" (effects (font (size 1.27 1.27))))
  297. )
  298. (pin bidirectional line (at -24.13 -11.43 0) (length 3.81)
  299. (name "PA1" (effects (font (size 1.27 1.27))))
  300. (number "11" (effects (font (size 1.27 1.27))))
  301. )
  302. (pin bidirectional line (at -24.13 -13.97 0) (length 3.81)
  303. (name "PA2" (effects (font (size 1.27 1.27))))
  304. (number "12" (effects (font (size 1.27 1.27))))
  305. )
  306. (pin bidirectional line (at -13.97 -24.13 90) (length 3.81)
  307. (name "PA3" (effects (font (size 1.27 1.27))))
  308. (number "13" (effects (font (size 1.27 1.27))))
  309. )
  310. (pin bidirectional line (at -11.43 -24.13 90) (length 3.81)
  311. (name "PA4" (effects (font (size 1.27 1.27))))
  312. (number "14" (effects (font (size 1.27 1.27))))
  313. )
  314. (pin bidirectional line (at -8.89 -24.13 90) (length 3.81)
  315. (name "PA5" (effects (font (size 1.27 1.27))))
  316. (number "15" (effects (font (size 1.27 1.27))))
  317. )
  318. (pin bidirectional line (at -6.35 -24.13 90) (length 3.81)
  319. (name "PA6" (effects (font (size 1.27 1.27))))
  320. (number "16" (effects (font (size 1.27 1.27))))
  321. )
  322. (pin bidirectional line (at -3.81 -24.13 90) (length 3.81)
  323. (name "PA7" (effects (font (size 1.27 1.27))))
  324. (number "17" (effects (font (size 1.27 1.27))))
  325. )
  326. (pin bidirectional line (at -1.27 -24.13 90) (length 3.81)
  327. (name "PB0" (effects (font (size 1.27 1.27))))
  328. (number "18" (effects (font (size 1.27 1.27))))
  329. )
  330. (pin bidirectional line (at 1.27 -24.13 90) (length 3.81)
  331. (name "PB1" (effects (font (size 1.27 1.27))))
  332. (number "19" (effects (font (size 1.27 1.27))))
  333. )
  334. (pin bidirectional line (at -24.13 11.43 0) (length 3.81)
  335. (name "PC13" (effects (font (size 1.27 1.27))))
  336. (number "2" (effects (font (size 1.27 1.27))))
  337. )
  338. (pin bidirectional line (at 3.81 -24.13 90) (length 3.81)
  339. (name "PB2" (effects (font (size 1.27 1.27))))
  340. (number "20" (effects (font (size 1.27 1.27))))
  341. )
  342. (pin bidirectional line (at 6.35 -24.13 90) (length 3.81)
  343. (name "PB10" (effects (font (size 1.27 1.27))))
  344. (number "21" (effects (font (size 1.27 1.27))))
  345. )
  346. (pin bidirectional line (at 8.89 -24.13 90) (length 3.81)
  347. (name "PB11" (effects (font (size 1.27 1.27))))
  348. (number "22" (effects (font (size 1.27 1.27))))
  349. )
  350. (pin power_in line (at 11.43 -24.13 90) (length 3.81)
  351. (name "VSS" (effects (font (size 1.27 1.27))))
  352. (number "23" (effects (font (size 1.27 1.27))))
  353. )
  354. (pin power_in line (at 13.97 -24.13 90) (length 3.81)
  355. (name "VDD" (effects (font (size 1.27 1.27))))
  356. (number "24" (effects (font (size 1.27 1.27))))
  357. )
  358. (pin bidirectional line (at 24.13 -13.97 180) (length 3.81)
  359. (name "PB12" (effects (font (size 1.27 1.27))))
  360. (number "25" (effects (font (size 1.27 1.27))))
  361. )
  362. (pin bidirectional line (at 24.13 -11.43 180) (length 3.81)
  363. (name "PB13" (effects (font (size 1.27 1.27))))
  364. (number "26" (effects (font (size 1.27 1.27))))
  365. )
  366. (pin bidirectional line (at 24.13 -8.89 180) (length 3.81)
  367. (name "PB14" (effects (font (size 1.27 1.27))))
  368. (number "27" (effects (font (size 1.27 1.27))))
  369. )
  370. (pin bidirectional line (at 24.13 -6.35 180) (length 3.81)
  371. (name "PB15" (effects (font (size 1.27 1.27))))
  372. (number "28" (effects (font (size 1.27 1.27))))
  373. )
  374. (pin bidirectional line (at 24.13 -3.81 180) (length 3.81)
  375. (name "PA8" (effects (font (size 1.27 1.27))))
  376. (number "29" (effects (font (size 1.27 1.27))))
  377. )
  378. (pin bidirectional line (at -24.13 8.89 0) (length 3.81)
  379. (name "PC14/OSC32_IN" (effects (font (size 1.27 1.27))))
  380. (number "3" (effects (font (size 1.27 1.27))))
  381. )
  382. (pin bidirectional line (at 24.13 -1.27 180) (length 3.81)
  383. (name "PA9" (effects (font (size 1.27 1.27))))
  384. (number "30" (effects (font (size 1.27 1.27))))
  385. )
  386. (pin bidirectional line (at 24.13 1.27 180) (length 3.81)
  387. (name "PA10" (effects (font (size 1.27 1.27))))
  388. (number "31" (effects (font (size 1.27 1.27))))
  389. )
  390. (pin bidirectional line (at 24.13 3.81 180) (length 3.81)
  391. (name "PA11" (effects (font (size 1.27 1.27))))
  392. (number "32" (effects (font (size 1.27 1.27))))
  393. )
  394. (pin bidirectional line (at 24.13 6.35 180) (length 3.81)
  395. (name "PA12" (effects (font (size 1.27 1.27))))
  396. (number "33" (effects (font (size 1.27 1.27))))
  397. )
  398. (pin bidirectional line (at 24.13 8.89 180) (length 3.81)
  399. (name "PA13" (effects (font (size 1.27 1.27))))
  400. (number "34" (effects (font (size 1.27 1.27))))
  401. )
  402. (pin bidirectional line (at 24.13 11.43 180) (length 3.81)
  403. (name "PF6" (effects (font (size 1.27 1.27))))
  404. (number "35" (effects (font (size 1.27 1.27))))
  405. )
  406. (pin bidirectional line (at 24.13 13.97 180) (length 3.81)
  407. (name "PF7" (effects (font (size 1.27 1.27))))
  408. (number "36" (effects (font (size 1.27 1.27))))
  409. )
  410. (pin bidirectional line (at 13.97 24.13 270) (length 3.81)
  411. (name "PA14" (effects (font (size 1.27 1.27))))
  412. (number "37" (effects (font (size 1.27 1.27))))
  413. )
  414. (pin bidirectional line (at 11.43 24.13 270) (length 3.81)
  415. (name "PA15" (effects (font (size 1.27 1.27))))
  416. (number "38" (effects (font (size 1.27 1.27))))
  417. )
  418. (pin bidirectional line (at 8.89 24.13 270) (length 3.81)
  419. (name "PB3" (effects (font (size 1.27 1.27))))
  420. (number "39" (effects (font (size 1.27 1.27))))
  421. )
  422. (pin bidirectional line (at -24.13 6.35 0) (length 3.81)
  423. (name "PC15/OSC32_OUT" (effects (font (size 1.27 1.27))))
  424. (number "4" (effects (font (size 1.27 1.27))))
  425. )
  426. (pin bidirectional line (at 6.35 24.13 270) (length 3.81)
  427. (name "PB4" (effects (font (size 1.27 1.27))))
  428. (number "40" (effects (font (size 1.27 1.27))))
  429. )
  430. (pin bidirectional line (at 3.81 24.13 270) (length 3.81)
  431. (name "PB5" (effects (font (size 1.27 1.27))))
  432. (number "41" (effects (font (size 1.27 1.27))))
  433. )
  434. (pin bidirectional line (at 1.27 24.13 270) (length 3.81)
  435. (name "PB6" (effects (font (size 1.27 1.27))))
  436. (number "42" (effects (font (size 1.27 1.27))))
  437. )
  438. (pin bidirectional line (at -1.27 24.13 270) (length 3.81)
  439. (name "PB7" (effects (font (size 1.27 1.27))))
  440. (number "43" (effects (font (size 1.27 1.27))))
  441. )
  442. (pin input line (at -3.81 24.13 270) (length 3.81)
  443. (name "BOOT0" (effects (font (size 1.27 1.27))))
  444. (number "44" (effects (font (size 1.27 1.27))))
  445. )
  446. (pin bidirectional line (at -6.35 24.13 270) (length 3.81)
  447. (name "PB8" (effects (font (size 1.27 1.27))))
  448. (number "45" (effects (font (size 1.27 1.27))))
  449. )
  450. (pin bidirectional line (at -8.89 24.13 270) (length 3.81)
  451. (name "PB9" (effects (font (size 1.27 1.27))))
  452. (number "46" (effects (font (size 1.27 1.27))))
  453. )
  454. (pin power_in line (at -11.43 24.13 270) (length 3.81)
  455. (name "VSS" (effects (font (size 1.27 1.27))))
  456. (number "47" (effects (font (size 1.27 1.27))))
  457. )
  458. (pin power_in line (at -13.97 24.13 270) (length 3.81)
  459. (name "VDD" (effects (font (size 1.27 1.27))))
  460. (number "48" (effects (font (size 1.27 1.27))))
  461. )
  462. (pin bidirectional line (at -24.13 3.81 0) (length 3.81)
  463. (name "PF0/OSC_IN" (effects (font (size 1.27 1.27))))
  464. (number "5" (effects (font (size 1.27 1.27))))
  465. )
  466. (pin bidirectional line (at -24.13 1.27 0) (length 3.81)
  467. (name "PF1/OSC_OUT" (effects (font (size 1.27 1.27))))
  468. (number "6" (effects (font (size 1.27 1.27))))
  469. )
  470. (pin input line (at -24.13 -1.27 0) (length 3.81)
  471. (name "~{NRST}" (effects (font (size 1.27 1.27))))
  472. (number "7" (effects (font (size 1.27 1.27))))
  473. )
  474. (pin power_in line (at -24.13 -3.81 0) (length 3.81)
  475. (name "VSSA" (effects (font (size 1.27 1.27))))
  476. (number "8" (effects (font (size 1.27 1.27))))
  477. )
  478. (pin power_in line (at -24.13 -6.35 0) (length 3.81)
  479. (name "VDDA" (effects (font (size 1.27 1.27))))
  480. (number "9" (effects (font (size 1.27 1.27))))
  481. )
  482. )
  483. )
  484. (symbol "conn:CONN_01X01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  485. (property "Reference" "P" (id 0) (at 0 2.54 0)
  486. (effects (font (size 1.27 1.27)))
  487. )
  488. (property "Value" "CONN_01X01" (id 1) (at 2.54 0 90)
  489. (effects (font (size 1.27 1.27)))
  490. )
  491. (property "Footprint" "" (id 2) (at 0 0 0)
  492. (effects (font (size 1.27 1.27)))
  493. )
  494. (property "Datasheet" "" (id 3) (at 0 0 0)
  495. (effects (font (size 1.27 1.27)))
  496. )
  497. (property "ki_fp_filters" "Pin_Header_Straight_1X01 Pin_Header_Angled_1X01 Socket_Strip_Straight_1X01 Socket_Strip_Angled_1X01" (id 4) (at 0 0 0)
  498. (effects (font (size 1.27 1.27)) hide)
  499. )
  500. (symbol "CONN_01X01_0_1"
  501. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  502. (stroke (width 0) (type default) (color 0 0 0 0))
  503. (fill (type none))
  504. )
  505. (rectangle (start -1.27 1.27) (end 1.27 -1.27)
  506. (stroke (width 0) (type default) (color 0 0 0 0))
  507. (fill (type none))
  508. )
  509. )
  510. (symbol "CONN_01X01_1_1"
  511. (pin passive line (at -5.08 0 0) (length 3.81)
  512. (name "P1" (effects (font (size 1.27 1.27))))
  513. (number "1" (effects (font (size 1.27 1.27))))
  514. )
  515. )
  516. )
  517. (symbol "conn:CONN_01X02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  518. (property "Reference" "P" (id 0) (at 0 3.81 0)
  519. (effects (font (size 1.27 1.27)))
  520. )
  521. (property "Value" "CONN_01X02" (id 1) (at 2.54 0 90)
  522. (effects (font (size 1.27 1.27)))
  523. )
  524. (property "Footprint" "" (id 2) (at 0 0 0)
  525. (effects (font (size 1.27 1.27)))
  526. )
  527. (property "Datasheet" "" (id 3) (at 0 0 0)
  528. (effects (font (size 1.27 1.27)))
  529. )
  530. (property "ki_fp_filters" "Pin_Header_Straight_1X02 Pin_Header_Angled_1X02 Socket_Strip_Straight_1X02 Socket_Strip_Angled_1X02" (id 4) (at 0 0 0)
  531. (effects (font (size 1.27 1.27)) hide)
  532. )
  533. (symbol "CONN_01X02_0_1"
  534. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  535. (stroke (width 0) (type default) (color 0 0 0 0))
  536. (fill (type none))
  537. )
  538. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  539. (stroke (width 0) (type default) (color 0 0 0 0))
  540. (fill (type none))
  541. )
  542. (rectangle (start -1.27 2.54) (end 1.27 -2.54)
  543. (stroke (width 0) (type default) (color 0 0 0 0))
  544. (fill (type none))
  545. )
  546. )
  547. (symbol "CONN_01X02_1_1"
  548. (pin passive line (at -5.08 1.27 0) (length 3.81)
  549. (name "P1" (effects (font (size 1.27 1.27))))
  550. (number "1" (effects (font (size 1.27 1.27))))
  551. )
  552. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  553. (name "P2" (effects (font (size 1.27 1.27))))
  554. (number "2" (effects (font (size 1.27 1.27))))
  555. )
  556. )
  557. )
  558. (symbol "conn:CONN_01X03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  559. (property "Reference" "P" (id 0) (at 0 5.08 0)
  560. (effects (font (size 1.27 1.27)))
  561. )
  562. (property "Value" "CONN_01X03" (id 1) (at 2.54 0 90)
  563. (effects (font (size 1.27 1.27)))
  564. )
  565. (property "Footprint" "" (id 2) (at 0 0 0)
  566. (effects (font (size 1.27 1.27)))
  567. )
  568. (property "Datasheet" "" (id 3) (at 0 0 0)
  569. (effects (font (size 1.27 1.27)))
  570. )
  571. (property "ki_fp_filters" "Pin_Header_Straight_1X03 Pin_Header_Angled_1X03 Socket_Strip_Straight_1X03 Socket_Strip_Angled_1X03" (id 4) (at 0 0 0)
  572. (effects (font (size 1.27 1.27)) hide)
  573. )
  574. (symbol "CONN_01X03_0_1"
  575. (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
  576. (stroke (width 0) (type default) (color 0 0 0 0))
  577. (fill (type none))
  578. )
  579. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  580. (stroke (width 0) (type default) (color 0 0 0 0))
  581. (fill (type none))
  582. )
  583. (rectangle (start -1.27 2.667) (end 0.254 2.413)
  584. (stroke (width 0) (type default) (color 0 0 0 0))
  585. (fill (type none))
  586. )
  587. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  588. (stroke (width 0) (type default) (color 0 0 0 0))
  589. (fill (type none))
  590. )
  591. )
  592. (symbol "CONN_01X03_1_1"
  593. (pin passive line (at -5.08 2.54 0) (length 3.81)
  594. (name "P1" (effects (font (size 1.27 1.27))))
  595. (number "1" (effects (font (size 1.27 1.27))))
  596. )
  597. (pin passive line (at -5.08 0 0) (length 3.81)
  598. (name "P2" (effects (font (size 1.27 1.27))))
  599. (number "2" (effects (font (size 1.27 1.27))))
  600. )
  601. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  602. (name "P3" (effects (font (size 1.27 1.27))))
  603. (number "3" (effects (font (size 1.27 1.27))))
  604. )
  605. )
  606. )
  607. (symbol "conn:CONN_01X04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  608. (property "Reference" "P" (id 0) (at 0 6.35 0)
  609. (effects (font (size 1.27 1.27)))
  610. )
  611. (property "Value" "CONN_01X04" (id 1) (at 2.54 0 90)
  612. (effects (font (size 1.27 1.27)))
  613. )
  614. (property "Footprint" "" (id 2) (at 0 0 0)
  615. (effects (font (size 1.27 1.27)))
  616. )
  617. (property "Datasheet" "" (id 3) (at 0 0 0)
  618. (effects (font (size 1.27 1.27)))
  619. )
  620. (property "ki_fp_filters" "Pin_Header_Straight_1X04 Pin_Header_Angled_1X04 Socket_Strip_Straight_1X04 Socket_Strip_Angled_1X04" (id 4) (at 0 0 0)
  621. (effects (font (size 1.27 1.27)) hide)
  622. )
  623. (symbol "CONN_01X04_0_1"
  624. (rectangle (start -1.27 -3.683) (end 0.254 -3.937)
  625. (stroke (width 0) (type default) (color 0 0 0 0))
  626. (fill (type none))
  627. )
  628. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  629. (stroke (width 0) (type default) (color 0 0 0 0))
  630. (fill (type none))
  631. )
  632. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  633. (stroke (width 0) (type default) (color 0 0 0 0))
  634. (fill (type none))
  635. )
  636. (rectangle (start -1.27 3.937) (end 0.254 3.683)
  637. (stroke (width 0) (type default) (color 0 0 0 0))
  638. (fill (type none))
  639. )
  640. (rectangle (start -1.27 5.08) (end 1.27 -5.08)
  641. (stroke (width 0) (type default) (color 0 0 0 0))
  642. (fill (type none))
  643. )
  644. )
  645. (symbol "CONN_01X04_1_1"
  646. (pin passive line (at -5.08 3.81 0) (length 3.81)
  647. (name "P1" (effects (font (size 1.27 1.27))))
  648. (number "1" (effects (font (size 1.27 1.27))))
  649. )
  650. (pin passive line (at -5.08 1.27 0) (length 3.81)
  651. (name "P2" (effects (font (size 1.27 1.27))))
  652. (number "2" (effects (font (size 1.27 1.27))))
  653. )
  654. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  655. (name "P3" (effects (font (size 1.27 1.27))))
  656. (number "3" (effects (font (size 1.27 1.27))))
  657. )
  658. (pin passive line (at -5.08 -3.81 0) (length 3.81)
  659. (name "P4" (effects (font (size 1.27 1.27))))
  660. (number "4" (effects (font (size 1.27 1.27))))
  661. )
  662. )
  663. )
  664. (symbol "conn:CONN_01X05" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  665. (property "Reference" "P" (id 0) (at 0 7.62 0)
  666. (effects (font (size 1.27 1.27)))
  667. )
  668. (property "Value" "CONN_01X05" (id 1) (at 2.54 0 90)
  669. (effects (font (size 1.27 1.27)))
  670. )
  671. (property "Footprint" "" (id 2) (at 0 0 0)
  672. (effects (font (size 1.27 1.27)))
  673. )
  674. (property "Datasheet" "" (id 3) (at 0 0 0)
  675. (effects (font (size 1.27 1.27)))
  676. )
  677. (property "ki_fp_filters" "Pin_Header_Straight_1X05 Pin_Header_Angled_1X05 Socket_Strip_Straight_1X05 Socket_Strip_Angled_1X05" (id 4) (at 0 0 0)
  678. (effects (font (size 1.27 1.27)) hide)
  679. )
  680. (symbol "CONN_01X05_0_1"
  681. (rectangle (start -1.27 -4.953) (end 0.254 -5.207)
  682. (stroke (width 0) (type default) (color 0 0 0 0))
  683. (fill (type none))
  684. )
  685. (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
  686. (stroke (width 0) (type default) (color 0 0 0 0))
  687. (fill (type none))
  688. )
  689. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  690. (stroke (width 0) (type default) (color 0 0 0 0))
  691. (fill (type none))
  692. )
  693. (rectangle (start -1.27 2.667) (end 0.254 2.413)
  694. (stroke (width 0) (type default) (color 0 0 0 0))
  695. (fill (type none))
  696. )
  697. (rectangle (start -1.27 5.207) (end 0.254 4.953)
  698. (stroke (width 0) (type default) (color 0 0 0 0))
  699. (fill (type none))
  700. )
  701. (rectangle (start -1.27 6.35) (end 1.27 -6.35)
  702. (stroke (width 0) (type default) (color 0 0 0 0))
  703. (fill (type none))
  704. )
  705. )
  706. (symbol "CONN_01X05_1_1"
  707. (pin passive line (at -5.08 5.08 0) (length 3.81)
  708. (name "P1" (effects (font (size 1.27 1.27))))
  709. (number "1" (effects (font (size 1.27 1.27))))
  710. )
  711. (pin passive line (at -5.08 2.54 0) (length 3.81)
  712. (name "P2" (effects (font (size 1.27 1.27))))
  713. (number "2" (effects (font (size 1.27 1.27))))
  714. )
  715. (pin passive line (at -5.08 0 0) (length 3.81)
  716. (name "P3" (effects (font (size 1.27 1.27))))
  717. (number "3" (effects (font (size 1.27 1.27))))
  718. )
  719. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  720. (name "P4" (effects (font (size 1.27 1.27))))
  721. (number "4" (effects (font (size 1.27 1.27))))
  722. )
  723. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  724. (name "P5" (effects (font (size 1.27 1.27))))
  725. (number "5" (effects (font (size 1.27 1.27))))
  726. )
  727. )
  728. )
  729. (symbol "conn:CONN_01X10" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  730. (property "Reference" "P" (id 0) (at 0 13.97 0)
  731. (effects (font (size 1.27 1.27)))
  732. )
  733. (property "Value" "CONN_01X10" (id 1) (at 2.54 0 90)
  734. (effects (font (size 1.27 1.27)))
  735. )
  736. (property "Footprint" "" (id 2) (at 0 0 0)
  737. (effects (font (size 1.27 1.27)))
  738. )
  739. (property "Datasheet" "" (id 3) (at 0 0 0)
  740. (effects (font (size 1.27 1.27)))
  741. )
  742. (property "ki_fp_filters" "Pin_Header_Straight_1X10 Pin_Header_Angled_1X10 Socket_Strip_Straight_1X10 Socket_Strip_Angled_1X10" (id 4) (at 0 0 0)
  743. (effects (font (size 1.27 1.27)) hide)
  744. )
  745. (symbol "CONN_01X10_0_1"
  746. (rectangle (start -1.27 -11.303) (end 0.254 -11.557)
  747. (stroke (width 0) (type default) (color 0 0 0 0))
  748. (fill (type none))
  749. )
  750. (rectangle (start -1.27 -8.763) (end 0.254 -9.017)
  751. (stroke (width 0) (type default) (color 0 0 0 0))
  752. (fill (type none))
  753. )
  754. (rectangle (start -1.27 -6.223) (end 0.254 -6.477)
  755. (stroke (width 0) (type default) (color 0 0 0 0))
  756. (fill (type none))
  757. )
  758. (rectangle (start -1.27 -3.683) (end 0.254 -3.937)
  759. (stroke (width 0) (type default) (color 0 0 0 0))
  760. (fill (type none))
  761. )
  762. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  763. (stroke (width 0) (type default) (color 0 0 0 0))
  764. (fill (type none))
  765. )
  766. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  767. (stroke (width 0) (type default) (color 0 0 0 0))
  768. (fill (type none))
  769. )
  770. (rectangle (start -1.27 3.937) (end 0.254 3.683)
  771. (stroke (width 0) (type default) (color 0 0 0 0))
  772. (fill (type none))
  773. )
  774. (rectangle (start -1.27 6.477) (end 0.254 6.223)
  775. (stroke (width 0) (type default) (color 0 0 0 0))
  776. (fill (type none))
  777. )
  778. (rectangle (start -1.27 9.017) (end 0.254 8.763)
  779. (stroke (width 0) (type default) (color 0 0 0 0))
  780. (fill (type none))
  781. )
  782. (rectangle (start -1.27 11.557) (end 0.254 11.303)
  783. (stroke (width 0) (type default) (color 0 0 0 0))
  784. (fill (type none))
  785. )
  786. (rectangle (start -1.27 12.7) (end 1.27 -12.7)
  787. (stroke (width 0) (type default) (color 0 0 0 0))
  788. (fill (type none))
  789. )
  790. )
  791. (symbol "CONN_01X10_1_1"
  792. (pin passive line (at -5.08 11.43 0) (length 3.81)
  793. (name "P1" (effects (font (size 1.27 1.27))))
  794. (number "1" (effects (font (size 1.27 1.27))))
  795. )
  796. (pin passive line (at -5.08 -11.43 0) (length 3.81)
  797. (name "P10" (effects (font (size 1.27 1.27))))
  798. (number "10" (effects (font (size 1.27 1.27))))
  799. )
  800. (pin passive line (at -5.08 8.89 0) (length 3.81)
  801. (name "P2" (effects (font (size 1.27 1.27))))
  802. (number "2" (effects (font (size 1.27 1.27))))
  803. )
  804. (pin passive line (at -5.08 6.35 0) (length 3.81)
  805. (name "P3" (effects (font (size 1.27 1.27))))
  806. (number "3" (effects (font (size 1.27 1.27))))
  807. )
  808. (pin passive line (at -5.08 3.81 0) (length 3.81)
  809. (name "P4" (effects (font (size 1.27 1.27))))
  810. (number "4" (effects (font (size 1.27 1.27))))
  811. )
  812. (pin passive line (at -5.08 1.27 0) (length 3.81)
  813. (name "P5" (effects (font (size 1.27 1.27))))
  814. (number "5" (effects (font (size 1.27 1.27))))
  815. )
  816. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  817. (name "P6" (effects (font (size 1.27 1.27))))
  818. (number "6" (effects (font (size 1.27 1.27))))
  819. )
  820. (pin passive line (at -5.08 -3.81 0) (length 3.81)
  821. (name "P7" (effects (font (size 1.27 1.27))))
  822. (number "7" (effects (font (size 1.27 1.27))))
  823. )
  824. (pin passive line (at -5.08 -6.35 0) (length 3.81)
  825. (name "P8" (effects (font (size 1.27 1.27))))
  826. (number "8" (effects (font (size 1.27 1.27))))
  827. )
  828. (pin passive line (at -5.08 -8.89 0) (length 3.81)
  829. (name "P9" (effects (font (size 1.27 1.27))))
  830. (number "9" (effects (font (size 1.27 1.27))))
  831. )
  832. )
  833. )
  834. (symbol "global:Battery" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  835. (property "Reference" "BT" (id 0) (at 2.54 1.27 0)
  836. (effects (font (size 1.27 1.27)) (justify left))
  837. )
  838. (property "Value" "Battery" (id 1) (at 2.54 -1.27 0)
  839. (effects (font (size 1.27 1.27)) (justify left))
  840. )
  841. (property "Footprint" "" (id 2) (at 0 1.016 90)
  842. (effects (font (size 1.27 1.27)))
  843. )
  844. (property "Datasheet" "" (id 3) (at 0 1.016 90)
  845. (effects (font (size 1.27 1.27)))
  846. )
  847. (symbol "Battery_0_1"
  848. (rectangle (start -2.286 -0.1778) (end 2.286 -0.4318)
  849. (stroke (width 0) (type default) (color 0 0 0 0))
  850. (fill (type outline))
  851. )
  852. (rectangle (start -2.286 1.27) (end 2.286 1.016)
  853. (stroke (width 0) (type default) (color 0 0 0 0))
  854. (fill (type outline))
  855. )
  856. (rectangle (start -1.5748 -0.762) (end 1.4732 -1.27)
  857. (stroke (width 0) (type default) (color 0 0 0 0))
  858. (fill (type outline))
  859. )
  860. (rectangle (start -1.5748 0.6858) (end 1.4732 0.1778)
  861. (stroke (width 0) (type default) (color 0 0 0 0))
  862. (fill (type outline))
  863. )
  864. (polyline
  865. (pts
  866. (xy 0.508 2.413)
  867. (xy 1.524 2.413)
  868. )
  869. (stroke (width 0.254) (type default) (color 0 0 0 0))
  870. (fill (type none))
  871. )
  872. (polyline
  873. (pts
  874. (xy 1.016 2.921)
  875. (xy 1.016 1.905)
  876. )
  877. (stroke (width 0.254) (type default) (color 0 0 0 0))
  878. (fill (type none))
  879. )
  880. )
  881. (symbol "Battery_1_1"
  882. (pin power_out line (at 0 3.81 270) (length 2.54)
  883. (name "~" (effects (font (size 1.27 1.27))))
  884. (number "1" (effects (font (size 1.27 1.27))))
  885. )
  886. (pin passive line (at 0 -3.81 90) (length 2.54)
  887. (name "~" (effects (font (size 1.27 1.27))))
  888. (number "2" (effects (font (size 1.27 1.27))))
  889. )
  890. )
  891. )
  892. (symbol "global:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  893. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  894. (effects (font (size 1.27 1.27)) (justify left))
  895. )
  896. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  897. (effects (font (size 1.27 1.27)) (justify left))
  898. )
  899. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  900. (effects (font (size 1.27 1.27)))
  901. )
  902. (property "Datasheet" "" (id 3) (at 0 0 0)
  903. (effects (font (size 1.27 1.27)))
  904. )
  905. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*" (id 4) (at 0 0 0)
  906. (effects (font (size 1.27 1.27)) hide)
  907. )
  908. (symbol "C_0_1"
  909. (polyline
  910. (pts
  911. (xy -2.032 -0.762)
  912. (xy 2.032 -0.762)
  913. )
  914. (stroke (width 0.508) (type default) (color 0 0 0 0))
  915. (fill (type none))
  916. )
  917. (polyline
  918. (pts
  919. (xy -2.032 0.762)
  920. (xy 2.032 0.762)
  921. )
  922. (stroke (width 0.508) (type default) (color 0 0 0 0))
  923. (fill (type none))
  924. )
  925. )
  926. (symbol "C_1_1"
  927. (pin passive line (at 0 3.81 270) (length 2.794)
  928. (name "~" (effects (font (size 1.016 1.016))))
  929. (number "1" (effects (font (size 1.016 1.016))))
  930. )
  931. (pin passive line (at 0 -3.81 90) (length 2.794)
  932. (name "~" (effects (font (size 1.016 1.016))))
  933. (number "2" (effects (font (size 1.016 1.016))))
  934. )
  935. )
  936. )
  937. (symbol "global:CP" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  938. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  939. (effects (font (size 1.27 1.27)) (justify left))
  940. )
  941. (property "Value" "CP" (id 1) (at 0.635 -2.54 0)
  942. (effects (font (size 1.27 1.27)) (justify left))
  943. )
  944. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  945. (effects (font (size 1.27 1.27)))
  946. )
  947. (property "Datasheet" "" (id 3) (at 0 0 0)
  948. (effects (font (size 1.27 1.27)))
  949. )
  950. (property "ki_fp_filters" "CP* Elko* TantalC* C*elec c_elec* SMD*_Pol" (id 4) (at 0 0 0)
  951. (effects (font (size 1.27 1.27)) hide)
  952. )
  953. (symbol "CP_0_1"
  954. (rectangle (start -2.286 0.508) (end -2.286 1.016)
  955. (stroke (width 0) (type default) (color 0 0 0 0))
  956. (fill (type none))
  957. )
  958. (rectangle (start -2.286 0.508) (end 2.286 0.508)
  959. (stroke (width 0) (type default) (color 0 0 0 0))
  960. (fill (type none))
  961. )
  962. (polyline
  963. (pts
  964. (xy -1.778 2.286)
  965. (xy -0.762 2.286)
  966. )
  967. (stroke (width 0) (type default) (color 0 0 0 0))
  968. (fill (type none))
  969. )
  970. (polyline
  971. (pts
  972. (xy -1.27 2.794)
  973. (xy -1.27 1.778)
  974. )
  975. (stroke (width 0) (type default) (color 0 0 0 0))
  976. (fill (type none))
  977. )
  978. (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
  979. (stroke (width 0) (type default) (color 0 0 0 0))
  980. (fill (type outline))
  981. )
  982. (rectangle (start 2.286 1.016) (end -2.286 1.016)
  983. (stroke (width 0) (type default) (color 0 0 0 0))
  984. (fill (type none))
  985. )
  986. (rectangle (start 2.286 1.016) (end 2.286 0.508)
  987. (stroke (width 0) (type default) (color 0 0 0 0))
  988. (fill (type none))
  989. )
  990. )
  991. (symbol "CP_1_1"
  992. (pin passive line (at 0 3.81 270) (length 2.794)
  993. (name "~" (effects (font (size 1.016 1.016))))
  994. (number "1" (effects (font (size 1.016 1.016))))
  995. )
  996. (pin passive line (at 0 -3.81 90) (length 2.794)
  997. (name "~" (effects (font (size 1.016 1.016))))
  998. (number "2" (effects (font (size 1.016 1.016))))
  999. )
  1000. )
  1001. )
  1002. (symbol "global:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1003. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1004. (effects (font (size 1.27 1.27)))
  1005. )
  1006. (property "Value" "D" (id 1) (at 0 -2.54 0)
  1007. (effects (font (size 1.27 1.27)))
  1008. )
  1009. (property "Footprint" "" (id 2) (at 0 0 0)
  1010. (effects (font (size 1.27 1.27)))
  1011. )
  1012. (property "Datasheet" "" (id 3) (at 0 0 0)
  1013. (effects (font (size 1.27 1.27)))
  1014. )
  1015. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (id 4) (at 0 0 0)
  1016. (effects (font (size 1.27 1.27)) hide)
  1017. )
  1018. (symbol "D_0_1"
  1019. (polyline
  1020. (pts
  1021. (xy -1.27 1.27)
  1022. (xy -1.27 -1.27)
  1023. )
  1024. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1025. (fill (type none))
  1026. )
  1027. (polyline
  1028. (pts
  1029. (xy 1.27 1.27)
  1030. (xy -1.27 0)
  1031. (xy 1.27 -1.27)
  1032. )
  1033. (stroke (width 0) (type default) (color 0 0 0 0))
  1034. (fill (type outline))
  1035. )
  1036. )
  1037. (symbol "D_1_1"
  1038. (pin passive line (at -3.81 0 0) (length 2.54)
  1039. (name "K" (effects (font (size 1.27 1.27))))
  1040. (number "1" (effects (font (size 1.27 1.27))))
  1041. )
  1042. (pin passive line (at 3.81 0 180) (length 2.54)
  1043. (name "A" (effects (font (size 1.27 1.27))))
  1044. (number "2" (effects (font (size 1.27 1.27))))
  1045. )
  1046. )
  1047. )
  1048. (symbol "global:Jumper" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1049. (property "Reference" "SJ" (id 0) (at 0 2.286 0)
  1050. (effects (font (size 1.27 1.27)))
  1051. )
  1052. (property "Value" "Jumper" (id 1) (at 0.254 -1.524 0)
  1053. (effects (font (size 1.27 1.27)))
  1054. )
  1055. (property "Footprint" "" (id 2) (at 0 0 0)
  1056. (effects (font (size 1.27 1.27)) hide)
  1057. )
  1058. (property "Datasheet" "" (id 3) (at 0 0 0)
  1059. (effects (font (size 1.27 1.27)) hide)
  1060. )
  1061. (symbol "Jumper_0_1"
  1062. (arc (start -0.762 -0.508) (mid -0.254 0) (end -0.762 0.508)
  1063. (stroke (width 0) (type default) (color 0 0 0 0))
  1064. (fill (type none))
  1065. )
  1066. (polyline
  1067. (pts
  1068. (xy -0.762 0.508)
  1069. (xy -0.762 -0.508)
  1070. )
  1071. (stroke (width 0) (type default) (color 0 0 0 0))
  1072. (fill (type none))
  1073. )
  1074. (polyline
  1075. (pts
  1076. (xy 0.762 0.508)
  1077. (xy 0.762 -0.508)
  1078. )
  1079. (stroke (width 0) (type default) (color 0 0 0 0))
  1080. (fill (type none))
  1081. )
  1082. (arc (start 0.762 0.508) (mid 0.254 0) (end 0.762 -0.508)
  1083. (stroke (width 0) (type default) (color 0 0 0 0))
  1084. (fill (type none))
  1085. )
  1086. )
  1087. (symbol "Jumper_1_1"
  1088. (pin passive line (at -3.81 0 0) (length 2.9972)
  1089. (name "~" (effects (font (size 1.27 1.27))))
  1090. (number "1" (effects (font (size 1.27 1.27))))
  1091. )
  1092. (pin passive line (at 3.81 0 180) (length 2.9972)
  1093. (name "~" (effects (font (size 1.27 1.27))))
  1094. (number "2" (effects (font (size 1.27 1.27))))
  1095. )
  1096. )
  1097. )
  1098. (symbol "global:LM317" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1099. (property "Reference" "U" (id 0) (at 3.81 -6.35 0)
  1100. (effects (font (size 1.524 1.524)))
  1101. )
  1102. (property "Value" "LM317" (id 1) (at 0 5.08 0)
  1103. (effects (font (size 1.524 1.524)))
  1104. )
  1105. (property "Footprint" "" (id 2) (at 0 0 0)
  1106. (effects (font (size 1.524 1.524)))
  1107. )
  1108. (property "Datasheet" "" (id 3) (at 0 0 0)
  1109. (effects (font (size 1.524 1.524)))
  1110. )
  1111. (symbol "LM317_0_1"
  1112. (rectangle (start -5.08 3.81) (end 5.08 -5.08)
  1113. (stroke (width 0) (type default) (color 0 0 0 0))
  1114. (fill (type none))
  1115. )
  1116. )
  1117. (symbol "LM317_1_1"
  1118. (pin input line (at 0 -10.16 90) (length 5.08)
  1119. (name "Adj" (effects (font (size 1.27 1.27))))
  1120. (number "1" (effects (font (size 1.27 1.27))))
  1121. )
  1122. (pin power_out line (at 10.16 0 180) (length 5.08)
  1123. (name "Vout" (effects (font (size 1.27 1.27))))
  1124. (number "2" (effects (font (size 1.27 1.27))))
  1125. )
  1126. (pin power_in line (at -10.16 0 0) (length 5.08)
  1127. (name "Vin" (effects (font (size 1.27 1.27))))
  1128. (number "3" (effects (font (size 1.27 1.27))))
  1129. )
  1130. )
  1131. )
  1132. (symbol "global:NPN" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1133. (property "Reference" "Q" (id 0) (at 3.81 -2.286 0)
  1134. (effects (font (size 1.524 1.524)))
  1135. )
  1136. (property "Value" "NPN" (id 1) (at 5.08 1.016 0)
  1137. (effects (font (size 1.524 1.524)))
  1138. )
  1139. (property "Footprint" "" (id 2) (at -2.54 0 0)
  1140. (effects (font (size 1.524 1.524)) hide)
  1141. )
  1142. (property "Datasheet" "" (id 3) (at -2.54 0 0)
  1143. (effects (font (size 1.524 1.524)) hide)
  1144. )
  1145. (symbol "NPN_0_1"
  1146. (polyline
  1147. (pts
  1148. (xy -1.016 0)
  1149. (xy -2.54 0)
  1150. )
  1151. (stroke (width 0) (type default) (color 0 0 0 0))
  1152. (fill (type none))
  1153. )
  1154. (polyline
  1155. (pts
  1156. (xy -1.016 0)
  1157. (xy 1.27 -2.286)
  1158. )
  1159. (stroke (width 0) (type default) (color 0 0 0 0))
  1160. (fill (type none))
  1161. )
  1162. (polyline
  1163. (pts
  1164. (xy -1.016 0)
  1165. (xy 1.27 2.286)
  1166. )
  1167. (stroke (width 0) (type default) (color 0 0 0 0))
  1168. (fill (type none))
  1169. )
  1170. (polyline
  1171. (pts
  1172. (xy -1.016 1.27)
  1173. (xy -1.016 -1.27)
  1174. )
  1175. (stroke (width 0) (type default) (color 0 0 0 0))
  1176. (fill (type none))
  1177. )
  1178. (polyline
  1179. (pts
  1180. (xy -0.762 -0.508)
  1181. (xy -0.508 -0.254)
  1182. )
  1183. (stroke (width 0) (type default) (color 0 0 0 0))
  1184. (fill (type none))
  1185. )
  1186. (polyline
  1187. (pts
  1188. (xy -0.762 -0.508)
  1189. (xy -0.508 -0.254)
  1190. )
  1191. (stroke (width 0) (type default) (color 0 0 0 0))
  1192. (fill (type none))
  1193. )
  1194. (polyline
  1195. (pts
  1196. (xy -0.762 -0.508)
  1197. (xy -0.254 -0.762)
  1198. )
  1199. (stroke (width 0) (type default) (color 0 0 0 0))
  1200. (fill (type none))
  1201. )
  1202. (polyline
  1203. (pts
  1204. (xy -0.762 -0.508)
  1205. (xy -0.254 -0.762)
  1206. )
  1207. (stroke (width 0) (type default) (color 0 0 0 0))
  1208. (fill (type none))
  1209. )
  1210. (polyline
  1211. (pts
  1212. (xy -0.254 -0.762)
  1213. (xy -0.508 -0.254)
  1214. )
  1215. (stroke (width 0) (type default) (color 0 0 0 0))
  1216. (fill (type none))
  1217. )
  1218. (polyline
  1219. (pts
  1220. (xy -0.254 -0.762)
  1221. (xy -0.508 -0.254)
  1222. )
  1223. (stroke (width 0) (type default) (color 0 0 0 0))
  1224. (fill (type none))
  1225. )
  1226. (polyline
  1227. (pts
  1228. (xy 1.27 -2.54)
  1229. (xy 1.27 -2.286)
  1230. )
  1231. (stroke (width 0) (type default) (color 0 0 0 0))
  1232. (fill (type none))
  1233. )
  1234. (polyline
  1235. (pts
  1236. (xy 1.27 2.54)
  1237. (xy 1.27 2.286)
  1238. )
  1239. (stroke (width 0) (type default) (color 0 0 0 0))
  1240. (fill (type none))
  1241. )
  1242. (circle (center 0 0) (radius 2.6162)
  1243. (stroke (width 0) (type default) (color 0 0 0 0))
  1244. (fill (type none))
  1245. )
  1246. )
  1247. (symbol "NPN_1_1"
  1248. (pin input line (at -7.62 0 0) (length 5.08)
  1249. (name "~" (effects (font (size 1.27 1.27))))
  1250. (number "1" (effects (font (size 1.27 1.27))))
  1251. )
  1252. (pin input line (at 1.27 -7.62 90) (length 5.08)
  1253. (name "~" (effects (font (size 1.27 1.27))))
  1254. (number "2" (effects (font (size 1.27 1.27))))
  1255. )
  1256. (pin input line (at 1.27 7.62 270) (length 5.08)
  1257. (name "~" (effects (font (size 1.27 1.27))))
  1258. (number "3" (effects (font (size 1.27 1.27))))
  1259. )
  1260. )
  1261. )
  1262. (symbol "global:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1263. (property "Reference" "R" (id 0) (at 2.032 0 90)
  1264. (effects (font (size 1.27 1.27)))
  1265. )
  1266. (property "Value" "R" (id 1) (at 0 0 90)
  1267. (effects (font (size 1.27 1.27)))
  1268. )
  1269. (property "Footprint" "" (id 2) (at -1.778 0 90)
  1270. (effects (font (size 1.27 1.27)))
  1271. )
  1272. (property "Datasheet" "" (id 3) (at 0 0 0)
  1273. (effects (font (size 1.27 1.27)))
  1274. )
  1275. (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0)
  1276. (effects (font (size 1.27 1.27)) hide)
  1277. )
  1278. (symbol "R_0_1"
  1279. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  1280. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1281. (fill (type none))
  1282. )
  1283. )
  1284. (symbol "R_1_1"
  1285. (pin passive line (at 0 3.81 270) (length 1.27)
  1286. (name "~" (effects (font (size 1.27 1.27))))
  1287. (number "1" (effects (font (size 1.27 1.27))))
  1288. )
  1289. (pin passive line (at 0 -3.81 90) (length 1.27)
  1290. (name "~" (effects (font (size 1.27 1.27))))
  1291. (number "2" (effects (font (size 1.27 1.27))))
  1292. )
  1293. )
  1294. )
  1295. (symbol "global:SW_PUSH" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1296. (property "Reference" "SW" (id 0) (at 3.81 2.794 0)
  1297. (effects (font (size 1.27 1.27)))
  1298. )
  1299. (property "Value" "SW_PUSH" (id 1) (at 0 -2.032 0)
  1300. (effects (font (size 1.27 1.27)))
  1301. )
  1302. (property "Footprint" "" (id 2) (at 0 0 0)
  1303. (effects (font (size 1.27 1.27)))
  1304. )
  1305. (property "Datasheet" "" (id 3) (at 0 0 0)
  1306. (effects (font (size 1.27 1.27)))
  1307. )
  1308. (symbol "SW_PUSH_0_1"
  1309. (rectangle (start -4.318 1.27) (end 4.318 1.524)
  1310. (stroke (width 0) (type default) (color 0 0 0 0))
  1311. (fill (type none))
  1312. )
  1313. (polyline
  1314. (pts
  1315. (xy -1.016 1.524)
  1316. (xy -0.762 2.286)
  1317. (xy 0.762 2.286)
  1318. (xy 1.016 1.524)
  1319. )
  1320. (stroke (width 0) (type default) (color 0 0 0 0))
  1321. (fill (type none))
  1322. )
  1323. (pin passive inverted (at -7.62 0 0) (length 5.08)
  1324. (name "1" (effects (font (size 1.27 1.27))))
  1325. (number "1" (effects (font (size 1.27 1.27))))
  1326. )
  1327. (pin passive inverted (at 7.62 0 180) (length 5.08)
  1328. (name "2" (effects (font (size 1.27 1.27))))
  1329. (number "2" (effects (font (size 1.27 1.27))))
  1330. )
  1331. )
  1332. )
  1333. )
  1334. (junction (at 251.46 113.03) (diameter 0) (color 0 0 0 0)
  1335. (uuid 08c21434-3e99-49b5-9ad5-6e28590d527c)
  1336. )
  1337. (junction (at 36.195 92.71) (diameter 0) (color 0 0 0 0)
  1338. (uuid 09560d14-68e1-4487-b0e5-5a074bd531da)
  1339. )
  1340. (junction (at 62.865 48.26) (diameter 0) (color 0 0 0 0)
  1341. (uuid 0dd1cb06-3963-46de-89e6-7dfe2953a57b)
  1342. )
  1343. (junction (at 22.225 82.55) (diameter 0) (color 0 0 0 0)
  1344. (uuid 1055d431-df1e-48eb-a9cb-4fd4390297e3)
  1345. )
  1346. (junction (at 83.82 193.04) (diameter 0) (color 0 0 0 0)
  1347. (uuid 149736e9-3f33-49b0-9e91-b413a08e395b)
  1348. )
  1349. (junction (at 173.99 156.21) (diameter 0) (color 0 0 0 0)
  1350. (uuid 1b27c953-7507-46b8-a997-86c09561261e)
  1351. )
  1352. (junction (at 15.24 25.4) (diameter 0) (color 0 0 0 0)
  1353. (uuid 1d868796-7520-4c49-a773-fec5a953d672)
  1354. )
  1355. (junction (at 251.46 147.32) (diameter 0) (color 0 0 0 0)
  1356. (uuid 235ff1e2-aa33-4bd3-922e-68b52d9e5232)
  1357. )
  1358. (junction (at 36.195 104.14) (diameter 0) (color 0 0 0 0)
  1359. (uuid 2768c67f-1e09-46f5-8f5d-3dddffec2ca8)
  1360. )
  1361. (junction (at 156.21 25.4) (diameter 0) (color 0 0 0 0)
  1362. (uuid 2bb6ddce-9b7d-4f27-a189-377311665e2d)
  1363. )
  1364. (junction (at 105.41 86.36) (diameter 0) (color 0 0 0 0)
  1365. (uuid 34a26e4c-101a-4ff2-9c18-c44f432d70fd)
  1366. )
  1367. (junction (at 91.44 193.04) (diameter 0) (color 0 0 0 0)
  1368. (uuid 3aecb52a-f312-4ab8-bc60-0eb606e89df5)
  1369. )
  1370. (junction (at 49.53 82.55) (diameter 0) (color 0 0 0 0)
  1371. (uuid 3b5d66d7-c6c5-408b-a5df-d6c041f7e143)
  1372. )
  1373. (junction (at 77.47 185.42) (diameter 0) (color 0 0 0 0)
  1374. (uuid 47e3f16e-a3b9-4204-bf0c-4c15bfd4edc5)
  1375. )
  1376. (junction (at 82.55 25.4) (diameter 0) (color 0 0 0 0)
  1377. (uuid 51df1158-f61d-40a5-8851-9d8051abb2b1)
  1378. )
  1379. (junction (at 100.33 95.25) (diameter 0) (color 0 0 0 0)
  1380. (uuid 56651783-eee6-43fc-b895-89960c8bb99c)
  1381. )
  1382. (junction (at 91.44 185.42) (diameter 0) (color 0 0 0 0)
  1383. (uuid 5e895fd8-32f6-41a1-9778-047d26afc036)
  1384. )
  1385. (junction (at 46.355 69.85) (diameter 0) (color 0 0 0 0)
  1386. (uuid 610ff986-d714-4bb0-a489-dadd995d5bdb)
  1387. )
  1388. (junction (at 62.23 26.67) (diameter 0) (color 0 0 0 0)
  1389. (uuid 6372754a-d705-44d1-bbde-abe7929c93bd)
  1390. )
  1391. (junction (at 95.25 81.28) (diameter 0) (color 0 0 0 0)
  1392. (uuid 6d7f4296-6dce-4669-ac2b-5475627ca1df)
  1393. )
  1394. (junction (at 69.85 193.04) (diameter 0) (color 0 0 0 0)
  1395. (uuid 77712ef1-c8b6-4023-b5eb-d1a0b0e8a7fa)
  1396. )
  1397. (junction (at 55.245 48.26) (diameter 0) (color 0 0 0 0)
  1398. (uuid 7b75219e-9ac1-49d3-bd4d-bbd9fbd75a93)
  1399. )
  1400. (junction (at 45.085 104.14) (diameter 0) (color 0 0 0 0)
  1401. (uuid 7d7e0b64-85a0-414d-a0ff-311bdd420f40)
  1402. )
  1403. (junction (at 23.495 48.26) (diameter 0) (color 0 0 0 0)
  1404. (uuid 8323a4fb-291d-4ad6-94c3-6952b935cbbb)
  1405. )
  1406. (junction (at 37.465 58.42) (diameter 0) (color 0 0 0 0)
  1407. (uuid 84e39e97-b2e9-4cc5-bf59-c963c430127a)
  1408. )
  1409. (junction (at 77.47 193.04) (diameter 0) (color 0 0 0 0)
  1410. (uuid 854805d4-57f1-4dd6-b455-9d9345c52d56)
  1411. )
  1412. (junction (at 38.1 25.4) (diameter 0) (color 0 0 0 0)
  1413. (uuid 917f5010-9641-4a09-9f41-ba972f8b21c3)
  1414. )
  1415. (junction (at 45.085 92.71) (diameter 0) (color 0 0 0 0)
  1416. (uuid 94e8cad9-4bfe-4185-8a0c-4ce89837e3b6)
  1417. )
  1418. (junction (at 69.85 185.42) (diameter 0) (color 0 0 0 0)
  1419. (uuid 95280dd9-56c9-48d3-b53e-fc724217598a)
  1420. )
  1421. (junction (at 53.975 82.55) (diameter 0) (color 0 0 0 0)
  1422. (uuid 9d288d7b-28a7-4e42-88d9-49d12af6231a)
  1423. )
  1424. (junction (at 37.465 69.85) (diameter 0) (color 0 0 0 0)
  1425. (uuid 9e5a7091-385c-4340-9366-84a34c4b53fe)
  1426. )
  1427. (junction (at 123.19 157.48) (diameter 0) (color 0 0 0 0)
  1428. (uuid a2011932-b521-4cf3-b1a5-2a4d93f22ff7)
  1429. )
  1430. (junction (at 123.19 149.86) (diameter 0) (color 0 0 0 0)
  1431. (uuid b2b9b18b-2604-4e15-b811-f84fd5d2b0ff)
  1432. )
  1433. (junction (at 236.22 113.03) (diameter 0) (color 0 0 0 0)
  1434. (uuid bd435de7-de7e-4e74-b6be-9c4cf8a06987)
  1435. )
  1436. (junction (at 61.595 82.55) (diameter 0) (color 0 0 0 0)
  1437. (uuid c7c5e28a-dd09-4439-a975-9e7b6b622567)
  1438. )
  1439. (junction (at 50.8 48.26) (diameter 0) (color 0 0 0 0)
  1440. (uuid c86a6d4e-5330-451e-b2c1-b456889ce72d)
  1441. )
  1442. (junction (at 236.22 147.32) (diameter 0) (color 0 0 0 0)
  1443. (uuid cbce24c3-5e48-47b3-b70d-980737fff57f)
  1444. )
  1445. (junction (at 101.6 25.4) (diameter 0) (color 0 0 0 0)
  1446. (uuid cf3545ed-a0fb-4425-a58e-27c552fb66a2)
  1447. )
  1448. (junction (at 92.71 52.07) (diameter 0) (color 0 0 0 0)
  1449. (uuid d0e3e543-533b-4b53-a1aa-28c4ed05cbd7)
  1450. )
  1451. (junction (at 49.53 92.71) (diameter 0) (color 0 0 0 0)
  1452. (uuid d6ce3631-5ccc-499e-8d5e-22d235d33c89)
  1453. )
  1454. (junction (at 100.33 83.82) (diameter 0) (color 0 0 0 0)
  1455. (uuid d79c225d-88f6-40a5-9677-d3a5d2aea505)
  1456. )
  1457. (junction (at 124.46 25.4) (diameter 0) (color 0 0 0 0)
  1458. (uuid daa5444c-7bd6-4f19-8ee9-83fe563d74ef)
  1459. )
  1460. (junction (at 83.82 185.42) (diameter 0) (color 0 0 0 0)
  1461. (uuid df378126-25af-496a-b891-4cb4e307b51a)
  1462. )
  1463. (junction (at 146.05 96.52) (diameter 0) (color 0 0 0 0)
  1464. (uuid e419e107-7fa5-4af8-9397-6dfd1f8735dc)
  1465. )
  1466. (junction (at 46.355 58.42) (diameter 0) (color 0 0 0 0)
  1467. (uuid e787a10c-9097-4bc5-99aa-61d8a0e920fb)
  1468. )
  1469. (junction (at 50.8 58.42) (diameter 0) (color 0 0 0 0)
  1470. (uuid f413dede-2b3a-49e3-bd1e-12898c85f181)
  1471. )
  1472. (junction (at 127 52.07) (diameter 0) (color 0 0 0 0)
  1473. (uuid f562f0be-0b69-4ebb-b2b9-1755f63ecfb2)
  1474. )
  1475. (no_connect (at 81.28 160.02) (uuid 01761860-6bc6-4f84-8924-266a407bac21))
  1476. (no_connect (at 29.845 45.72) (uuid 114af1f1-1867-4174-992f-aef4f04c0973))
  1477. (no_connect (at 224.79 29.21) (uuid 1b928611-1c41-4274-b7a1-3f835f2a7369))
  1478. (no_connect (at 60.96 127) (uuid 29a6dcb1-dc90-4e0e-ae64-a2bc6787880e))
  1479. (no_connect (at 256.54 87.63) (uuid 2bb8dc9e-79a8-4e62-acd6-7d626697f0f5))
  1480. (no_connect (at 81.28 144.78) (uuid 30bf418c-8dac-45f8-97c2-7cf58dd9f931))
  1481. (no_connect (at 132.08 133.35) (uuid 310e2147-b9bc-4777-bd7a-dd3e3df3f0e8))
  1482. (no_connect (at 146.05 152.4) (uuid 35318dc6-6e4b-4b1c-94a1-dc40d4da4c89))
  1483. (no_connect (at 63.5 175.26) (uuid 4120fa1d-c7aa-47bc-871a-68abb96fe7ef))
  1484. (no_connect (at 81.28 137.16) (uuid 4db490d1-89b5-4153-bcfc-91f581e9b52e))
  1485. (no_connect (at 63.5 127) (uuid 63334117-119c-466b-b28e-eac552e065c9))
  1486. (no_connect (at 167.64 130.81) (uuid 643426c2-1f96-4c19-96c5-8fe06b23480a))
  1487. (no_connect (at 146.05 86.36) (uuid 6fe5a819-8967-4aab-9723-bdf40c745021))
  1488. (no_connect (at 146.05 101.6) (uuid 72fa34e1-1f41-45f3-8881-9f60b0b6c35f))
  1489. (no_connect (at 68.58 127) (uuid 7658792b-4beb-4b5d-84b5-3f8ed6f9e9e1))
  1490. (no_connect (at 143.51 152.4) (uuid 78b40c5b-7fca-49a5-8dc7-0cc750e651bc))
  1491. (no_connect (at 66.04 127) (uuid 797d0f2b-1013-4cf6-85c0-0b7a0e325e3a))
  1492. (no_connect (at 132.08 125.73) (uuid 79d89a97-707d-4a4b-bb12-fe7354df9c25))
  1493. (no_connect (at 146.05 91.44) (uuid 7a88f0b2-98f6-43a3-855f-a13bff4773c4))
  1494. (no_connect (at 146.05 93.98) (uuid 7de0a5bb-e839-416b-bace-5944624755a5))
  1495. (no_connect (at 113.03 88.9) (uuid 84e58aed-d1df-4b5a-b097-1fe69640b65d))
  1496. (no_connect (at 33.02 142.24) (uuid 88a04f00-b23f-4e35-964a-754bb21954c2))
  1497. (no_connect (at 156.21 152.4) (uuid 8ef4219b-aff5-4727-9c4f-cf9ddf16f46f))
  1498. (no_connect (at 224.79 24.13) (uuid 966606e1-5d96-4801-9995-a3873409df00))
  1499. (no_connect (at 132.08 135.89) (uuid 97982ae1-2b20-45d2-8366-da3b864fc3a7))
  1500. (no_connect (at 33.02 144.78) (uuid 9bcb3f4e-2809-45ed-8ce5-d52271c7c47a))
  1501. (no_connect (at 113.03 101.6) (uuid a51ef00b-d725-45b4-8eba-568f7d46eb2b))
  1502. (no_connect (at 81.28 139.7) (uuid a5a83087-da80-4cf4-a42d-c9d482772d8a))
  1503. (no_connect (at 153.67 152.4) (uuid a6a84eeb-78c5-47c5-b0eb-d9181bae4b5f))
  1504. (no_connect (at 132.08 130.81) (uuid aaaaaeb8-1da4-4706-94b0-96f0d338b902))
  1505. (no_connect (at 224.79 21.59) (uuid aae91531-336a-4821-a277-6d573915f195))
  1506. (no_connect (at 245.11 81.28) (uuid ac6d37a4-fe52-4897-9e3f-40df70fb6de5))
  1507. (no_connect (at 151.13 152.4) (uuid c21470d5-cdb9-49c0-aba7-013629552452))
  1508. (no_connect (at 247.65 81.28) (uuid c5ded563-6da4-4f84-8dbf-6c0ca3f528f0))
  1509. (no_connect (at 224.79 26.67) (uuid c600faa4-b8be-48bf-b6a3-3c6111c1b305))
  1510. (no_connect (at 81.28 165.1) (uuid c7c65c6b-37b8-4fd7-a598-63d82e52de7c))
  1511. (no_connect (at 81.28 149.86) (uuid ccfeebc9-bee0-45fd-afd6-afe91f799275))
  1512. (no_connect (at 81.28 157.48) (uuid d1fd9a6e-fe62-4df1-9716-2d791dc3eaf5))
  1513. (no_connect (at 81.28 147.32) (uuid d3f9c3d4-10db-4e38-b738-662829f0b8b8))
  1514. (no_connect (at 33.02 139.7) (uuid d66c4b53-9528-48b5-a881-763b87bff4e7))
  1515. (no_connect (at 148.59 152.4) (uuid d708dd14-536f-4be4-bfe5-50dc8839ab96))
  1516. (no_connect (at 81.28 162.56) (uuid dcb97d16-3971-47ce-aaf4-cc48809aefdd))
  1517. (no_connect (at 167.64 128.27) (uuid e4bdc3ea-e135-4f9b-921f-537b6b834f76))
  1518. (no_connect (at 33.02 149.86) (uuid e57c2a48-d81e-40a5-b52d-98c3f9738969))
  1519. (no_connect (at 132.08 138.43) (uuid eba3da9a-dfd5-467e-a1d5-982fbeafdd8f))
  1520. (no_connect (at 113.03 91.44) (uuid f0f60472-2af1-4b51-a5c0-98d840a425b4))
  1521. (no_connect (at 60.96 175.26) (uuid ff74a3a2-8970-4895-b2bc-7f45c5caaaee))
  1522. (wire (pts (xy 22.225 104.14) (xy 36.195 104.14))
  1523. (stroke (width 0) (type default) (color 0 0 0 0))
  1524. (uuid 021cc9bf-c9a6-4832-ba87-1fa337810554)
  1525. )
  1526. (polyline (pts (xy 252.73 76.2) (xy 252.73 80.01))
  1527. (stroke (width 0) (type default) (color 0 0 0 0))
  1528. (uuid 055c0f7f-f3c9-4204-a581-1c2bc1ede5c6)
  1529. )
  1530. (wire (pts (xy 46.355 67.945) (xy 46.355 69.85))
  1531. (stroke (width 0) (type default) (color 0 0 0 0))
  1532. (uuid 063693c6-9afd-486e-b29a-99715a1b0036)
  1533. )
  1534. (wire (pts (xy 36.195 104.14) (xy 45.085 104.14))
  1535. (stroke (width 0) (type default) (color 0 0 0 0))
  1536. (uuid 08392f5e-6990-4cab-a6af-aa2077918e22)
  1537. )
  1538. (wire (pts (xy 161.29 83.82) (xy 146.05 83.82))
  1539. (stroke (width 0) (type default) (color 0 0 0 0))
  1540. (uuid 0877c7a9-c469-4407-b5f0-9da96d1be3a7)
  1541. )
  1542. (wire (pts (xy 50.8 58.42) (xy 50.8 57.785))
  1543. (stroke (width 0) (type default) (color 0 0 0 0))
  1544. (uuid 08a98dfc-3f0f-42e1-a751-cebdaa550f8f)
  1545. )
  1546. (wire (pts (xy 146.05 99.06) (xy 146.05 96.52))
  1547. (stroke (width 0) (type default) (color 0 0 0 0))
  1548. (uuid 0a56d446-6d49-4b0f-88d0-1e1b0f4016d8)
  1549. )
  1550. (wire (pts (xy 171.45 135.89) (xy 167.64 135.89))
  1551. (stroke (width 0) (type default) (color 0 0 0 0))
  1552. (uuid 0b486777-7e6f-46a4-8935-55352e797534)
  1553. )
  1554. (wire (pts (xy 91.44 193.04) (xy 99.06 193.04))
  1555. (stroke (width 0) (type default) (color 0 0 0 0))
  1556. (uuid 0daac8bc-c0ec-414f-afe0-d7a02f46547c)
  1557. )
  1558. (wire (pts (xy 91.44 185.42) (xy 83.82 185.42))
  1559. (stroke (width 0) (type default) (color 0 0 0 0))
  1560. (uuid 1107f39f-1ba6-4333-8cd8-87dd2be4f0f5)
  1561. )
  1562. (wire (pts (xy 37.465 69.85) (xy 46.355 69.85))
  1563. (stroke (width 0) (type default) (color 0 0 0 0))
  1564. (uuid 126134bd-e8f7-4648-9ab8-cb826a5d57c4)
  1565. )
  1566. (polyline (pts (xy 222.25 38.1) (xy 222.25 34.29))
  1567. (stroke (width 0) (type default) (color 0 0 0 0))
  1568. (uuid 14646b77-0eaa-4e9f-b7cc-563aefe98486)
  1569. )
  1570. (wire (pts (xy 22.225 97.79) (xy 22.225 104.14))
  1571. (stroke (width 0) (type default) (color 0 0 0 0))
  1572. (uuid 1b47072b-9985-439b-a0f3-2b0ea2888055)
  1573. )
  1574. (polyline (pts (xy 250.19 52.07) (xy 257.81 52.07))
  1575. (stroke (width 0) (type default) (color 0 0 0 0))
  1576. (uuid 1d8d4d82-84ae-404a-a678-d25379aa6c6e)
  1577. )
  1578. (wire (pts (xy 127 52.07) (xy 127 58.42))
  1579. (stroke (width 0) (type default) (color 0 0 0 0))
  1580. (uuid 1e76a212-d588-4a98-a856-dc6ed28716da)
  1581. )
  1582. (wire (pts (xy 47.625 48.26) (xy 50.8 48.26))
  1583. (stroke (width 0) (type default) (color 0 0 0 0))
  1584. (uuid 20e18c97-e4b7-407a-903c-58b58cdd0d29)
  1585. )
  1586. (polyline (pts (xy 229.87 20.32) (xy 229.87 19.05))
  1587. (stroke (width 0) (type default) (color 0 0 0 0))
  1588. (uuid 2149499b-9696-426e-9143-2df5ea9a7725)
  1589. )
  1590. (wire (pts (xy 91.44 86.36) (xy 105.41 86.36))
  1591. (stroke (width 0) (type default) (color 0 0 0 0))
  1592. (uuid 24915278-2134-4da3-ad56-5255f9ee3d04)
  1593. )
  1594. (wire (pts (xy 107.95 52.07) (xy 107.95 58.42))
  1595. (stroke (width 0) (type default) (color 0 0 0 0))
  1596. (uuid 24e49ca8-0d50-4c0e-84e5-5b3e29fb6b63)
  1597. )
  1598. (wire (pts (xy 187.96 22.86) (xy 187.96 30.48))
  1599. (stroke (width 0) (type default) (color 0 0 0 0))
  1600. (uuid 254c9985-dbf1-4d2a-b162-e00084813232)
  1601. )
  1602. (wire (pts (xy 107.95 45.72) (xy 104.14 45.72))
  1603. (stroke (width 0) (type default) (color 0 0 0 0))
  1604. (uuid 25de9944-603e-4cd1-a869-1b19906cc6f7)
  1605. )
  1606. (wire (pts (xy 53.975 83.82) (xy 53.975 82.55))
  1607. (stroke (width 0) (type default) (color 0 0 0 0))
  1608. (uuid 29016bb8-dc5c-4a6d-908a-a4ce6e598e76)
  1609. )
  1610. (wire (pts (xy 45.085 104.14) (xy 61.595 104.14))
  1611. (stroke (width 0) (type default) (color 0 0 0 0))
  1612. (uuid 29aa930f-1485-43c9-89c2-5012a84c2e42)
  1613. )
  1614. (polyline (pts (xy 82.55 40.64) (xy 82.55 114.3))
  1615. (stroke (width 0) (type default) (color 0 0 0 0))
  1616. (uuid 29d33bd3-6b9f-4f68-9a7b-458cf163cf34)
  1617. )
  1618. (wire (pts (xy 23.495 69.85) (xy 37.465 69.85))
  1619. (stroke (width 0) (type default) (color 0 0 0 0))
  1620. (uuid 2aac0772-3720-4f22-bce6-a4b6621cecd7)
  1621. )
  1622. (wire (pts (xy 61.595 104.14) (xy 61.595 99.06))
  1623. (stroke (width 0) (type default) (color 0 0 0 0))
  1624. (uuid 2af6628f-4fd9-4224-826c-229a8253561a)
  1625. )
  1626. (wire (pts (xy 83.82 185.42) (xy 77.47 185.42))
  1627. (stroke (width 0) (type default) (color 0 0 0 0))
  1628. (uuid 2b0f1684-221f-4051-8623-8e785dd8fad4)
  1629. )
  1630. (wire (pts (xy 236.22 113.03) (xy 242.57 113.03))
  1631. (stroke (width 0) (type default) (color 0 0 0 0))
  1632. (uuid 2ee313b0-d2ad-4472-b9d7-6a7d336b03df)
  1633. )
  1634. (wire (pts (xy 236.22 147.32) (xy 242.57 147.32))
  1635. (stroke (width 0) (type default) (color 0 0 0 0))
  1636. (uuid 2f3fb9cc-b67f-480b-a252-5e24094faa29)
  1637. )
  1638. (wire (pts (xy 50.8 50.165) (xy 50.8 48.26))
  1639. (stroke (width 0) (type default) (color 0 0 0 0))
  1640. (uuid 3018e0b3-f930-4de4-9c42-b6a9b5c9b301)
  1641. )
  1642. (wire (pts (xy 173.99 156.21) (xy 172.72 156.21))
  1643. (stroke (width 0) (type default) (color 0 0 0 0))
  1644. (uuid 302417df-b912-4015-bc44-7f476dfd1415)
  1645. )
  1646. (wire (pts (xy 92.71 45.72) (xy 92.71 52.07))
  1647. (stroke (width 0) (type default) (color 0 0 0 0))
  1648. (uuid 31074a67-abd7-4272-abbd-6c3f9af93bfb)
  1649. )
  1650. (polyline (pts (xy 262.89 80.01) (xy 262.89 69.85))
  1651. (stroke (width 0) (type default) (color 0 0 0 0))
  1652. (uuid 334bdaf1-43da-46fe-b675-ae09930bbf12)
  1653. )
  1654. (wire (pts (xy 118.11 157.48) (xy 123.19 157.48))
  1655. (stroke (width 0) (type default) (color 0 0 0 0))
  1656. (uuid 359c4245-0d1c-4e0e-95bb-acb202bf211c)
  1657. )
  1658. (wire (pts (xy 46.355 58.42) (xy 50.8 58.42))
  1659. (stroke (width 0) (type default) (color 0 0 0 0))
  1660. (uuid 3c2bc024-1681-4dbf-8b14-2880d8fb2a73)
  1661. )
  1662. (polyline (pts (xy 252.73 80.01) (xy 255.27 80.01))
  1663. (stroke (width 0) (type default) (color 0 0 0 0))
  1664. (uuid 3c995002-cf2a-4abb-8564-c427326ba10f)
  1665. )
  1666. (wire (pts (xy 62.865 48.26) (xy 69.215 48.26))
  1667. (stroke (width 0) (type default) (color 0 0 0 0))
  1668. (uuid 3ca9f936-b1df-4565-a2f8-c75c61003196)
  1669. )
  1670. (wire (pts (xy 236.22 146.05) (xy 236.22 147.32))
  1671. (stroke (width 0) (type default) (color 0 0 0 0))
  1672. (uuid 3cb1547d-88f9-4720-919d-92c82162c72e)
  1673. )
  1674. (polyline (pts (xy 257.81 80.01) (xy 262.89 80.01))
  1675. (stroke (width 0) (type default) (color 0 0 0 0))
  1676. (uuid 3dbaf2a8-c9be-4dd3-855f-d531ba90a877)
  1677. )
  1678. (polyline (pts (xy 176.53 166.37) (xy 105.41 166.37))
  1679. (stroke (width 0) (type default) (color 0 0 0 0))
  1680. (uuid 3ee4313d-2ebc-4e41-b27d-cc926f5accf0)
  1681. )
  1682. (polyline (pts (xy 12.7 114.3) (xy 196.85 114.3))
  1683. (stroke (width 0) (type default) (color 0 0 0 0))
  1684. (uuid 40ffe804-3246-4867-9ca9-fb3af5c188f4)
  1685. )
  1686. (wire (pts (xy 254 147.32) (xy 251.46 147.32))
  1687. (stroke (width 0) (type default) (color 0 0 0 0))
  1688. (uuid 42e74d93-fb04-44d0-a9d4-605bb6ed12e0)
  1689. )
  1690. (wire (pts (xy 146.05 96.52) (xy 149.86 96.52))
  1691. (stroke (width 0) (type default) (color 0 0 0 0))
  1692. (uuid 444bc966-1a19-4093-8bd4-350870c6100b)
  1693. )
  1694. (wire (pts (xy 45.085 92.71) (xy 49.53 92.71))
  1695. (stroke (width 0) (type default) (color 0 0 0 0))
  1696. (uuid 48438df7-c0e6-41c5-83e3-e4d5a073f670)
  1697. )
  1698. (wire (pts (xy 45.085 102.235) (xy 45.085 104.14))
  1699. (stroke (width 0) (type default) (color 0 0 0 0))
  1700. (uuid 4896e24f-afb4-4d65-89d6-9e77e81998ae)
  1701. )
  1702. (wire (pts (xy 53.975 82.55) (xy 61.595 82.55))
  1703. (stroke (width 0) (type default) (color 0 0 0 0))
  1704. (uuid 4b1aca6b-1b9b-4e77-a6d5-92c76e781ff8)
  1705. )
  1706. (wire (pts (xy 95.25 87.63) (xy 95.25 81.28))
  1707. (stroke (width 0) (type default) (color 0 0 0 0))
  1708. (uuid 50682684-aa81-4631-b02a-33c9e61a899d)
  1709. )
  1710. (polyline (pts (xy 262.89 69.85) (xy 257.81 69.85))
  1711. (stroke (width 0) (type default) (color 0 0 0 0))
  1712. (uuid 51f0cf60-ef6f-4bdc-90c6-15f229ebaf66)
  1713. )
  1714. (polyline (pts (xy 242.57 30.48) (xy 242.57 34.29))
  1715. (stroke (width 0) (type default) (color 0 0 0 0))
  1716. (uuid 5262aef1-af25-4bf7-8a6c-36ab1cb5e2e1)
  1717. )
  1718. (wire (pts (xy 156.21 25.4) (xy 153.67 25.4))
  1719. (stroke (width 0) (type default) (color 0 0 0 0))
  1720. (uuid 52caaf29-3451-4ff4-8b8a-39683b977839)
  1721. )
  1722. (wire (pts (xy 45.085 94.615) (xy 45.085 92.71))
  1723. (stroke (width 0) (type default) (color 0 0 0 0))
  1724. (uuid 540f91b5-9f1b-4d35-baa8-d752a291654b)
  1725. )
  1726. (wire (pts (xy 61.595 82.55) (xy 67.945 82.55))
  1727. (stroke (width 0) (type default) (color 0 0 0 0))
  1728. (uuid 566cbc81-8e6d-4135-b92d-b653e3eab03d)
  1729. )
  1730. (wire (pts (xy 69.85 185.42) (xy 64.77 185.42))
  1731. (stroke (width 0) (type default) (color 0 0 0 0))
  1732. (uuid 568c950b-c653-4407-b833-fb8fc54e36b8)
  1733. )
  1734. (wire (pts (xy 62.865 48.26) (xy 62.865 57.15))
  1735. (stroke (width 0) (type default) (color 0 0 0 0))
  1736. (uuid 56adf7ba-933a-4d80-8b04-6ec9118fc4a6)
  1737. )
  1738. (polyline (pts (xy 196.85 16.51) (xy 196.85 100.33))
  1739. (stroke (width 0) (type default) (color 0 0 0 0))
  1740. (uuid 587e9d15-7c2c-4221-a49a-9f1a9b587a77)
  1741. )
  1742. (wire (pts (xy 36.195 92.71) (xy 45.085 92.71))
  1743. (stroke (width 0) (type default) (color 0 0 0 0))
  1744. (uuid 5a7743e7-4dbc-4926-bbed-4f7f4dcc811b)
  1745. )
  1746. (wire (pts (xy 142.24 58.42) (xy 142.24 52.07))
  1747. (stroke (width 0) (type default) (color 0 0 0 0))
  1748. (uuid 5c74887a-8eae-42ec-928a-38f7b3ad2c43)
  1749. )
  1750. (wire (pts (xy 127 52.07) (xy 123.19 52.07))
  1751. (stroke (width 0) (type default) (color 0 0 0 0))
  1752. (uuid 5daed4e8-6b12-47d6-b445-94267fed0416)
  1753. )
  1754. (wire (pts (xy 69.85 193.04) (xy 77.47 193.04))
  1755. (stroke (width 0) (type default) (color 0 0 0 0))
  1756. (uuid 5e99f914-26ae-4acf-b2cf-c22dbb01facc)
  1757. )
  1758. (wire (pts (xy 37.465 58.42) (xy 46.355 58.42))
  1759. (stroke (width 0) (type default) (color 0 0 0 0))
  1760. (uuid 5eb77926-8a27-42c0-91cb-b98cc2867654)
  1761. )
  1762. (wire (pts (xy 61.595 82.55) (xy 61.595 91.44))
  1763. (stroke (width 0) (type default) (color 0 0 0 0))
  1764. (uuid 5eff35fa-81e5-40ef-a449-c56d1892d488)
  1765. )
  1766. (wire (pts (xy 55.245 49.53) (xy 55.245 48.26))
  1767. (stroke (width 0) (type default) (color 0 0 0 0))
  1768. (uuid 618bdba3-07ec-4045-beac-a20e7cd051fb)
  1769. )
  1770. (wire (pts (xy 236.22 111.76) (xy 236.22 113.03))
  1771. (stroke (width 0) (type default) (color 0 0 0 0))
  1772. (uuid 63e143d5-e08b-4af5-9c96-18f6e7391718)
  1773. )
  1774. (wire (pts (xy 105.41 95.25) (xy 100.33 95.25))
  1775. (stroke (width 0) (type default) (color 0 0 0 0))
  1776. (uuid 6568b07a-7d48-4407-927a-0951965df979)
  1777. )
  1778. (wire (pts (xy 50.8 48.26) (xy 55.245 48.26))
  1779. (stroke (width 0) (type default) (color 0 0 0 0))
  1780. (uuid 66c3ee1e-279b-49a2-89c3-9ee519b4833f)
  1781. )
  1782. (wire (pts (xy 251.46 147.32) (xy 250.19 147.32))
  1783. (stroke (width 0) (type default) (color 0 0 0 0))
  1784. (uuid 6909c656-93de-48ff-97b5-6e0d8d5c1e72)
  1785. )
  1786. (wire (pts (xy 36.195 104.14) (xy 36.195 105.41))
  1787. (stroke (width 0) (type default) (color 0 0 0 0))
  1788. (uuid 6ae672b1-e79c-47ba-95ad-4a796cdf7ecb)
  1789. )
  1790. (wire (pts (xy 185.42 147.32) (xy 181.61 147.32))
  1791. (stroke (width 0) (type default) (color 0 0 0 0))
  1792. (uuid 6b5ba131-339b-4c91-827e-d24030e1abc5)
  1793. )
  1794. (wire (pts (xy 118.11 149.86) (xy 123.19 149.86))
  1795. (stroke (width 0) (type default) (color 0 0 0 0))
  1796. (uuid 6bdae71c-c91b-4522-aaf8-a5ee68c58628)
  1797. )
  1798. (polyline (pts (xy 242.57 19.05) (xy 242.57 20.32))
  1799. (stroke (width 0) (type default) (color 0 0 0 0))
  1800. (uuid 703ebaf9-6e50-40e2-b368-97795d3f7b20)
  1801. )
  1802. (wire (pts (xy 91.44 81.28) (xy 95.25 81.28))
  1803. (stroke (width 0) (type default) (color 0 0 0 0))
  1804. (uuid 746fb507-ea5f-4bd8-825a-fb0ffdfedb07)
  1805. )
  1806. (wire (pts (xy 256.54 85.09) (xy 256.54 87.63))
  1807. (stroke (width 0) (type default) (color 0 0 0 0))
  1808. (uuid 747f39f3-2c28-44b9-9f60-2c93c0929d07)
  1809. )
  1810. (wire (pts (xy 92.71 45.72) (xy 96.52 45.72))
  1811. (stroke (width 0) (type default) (color 0 0 0 0))
  1812. (uuid 754d70dc-f075-4b4a-9444-ccafa2d113d8)
  1813. )
  1814. (wire (pts (xy 19.05 25.4) (xy 15.24 25.4))
  1815. (stroke (width 0) (type default) (color 0 0 0 0))
  1816. (uuid 76500368-235f-4caa-be1b-1adddcb7a1a2)
  1817. )
  1818. (polyline (pts (xy 196.85 101.6) (xy 196.85 165.1))
  1819. (stroke (width 0) (type default) (color 0 0 0 0))
  1820. (uuid 76cfb4b9-863c-4920-ae0a-00dd0c311c74)
  1821. )
  1822. (polyline (pts (xy 222.25 52.07) (xy 214.63 52.07))
  1823. (stroke (width 0) (type default) (color 0 0 0 0))
  1824. (uuid 777751af-b573-4228-a2d1-58bc25c0b096)
  1825. )
  1826. (wire (pts (xy 129.54 25.4) (xy 124.46 25.4))
  1827. (stroke (width 0) (type default) (color 0 0 0 0))
  1828. (uuid 780bab8f-df9d-4fa0-8dba-914f1c6084e0)
  1829. )
  1830. (polyline (pts (xy 214.63 66.04) (xy 214.63 69.85))
  1831. (stroke (width 0) (type default) (color 0 0 0 0))
  1832. (uuid 78f94daa-f2c2-4834-9939-bcfee24a0ad5)
  1833. )
  1834. (polyline (pts (xy 218.44 76.2) (xy 223.52 76.2))
  1835. (stroke (width 0) (type default) (color 0 0 0 0))
  1836. (uuid 7a802020-b43c-44b3-8b22-90a99f910f39)
  1837. )
  1838. (wire (pts (xy 156.21 25.4) (xy 165.1 25.4))
  1839. (stroke (width 0) (type default) (color 0 0 0 0))
  1840. (uuid 7b8d0a66-d33e-420e-9d28-77f8597da5a5)
  1841. )
  1842. (polyline (pts (xy 250.19 34.29) (xy 250.19 38.1))
  1843. (stroke (width 0) (type default) (color 0 0 0 0))
  1844. (uuid 7c6d1a72-206e-4fcc-a645-55e3d3f5b79e)
  1845. )
  1846. (polyline (pts (xy 229.87 34.29) (xy 229.87 30.48))
  1847. (stroke (width 0) (type default) (color 0 0 0 0))
  1848. (uuid 7d16917e-bb4b-4b11-a4da-49ae54e2e8fa)
  1849. )
  1850. (wire (pts (xy 23.495 55.88) (xy 23.495 48.26))
  1851. (stroke (width 0) (type default) (color 0 0 0 0))
  1852. (uuid 7d61520d-1cbd-41b3-aa0d-19dbbdb97d5b)
  1853. )
  1854. (wire (pts (xy 251.46 113.03) (xy 250.19 113.03))
  1855. (stroke (width 0) (type default) (color 0 0 0 0))
  1856. (uuid 7ee5c283-7d43-439e-9189-801b5f673341)
  1857. )
  1858. (wire (pts (xy 105.41 87.63) (xy 105.41 86.36))
  1859. (stroke (width 0) (type default) (color 0 0 0 0))
  1860. (uuid 7f0aa208-4951-4a0d-98fd-1a8d5e9a744c)
  1861. )
  1862. (polyline (pts (xy 149.86 40.64) (xy 196.85 40.64))
  1863. (stroke (width 0) (type default) (color 0 0 0 0))
  1864. (uuid 820032f8-d30a-4d25-a401-45ee2019a2bf)
  1865. )
  1866. (polyline (pts (xy 276.86 100.33) (xy 196.85 100.33))
  1867. (stroke (width 0) (type default) (color 0 0 0 0))
  1868. (uuid 82ac95c8-cb87-48de-be9b-ecbd147e915c)
  1869. )
  1870. (polyline (pts (xy 209.55 76.2) (xy 213.36 76.2))
  1871. (stroke (width 0) (type default) (color 0 0 0 0))
  1872. (uuid 83079975-cc25-49be-a5d9-44165267fd23)
  1873. )
  1874. (polyline (pts (xy 257.81 69.85) (xy 257.81 66.04))
  1875. (stroke (width 0) (type default) (color 0 0 0 0))
  1876. (uuid 855bfe0b-34e5-42ee-822d-097349f31920)
  1877. )
  1878. (wire (pts (xy 100.33 83.82) (xy 113.03 83.82))
  1879. (stroke (width 0) (type default) (color 0 0 0 0))
  1880. (uuid 85add57f-76ae-41cd-aa6a-5c192f3d0441)
  1881. )
  1882. (wire (pts (xy 49.53 84.455) (xy 49.53 82.55))
  1883. (stroke (width 0) (type default) (color 0 0 0 0))
  1884. (uuid 867cb6e5-b54b-4563-bebb-29f8f967ff3d)
  1885. )
  1886. (polyline (pts (xy 242.57 34.29) (xy 250.19 34.29))
  1887. (stroke (width 0) (type default) (color 0 0 0 0))
  1888. (uuid 88448aae-15ca-414c-b032-8b821f311658)
  1889. )
  1890. (polyline (pts (xy 148.59 12.7) (xy 148.59 68.58))
  1891. (stroke (width 0) (type default) (color 0 0 0 0))
  1892. (uuid 894b3fb3-ae8a-44d5-b293-906ba4ba88c2)
  1893. )
  1894. (polyline (pts (xy 257.81 52.07) (xy 257.81 55.88))
  1895. (stroke (width 0) (type default) (color 0 0 0 0))
  1896. (uuid 8a1a4cb2-cd5b-477b-bd79-eb4aa2f0dfd3)
  1897. )
  1898. (wire (pts (xy 37.465 58.42) (xy 37.465 62.23))
  1899. (stroke (width 0) (type default) (color 0 0 0 0))
  1900. (uuid 8a73c323-8713-415d-a74e-39a3df6972d0)
  1901. )
  1902. (wire (pts (xy 49.53 92.71) (xy 49.53 92.075))
  1903. (stroke (width 0) (type default) (color 0 0 0 0))
  1904. (uuid 90222bcd-ab74-420b-92b5-fc65a490f8aa)
  1905. )
  1906. (wire (pts (xy 92.71 52.07) (xy 92.71 58.42))
  1907. (stroke (width 0) (type default) (color 0 0 0 0))
  1908. (uuid 917575ab-6bc3-4345-bef8-45ac6a37ac92)
  1909. )
  1910. (wire (pts (xy 105.41 86.36) (xy 113.03 86.36))
  1911. (stroke (width 0) (type default) (color 0 0 0 0))
  1912. (uuid 93770049-0f3c-41d2-9eca-8fb4d05dc4ee)
  1913. )
  1914. (wire (pts (xy 83.82 193.04) (xy 91.44 193.04))
  1915. (stroke (width 0) (type default) (color 0 0 0 0))
  1916. (uuid 99f51920-da54-4013-ae1c-c8f7cd53fbfb)
  1917. )
  1918. (wire (pts (xy 127 58.42) (xy 130.81 58.42))
  1919. (stroke (width 0) (type default) (color 0 0 0 0))
  1920. (uuid 9d0c2213-a96c-449f-a703-6ad987d7736c)
  1921. )
  1922. (wire (pts (xy 77.47 193.04) (xy 83.82 193.04))
  1923. (stroke (width 0) (type default) (color 0 0 0 0))
  1924. (uuid 9dbc3178-9151-4886-bc03-05289deda6cd)
  1925. )
  1926. (wire (pts (xy 37.465 69.85) (xy 37.465 71.12))
  1927. (stroke (width 0) (type default) (color 0 0 0 0))
  1928. (uuid 9e8dbad8-6267-498e-91ca-20eee8e22623)
  1929. )
  1930. (wire (pts (xy 46.355 82.55) (xy 49.53 82.55))
  1931. (stroke (width 0) (type default) (color 0 0 0 0))
  1932. (uuid 9f77ae8b-9849-4139-8365-de2683c745e2)
  1933. )
  1934. (wire (pts (xy 53.975 92.71) (xy 53.975 91.44))
  1935. (stroke (width 0) (type default) (color 0 0 0 0))
  1936. (uuid a1639f26-9f60-4f8c-a8c2-91a9ec6be650)
  1937. )
  1938. (wire (pts (xy 66.04 26.67) (xy 62.23 26.67))
  1939. (stroke (width 0) (type default) (color 0 0 0 0))
  1940. (uuid a37d86e5-b449-47d9-9703-798225a0864a)
  1941. )
  1942. (wire (pts (xy 100.33 87.63) (xy 100.33 83.82))
  1943. (stroke (width 0) (type default) (color 0 0 0 0))
  1944. (uuid a38cea6f-e937-4763-b9ed-e60d2d71643d)
  1945. )
  1946. (wire (pts (xy 64.77 193.04) (xy 69.85 193.04))
  1947. (stroke (width 0) (type default) (color 0 0 0 0))
  1948. (uuid a84cb832-65d5-4cf3-b80d-ead9ea097563)
  1949. )
  1950. (wire (pts (xy 50.8 58.42) (xy 55.245 58.42))
  1951. (stroke (width 0) (type default) (color 0 0 0 0))
  1952. (uuid aa8c21a3-6eed-4577-bcee-5f7d1fbf1a21)
  1953. )
  1954. (wire (pts (xy 173.99 147.32) (xy 173.99 156.21))
  1955. (stroke (width 0) (type default) (color 0 0 0 0))
  1956. (uuid acacb2a5-1643-4f4d-9eaf-7a0c42b3787b)
  1957. )
  1958. (wire (pts (xy 36.195 92.71) (xy 36.195 96.52))
  1959. (stroke (width 0) (type default) (color 0 0 0 0))
  1960. (uuid ad84ee79-6813-4544-b641-c1fb778af816)
  1961. )
  1962. (wire (pts (xy 171.45 138.43) (xy 167.64 138.43))
  1963. (stroke (width 0) (type default) (color 0 0 0 0))
  1964. (uuid af274ad2-4a34-43e6-a791-278853420857)
  1965. )
  1966. (polyline (pts (xy 82.55 68.58) (xy 196.85 68.58))
  1967. (stroke (width 0) (type default) (color 0 0 0 0))
  1968. (uuid b023dbe0-bed4-4059-9191-c68d7d0983b4)
  1969. )
  1970. (polyline (pts (xy 214.63 69.85) (xy 209.55 69.85))
  1971. (stroke (width 0) (type default) (color 0 0 0 0))
  1972. (uuid b17db1b6-22e9-4fe9-b89b-6f5c9287967f)
  1973. )
  1974. (wire (pts (xy 62.865 69.85) (xy 62.865 64.77))
  1975. (stroke (width 0) (type default) (color 0 0 0 0))
  1976. (uuid b54e90a6-3a67-484b-a21d-76ccec7fa3f1)
  1977. )
  1978. (wire (pts (xy 46.355 69.85) (xy 62.865 69.85))
  1979. (stroke (width 0) (type default) (color 0 0 0 0))
  1980. (uuid b9310574-a4db-43fd-95b7-5d9a4197a987)
  1981. )
  1982. (polyline (pts (xy 229.87 19.05) (xy 242.57 19.05))
  1983. (stroke (width 0) (type default) (color 0 0 0 0))
  1984. (uuid b9526c52-a05a-4a0e-a129-a5b7d95924ad)
  1985. )
  1986. (wire (pts (xy 38.1 25.4) (xy 41.91 25.4))
  1987. (stroke (width 0) (type default) (color 0 0 0 0))
  1988. (uuid bad1f180-645e-4908-a863-53e07864d03f)
  1989. )
  1990. (wire (pts (xy 23.495 63.5) (xy 23.495 69.85))
  1991. (stroke (width 0) (type default) (color 0 0 0 0))
  1992. (uuid baedb56b-2dca-4630-897c-5815a4da23f2)
  1993. )
  1994. (wire (pts (xy 86.36 25.4) (xy 82.55 25.4))
  1995. (stroke (width 0) (type default) (color 0 0 0 0))
  1996. (uuid bb656221-f0d5-464a-a9e6-4fd4ff9b4d26)
  1997. )
  1998. (wire (pts (xy 251.46 147.32) (xy 251.46 154.94))
  1999. (stroke (width 0) (type default) (color 0 0 0 0))
  2000. (uuid bd109fc7-fdb7-47ad-ade2-99878bbe108a)
  2001. )
  2002. (wire (pts (xy 113.03 99.06) (xy 113.03 96.52))
  2003. (stroke (width 0) (type default) (color 0 0 0 0))
  2004. (uuid be1490b8-f8ac-4fe2-bc43-8dd992a151e1)
  2005. )
  2006. (wire (pts (xy 23.495 48.26) (xy 27.305 48.26))
  2007. (stroke (width 0) (type default) (color 0 0 0 0))
  2008. (uuid c1335cbd-ad52-4610-b5ed-6cd1aee394e1)
  2009. )
  2010. (wire (pts (xy 100.33 95.25) (xy 100.33 96.52))
  2011. (stroke (width 0) (type default) (color 0 0 0 0))
  2012. (uuid c1b1ac62-3728-4837-a0b1-4f744404e421)
  2013. )
  2014. (wire (pts (xy 254 113.03) (xy 251.46 113.03))
  2015. (stroke (width 0) (type default) (color 0 0 0 0))
  2016. (uuid c31bdf41-11a4-4115-9229-77c6baf8dcc2)
  2017. )
  2018. (wire (pts (xy 176.53 156.21) (xy 173.99 156.21))
  2019. (stroke (width 0) (type default) (color 0 0 0 0))
  2020. (uuid c3e38987-2c95-4f42-a21a-3b21443ea05f)
  2021. )
  2022. (wire (pts (xy 185.42 156.21) (xy 184.15 156.21))
  2023. (stroke (width 0) (type default) (color 0 0 0 0))
  2024. (uuid c5f03158-bfff-47d2-8706-92c7cec16c4f)
  2025. )
  2026. (polyline (pts (xy 13.97 40.64) (xy 148.59 40.64))
  2027. (stroke (width 0) (type default) (color 0 0 0 0))
  2028. (uuid c66cdc9c-9a25-4a04-bf41-e466db3bb260)
  2029. )
  2030. (wire (pts (xy 49.53 82.55) (xy 53.975 82.55))
  2031. (stroke (width 0) (type default) (color 0 0 0 0))
  2032. (uuid c717f477-5d32-4da3-9d6f-50763980f0cd)
  2033. )
  2034. (wire (pts (xy 22.225 82.55) (xy 26.035 82.55))
  2035. (stroke (width 0) (type default) (color 0 0 0 0))
  2036. (uuid c8854679-841e-4a79-b988-0212c0039f85)
  2037. )
  2038. (wire (pts (xy 19.685 48.26) (xy 23.495 48.26))
  2039. (stroke (width 0) (type default) (color 0 0 0 0))
  2040. (uuid c8b5a167-251f-4db2-a318-da5d11e43925)
  2041. )
  2042. (wire (pts (xy 127 45.72) (xy 127 52.07))
  2043. (stroke (width 0) (type default) (color 0 0 0 0))
  2044. (uuid c978e4d7-ef30-4950-8ed5-5d5f2d930404)
  2045. )
  2046. (polyline (pts (xy 250.19 48.26) (xy 250.19 52.07))
  2047. (stroke (width 0) (type default) (color 0 0 0 0))
  2048. (uuid ca66595f-9373-485f-9da7-2b9e89391be3)
  2049. )
  2050. (wire (pts (xy 55.245 48.26) (xy 62.865 48.26))
  2051. (stroke (width 0) (type default) (color 0 0 0 0))
  2052. (uuid ccdc66f0-1b70-4ea3-8662-ac1d460cdcc5)
  2053. )
  2054. (wire (pts (xy 95.25 81.28) (xy 113.03 81.28))
  2055. (stroke (width 0) (type default) (color 0 0 0 0))
  2056. (uuid ccf896f2-adcc-4b71-97f2-76ba400943c5)
  2057. )
  2058. (polyline (pts (xy 248.92 76.2) (xy 252.73 76.2))
  2059. (stroke (width 0) (type default) (color 0 0 0 0))
  2060. (uuid cd95b9a6-0f39-4d2e-9c4d-c0093c57d04b)
  2061. )
  2062. (wire (pts (xy 22.225 90.17) (xy 22.225 82.55))
  2063. (stroke (width 0) (type default) (color 0 0 0 0))
  2064. (uuid ceb89c73-0715-4783-b044-57f5ff37eac1)
  2065. )
  2066. (polyline (pts (xy 214.63 52.07) (xy 214.63 55.88))
  2067. (stroke (width 0) (type default) (color 0 0 0 0))
  2068. (uuid cec0c559-bf66-401b-a6e4-a44211a13243)
  2069. )
  2070. (wire (pts (xy 123.19 149.86) (xy 132.08 149.86))
  2071. (stroke (width 0) (type default) (color 0 0 0 0))
  2072. (uuid d13fe7bf-9ccb-4162-b35d-149781916547)
  2073. )
  2074. (polyline (pts (xy 222.25 48.26) (xy 222.25 52.07))
  2075. (stroke (width 0) (type default) (color 0 0 0 0))
  2076. (uuid d23cef65-8dc2-40e7-92a4-3941a458f2fb)
  2077. )
  2078. (wire (pts (xy 18.415 82.55) (xy 22.225 82.55))
  2079. (stroke (width 0) (type default) (color 0 0 0 0))
  2080. (uuid d59f03a2-6faa-403a-b94c-1e629ec96fa4)
  2081. )
  2082. (wire (pts (xy 251.46 113.03) (xy 251.46 120.65))
  2083. (stroke (width 0) (type default) (color 0 0 0 0))
  2084. (uuid d5d2cd0e-a01b-4816-883c-06fb6c904b08)
  2085. )
  2086. (wire (pts (xy 92.71 58.42) (xy 96.52 58.42))
  2087. (stroke (width 0) (type default) (color 0 0 0 0))
  2088. (uuid d9b0a2b3-2288-4043-9bed-a58ef387cd25)
  2089. )
  2090. (wire (pts (xy 55.245 58.42) (xy 55.245 57.15))
  2091. (stroke (width 0) (type default) (color 0 0 0 0))
  2092. (uuid da14e069-e4c8-446f-9435-d0b697e80e37)
  2093. )
  2094. (wire (pts (xy 100.33 95.25) (xy 95.25 95.25))
  2095. (stroke (width 0) (type default) (color 0 0 0 0))
  2096. (uuid e1ede91c-1f49-4252-bf65-0f0e1a400673)
  2097. )
  2098. (wire (pts (xy 46.355 60.325) (xy 46.355 58.42))
  2099. (stroke (width 0) (type default) (color 0 0 0 0))
  2100. (uuid e3921f1a-2e0d-43e4-886e-8d2be8fb17ca)
  2101. )
  2102. (wire (pts (xy 123.19 157.48) (xy 132.08 157.48))
  2103. (stroke (width 0) (type default) (color 0 0 0 0))
  2104. (uuid e66500a0-7c5c-4b51-8bb0-cee34e6762f3)
  2105. )
  2106. (wire (pts (xy 138.43 58.42) (xy 142.24 58.42))
  2107. (stroke (width 0) (type default) (color 0 0 0 0))
  2108. (uuid e75aadd5-c1fb-4965-958a-63dd41efb3d7)
  2109. )
  2110. (wire (pts (xy 107.95 58.42) (xy 104.14 58.42))
  2111. (stroke (width 0) (type default) (color 0 0 0 0))
  2112. (uuid e915e7cd-7539-414a-ba30-77ab4178c11b)
  2113. )
  2114. (wire (pts (xy 77.47 185.42) (xy 69.85 185.42))
  2115. (stroke (width 0) (type default) (color 0 0 0 0))
  2116. (uuid eae3b9b6-2db7-487c-bbda-b7eaf474f88b)
  2117. )
  2118. (polyline (pts (xy 209.55 69.85) (xy 209.55 76.2))
  2119. (stroke (width 0) (type default) (color 0 0 0 0))
  2120. (uuid ed9d676e-b2b5-4608-b950-f3dd48deb174)
  2121. )
  2122. (wire (pts (xy 104.14 25.4) (xy 101.6 25.4))
  2123. (stroke (width 0) (type default) (color 0 0 0 0))
  2124. (uuid f04362fb-a38a-4aa6-ae26-ce68a3bfff52)
  2125. )
  2126. (polyline (pts (xy 105.41 114.3) (xy 105.41 198.12))
  2127. (stroke (width 0) (type default) (color 0 0 0 0))
  2128. (uuid f399b2b2-6534-4c6e-a301-b49d5e88c988)
  2129. )
  2130. (polyline (pts (xy 222.25 34.29) (xy 229.87 34.29))
  2131. (stroke (width 0) (type default) (color 0 0 0 0))
  2132. (uuid f5792cfe-14ea-4175-9821-a9e91a68fc08)
  2133. )
  2134. (wire (pts (xy 187.96 22.86) (xy 190.5 22.86))
  2135. (stroke (width 0) (type default) (color 0 0 0 0))
  2136. (uuid f5ac9546-2702-4a57-ada6-3fb122029572)
  2137. )
  2138. (wire (pts (xy 99.06 185.42) (xy 91.44 185.42))
  2139. (stroke (width 0) (type default) (color 0 0 0 0))
  2140. (uuid f679c3b7-c4ed-4b1d-aa61-0f91ebab322b)
  2141. )
  2142. (wire (pts (xy 129.54 45.72) (xy 127 45.72))
  2143. (stroke (width 0) (type default) (color 0 0 0 0))
  2144. (uuid f7aaaf5b-d2fc-4e4a-9bb4-a123883c72ea)
  2145. )
  2146. (wire (pts (xy 49.53 92.71) (xy 53.975 92.71))
  2147. (stroke (width 0) (type default) (color 0 0 0 0))
  2148. (uuid fa55eb76-72ad-48fe-b0db-3ac8cce9a3b0)
  2149. )
  2150. (wire (pts (xy 91.44 83.82) (xy 100.33 83.82))
  2151. (stroke (width 0) (type default) (color 0 0 0 0))
  2152. (uuid feaab865-b1bf-4696-9d44-80df9768604d)
  2153. )
  2154. (text "EEPROM" (at 172.72 17.78 0)
  2155. (effects (font (size 1.524 1.524)) (justify left bottom))
  2156. (uuid 33b00762-7ea4-4a15-beca-dc7b819420c8)
  2157. )
  2158. (text "RTC\n" (at 128.27 113.03 0)
  2159. (effects (font (size 1.524 1.524)) (justify left bottom))
  2160. (uuid 3aa71fc8-47ff-4653-baaa-fc0f542d6df8)
  2161. )
  2162. (text "ME 22,5 UTR BUS 10/2\n" (at 248.92 99.06 0)
  2163. (effects (font (size 1.524 1.524) (thickness 0.3048) bold) (justify left bottom))
  2164. (uuid d69400ef-d9a9-4106-850e-93064d3fb770)
  2165. )
  2166. (text "ESP-12F\n" (at 144.78 158.75 0)
  2167. (effects (font (size 1.524 1.524)) (justify left bottom))
  2168. (uuid f2624499-35c6-45b2-a411-6cb893a9be4e)
  2169. )
  2170. (label "RX" (at 167.64 125.73 0)
  2171. (effects (font (size 1.524 1.524)) (justify left bottom))
  2172. (uuid 00e05d2e-bb0e-4152-88fa-bab4237ea965)
  2173. )
  2174. (label "TechniqueHaut5V" (at 247.65 24.13 0)
  2175. (effects (font (size 1.524 1.524)) (justify left bottom))
  2176. (uuid 0243498b-0c6c-4b87-bfe1-6cdee2abb093)
  2177. )
  2178. (label "CuveHaut5V" (at 62.23 19.05 0)
  2179. (effects (font (size 1.524 1.524)) (justify left bottom))
  2180. (uuid 03cacab4-2b1a-4fdb-bf57-4cf50601ffd7)
  2181. )
  2182. (label "AIN1" (at 55.88 175.26 270)
  2183. (effects (font (size 1.27 1.27)) (justify right bottom))
  2184. (uuid 03e3c663-1a3d-46f2-82d9-529ccff0b38d)
  2185. )
  2186. (label "TechniqueBas5V" (at 15.24 17.78 0)
  2187. (effects (font (size 1.524 1.524)) (justify left bottom))
  2188. (uuid 0472b0f0-f0d1-4999-b116-e8749a75f8bb)
  2189. )
  2190. (label "GND" (at 15.24 33.02 270)
  2191. (effects (font (size 1.27 1.27)) (justify right bottom))
  2192. (uuid 05a04502-9723-4732-8436-c269f299d6cb)
  2193. )
  2194. (label "3.3V" (at 124.46 128.27 180)
  2195. (effects (font (size 1.524 1.524)) (justify right bottom))
  2196. (uuid 0650ee4e-91a3-437a-ae8c-2f9d348867bd)
  2197. )
  2198. (label "SWDIO" (at 26.67 186.055 180)
  2199. (effects (font (size 1.524 1.524)) (justify right bottom))
  2200. (uuid 0968d2a2-9d25-4d9c-b6b7-16789f6420ea)
  2201. )
  2202. (label "GND" (at 107.95 45.72 0)
  2203. (effects (font (size 1.524 1.524)) (justify left bottom))
  2204. (uuid 0b604bcb-d0c7-4d4b-86a6-aea2a4d1e3ac)
  2205. )
  2206. (label "TechniqueBas" (at 19.05 25.4 0)
  2207. (effects (font (size 1.524 1.524)) (justify left bottom))
  2208. (uuid 0e9a65d2-d05e-4c39-90cb-3a94f832c9e7)
  2209. )
  2210. (label "SDL" (at 91.44 83.82 180)
  2211. (effects (font (size 1.524 1.524)) (justify right bottom))
  2212. (uuid 0fc27667-3926-453f-bd1f-81d290fd9bea)
  2213. )
  2214. (label "GND" (at 146.05 81.28 0)
  2215. (effects (font (size 1.524 1.524)) (justify left bottom))
  2216. (uuid 108796d7-11f5-4373-92d5-7e054cd34a7f)
  2217. )
  2218. (label "5V" (at 236.22 138.43 90)
  2219. (effects (font (size 1.524 1.524)) (justify left bottom))
  2220. (uuid 114aca4a-2455-4c75-baeb-7a61548311cf)
  2221. )
  2222. (label "VentiloPWM_1" (at 219.71 120.65 180)
  2223. (effects (font (size 1.27 1.27)) (justify right bottom))
  2224. (uuid 12251add-ce47-4b1c-b81e-b2586ed1d325)
  2225. )
  2226. (label "5V" (at 236.22 104.14 90)
  2227. (effects (font (size 1.524 1.524)) (justify left bottom))
  2228. (uuid 15e39a90-df43-4654-8161-66e00795fccc)
  2229. )
  2230. (label "MFP" (at 91.44 86.36 180)
  2231. (effects (font (size 1.524 1.524)) (justify right bottom))
  2232. (uuid 17f172d9-01de-44b7-88a0-cfaa408c65ac)
  2233. )
  2234. (label "GND" (at 33.02 154.94 180)
  2235. (effects (font (size 1.524 1.524)) (justify right bottom))
  2236. (uuid 1baa780c-55f9-412e-874b-31337fc926ed)
  2237. )
  2238. (label "5V" (at 247.65 26.67 0)
  2239. (effects (font (size 1.524 1.524)) (justify left bottom))
  2240. (uuid 1bb43135-42d2-421b-8ed9-81914d059b5e)
  2241. )
  2242. (label "3.3V" (at 26.67 178.435 180)
  2243. (effects (font (size 1.524 1.524)) (justify right bottom))
  2244. (uuid 1c1f9501-c3cd-4fd7-9c34-8a0694de78e7)
  2245. )
  2246. (label "GND" (at 124.46 33.02 270)
  2247. (effects (font (size 1.27 1.27)) (justify right bottom))
  2248. (uuid 1c93cdfc-e38f-47e6-b4f1-8433f872b655)
  2249. )
  2250. (label "CapteurAutres2" (at 45.72 175.26 270)
  2251. (effects (font (size 1.524 1.524)) (justify right bottom))
  2252. (uuid 1dd48a7e-71aa-40e7-ba76-ce69a95867ed)
  2253. )
  2254. (label "3.3V" (at 69.215 48.26 0)
  2255. (effects (font (size 1.524 1.524)) (justify left bottom))
  2256. (uuid 1f627fed-5430-471a-b746-f01cfb419ea1)
  2257. )
  2258. (label "3.3V" (at 118.11 149.86 180)
  2259. (effects (font (size 1.524 1.524)) (justify right bottom))
  2260. (uuid 1f75d5d8-2ee1-4018-aac7-0362bbb6882c)
  2261. )
  2262. (label "3.3V" (at 209.55 57.15 180)
  2263. (effects (font (size 1.524 1.524)) (justify right bottom))
  2264. (uuid 21e9402d-5741-4975-be55-2bb533fe9802)
  2265. )
  2266. (label "GND" (at 36.195 105.41 270)
  2267. (effects (font (size 1.524 1.524)) (justify right bottom))
  2268. (uuid 2481420f-860b-4eb2-b460-e001753b2733)
  2269. )
  2270. (label "ReserveBas" (at 43.18 175.26 270)
  2271. (effects (font (size 1.524 1.524)) (justify right bottom))
  2272. (uuid 2a14fd46-fe9a-4d1b-bfa0-3e6746aaaca7)
  2273. )
  2274. (label "3.3V" (at 146.05 88.9 0)
  2275. (effects (font (size 1.524 1.524)) (justify left bottom))
  2276. (uuid 2aeab249-0e17-4994-8bec-c0277435f8fd)
  2277. )
  2278. (label "GND" (at 236.22 162.56 0)
  2279. (effects (font (size 1.27 1.27)) (justify left bottom))
  2280. (uuid 2b4e80ba-a13b-471d-8064-edc75f207bc9)
  2281. )
  2282. (label "3.3V" (at 179.07 135.89 0)
  2283. (effects (font (size 1.524 1.524)) (justify left bottom))
  2284. (uuid 327f81b4-aaab-48b6-88f7-036bd1ce8fd9)
  2285. )
  2286. (label "VentiloPWM5V_2" (at 217.17 41.91 180)
  2287. (effects (font (size 1.27 1.27)) (justify right bottom))
  2288. (uuid 35657ef6-7e3f-4dcd-83b4-8568a0de12c2)
  2289. )
  2290. (label "CapteurAutres15V" (at 262.89 59.69 0)
  2291. (effects (font (size 1.524 1.524)) (justify left bottom))
  2292. (uuid 3583dbe7-3316-4e44-b0a4-868c0a77e49c)
  2293. )
  2294. (label "wc" (at 153.67 25.4 180)
  2295. (effects (font (size 1.524 1.524)) (justify right bottom))
  2296. (uuid 3688ca12-bed9-48a6-9c48-97abfd4a6ee3)
  2297. )
  2298. (label "5V" (at 67.945 82.55 0)
  2299. (effects (font (size 1.524 1.524)) (justify left bottom))
  2300. (uuid 378e82d8-4ce9-4f16-a43c-6e51f245ac0f)
  2301. )
  2302. (label "12V" (at 217.17 39.37 180)
  2303. (effects (font (size 1.27 1.27)) (justify right bottom))
  2304. (uuid 37a87fe4-f40d-4050-99d7-08dbf905fccc)
  2305. )
  2306. (label "3.3V" (at 185.42 147.32 0)
  2307. (effects (font (size 1.524 1.524)) (justify left bottom))
  2308. (uuid 38c4d781-e9f8-4053-a4d9-02e510032cbe)
  2309. )
  2310. (label "GND" (at 262.89 64.77 0)
  2311. (effects (font (size 1.524 1.524)) (justify left bottom))
  2312. (uuid 3cf26810-65ed-4c1b-95ea-1e545f0f0296)
  2313. )
  2314. (label "SDL" (at 165.1 27.94 180)
  2315. (effects (font (size 1.524 1.524)) (justify right bottom))
  2316. (uuid 3f26120d-e2f4-4718-9a2f-7f5d0fc66887)
  2317. )
  2318. (label "TempEau" (at 50.8 175.26 270)
  2319. (effects (font (size 1.524 1.524)) (justify right bottom))
  2320. (uuid 48e69f81-9e93-4848-9ae2-9482f999c864)
  2321. )
  2322. (label "AIN2" (at 58.42 175.26 270)
  2323. (effects (font (size 1.27 1.27)) (justify right bottom))
  2324. (uuid 4ac5aecf-6629-4305-937c-8dd9621c57db)
  2325. )
  2326. (label "GND" (at 161.29 91.44 270)
  2327. (effects (font (size 1.524 1.524)) (justify right bottom))
  2328. (uuid 4c6f65ce-306a-432b-b9fd-30b6eb665125)
  2329. )
  2330. (label "TempAir" (at 53.34 175.26 270)
  2331. (effects (font (size 1.524 1.524)) (justify right bottom))
  2332. (uuid 4d121c78-e791-49b1-b157-2db23ca999fd)
  2333. )
  2334. (label "SWCLK" (at 26.67 180.975 180)
  2335. (effects (font (size 1.524 1.524)) (justify right bottom))
  2336. (uuid 4f27be2d-1769-41fb-8b57-5f3d83f68806)
  2337. )
  2338. (label "TX" (at 186.69 125.73 0)
  2339. (effects (font (size 1.524 1.524)) (justify left bottom))
  2340. (uuid 5432729f-a8f0-4e95-8dc6-a16c7743bbf5)
  2341. )
  2342. (label "nrst" (at 33.02 152.4 180)
  2343. (effects (font (size 1.524 1.524)) (justify right bottom))
  2344. (uuid 5583139c-390a-40ca-8cb0-49a51d183057)
  2345. )
  2346. (label "SDL" (at 234.95 81.28 270)
  2347. (effects (font (size 1.524 1.524)) (justify right bottom))
  2348. (uuid 565e38a6-10c2-4961-bcf2-12b9b190f8e2)
  2349. )
  2350. (label "GND" (at 217.17 46.99 180)
  2351. (effects (font (size 1.27 1.27)) (justify right bottom))
  2352. (uuid 58cdc5f1-d495-4536-ade5-280ce7024efd)
  2353. )
  2354. (label "GND" (at 142.24 52.07 0)
  2355. (effects (font (size 1.524 1.524)) (justify left bottom))
  2356. (uuid 5b36d7a9-78b2-4694-92f6-4ca3e12ac52e)
  2357. )
  2358. (label "3.3V" (at 156.21 17.78 90)
  2359. (effects (font (size 1.524 1.524)) (justify left bottom))
  2360. (uuid 5c95ddf9-6964-4b53-ad44-b0fbf994dcc4)
  2361. )
  2362. (label "nrst" (at 123.19 52.07 180)
  2363. (effects (font (size 1.524 1.524)) (justify right bottom))
  2364. (uuid 5d48705d-fa0c-4913-adb2-c8762c3d1f0a)
  2365. )
  2366. (label "TechniqueHaut5V" (at 38.1 17.78 0)
  2367. (effects (font (size 1.524 1.524)) (justify left bottom))
  2368. (uuid 5f024db2-d262-49f0-a6b5-268d24ab325f)
  2369. )
  2370. (label "3.3V" (at 137.16 45.72 0)
  2371. (effects (font (size 1.524 1.524)) (justify left bottom))
  2372. (uuid 610114ac-86ce-418e-842d-17351a8bd10e)
  2373. )
  2374. (label "SDL" (at 50.8 127 90)
  2375. (effects (font (size 1.524 1.524)) (justify left bottom))
  2376. (uuid 616c414e-a5f8-4023-9b92-a29a19736253)
  2377. )
  2378. (label "TempAir" (at 209.55 62.23 180)
  2379. (effects (font (size 1.524 1.524)) (justify right bottom))
  2380. (uuid 659624ac-3181-447d-a01d-f53e3b92b972)
  2381. )
  2382. (label "VentiloPWM5V_2" (at 254 147.32 0)
  2383. (effects (font (size 1.27 1.27)) (justify left bottom))
  2384. (uuid 677d4308-453d-4e09-b96c-24b9758c0d86)
  2385. )
  2386. (label "GND" (at 186.69 128.27 0)
  2387. (effects (font (size 1.524 1.524)) (justify left bottom))
  2388. (uuid 6a8b641f-a37f-440f-9776-dd640ee03f17)
  2389. )
  2390. (label "AIN2" (at 242.57 81.28 270)
  2391. (effects (font (size 1.27 1.27)) (justify right bottom))
  2392. (uuid 6e07c130-c19d-4136-9e47-5e9f2f1fdc71)
  2393. )
  2394. (label "TechniqueBas" (at 33.02 165.1 180)
  2395. (effects (font (size 1.524 1.524)) (justify right bottom))
  2396. (uuid 729394bb-87e5-4f79-a350-670dd1d77d60)
  2397. )
  2398. (label "mode" (at 172.72 156.21 180)
  2399. (effects (font (size 1.524 1.524)) (justify right bottom))
  2400. (uuid 72b4a049-5fbb-4c7d-8d09-9e7fdf9641e2)
  2401. )
  2402. (label "TempEau" (at 209.55 59.69 180)
  2403. (effects (font (size 1.524 1.524)) (justify right bottom))
  2404. (uuid 72fd2c00-024f-4c8c-9059-a542e17acc13)
  2405. )
  2406. (label "GND" (at 68.58 175.26 270)
  2407. (effects (font (size 1.524 1.524)) (justify right bottom))
  2408. (uuid 77c4819e-677a-49af-83c0-f21109c1c549)
  2409. )
  2410. (label "3.3V" (at 107.95 52.07 0)
  2411. (effects (font (size 1.524 1.524)) (justify left bottom))
  2412. (uuid 78a85ea2-b162-421b-8554-7586ba8e5967)
  2413. )
  2414. (label "GND" (at 167.64 140.97 0)
  2415. (effects (font (size 1.524 1.524)) (justify left bottom))
  2416. (uuid 7c624d15-449b-4075-b16c-284a0d817ded)
  2417. )
  2418. (label "SDA" (at 165.1 30.48 180)
  2419. (effects (font (size 1.524 1.524)) (justify right bottom))
  2420. (uuid 7d6f18eb-1f9d-4bc9-871c-b79f5780416a)
  2421. )
  2422. (label "CuveHaut" (at 66.04 26.67 0)
  2423. (effects (font (size 1.524 1.524)) (justify left bottom))
  2424. (uuid 7e4749fb-996d-47ae-ad5f-a1f13cd648d7)
  2425. )
  2426. (label "VentiloPWM_1" (at 81.28 154.94 0)
  2427. (effects (font (size 1.27 1.27)) (justify left bottom))
  2428. (uuid 803716a1-7ccd-4a0b-b512-d77a4f181c2a)
  2429. )
  2430. (label "GND" (at 190.5 22.86 0)
  2431. (effects (font (size 1.524 1.524)) (justify left bottom))
  2432. (uuid 83ebb669-d13a-470d-84c3-50aab7fd79ef)
  2433. )
  2434. (label "CapteurAutres15V" (at 124.46 17.78 0)
  2435. (effects (font (size 1.524 1.524)) (justify left bottom))
  2436. (uuid 83f649dc-0ea1-453d-a83b-166f955f2959)
  2437. )
  2438. (label "TechniqueBas5V" (at 247.65 21.59 0)
  2439. (effects (font (size 1.524 1.524)) (justify left bottom))
  2440. (uuid 8943f279-0462-48ef-8469-c98dcf209952)
  2441. )
  2442. (label "GND" (at 209.55 64.77 180)
  2443. (effects (font (size 1.524 1.524)) (justify right bottom))
  2444. (uuid 8a46fc22-fc43-41b1-bb46-e457332484b5)
  2445. )
  2446. (label "MFP" (at 33.02 147.32 180)
  2447. (effects (font (size 1.524 1.524)) (justify right bottom))
  2448. (uuid 8cfd33d1-8ed7-4ba3-baec-889a25b0f0b9)
  2449. )
  2450. (label "VentiloPWM5V_1" (at 217.17 44.45 180)
  2451. (effects (font (size 1.27 1.27)) (justify right bottom))
  2452. (uuid 8d4e8db5-17ce-4c7e-aae0-d32e351b6722)
  2453. )
  2454. (label "CapteurAutres2" (at 104.14 25.4 0)
  2455. (effects (font (size 1.524 1.524)) (justify left bottom))
  2456. (uuid 92e0db9d-c8ad-47f6-aeed-210eee06db02)
  2457. )
  2458. (label "3.3V" (at 33.02 137.16 180)
  2459. (effects (font (size 1.524 1.524)) (justify right bottom))
  2460. (uuid 94769c5b-4c15-4cea-b02a-bf3eb85940f7)
  2461. )
  2462. (label "GND" (at 62.23 34.29 270)
  2463. (effects (font (size 1.27 1.27)) (justify right bottom))
  2464. (uuid 9706e52e-7add-4252-b8e2-030990425dce)
  2465. )
  2466. (label "GND" (at 82.55 33.02 270)
  2467. (effects (font (size 1.27 1.27)) (justify right bottom))
  2468. (uuid 9a161036-72a5-48f3-9c47-316aaaa1783a)
  2469. )
  2470. (label "VentiloPWM5V_1" (at 254 113.03 0)
  2471. (effects (font (size 1.27 1.27)) (justify left bottom))
  2472. (uuid 9bd9c2aa-a5f4-4b52-8fd1-57c18714375e)
  2473. )
  2474. (label "CuveHaut" (at 33.02 160.02 180)
  2475. (effects (font (size 1.524 1.524)) (justify right bottom))
  2476. (uuid 9d59abcd-3e0f-4d98-b522-f62a03896908)
  2477. )
  2478. (label "3.3V" (at 124.46 123.19 180)
  2479. (effects (font (size 1.524 1.524)) (justify right bottom))
  2480. (uuid a14f91a9-474b-433d-828d-f229806bcbbc)
  2481. )
  2482. (label "SDA" (at 48.26 127 90)
  2483. (effects (font (size 1.524 1.524)) (justify left bottom))
  2484. (uuid a72face6-f397-422b-9e49-663ccb8cad22)
  2485. )
  2486. (label "nrst" (at 26.67 188.595 180)
  2487. (effects (font (size 1.524 1.524)) (justify right bottom))
  2488. (uuid a75fb60b-c1fd-4ebc-8f35-20df740790e2)
  2489. )
  2490. (label "GND" (at 247.65 29.21 0)
  2491. (effects (font (size 1.524 1.524)) (justify left bottom))
  2492. (uuid a8bbce0d-8cce-4e7d-968c-c4fb4bfe68ef)
  2493. )
  2494. (label "wc" (at 66.04 175.26 270)
  2495. (effects (font (size 1.524 1.524)) (justify right bottom))
  2496. (uuid a9620c9e-4206-4658-8b55-7b02d6c36793)
  2497. )
  2498. (label "GND" (at 185.42 156.21 0)
  2499. (effects (font (size 1.524 1.524)) (justify left bottom))
  2500. (uuid aae86c69-75d6-4e85-8504-5f41012163a3)
  2501. )
  2502. (label "GND" (at 251.46 128.27 270)
  2503. (effects (font (size 1.27 1.27)) (justify right bottom))
  2504. (uuid ab713c4e-f8a1-4562-968c-76b80d9889ba)
  2505. )
  2506. (label "3.3V" (at 43.18 127 90)
  2507. (effects (font (size 1.524 1.524)) (justify left bottom))
  2508. (uuid ae198a65-7267-4279-a78f-52ca0a2481ba)
  2509. )
  2510. (label "GND" (at 149.86 96.52 0)
  2511. (effects (font (size 1.524 1.524)) (justify left bottom))
  2512. (uuid ae97b516-69d9-4d84-abe7-cd10ebb3f860)
  2513. )
  2514. (label "5V" (at 255.27 44.45 0)
  2515. (effects (font (size 1.524 1.524)) (justify left bottom))
  2516. (uuid aece869a-f783-4260-84b1-7c698d8e44d8)
  2517. )
  2518. (label "GND" (at 236.22 128.27 270)
  2519. (effects (font (size 1.27 1.27)) (justify right bottom))
  2520. (uuid b03cd57d-b8ac-4140-ba75-43b76c79d970)
  2521. )
  2522. (label "GND" (at 38.1 33.02 270)
  2523. (effects (font (size 1.27 1.27)) (justify right bottom))
  2524. (uuid b106518f-979f-4b53-b3b3-1c331d727394)
  2525. )
  2526. (label "TX" (at 55.88 127 90)
  2527. (effects (font (size 1.524 1.524)) (justify left bottom))
  2528. (uuid b3374522-a101-443c-90bb-f13b8bc271be)
  2529. )
  2530. (label "12V" (at 19.685 48.26 180)
  2531. (effects (font (size 1.524 1.524)) (justify right bottom))
  2532. (uuid b4018d7b-8ae3-4f70-ae40-8197584bfadd)
  2533. )
  2534. (label "3.3V" (at 100.33 96.52 270)
  2535. (effects (font (size 1.524 1.524)) (justify right bottom))
  2536. (uuid b41548e7-1dd4-4ea3-9957-2e87294893d1)
  2537. )
  2538. (label "RX" (at 58.42 127 90)
  2539. (effects (font (size 1.524 1.524)) (justify left bottom))
  2540. (uuid b5be7b99-c0ef-4d5c-b0da-9960904b4717)
  2541. )
  2542. (label "GND" (at 118.11 157.48 180)
  2543. (effects (font (size 1.524 1.524)) (justify right bottom))
  2544. (uuid b6a78f97-490a-4f0c-8e8e-b3c5b8bd3a07)
  2545. )
  2546. (label "GND" (at 251.46 162.56 0)
  2547. (effects (font (size 1.27 1.27)) (justify left bottom))
  2548. (uuid b6d23d2e-cd14-444e-b3e8-a8f9f64b78bf)
  2549. )
  2550. (label "TechniqueHaut" (at 33.02 162.56 180)
  2551. (effects (font (size 1.524 1.524)) (justify right bottom))
  2552. (uuid b758f70c-62de-4b43-b21f-145afd7b6248)
  2553. )
  2554. (label "SWDIO" (at 81.28 142.24 0)
  2555. (effects (font (size 1.524 1.524)) (justify left bottom))
  2556. (uuid bf1ef2d3-8a7a-4a8a-9315-bb3963feda21)
  2557. )
  2558. (label "ReserveBas5V" (at 255.27 41.91 0)
  2559. (effects (font (size 1.524 1.524)) (justify left bottom))
  2560. (uuid c14cdaf4-f87f-4df7-8df8-1b3201db4692)
  2561. )
  2562. (label "SDA" (at 91.44 81.28 180)
  2563. (effects (font (size 1.524 1.524)) (justify right bottom))
  2564. (uuid c1ba3d11-d959-4b9c-be71-23c955e54aa3)
  2565. )
  2566. (label "CapteurAutres1" (at 48.26 175.26 270)
  2567. (effects (font (size 1.524 1.524)) (justify right bottom))
  2568. (uuid c2410902-4c6c-4326-b073-0832ddab4c0f)
  2569. )
  2570. (label "CuveHaut5V" (at 255.27 39.37 0)
  2571. (effects (font (size 1.524 1.524)) (justify left bottom))
  2572. (uuid c4d44761-c801-48e1-9b35-b33264e3f74f)
  2573. )
  2574. (label "GND" (at 179.07 138.43 0)
  2575. (effects (font (size 1.524 1.524)) (justify left bottom))
  2576. (uuid c6521407-c254-41e4-9097-6167a9bc6a8e)
  2577. )
  2578. (label "GND" (at 26.67 183.515 180)
  2579. (effects (font (size 1.524 1.524)) (justify right bottom))
  2580. (uuid c7bf05a4-1bca-45e0-b044-ce3b71a1fdcf)
  2581. )
  2582. (label "ReserveBas5V" (at 82.55 17.78 0)
  2583. (effects (font (size 1.524 1.524)) (justify left bottom))
  2584. (uuid c8c9808d-bcf4-46d7-ab20-1d38ebaa828c)
  2585. )
  2586. (label "GND" (at 101.6 33.02 270)
  2587. (effects (font (size 1.27 1.27)) (justify right bottom))
  2588. (uuid c8cab192-6fae-421d-9eca-26dd5b1053b1)
  2589. )
  2590. (label "RX" (at 186.69 123.19 0)
  2591. (effects (font (size 1.524 1.524)) (justify left bottom))
  2592. (uuid c94f4bff-3e49-4bd0-b705-83689c5f9e04)
  2593. )
  2594. (label "boot0" (at 92.71 52.07 180)
  2595. (effects (font (size 1.524 1.524)) (justify right bottom))
  2596. (uuid ca575c18-bb95-4e3e-9895-92c7c56f2f38)
  2597. )
  2598. (label "GND" (at 64.77 193.04 180)
  2599. (effects (font (size 1.524 1.524)) (justify right bottom))
  2600. (uuid cb582100-5115-4b64-84ff-4affc8fc3e60)
  2601. )
  2602. (label "3.3V" (at 165.1 22.86 180)
  2603. (effects (font (size 1.524 1.524)) (justify right bottom))
  2604. (uuid cda05f03-abeb-4ecc-a8b1-288886d4866b)
  2605. )
  2606. (label "5V" (at 262.89 62.23 0)
  2607. (effects (font (size 1.524 1.524)) (justify left bottom))
  2608. (uuid cdaf8d70-6dec-442a-b8df-745f3437719d)
  2609. )
  2610. (label "3.3V" (at 132.08 140.97 180)
  2611. (effects (font (size 1.524 1.524)) (justify right bottom))
  2612. (uuid cfa7c394-7b22-42ef-b529-615c31543367)
  2613. )
  2614. (label "AIN1" (at 240.03 81.28 270)
  2615. (effects (font (size 1.27 1.27)) (justify right bottom))
  2616. (uuid cff4f81e-5c5d-4473-a95c-431c0afb1393)
  2617. )
  2618. (label "VentiloPWM_2" (at 219.71 154.94 180)
  2619. (effects (font (size 1.27 1.27)) (justify right bottom))
  2620. (uuid d5832097-6885-4c4c-95fd-4ec215d5ee27)
  2621. )
  2622. (label "3.3V" (at 224.79 81.28 270)
  2623. (effects (font (size 1.524 1.524)) (justify right bottom))
  2624. (uuid d6a877dd-e804-443d-8bdb-7fca95ec0a79)
  2625. )
  2626. (label "3.3V" (at 64.77 185.42 180)
  2627. (effects (font (size 1.524 1.524)) (justify right bottom))
  2628. (uuid d7268f72-1187-427e-849f-6a2486560b23)
  2629. )
  2630. (label "CapteurAutres25V" (at 262.89 57.15 0)
  2631. (effects (font (size 1.524 1.524)) (justify left bottom))
  2632. (uuid da4c163a-9375-43f6-9a4a-56adf834bcf6)
  2633. )
  2634. (label "CapteurAutres1" (at 129.54 25.4 0)
  2635. (effects (font (size 1.524 1.524)) (justify left bottom))
  2636. (uuid dcfac7bf-ca1c-435c-96d7-7b719127c461)
  2637. )
  2638. (label "5V" (at 229.87 81.28 270)
  2639. (effects (font (size 1.524 1.524)) (justify right bottom))
  2640. (uuid e295f506-c516-49d1-a059-8ce3456ad1a4)
  2641. )
  2642. (label "12V" (at 214.63 81.28 270)
  2643. (effects (font (size 1.27 1.27)) (justify right bottom))
  2644. (uuid e4014d09-f8c9-44ac-8440-cedf07e0a125)
  2645. )
  2646. (label "GND" (at 217.17 81.28 270)
  2647. (effects (font (size 1.27 1.27)) (justify right bottom))
  2648. (uuid e43374fb-1463-4638-8a25-03fa398cbc2b)
  2649. )
  2650. (label "ReserveBas" (at 86.36 25.4 0)
  2651. (effects (font (size 1.524 1.524)) (justify left bottom))
  2652. (uuid e79dfbf1-9903-462f-a977-736dc20ffdea)
  2653. )
  2654. (label "GND" (at 45.72 127 90)
  2655. (effects (font (size 1.524 1.524)) (justify left bottom))
  2656. (uuid ed06e739-f83b-44a8-b13d-290e5a758206)
  2657. )
  2658. (label "3.3V" (at 33.02 157.48 180)
  2659. (effects (font (size 1.524 1.524)) (justify right bottom))
  2660. (uuid ee217ede-318c-4827-96d7-771c7f27c7c1)
  2661. )
  2662. (label "12V" (at 18.415 82.55 180)
  2663. (effects (font (size 1.524 1.524)) (justify right bottom))
  2664. (uuid ef06571e-f8ea-4a29-95cd-ac9f9056fca2)
  2665. )
  2666. (label "TX" (at 167.64 123.19 0)
  2667. (effects (font (size 1.524 1.524)) (justify left bottom))
  2668. (uuid eff9857d-33d8-49be-8b00-184fd7085d1c)
  2669. )
  2670. (label "GND" (at 255.27 46.99 0)
  2671. (effects (font (size 1.524 1.524)) (justify left bottom))
  2672. (uuid f2050d32-c5aa-41a0-9af2-dce143284098)
  2673. )
  2674. (label "SDA" (at 237.49 81.28 270)
  2675. (effects (font (size 1.524 1.524)) (justify right bottom))
  2676. (uuid f3741044-ed93-44a8-bc42-2ad50a2022e5)
  2677. )
  2678. (label "GND" (at 227.33 81.28 270)
  2679. (effects (font (size 1.524 1.524)) (justify right bottom))
  2680. (uuid f5aef98b-e26c-4bf5-8d4a-2a77ff513019)
  2681. )
  2682. (label "GND" (at 37.465 71.12 270)
  2683. (effects (font (size 1.524 1.524)) (justify right bottom))
  2684. (uuid f66a2c9d-efd7-445d-ae34-41e24586196d)
  2685. )
  2686. (label "CapteurAutres25V" (at 101.6 17.78 0)
  2687. (effects (font (size 1.524 1.524)) (justify left bottom))
  2688. (uuid f71b1fff-25d8-4e54-b37a-ec6b097d2c5a)
  2689. )
  2690. (label "mode" (at 167.64 133.35 0)
  2691. (effects (font (size 1.524 1.524)) (justify left bottom))
  2692. (uuid f83e3790-fde9-4831-8955-585283fd8e60)
  2693. )
  2694. (label "TechniqueHaut" (at 41.91 25.4 0)
  2695. (effects (font (size 1.524 1.524)) (justify left bottom))
  2696. (uuid f8ac22f4-4eb7-40ca-812c-f9c7349648e0)
  2697. )
  2698. (label "boot0" (at 53.34 127 90)
  2699. (effects (font (size 1.524 1.524)) (justify left bottom))
  2700. (uuid f8d364b8-2319-4b5c-afc2-f2b48ca942cd)
  2701. )
  2702. (label "SWCLK" (at 71.12 127 90)
  2703. (effects (font (size 1.524 1.524)) (justify left bottom))
  2704. (uuid fa91c745-e588-46b8-aabe-34ed8c1a9b2c)
  2705. )
  2706. (label "GND" (at 113.03 97.79 180)
  2707. (effects (font (size 1.524 1.524)) (justify right bottom))
  2708. (uuid fb0d695f-a418-463f-9b0d-2c558e6845d3)
  2709. )
  2710. (label "3.3V" (at 71.12 175.26 270)
  2711. (effects (font (size 1.524 1.524)) (justify right bottom))
  2712. (uuid fb4dc6ab-2474-4ac0-b6d0-5119c52a4137)
  2713. )
  2714. (label "3.3V" (at 113.03 93.98 180)
  2715. (effects (font (size 1.524 1.524)) (justify right bottom))
  2716. (uuid fd971f0c-02d8-46ee-b96c-9ac254b4bdf0)
  2717. )
  2718. (label "GND" (at 232.41 81.28 270)
  2719. (effects (font (size 1.524 1.524)) (justify right bottom))
  2720. (uuid fe91f068-829b-4d87-a781-26f49043fd14)
  2721. )
  2722. (label "VentiloPWM_2" (at 81.28 152.4 0)
  2723. (effects (font (size 1.27 1.27)) (justify left bottom))
  2724. (uuid ff4f7471-129f-4f0b-aec0-826953b9b5dd)
  2725. )
  2726. (symbol (lib_id "global:SW_PUSH") (at 134.62 52.07 0) (unit 1)
  2727. (in_bom yes) (on_board yes)
  2728. (uuid 00000000-0000-0000-0000-00005afae368)
  2729. (property "Reference" "SW2" (id 0) (at 138.43 49.276 0))
  2730. (property "Value" "SW_PUSH" (id 1) (at 134.62 54.102 0))
  2731. (property "Footprint" "SW:SW" (id 2) (at 134.62 52.07 0)
  2732. (effects (font (size 1.27 1.27)) hide)
  2733. )
  2734. (property "Datasheet" "" (id 3) (at 134.62 52.07 0))
  2735. (property "Partkeepr" "200" (id 4) (at -67.31 255.27 0)
  2736. (effects (font (size 1.27 1.27)) hide)
  2737. )
  2738. (pin "1" (uuid 486e361b-b1e9-462c-905c-5fdd9f43902b))
  2739. (pin "2" (uuid ef0a0bd5-f435-42d8-991c-e5edfd218e6b))
  2740. )
  2741. (symbol (lib_id "global:SW_PUSH") (at 100.33 52.07 0) (unit 1)
  2742. (in_bom yes) (on_board yes)
  2743. (uuid 00000000-0000-0000-0000-00005afae461)
  2744. (property "Reference" "SW1" (id 0) (at 104.14 49.276 0))
  2745. (property "Value" "SW_PUSH" (id 1) (at 100.33 54.102 0))
  2746. (property "Footprint" "SW:SW" (id 2) (at 100.33 52.07 0)
  2747. (effects (font (size 1.27 1.27)) hide)
  2748. )
  2749. (property "Datasheet" "" (id 3) (at 100.33 52.07 0))
  2750. (property "Partkeepr" "200" (id 4) (at -67.31 255.27 0)
  2751. (effects (font (size 1.27 1.27)) hide)
  2752. )
  2753. (pin "1" (uuid 2e5370f1-7230-45a2-89b6-f6edd769247b))
  2754. (pin "2" (uuid da402b05-fbd2-4fbc-ba81-55d8df8e0b0d))
  2755. )
  2756. (symbol (lib_id "global:C") (at 134.62 58.42 270) (unit 1)
  2757. (in_bom yes) (on_board yes)
  2758. (uuid 00000000-0000-0000-0000-00005afae512)
  2759. (property "Reference" "C15" (id 0) (at 137.16 59.055 0)
  2760. (effects (font (size 1.27 1.27)) (justify left))
  2761. )
  2762. (property "Value" "100nF" (id 1) (at 132.08 59.055 0)
  2763. (effects (font (size 1.27 1.27)) (justify left))
  2764. )
  2765. (property "Footprint" "C:0805" (id 2) (at 130.81 59.3852 0)
  2766. (effects (font (size 1.27 1.27)) hide)
  2767. )
  2768. (property "Datasheet" "" (id 3) (at 134.62 58.42 0))
  2769. (property "Partkeepr" "605" (id 4) (at -74.93 -143.51 0)
  2770. (effects (font (size 1.27 1.27)) hide)
  2771. )
  2772. (pin "1" (uuid 2cd21a56-2cdf-4788-941a-b55406c5f248))
  2773. (pin "2" (uuid 3a60419d-985e-4b05-a080-98300083b9a1))
  2774. )
  2775. (symbol (lib_id "global:C") (at 100.33 58.42 270) (unit 1)
  2776. (in_bom yes) (on_board yes)
  2777. (uuid 00000000-0000-0000-0000-00005afae5f9)
  2778. (property "Reference" "C10" (id 0) (at 102.87 59.055 0)
  2779. (effects (font (size 1.27 1.27)) (justify left))
  2780. )
  2781. (property "Value" "100nF" (id 1) (at 97.79 59.055 0)
  2782. (effects (font (size 1.27 1.27)) (justify left))
  2783. )
  2784. (property "Footprint" "C:0805" (id 2) (at 96.52 59.3852 0)
  2785. (effects (font (size 1.27 1.27)) hide)
  2786. )
  2787. (property "Datasheet" "" (id 3) (at 100.33 58.42 0))
  2788. (property "Partkeepr" "605" (id 4) (at -109.22 -109.22 0)
  2789. (effects (font (size 1.27 1.27)) hide)
  2790. )
  2791. (pin "1" (uuid 9fd39c8e-3030-47f9-8492-18ccbeeb33dc))
  2792. (pin "2" (uuid bc472066-f687-4fd4-a0e3-4d8fa1922c40))
  2793. )
  2794. (symbol (lib_id "global:R") (at 133.35 45.72 270) (unit 1)
  2795. (in_bom yes) (on_board yes)
  2796. (uuid 00000000-0000-0000-0000-00005afae6c4)
  2797. (property "Reference" "R18" (id 0) (at 133.35 47.752 90))
  2798. (property "Value" "10K" (id 1) (at 133.35 45.72 90))
  2799. (property "Footprint" "R:0805" (id 2) (at 133.35 43.942 90)
  2800. (effects (font (size 1.27 1.27)) hide)
  2801. )
  2802. (property "Datasheet" "" (id 3) (at 133.35 45.72 0))
  2803. (property "Partkeepr" "910" (id 4) (at -63.5 -154.94 0)
  2804. (effects (font (size 1.27 1.27)) hide)
  2805. )
  2806. (pin "1" (uuid f0231d8d-3847-4722-aaa5-e91aaac98690))
  2807. (pin "2" (uuid f6c6255d-785d-4321-83f3-087a097bbe0e))
  2808. )
  2809. (symbol (lib_id "global:R") (at 100.33 45.72 270) (unit 1)
  2810. (in_bom yes) (on_board yes)
  2811. (uuid 00000000-0000-0000-0000-00005afae837)
  2812. (property "Reference" "R13" (id 0) (at 100.33 47.752 90))
  2813. (property "Value" "10K" (id 1) (at 100.33 45.72 90))
  2814. (property "Footprint" "C:0805" (id 2) (at 100.33 43.942 90)
  2815. (effects (font (size 1.27 1.27)) hide)
  2816. )
  2817. (property "Datasheet" "" (id 3) (at 100.33 45.72 0))
  2818. (property "Partkeepr" "910" (id 4) (at -96.52 -121.92 0)
  2819. (effects (font (size 1.27 1.27)) hide)
  2820. )
  2821. (pin "1" (uuid e26a5ab3-1a7e-4499-a59e-33a37bbe2715))
  2822. (pin "2" (uuid 121f26b2-e278-4fc6-8e30-d551bee1a2cb))
  2823. )
  2824. (symbol (lib_id "global:R") (at 156.21 21.59 0) (unit 1)
  2825. (in_bom yes) (on_board yes)
  2826. (uuid 00000000-0000-0000-0000-00005afaf4ac)
  2827. (property "Reference" "R19" (id 0) (at 158.242 21.59 90))
  2828. (property "Value" "10K" (id 1) (at 156.21 21.59 90))
  2829. (property "Footprint" "C:0805" (id 2) (at 154.432 21.59 90)
  2830. (effects (font (size 1.27 1.27)) hide)
  2831. )
  2832. (property "Datasheet" "" (id 3) (at 156.21 21.59 0))
  2833. (property "Partkeepr" "910" (id 4) (at -5.08 248.92 0)
  2834. (effects (font (size 1.27 1.27)) hide)
  2835. )
  2836. (pin "1" (uuid 77a61662-ac9c-444d-a609-36352d22f5d5))
  2837. (pin "2" (uuid 3b7e1194-84c1-4444-afe3-a1efa7aea6d6))
  2838. )
  2839. (symbol (lib_id "conn:CONN_01X05") (at 31.75 183.515 0) (unit 1)
  2840. (in_bom yes) (on_board yes)
  2841. (uuid 00000000-0000-0000-0000-00005b5832b2)
  2842. (property "Reference" "P1" (id 0) (at 31.75 175.895 0))
  2843. (property "Value" "CONN_01X05" (id 1) (at 34.29 183.515 90))
  2844. (property "Footprint" "Connector:PinHeader2.54_1X5" (id 2) (at 31.75 183.515 0)
  2845. (effects (font (size 1.27 1.27)) hide)
  2846. )
  2847. (property "Datasheet" "" (id 3) (at 31.75 183.515 0))
  2848. (property "Partkeepr" "100" (id 4) (at -102.87 454.66 0)
  2849. (effects (font (size 1.27 1.27)) hide)
  2850. )
  2851. (pin "1" (uuid 8d41b9e1-7bad-4d98-ad66-f49917bc8728))
  2852. (pin "2" (uuid d9cb1f1c-d621-48db-80af-75c2cc2c06d4))
  2853. (pin "3" (uuid a07a2efb-3777-4e7f-aae2-3f885c29830e))
  2854. (pin "4" (uuid e5e10f8a-7179-40ca-a516-a8beec46220d))
  2855. (pin "5" (uuid 8a9a3e93-3796-4e1e-81b4-09128999488e))
  2856. )
  2857. (symbol (lib_id "global:R") (at 37.465 66.04 0) (unit 1)
  2858. (in_bom yes) (on_board yes)
  2859. (uuid 00000000-0000-0000-0000-00005cf18b4b)
  2860. (property "Reference" "R15" (id 0) (at 39.497 66.04 90))
  2861. (property "Value" "510" (id 1) (at 37.465 66.04 90))
  2862. (property "Footprint" "R:0805" (id 2) (at 35.687 66.04 90)
  2863. (effects (font (size 1.27 1.27)) hide)
  2864. )
  2865. (property "Datasheet" "" (id 3) (at 37.465 66.04 0))
  2866. (property "Partkeepr" "913" (id 4) (at -196.85 182.88 0)
  2867. (effects (font (size 1.27 1.27)) hide)
  2868. )
  2869. (pin "1" (uuid 4452429f-3083-49e5-bf70-2939e7104c4f))
  2870. (pin "2" (uuid d087e1aa-b2f0-4a72-bf5c-a7b2bf072e5d))
  2871. )
  2872. (symbol (lib_id "global:R") (at 50.8 53.975 0) (unit 1)
  2873. (in_bom yes) (on_board yes)
  2874. (uuid 00000000-0000-0000-0000-00005cf18b53)
  2875. (property "Reference" "R17" (id 0) (at 52.832 53.975 90))
  2876. (property "Value" "330" (id 1) (at 50.8 53.975 90))
  2877. (property "Footprint" "R:0805" (id 2) (at 49.022 53.975 90)
  2878. (effects (font (size 1.27 1.27)) hide)
  2879. )
  2880. (property "Datasheet" "" (id 3) (at 50.8 53.975 0))
  2881. (property "Partkeepr" "914" (id 4) (at -201.295 159.385 0)
  2882. (effects (font (size 1.27 1.27)) hide)
  2883. )
  2884. (pin "1" (uuid 2afc168a-d157-4853-8f55-e7843055429f))
  2885. (pin "2" (uuid 7f9d6f1d-2ea9-4618-980a-be47c311606c))
  2886. )
  2887. (symbol (lib_id "global:CP") (at 46.355 64.135 0) (unit 1)
  2888. (in_bom yes) (on_board yes)
  2889. (uuid 00000000-0000-0000-0000-00005cf18b5b)
  2890. (property "Reference" "C14" (id 0) (at 46.99 61.595 0)
  2891. (effects (font (size 1.27 1.27)) (justify left))
  2892. )
  2893. (property "Value" "10µF" (id 1) (at 46.99 66.675 0)
  2894. (effects (font (size 1.27 1.27)) (justify left))
  2895. )
  2896. (property "Footprint" "C:CP_CMS5X5.8" (id 2) (at 46.355 64.135 0)
  2897. (effects (font (size 1.27 1.27)) hide)
  2898. )
  2899. (property "Datasheet" "" (id 3) (at 46.355 64.135 0))
  2900. (property "Partkeepr" "609" (id 4) (at -196.85 179.07 0)
  2901. (effects (font (size 1.27 1.27)) hide)
  2902. )
  2903. (pin "1" (uuid 22196311-cf18-424c-8a08-cd48c5bd8f41))
  2904. (pin "2" (uuid 95b50b5d-0659-422b-a8ac-6046f12b4f8f))
  2905. )
  2906. (symbol (lib_id "global:CP") (at 23.495 59.69 0) (unit 1)
  2907. (in_bom yes) (on_board yes)
  2908. (uuid 00000000-0000-0000-0000-00005cf18b65)
  2909. (property "Reference" "C12" (id 0) (at 24.13 57.15 0)
  2910. (effects (font (size 1.27 1.27)) (justify left))
  2911. )
  2912. (property "Value" "100nF" (id 1) (at 24.13 62.23 0)
  2913. (effects (font (size 1.27 1.27)) (justify left))
  2914. )
  2915. (property "Footprint" "C:3216-18" (id 2) (at 23.495 59.69 0)
  2916. (effects (font (size 1.27 1.27)) hide)
  2917. )
  2918. (property "Datasheet" "" (id 3) (at 23.495 59.69 0))
  2919. (property "Partkeepr" "610" (id 4) (at -219.71 234.95 0)
  2920. (effects (font (size 1.27 1.27)) hide)
  2921. )
  2922. (pin "1" (uuid 253609b0-5f55-4ad9-b1a4-7dca7ffcfce2))
  2923. (pin "2" (uuid 86b2f5dc-de88-4a66-95e7-c402d683a37e))
  2924. )
  2925. (symbol (lib_id "global:LM317") (at 37.465 48.26 0) (unit 1)
  2926. (in_bom yes) (on_board yes)
  2927. (uuid 00000000-0000-0000-0000-00005cf18b6d)
  2928. (property "Reference" "U3" (id 0) (at 41.275 54.61 0)
  2929. (effects (font (size 1.524 1.524)))
  2930. )
  2931. (property "Value" "LM317" (id 1) (at 37.465 43.18 0)
  2932. (effects (font (size 1.524 1.524)))
  2933. )
  2934. (property "Footprint" "U:LM317" (id 2) (at 37.465 48.26 0)
  2935. (effects (font (size 1.524 1.524)) hide)
  2936. )
  2937. (property "Datasheet" "" (id 3) (at 37.465 48.26 0)
  2938. (effects (font (size 1.524 1.524)))
  2939. )
  2940. (property "Partkeepr" "1800" (id 4) (at -196.85 147.32 0)
  2941. (effects (font (size 1.27 1.27)) hide)
  2942. )
  2943. (pin "1" (uuid 0ac2c493-9da3-4184-9a79-b7db55881c2f))
  2944. (pin "2" (uuid 3f296328-05d1-4d6a-a1f9-4b7f1f1d2538))
  2945. (pin "3" (uuid bdfa6ceb-9b55-40d2-aa6c-6ccd51150d73))
  2946. )
  2947. (symbol (lib_id "global:CP") (at 62.865 60.96 0) (unit 1)
  2948. (in_bom yes) (on_board yes)
  2949. (uuid 00000000-0000-0000-0000-00005cf18b8b)
  2950. (property "Reference" "C17" (id 0) (at 63.5 58.42 0)
  2951. (effects (font (size 1.27 1.27)) (justify left))
  2952. )
  2953. (property "Value" "1µF" (id 1) (at 63.5 63.5 0)
  2954. (effects (font (size 1.27 1.27)) (justify left))
  2955. )
  2956. (property "Footprint" "C:CP_CMS4X5.8" (id 2) (at 62.865 60.96 0)
  2957. (effects (font (size 1.27 1.27)) hide)
  2958. )
  2959. (property "Datasheet" "" (id 3) (at 62.865 60.96 0))
  2960. (property "Partkeepr" "608" (id 4) (at -196.85 172.72 0)
  2961. (effects (font (size 1.27 1.27)) hide)
  2962. )
  2963. (pin "1" (uuid 84c3cfdd-d10e-48b2-82cf-d6b6bd8c096b))
  2964. (pin "2" (uuid a5b55c42-d081-48bb-9730-92776319da07))
  2965. )
  2966. (symbol (lib_id "global:D") (at 55.245 53.34 270) (unit 1)
  2967. (in_bom yes) (on_board yes)
  2968. (uuid 00000000-0000-0000-0000-00005cf18b9a)
  2969. (property "Reference" "D2" (id 0) (at 57.2262 52.1716 90)
  2970. (effects (font (size 1.27 1.27)) (justify left))
  2971. )
  2972. (property "Value" "D" (id 1) (at 57.2262 54.483 90)
  2973. (effects (font (size 1.27 1.27)) (justify left))
  2974. )
  2975. (property "Footprint" "D:SMA" (id 2) (at 55.245 53.34 0)
  2976. (effects (font (size 1.27 1.27)) hide)
  2977. )
  2978. (property "Datasheet" "" (id 3) (at 55.245 53.34 0))
  2979. (property "Partkeepr" "1302" (id 4) (at -48.895 -198.755 0)
  2980. (effects (font (size 1.27 1.27)) hide)
  2981. )
  2982. (pin "1" (uuid f2a19405-650c-406c-80ad-e748c0dd6ea8))
  2983. (pin "2" (uuid e705be85-9dcc-4ef6-9104-45415d22e004))
  2984. )
  2985. (symbol (lib_id "global:R") (at 36.195 100.33 0) (unit 1)
  2986. (in_bom yes) (on_board yes)
  2987. (uuid 00000000-0000-0000-0000-00005cf18ba6)
  2988. (property "Reference" "R14" (id 0) (at 38.227 100.33 90))
  2989. (property "Value" "1K" (id 1) (at 36.195 100.33 90))
  2990. (property "Footprint" "R:0805" (id 2) (at 34.417 100.33 90)
  2991. (effects (font (size 1.27 1.27)) hide)
  2992. )
  2993. (property "Datasheet" "" (id 3) (at 36.195 100.33 0))
  2994. (property "Partkeepr" "915" (id 4) (at -219.71 316.23 0)
  2995. (effects (font (size 1.27 1.27)) hide)
  2996. )
  2997. (pin "1" (uuid e79f1fca-64f2-4861-8a4a-a3b35959254f))
  2998. (pin "2" (uuid bc3e498d-4625-409d-8dbc-70945526abf1))
  2999. )
  3000. (symbol (lib_id "global:R") (at 49.53 88.265 0) (unit 1)
  3001. (in_bom yes) (on_board yes)
  3002. (uuid 00000000-0000-0000-0000-00005cf18bae)
  3003. (property "Reference" "R16" (id 0) (at 51.562 88.265 90))
  3004. (property "Value" "330" (id 1) (at 49.53 88.265 90))
  3005. (property "Footprint" "R:0805" (id 2) (at 47.752 88.265 90)
  3006. (effects (font (size 1.27 1.27)) hide)
  3007. )
  3008. (property "Datasheet" "" (id 3) (at 49.53 88.265 0))
  3009. (property "Partkeepr" "914" (id 4) (at -202.565 193.675 0)
  3010. (effects (font (size 1.27 1.27)) hide)
  3011. )
  3012. (pin "1" (uuid 1165771b-331a-4f09-9b40-27ee4a5b1961))
  3013. (pin "2" (uuid feb9b78d-9e81-4d1c-bf33-71bef9a4529c))
  3014. )
  3015. (symbol (lib_id "global:CP") (at 45.085 98.425 0) (unit 1)
  3016. (in_bom yes) (on_board yes)
  3017. (uuid 00000000-0000-0000-0000-00005cf18bb6)
  3018. (property "Reference" "C13" (id 0) (at 45.72 95.885 0)
  3019. (effects (font (size 1.27 1.27)) (justify left))
  3020. )
  3021. (property "Value" "10µF" (id 1) (at 45.72 100.965 0)
  3022. (effects (font (size 1.27 1.27)) (justify left))
  3023. )
  3024. (property "Footprint" "C:CP_CMS5X5.8" (id 2) (at 45.085 98.425 0)
  3025. (effects (font (size 1.27 1.27)) hide)
  3026. )
  3027. (property "Datasheet" "" (id 3) (at 45.085 98.425 0))
  3028. (property "Partkeepr" "609" (id 4) (at -198.12 213.36 0)
  3029. (effects (font (size 1.27 1.27)) hide)
  3030. )
  3031. (pin "1" (uuid e22dc530-0028-414e-96f9-410d7bd9b678))
  3032. (pin "2" (uuid d10b879a-7227-4398-9cec-840cc8bfe59a))
  3033. )
  3034. (symbol (lib_id "global:CP") (at 22.225 93.98 0) (unit 1)
  3035. (in_bom yes) (on_board yes)
  3036. (uuid 00000000-0000-0000-0000-00005cf18bc0)
  3037. (property "Reference" "C11" (id 0) (at 22.86 91.44 0)
  3038. (effects (font (size 1.27 1.27)) (justify left))
  3039. )
  3040. (property "Value" "100nF" (id 1) (at 22.86 96.52 0)
  3041. (effects (font (size 1.27 1.27)) (justify left))
  3042. )
  3043. (property "Footprint" "C:3216-18" (id 2) (at 22.225 93.98 0)
  3044. (effects (font (size 1.27 1.27)) hide)
  3045. )
  3046. (property "Datasheet" "" (id 3) (at 22.225 93.98 0))
  3047. (property "Partkeepr" "610" (id 4) (at -219.71 303.53 0)
  3048. (effects (font (size 1.27 1.27)) hide)
  3049. )
  3050. (pin "1" (uuid 42df4bb5-b3a4-4ef9-8427-7b36dd5f7721))
  3051. (pin "2" (uuid 340f2016-bd13-463f-9961-50a74fa6fa90))
  3052. )
  3053. (symbol (lib_id "global:LM317") (at 36.195 82.55 0) (unit 1)
  3054. (in_bom yes) (on_board yes)
  3055. (uuid 00000000-0000-0000-0000-00005cf18bc8)
  3056. (property "Reference" "U2" (id 0) (at 40.005 88.9 0)
  3057. (effects (font (size 1.524 1.524)))
  3058. )
  3059. (property "Value" "LM317" (id 1) (at 36.195 77.47 0)
  3060. (effects (font (size 1.524 1.524)))
  3061. )
  3062. (property "Footprint" "U:LM317" (id 2) (at 36.195 82.55 0)
  3063. (effects (font (size 1.524 1.524)) hide)
  3064. )
  3065. (property "Datasheet" "" (id 3) (at 36.195 82.55 0)
  3066. (effects (font (size 1.524 1.524)))
  3067. )
  3068. (property "Partkeepr" "1800" (id 4) (at -198.12 181.61 0)
  3069. (effects (font (size 1.27 1.27)) hide)
  3070. )
  3071. (pin "1" (uuid a6b69266-3288-4e3e-9b08-08022839b559))
  3072. (pin "2" (uuid 34d7581e-e9ed-4293-a1df-59be4a5a4e76))
  3073. (pin "3" (uuid d6d73264-d407-4fad-8dfe-47584f323afa))
  3074. )
  3075. (symbol (lib_id "global:CP") (at 61.595 95.25 0) (unit 1)
  3076. (in_bom yes) (on_board yes)
  3077. (uuid 00000000-0000-0000-0000-00005cf18be6)
  3078. (property "Reference" "C16" (id 0) (at 62.23 92.71 0)
  3079. (effects (font (size 1.27 1.27)) (justify left))
  3080. )
  3081. (property "Value" "1µF" (id 1) (at 62.23 97.79 0)
  3082. (effects (font (size 1.27 1.27)) (justify left))
  3083. )
  3084. (property "Footprint" "C:CP_CMS4X5.8" (id 2) (at 61.595 95.25 0)
  3085. (effects (font (size 1.27 1.27)) hide)
  3086. )
  3087. (property "Datasheet" "" (id 3) (at 61.595 95.25 0))
  3088. (property "Partkeepr" "608" (id 4) (at -198.12 207.01 0)
  3089. (effects (font (size 1.27 1.27)) hide)
  3090. )
  3091. (pin "1" (uuid 6001e10e-e6bb-441c-8213-6c4beebd7f37))
  3092. (pin "2" (uuid 979e4200-f6f3-46a8-9d5b-fa2007a385c4))
  3093. )
  3094. (symbol (lib_id "global:D") (at 53.975 87.63 270) (unit 1)
  3095. (in_bom yes) (on_board yes)
  3096. (uuid 00000000-0000-0000-0000-00005cf18bf5)
  3097. (property "Reference" "D1" (id 0) (at 55.9562 86.4616 90)
  3098. (effects (font (size 1.27 1.27)) (justify left))
  3099. )
  3100. (property "Value" "D" (id 1) (at 55.9562 88.773 90)
  3101. (effects (font (size 1.27 1.27)) (justify left))
  3102. )
  3103. (property "Footprint" "D:SMA" (id 2) (at 53.975 87.63 0)
  3104. (effects (font (size 1.27 1.27)) hide)
  3105. )
  3106. (property "Datasheet" "" (id 3) (at 53.975 87.63 0))
  3107. (property "Partkeepr" "1302" (id 4) (at -50.165 -164.465 0)
  3108. (effects (font (size 1.27 1.27)) hide)
  3109. )
  3110. (pin "1" (uuid 485430cf-e030-43e8-a50e-c9db0b458325))
  3111. (pin "2" (uuid 9b9c6c5e-df92-469c-9720-cbb18f31f5a6))
  3112. )
  3113. (symbol (lib_id "Module:ESP-12F") (at 149.86 134.62 0) (unit 1)
  3114. (in_bom yes) (on_board yes)
  3115. (uuid 00000000-0000-0000-0000-00005cf5cdd9)
  3116. (property "Reference" "U5" (id 0) (at 161.29 149.86 0)
  3117. (effects (font (size 1.524 1.524)))
  3118. )
  3119. (property "Value" "ESP-12F" (id 1) (at 149.86 119.38 0)
  3120. (effects (font (size 1.524 1.524)))
  3121. )
  3122. (property "Footprint" "Module:ESP-12F" (id 2) (at 149.86 135.89 0)
  3123. (effects (font (size 1.524 1.524)) hide)
  3124. )
  3125. (property "Datasheet" "" (id 3) (at 149.86 135.89 0)
  3126. (effects (font (size 1.524 1.524)) hide)
  3127. )
  3128. (property "Partkeepr" "2800" (id 4) (at 100.33 163.83 0)
  3129. (effects (font (size 1.27 1.27)) hide)
  3130. )
  3131. (pin "1" (uuid 2ad4cb07-b610-417b-bc5c-49245dc363ab))
  3132. (pin "10" (uuid 6d06b5e6-c703-4855-a286-72b6ed3c390c))
  3133. (pin "11" (uuid 85222373-356a-47b2-bbfc-14944262594b))
  3134. (pin "12" (uuid ed53a0fb-264b-42c0-8fff-1aa6903dc13c))
  3135. (pin "13" (uuid abedf504-eb49-41ff-8b03-c6850793d6bb))
  3136. (pin "14" (uuid 1e26e4d8-3e74-4042-bdab-8916b1c70176))
  3137. (pin "15" (uuid 652d3125-f310-4397-89e4-64c689609de9))
  3138. (pin "16" (uuid 12d7a151-1d26-4c27-8740-eae8bae5e290))
  3139. (pin "17" (uuid 4b3766e4-862e-4338-a534-74897a077fff))
  3140. (pin "18" (uuid 72cf267a-1679-4389-bcaf-062e897f3f70))
  3141. (pin "19" (uuid 1ec0e550-ba07-4969-84ad-c4aaaca77520))
  3142. (pin "2" (uuid 1246725a-b6b6-4365-bfe7-c1e8214cda46))
  3143. (pin "20" (uuid 11db396c-88fe-4cf3-9415-58d73e8ab85e))
  3144. (pin "21" (uuid 0e7b3da4-5a8c-4231-a861-7d1d13312345))
  3145. (pin "22" (uuid aa2ba3c0-2a35-4948-9263-5c27f37a7318))
  3146. (pin "3" (uuid 77e56775-197e-45ff-b91f-ff89dfa70dba))
  3147. (pin "4" (uuid 113a5408-53d6-4c4c-b270-e89ce01f5866))
  3148. (pin "5" (uuid 155b7423-65bf-4403-83a1-d9e934465f1a))
  3149. (pin "6" (uuid a31bd644-c876-4d8c-81de-4b6d6ad91a9d))
  3150. (pin "7" (uuid e68be638-7aff-451e-8399-a17273773ca6))
  3151. (pin "8" (uuid 5f8ac95b-8d28-4810-9805-ebbf8f09ce51))
  3152. (pin "9" (uuid f09bdb14-c067-4fb5-a3b9-bc5aac21310e))
  3153. )
  3154. (symbol (lib_id "global:R") (at 128.27 123.19 270) (unit 1)
  3155. (in_bom yes) (on_board yes)
  3156. (uuid 00000000-0000-0000-0000-00005cf5cde7)
  3157. (property "Reference" "R20" (id 0) (at 128.27 125.222 90))
  3158. (property "Value" "10K" (id 1) (at 128.27 123.19 90))
  3159. (property "Footprint" "R:0805" (id 2) (at 128.27 121.412 90)
  3160. (effects (font (size 1.27 1.27)) hide)
  3161. )
  3162. (property "Datasheet" "" (id 3) (at 128.27 123.19 0))
  3163. (property "Partkeepr" "910" (id 4) (at 110.49 95.25 0)
  3164. (effects (font (size 1.27 1.27)) hide)
  3165. )
  3166. (pin "1" (uuid d734ef8b-9174-4e5a-b33d-ae7ba95bf117))
  3167. (pin "2" (uuid 6bbdf9a2-6d48-4479-a1f5-b05a9a137ed1))
  3168. )
  3169. (symbol (lib_id "global:R") (at 128.27 128.27 270) (unit 1)
  3170. (in_bom yes) (on_board yes)
  3171. (uuid 00000000-0000-0000-0000-00005cf5cdef)
  3172. (property "Reference" "R21" (id 0) (at 128.27 130.302 90))
  3173. (property "Value" "10K" (id 1) (at 128.27 128.27 90))
  3174. (property "Footprint" "R:0805" (id 2) (at 128.27 126.492 90)
  3175. (effects (font (size 1.27 1.27)) hide)
  3176. )
  3177. (property "Datasheet" "" (id 3) (at 128.27 128.27 0))
  3178. (property "Partkeepr" "910" (id 4) (at 105.41 100.33 0)
  3179. (effects (font (size 1.27 1.27)) hide)
  3180. )
  3181. (pin "1" (uuid db2600a1-b0ba-4745-a86a-31e14b1cba4f))
  3182. (pin "2" (uuid 5d819988-28cc-4adb-87e3-cf082f4d254d))
  3183. )
  3184. (symbol (lib_id "global:C") (at 132.08 153.67 0) (unit 1)
  3185. (in_bom yes) (on_board yes)
  3186. (uuid 00000000-0000-0000-0000-00005cf5ce05)
  3187. (property "Reference" "C19" (id 0) (at 135.001 152.5016 0)
  3188. (effects (font (size 1.27 1.27)) (justify left))
  3189. )
  3190. (property "Value" "100nF" (id 1) (at 135.001 154.813 0)
  3191. (effects (font (size 1.27 1.27)) (justify left))
  3192. )
  3193. (property "Footprint" "C:0805" (id 2) (at 133.0452 157.48 0)
  3194. (effects (font (size 1.27 1.27)) hide)
  3195. )
  3196. (property "Datasheet" "" (id 3) (at 132.08 153.67 0))
  3197. (property "Partkeepr" "605" (id 4) (at 100.33 201.93 0)
  3198. (effects (font (size 1.27 1.27)) hide)
  3199. )
  3200. (pin "1" (uuid 111ebf95-bc3d-4c4c-8c39-3321a8fbbf0d))
  3201. (pin "2" (uuid ee5b63eb-93a6-4f69-a190-66a7914e8ef8))
  3202. )
  3203. (symbol (lib_id "global:R") (at 175.26 135.89 90) (unit 1)
  3204. (in_bom yes) (on_board yes)
  3205. (uuid 00000000-0000-0000-0000-00005cf5ce0f)
  3206. (property "Reference" "R28" (id 0) (at 175.26 133.858 90))
  3207. (property "Value" "10K" (id 1) (at 175.26 135.89 90))
  3208. (property "Footprint" "R:0805" (id 2) (at 175.26 137.668 90)
  3209. (effects (font (size 1.27 1.27)) hide)
  3210. )
  3211. (property "Datasheet" "" (id 3) (at 175.26 135.89 0))
  3212. (property "Partkeepr" "910" (id 4) (at 205.74 210.82 0)
  3213. (effects (font (size 1.27 1.27)) hide)
  3214. )
  3215. (pin "1" (uuid 49cdb69d-8ba3-497b-91bd-88796a0af1bf))
  3216. (pin "2" (uuid 4398c273-485e-4e97-a8cc-1bab8746b420))
  3217. )
  3218. (symbol (lib_id "global:R") (at 177.8 147.32 270) (unit 1)
  3219. (in_bom yes) (on_board yes)
  3220. (uuid 00000000-0000-0000-0000-00005cf5ce19)
  3221. (property "Reference" "R30" (id 0) (at 177.8 149.352 90))
  3222. (property "Value" "10K" (id 1) (at 177.8 147.32 90))
  3223. (property "Footprint" "R:0805" (id 2) (at 177.8 145.542 90)
  3224. (effects (font (size 1.27 1.27)) hide)
  3225. )
  3226. (property "Datasheet" "" (id 3) (at 177.8 147.32 0))
  3227. (property "Partkeepr" "910" (id 4) (at 135.89 69.85 0)
  3228. (effects (font (size 1.27 1.27)) hide)
  3229. )
  3230. (pin "1" (uuid 5544eff3-2ee1-4c6d-a828-fdbd678b773a))
  3231. (pin "2" (uuid 885e2140-88d7-45c0-85d8-b5a466ec7e3c))
  3232. )
  3233. (symbol (lib_id "global:Jumper") (at 180.34 156.21 0) (unit 1)
  3234. (in_bom yes) (on_board yes)
  3235. (uuid 00000000-0000-0000-0000-00005cf5ce26)
  3236. (property "Reference" "SJ1" (id 0) (at 180.34 158.75 0)
  3237. (effects (font (size 1.524 1.524)))
  3238. )
  3239. (property "Value" "Mode" (id 1) (at 180.34 152.6286 0)
  3240. (effects (font (size 1.524 1.524)))
  3241. )
  3242. (property "Footprint" "Jumper:Jumper_2.54mm" (id 2) (at 180.34 156.21 0)
  3243. (effects (font (size 1.524 1.524)) hide)
  3244. )
  3245. (property "Datasheet" "" (id 3) (at 180.34 156.21 0)
  3246. (effects (font (size 1.524 1.524)) hide)
  3247. )
  3248. (property "Partkeepr" "100" (id 4) (at 100.33 207.01 0)
  3249. (effects (font (size 1.27 1.27)) hide)
  3250. )
  3251. (pin "1" (uuid 90830ebb-c1ef-48b9-8b72-25f00e1eb93e))
  3252. (pin "2" (uuid edf6cf43-115f-4f75-82bf-37017412b7e2))
  3253. )
  3254. (symbol (lib_id "global:C") (at 123.19 153.67 0) (unit 1)
  3255. (in_bom yes) (on_board yes)
  3256. (uuid 00000000-0000-0000-0000-00005cf5ce3a)
  3257. (property "Reference" "C18" (id 0) (at 123.825 151.13 0)
  3258. (effects (font (size 1.27 1.27)) (justify left))
  3259. )
  3260. (property "Value" "4.7µF" (id 1) (at 123.825 156.21 0)
  3261. (effects (font (size 1.27 1.27)) (justify left))
  3262. )
  3263. (property "Footprint" "C:0805" (id 2) (at 124.1552 157.48 0)
  3264. (effects (font (size 1.27 1.27)) hide)
  3265. )
  3266. (property "Datasheet" "" (id 3) (at 123.19 153.67 0))
  3267. (property "Partkeepr" "607" (id 4) (at 102.87 330.835 0)
  3268. (effects (font (size 1.27 1.27)) hide)
  3269. )
  3270. (pin "1" (uuid 975d9cda-d1af-4410-bc19-2b078f826606))
  3271. (pin "2" (uuid 5ecfbb44-e036-40eb-9e58-2d0559d00d8e))
  3272. )
  3273. (symbol (lib_id "conn:CONN_01X03") (at 181.61 125.73 180) (unit 1)
  3274. (in_bom yes) (on_board yes)
  3275. (uuid 00000000-0000-0000-0000-00005cf5ce43)
  3276. (property "Reference" "P7" (id 0) (at 183.6674 118.745 0))
  3277. (property "Value" "ProgESP" (id 1) (at 183.6674 121.0564 0))
  3278. (property "Footprint" "Connector:PinHeader2.54_1X3" (id 2) (at 181.61 125.73 0)
  3279. (effects (font (size 1.27 1.27)) hide)
  3280. )
  3281. (property "Datasheet" "" (id 3) (at 181.61 125.73 0))
  3282. (property "Partkeepr" "100" (id 4) (at 566.42 -45.72 0)
  3283. (effects (font (size 1.27 1.27)) hide)
  3284. )
  3285. (pin "1" (uuid 30e2f4b3-4dcb-4e0e-843d-d252b8b25bc1))
  3286. (pin "2" (uuid f8f184a5-b235-46ee-bad2-1f97db775c1e))
  3287. (pin "3" (uuid c8c386a3-9150-4d75-8f96-224f6798b944))
  3288. )
  3289. (symbol (lib_id "global:NPN") (at 234.95 120.65 0) (unit 1)
  3290. (in_bom yes) (on_board yes)
  3291. (uuid 00000000-0000-0000-0000-00005d9b7c9f)
  3292. (property "Reference" "Q1" (id 0) (at 238.2774 119.3038 0)
  3293. (effects (font (size 1.524 1.524)) (justify left))
  3294. )
  3295. (property "Value" "NPN" (id 1) (at 238.2774 121.9962 0)
  3296. (effects (font (size 1.524 1.524)) (justify left))
  3297. )
  3298. (property "Footprint" "U:SOT23-3" (id 2) (at 232.41 120.65 0)
  3299. (effects (font (size 1.524 1.524)) hide)
  3300. )
  3301. (property "Datasheet" "" (id 3) (at 232.41 120.65 0)
  3302. (effects (font (size 1.524 1.524)) hide)
  3303. )
  3304. (property "Partkeepr" "2550" (id 4) (at 234.95 120.65 0)
  3305. (effects (font (size 1.27 1.27)) hide)
  3306. )
  3307. (pin "1" (uuid 4da64a86-c1e6-4f35-8c44-49efcc57d5e1))
  3308. (pin "2" (uuid 91ab1968-1705-4586-9133-4e28b1278845))
  3309. (pin "3" (uuid 00e1c495-89a1-43b0-a2d5-fbe8065e75a1))
  3310. )
  3311. (symbol (lib_id "global:R") (at 236.22 107.95 0) (unit 1)
  3312. (in_bom yes) (on_board yes)
  3313. (uuid 00000000-0000-0000-0000-00005d9b7e20)
  3314. (property "Reference" "R24" (id 0) (at 237.998 106.7816 0)
  3315. (effects (font (size 1.27 1.27)) (justify left))
  3316. )
  3317. (property "Value" "1K" (id 1) (at 237.998 109.093 0)
  3318. (effects (font (size 1.27 1.27)) (justify left))
  3319. )
  3320. (property "Footprint" "R:0805" (id 2) (at 234.442 107.95 90)
  3321. (effects (font (size 1.27 1.27)) hide)
  3322. )
  3323. (property "Datasheet" "" (id 3) (at 236.22 107.95 0))
  3324. (property "Partkeepr" "915" (id 4) (at -95.25 175.26 0)
  3325. (effects (font (size 1.27 1.27)) hide)
  3326. )
  3327. (pin "1" (uuid fe3e20da-7de0-414e-8ec5-10c0cc497b72))
  3328. (pin "2" (uuid 3d51861f-1cd2-4190-833e-23809d4667a9))
  3329. )
  3330. (symbol (lib_id "global:R") (at 246.38 113.03 270) (unit 1)
  3331. (in_bom yes) (on_board yes)
  3332. (uuid 00000000-0000-0000-0000-00005d9b7f5e)
  3333. (property "Reference" "R26" (id 0) (at 246.38 107.7722 90))
  3334. (property "Value" "1K" (id 1) (at 246.38 110.0836 90))
  3335. (property "Footprint" "R:0805" (id 2) (at 246.38 111.252 90)
  3336. (effects (font (size 1.27 1.27)) hide)
  3337. )
  3338. (property "Datasheet" "" (id 3) (at 246.38 113.03 0))
  3339. (property "Partkeepr" "915" (id 4) (at 173.99 -228.6 0)
  3340. (effects (font (size 1.27 1.27)) hide)
  3341. )
  3342. (pin "1" (uuid 872446b8-ab5d-40d1-a1b6-f784de9853d0))
  3343. (pin "2" (uuid 5911020f-5cd7-4c20-974c-c108939b252a))
  3344. )
  3345. (symbol (lib_id "global:C") (at 251.46 124.46 0) (unit 1)
  3346. (in_bom yes) (on_board yes)
  3347. (uuid 00000000-0000-0000-0000-00005d9b8114)
  3348. (property "Reference" "C20" (id 0) (at 254.381 123.2916 0)
  3349. (effects (font (size 1.27 1.27)) (justify left))
  3350. )
  3351. (property "Value" "1µF" (id 1) (at 254.381 125.603 0)
  3352. (effects (font (size 1.27 1.27)) (justify left))
  3353. )
  3354. (property "Footprint" "C:0805" (id 2) (at 252.4252 128.27 0)
  3355. (effects (font (size 1.27 1.27)) hide)
  3356. )
  3357. (property "Datasheet" "" (id 3) (at 251.46 124.46 0))
  3358. (property "Partkeepr" "606" (id 4) (at -95.25 208.28 0)
  3359. (effects (font (size 1.27 1.27)) hide)
  3360. )
  3361. (pin "1" (uuid 0c48b466-8597-40a6-a47d-a15f9a6f568c))
  3362. (pin "2" (uuid b373964c-b727-467d-a158-6e0581031f85))
  3363. )
  3364. (symbol (lib_id "global:R") (at 223.52 120.65 270) (unit 1)
  3365. (in_bom yes) (on_board yes)
  3366. (uuid 00000000-0000-0000-0000-00005d9b824d)
  3367. (property "Reference" "R22" (id 0) (at 223.52 115.3922 90))
  3368. (property "Value" "4.7K" (id 1) (at 223.52 117.7036 90))
  3369. (property "Footprint" "R:0805" (id 2) (at 223.52 118.872 90)
  3370. (effects (font (size 1.27 1.27)) hide)
  3371. )
  3372. (property "Datasheet" "" (id 3) (at 223.52 120.65 0))
  3373. (property "Partkeepr" "917" (id 4) (at 143.51 -198.12 0)
  3374. (effects (font (size 1.27 1.27)) hide)
  3375. )
  3376. (pin "1" (uuid 0ac32a78-330e-4289-903b-79bfe717c4c4))
  3377. (pin "2" (uuid 5711d4f8-c923-4cb2-a878-b7e047e85ae8))
  3378. )
  3379. (symbol (lib_id "global:NPN") (at 234.95 154.94 0) (unit 1)
  3380. (in_bom yes) (on_board yes)
  3381. (uuid 00000000-0000-0000-0000-00005d9e4bc3)
  3382. (property "Reference" "Q2" (id 0) (at 238.2774 153.5938 0)
  3383. (effects (font (size 1.524 1.524)) (justify left))
  3384. )
  3385. (property "Value" "NPN" (id 1) (at 238.2774 156.2862 0)
  3386. (effects (font (size 1.524 1.524)) (justify left))
  3387. )
  3388. (property "Footprint" "U:SOT23-3" (id 2) (at 232.41 154.94 0)
  3389. (effects (font (size 1.524 1.524)) hide)
  3390. )
  3391. (property "Datasheet" "" (id 3) (at 232.41 154.94 0)
  3392. (effects (font (size 1.524 1.524)) hide)
  3393. )
  3394. (property "Partkeepr" "2550" (id 4) (at 234.95 154.94 0)
  3395. (effects (font (size 1.27 1.27)) hide)
  3396. )
  3397. (pin "1" (uuid c3235b61-f044-4055-819d-ca414099831a))
  3398. (pin "2" (uuid 5213dbb4-5ce0-4698-befa-6bcd2ce5fc64))
  3399. (pin "3" (uuid e758bf55-b693-47bd-a083-9710ef538405))
  3400. )
  3401. (symbol (lib_id "global:R") (at 236.22 142.24 0) (unit 1)
  3402. (in_bom yes) (on_board yes)
  3403. (uuid 00000000-0000-0000-0000-00005d9e4bca)
  3404. (property "Reference" "R25" (id 0) (at 237.998 141.0716 0)
  3405. (effects (font (size 1.27 1.27)) (justify left))
  3406. )
  3407. (property "Value" "1K" (id 1) (at 237.998 143.383 0)
  3408. (effects (font (size 1.27 1.27)) (justify left))
  3409. )
  3410. (property "Footprint" "R:0805" (id 2) (at 234.442 142.24 90)
  3411. (effects (font (size 1.27 1.27)) hide)
  3412. )
  3413. (property "Datasheet" "" (id 3) (at 236.22 142.24 0))
  3414. (property "Partkeepr" "915" (id 4) (at -95.25 243.84 0)
  3415. (effects (font (size 1.27 1.27)) hide)
  3416. )
  3417. (pin "1" (uuid a91166c9-016a-4bef-8fc1-7ce2764aa003))
  3418. (pin "2" (uuid 3d386c9f-8773-406b-aa2c-478bcbafc841))
  3419. )
  3420. (symbol (lib_id "global:R") (at 246.38 147.32 270) (unit 1)
  3421. (in_bom yes) (on_board yes)
  3422. (uuid 00000000-0000-0000-0000-00005d9e4bd1)
  3423. (property "Reference" "R27" (id 0) (at 246.38 142.0622 90))
  3424. (property "Value" "1K" (id 1) (at 246.38 144.3736 90))
  3425. (property "Footprint" "R:0805" (id 2) (at 246.38 145.542 90)
  3426. (effects (font (size 1.27 1.27)) hide)
  3427. )
  3428. (property "Datasheet" "" (id 3) (at 246.38 147.32 0))
  3429. (property "Partkeepr" "915" (id 4) (at 139.7 -194.31 0)
  3430. (effects (font (size 1.27 1.27)) hide)
  3431. )
  3432. (pin "1" (uuid e8da59c1-2335-4414-acb3-54636d1260c2))
  3433. (pin "2" (uuid 729d2c80-b41b-4bbd-841a-9457dc29f98c))
  3434. )
  3435. (symbol (lib_id "global:C") (at 251.46 158.75 0) (unit 1)
  3436. (in_bom yes) (on_board yes)
  3437. (uuid 00000000-0000-0000-0000-00005d9e4bd8)
  3438. (property "Reference" "C21" (id 0) (at 254.381 157.5816 0)
  3439. (effects (font (size 1.27 1.27)) (justify left))
  3440. )
  3441. (property "Value" "1µF" (id 1) (at 254.381 159.893 0)
  3442. (effects (font (size 1.27 1.27)) (justify left))
  3443. )
  3444. (property "Footprint" "C:0805" (id 2) (at 252.4252 162.56 0)
  3445. (effects (font (size 1.27 1.27)) hide)
  3446. )
  3447. (property "Datasheet" "" (id 3) (at 251.46 158.75 0))
  3448. (property "Partkeepr" "606" (id 4) (at -95.25 276.86 0)
  3449. (effects (font (size 1.27 1.27)) hide)
  3450. )
  3451. (pin "1" (uuid 5776fc88-08ac-4ce2-be28-879c8b182c83))
  3452. (pin "2" (uuid 3950467a-cb79-43fa-819f-f1eea54a1fc1))
  3453. )
  3454. (symbol (lib_id "global:R") (at 223.52 154.94 270) (unit 1)
  3455. (in_bom yes) (on_board yes)
  3456. (uuid 00000000-0000-0000-0000-00005d9e4bdf)
  3457. (property "Reference" "R23" (id 0) (at 223.52 149.6822 90))
  3458. (property "Value" "4.7K" (id 1) (at 223.52 151.9936 90))
  3459. (property "Footprint" "R:0805" (id 2) (at 223.52 153.162 90)
  3460. (effects (font (size 1.27 1.27)) hide)
  3461. )
  3462. (property "Datasheet" "" (id 3) (at 223.52 154.94 0))
  3463. (property "Partkeepr" "917" (id 4) (at 109.22 -163.83 0)
  3464. (effects (font (size 1.27 1.27)) hide)
  3465. )
  3466. (pin "1" (uuid 75ec5e05-4337-49e5-a747-399969a03c4a))
  3467. (pin "2" (uuid 4a042998-2ee7-4274-9284-e98ce02097f3))
  3468. )
  3469. (symbol (lib_id "global:R") (at 15.24 21.59 0) (unit 1)
  3470. (in_bom yes) (on_board yes)
  3471. (uuid 00000000-0000-0000-0000-00005daa64c1)
  3472. (property "Reference" "R1" (id 0) (at 17.018 20.4216 0)
  3473. (effects (font (size 1.27 1.27)) (justify left))
  3474. )
  3475. (property "Value" "4.7K" (id 1) (at 17.018 22.733 0)
  3476. (effects (font (size 1.27 1.27)) (justify left))
  3477. )
  3478. (property "Footprint" "R:0805" (id 2) (at 13.462 21.59 90)
  3479. (effects (font (size 1.27 1.27)) hide)
  3480. )
  3481. (property "Datasheet" "" (id 3) (at 15.24 21.59 0))
  3482. (property "Partkeepr" "917" (id 4) (at 15.24 21.59 0)
  3483. (effects (font (size 1.27 1.27)) hide)
  3484. )
  3485. (pin "1" (uuid a5620f8e-d43d-424a-b441-7b3012020ce1))
  3486. (pin "2" (uuid 0a48f37f-ce78-458d-96d4-ee77ac4cc016))
  3487. )
  3488. (symbol (lib_id "global:R") (at 15.24 29.21 0) (unit 1)
  3489. (in_bom yes) (on_board yes)
  3490. (uuid 00000000-0000-0000-0000-00005daa6670)
  3491. (property "Reference" "R2" (id 0) (at 17.018 28.0416 0)
  3492. (effects (font (size 1.27 1.27)) (justify left))
  3493. )
  3494. (property "Value" "10K" (id 1) (at 17.018 30.353 0)
  3495. (effects (font (size 1.27 1.27)) (justify left))
  3496. )
  3497. (property "Footprint" "R:0805" (id 2) (at 13.462 29.21 90)
  3498. (effects (font (size 1.27 1.27)) hide)
  3499. )
  3500. (property "Datasheet" "" (id 3) (at 15.24 29.21 0))
  3501. (property "Partkeepr" "910" (id 4) (at 15.24 29.21 0)
  3502. (effects (font (size 1.27 1.27)) hide)
  3503. )
  3504. (pin "1" (uuid 532d0b9e-5231-4c4b-9a50-6f0852cba338))
  3505. (pin "2" (uuid 245fc5df-4c4d-4cbe-a8a3-f41d05855a31))
  3506. )
  3507. (symbol (lib_id "global:R") (at 38.1 21.59 0) (unit 1)
  3508. (in_bom yes) (on_board yes)
  3509. (uuid 00000000-0000-0000-0000-00005dad452d)
  3510. (property "Reference" "R3" (id 0) (at 39.878 20.4216 0)
  3511. (effects (font (size 1.27 1.27)) (justify left))
  3512. )
  3513. (property "Value" "4.7K" (id 1) (at 39.878 22.733 0)
  3514. (effects (font (size 1.27 1.27)) (justify left))
  3515. )
  3516. (property "Footprint" "R:0805" (id 2) (at 36.322 21.59 90)
  3517. (effects (font (size 1.27 1.27)) hide)
  3518. )
  3519. (property "Datasheet" "" (id 3) (at 38.1 21.59 0))
  3520. (property "Partkeepr" "917" (id 4) (at 38.1 21.59 0)
  3521. (effects (font (size 1.27 1.27)) hide)
  3522. )
  3523. (pin "1" (uuid b9ccf55c-c75e-45a2-94cc-e4e4a66ba403))
  3524. (pin "2" (uuid 82810087-5b12-4489-a801-75faedbe008f))
  3525. )
  3526. (symbol (lib_id "global:R") (at 38.1 29.21 0) (unit 1)
  3527. (in_bom yes) (on_board yes)
  3528. (uuid 00000000-0000-0000-0000-00005dad4535)
  3529. (property "Reference" "R4" (id 0) (at 39.878 28.0416 0)
  3530. (effects (font (size 1.27 1.27)) (justify left))
  3531. )
  3532. (property "Value" "10K" (id 1) (at 39.878 30.353 0)
  3533. (effects (font (size 1.27 1.27)) (justify left))
  3534. )
  3535. (property "Footprint" "R:0805" (id 2) (at 36.322 29.21 90)
  3536. (effects (font (size 1.27 1.27)) hide)
  3537. )
  3538. (property "Datasheet" "" (id 3) (at 38.1 29.21 0))
  3539. (property "Partkeepr" "910" (id 4) (at 38.1 29.21 0)
  3540. (effects (font (size 1.27 1.27)) hide)
  3541. )
  3542. (pin "1" (uuid b30be215-8353-4a61-b865-e5046e8f7259))
  3543. (pin "2" (uuid bc0ffe31-7b9e-4150-8684-8f719e1659ed))
  3544. )
  3545. (symbol (lib_id "global:R") (at 62.23 22.86 0) (unit 1)
  3546. (in_bom yes) (on_board yes)
  3547. (uuid 00000000-0000-0000-0000-00005dae4856)
  3548. (property "Reference" "R5" (id 0) (at 64.008 21.6916 0)
  3549. (effects (font (size 1.27 1.27)) (justify left))
  3550. )
  3551. (property "Value" "4.7K" (id 1) (at 64.008 24.003 0)
  3552. (effects (font (size 1.27 1.27)) (justify left))
  3553. )
  3554. (property "Footprint" "R:0805" (id 2) (at 60.452 22.86 90)
  3555. (effects (font (size 1.27 1.27)) hide)
  3556. )
  3557. (property "Datasheet" "" (id 3) (at 62.23 22.86 0))
  3558. (property "Partkeepr" "917" (id 4) (at 62.23 22.86 0)
  3559. (effects (font (size 1.27 1.27)) hide)
  3560. )
  3561. (pin "1" (uuid e881b5b4-7576-4f48-b519-89d9d76ed8d7))
  3562. (pin "2" (uuid 4b5da53a-9b9e-4ebc-a5dd-2899a67a3d92))
  3563. )
  3564. (symbol (lib_id "global:R") (at 62.23 30.48 0) (unit 1)
  3565. (in_bom yes) (on_board yes)
  3566. (uuid 00000000-0000-0000-0000-00005dae485e)
  3567. (property "Reference" "R6" (id 0) (at 64.008 29.3116 0)
  3568. (effects (font (size 1.27 1.27)) (justify left))
  3569. )
  3570. (property "Value" "10K" (id 1) (at 64.008 31.623 0)
  3571. (effects (font (size 1.27 1.27)) (justify left))
  3572. )
  3573. (property "Footprint" "R:0805" (id 2) (at 60.452 30.48 90)
  3574. (effects (font (size 1.27 1.27)) hide)
  3575. )
  3576. (property "Datasheet" "" (id 3) (at 62.23 30.48 0))
  3577. (property "Partkeepr" "910" (id 4) (at 62.23 30.48 0)
  3578. (effects (font (size 1.27 1.27)) hide)
  3579. )
  3580. (pin "1" (uuid 63bfb16b-a337-40ba-a597-cd17e2cac273))
  3581. (pin "2" (uuid e909a592-fc02-4862-a99d-4e840671558e))
  3582. )
  3583. (symbol (lib_id "global:R") (at 82.55 21.59 0) (unit 1)
  3584. (in_bom yes) (on_board yes)
  3585. (uuid 00000000-0000-0000-0000-00005daecaa6)
  3586. (property "Reference" "R7" (id 0) (at 84.328 20.4216 0)
  3587. (effects (font (size 1.27 1.27)) (justify left))
  3588. )
  3589. (property "Value" "4.7K" (id 1) (at 84.328 22.733 0)
  3590. (effects (font (size 1.27 1.27)) (justify left))
  3591. )
  3592. (property "Footprint" "R:0805" (id 2) (at 80.772 21.59 90)
  3593. (effects (font (size 1.27 1.27)) hide)
  3594. )
  3595. (property "Datasheet" "" (id 3) (at 82.55 21.59 0))
  3596. (property "Partkeepr" "917" (id 4) (at 82.55 21.59 0)
  3597. (effects (font (size 1.27 1.27)) hide)
  3598. )
  3599. (pin "1" (uuid 23f98da4-37c8-4724-9aeb-87f31c022121))
  3600. (pin "2" (uuid 1fa3bcff-9d82-4c3e-98fa-9f6edb08ddd8))
  3601. )
  3602. (symbol (lib_id "global:R") (at 82.55 29.21 0) (unit 1)
  3603. (in_bom yes) (on_board yes)
  3604. (uuid 00000000-0000-0000-0000-00005daecaae)
  3605. (property "Reference" "R8" (id 0) (at 84.328 28.0416 0)
  3606. (effects (font (size 1.27 1.27)) (justify left))
  3607. )
  3608. (property "Value" "10K" (id 1) (at 84.328 30.353 0)
  3609. (effects (font (size 1.27 1.27)) (justify left))
  3610. )
  3611. (property "Footprint" "R:0805" (id 2) (at 80.772 29.21 90)
  3612. (effects (font (size 1.27 1.27)) hide)
  3613. )
  3614. (property "Datasheet" "" (id 3) (at 82.55 29.21 0))
  3615. (property "Partkeepr" "910" (id 4) (at 82.55 29.21 0)
  3616. (effects (font (size 1.27 1.27)) hide)
  3617. )
  3618. (pin "1" (uuid 5f90c285-83e5-4b35-84c4-d4ebaddb7959))
  3619. (pin "2" (uuid 88371317-261f-42fd-a298-a417196f2113))
  3620. )
  3621. (symbol (lib_id "global:R") (at 101.6 21.59 0) (unit 1)
  3622. (in_bom yes) (on_board yes)
  3623. (uuid 00000000-0000-0000-0000-00005daf4bce)
  3624. (property "Reference" "R9" (id 0) (at 103.378 20.4216 0)
  3625. (effects (font (size 1.27 1.27)) (justify left))
  3626. )
  3627. (property "Value" "4.7K" (id 1) (at 103.378 22.733 0)
  3628. (effects (font (size 1.27 1.27)) (justify left))
  3629. )
  3630. (property "Footprint" "R:0805" (id 2) (at 99.822 21.59 90)
  3631. (effects (font (size 1.27 1.27)) hide)
  3632. )
  3633. (property "Datasheet" "" (id 3) (at 101.6 21.59 0))
  3634. (property "Partkeepr" "917" (id 4) (at 101.6 21.59 0)
  3635. (effects (font (size 1.27 1.27)) hide)
  3636. )
  3637. (pin "1" (uuid 3419a8a7-88bd-4860-898b-16c4297f958b))
  3638. (pin "2" (uuid aeb69b52-fbdd-4dbd-9ab4-ad6b2551e01a))
  3639. )
  3640. (symbol (lib_id "global:R") (at 101.6 29.21 0) (unit 1)
  3641. (in_bom yes) (on_board yes)
  3642. (uuid 00000000-0000-0000-0000-00005daf4bd6)
  3643. (property "Reference" "R10" (id 0) (at 103.378 28.0416 0)
  3644. (effects (font (size 1.27 1.27)) (justify left))
  3645. )
  3646. (property "Value" "10K" (id 1) (at 103.378 30.353 0)
  3647. (effects (font (size 1.27 1.27)) (justify left))
  3648. )
  3649. (property "Footprint" "R:0805" (id 2) (at 99.822 29.21 90)
  3650. (effects (font (size 1.27 1.27)) hide)
  3651. )
  3652. (property "Datasheet" "" (id 3) (at 101.6 29.21 0))
  3653. (property "Partkeepr" "910" (id 4) (at 101.6 29.21 0)
  3654. (effects (font (size 1.27 1.27)) hide)
  3655. )
  3656. (pin "1" (uuid 9a724015-62ee-4f6b-9a57-edd7f7cfee98))
  3657. (pin "2" (uuid 57f097b3-8e82-4fd9-853d-c53a448ec25c))
  3658. )
  3659. (symbol (lib_id "global:R") (at 124.46 21.59 0) (unit 1)
  3660. (in_bom yes) (on_board yes)
  3661. (uuid 00000000-0000-0000-0000-00005dafcd32)
  3662. (property "Reference" "R11" (id 0) (at 126.238 20.4216 0)
  3663. (effects (font (size 1.27 1.27)) (justify left))
  3664. )
  3665. (property "Value" "4.7K" (id 1) (at 126.238 22.733 0)
  3666. (effects (font (size 1.27 1.27)) (justify left))
  3667. )
  3668. (property "Footprint" "R:0805" (id 2) (at 122.682 21.59 90)
  3669. (effects (font (size 1.27 1.27)) hide)
  3670. )
  3671. (property "Datasheet" "" (id 3) (at 124.46 21.59 0))
  3672. (property "Partkeepr" "917" (id 4) (at 124.46 21.59 0)
  3673. (effects (font (size 1.27 1.27)) hide)
  3674. )
  3675. (pin "1" (uuid 2e584932-7b50-4b96-aadb-a09fd81fcfae))
  3676. (pin "2" (uuid 439ab3f9-851e-44f8-b977-d748027225df))
  3677. )
  3678. (symbol (lib_id "global:R") (at 124.46 29.21 0) (unit 1)
  3679. (in_bom yes) (on_board yes)
  3680. (uuid 00000000-0000-0000-0000-00005dafcd3a)
  3681. (property "Reference" "R12" (id 0) (at 126.238 28.0416 0)
  3682. (effects (font (size 1.27 1.27)) (justify left))
  3683. )
  3684. (property "Value" "10K" (id 1) (at 126.238 30.353 0)
  3685. (effects (font (size 1.27 1.27)) (justify left))
  3686. )
  3687. (property "Footprint" "R:0805" (id 2) (at 122.682 29.21 90)
  3688. (effects (font (size 1.27 1.27)) hide)
  3689. )
  3690. (property "Datasheet" "" (id 3) (at 124.46 29.21 0))
  3691. (property "Partkeepr" "910" (id 4) (at 124.46 29.21 0)
  3692. (effects (font (size 1.27 1.27)) hide)
  3693. )
  3694. (pin "1" (uuid cc49aad3-f478-46e2-b00a-3d01178541fc))
  3695. (pin "2" (uuid bf9003a7-0644-45a8-a649-06cf49007b85))
  3696. )
  3697. (symbol (lib_id "conn:CONN_01X10") (at 236.22 76.2 90) (unit 1)
  3698. (in_bom yes) (on_board yes)
  3699. (uuid 00000000-0000-0000-0000-00005fc29f57)
  3700. (property "Reference" "J2" (id 0) (at 223.52 77.47 90))
  3701. (property "Value" "DATA" (id 1) (at 236.22 73.66 90))
  3702. (property "Footprint" "Phoenix:PCBEdge_1x10_5.7x2.21mm_p3.81mm" (id 2) (at 236.22 76.2 0)
  3703. (effects (font (size 1.27 1.27)) hide)
  3704. )
  3705. (property "Datasheet" "" (id 3) (at 236.22 76.2 0)
  3706. (effects (font (size 1.27 1.27)) hide)
  3707. )
  3708. (pin "1" (uuid 10d69a85-2c95-4368-9fc8-86b325239f86))
  3709. (pin "10" (uuid b11c33a1-7278-47a8-a42a-f339f68b5e37))
  3710. (pin "2" (uuid 13d89350-a4c8-4462-b501-0e063e94c6ea))
  3711. (pin "3" (uuid 778a2c77-21ec-4496-815e-61b1f9f1641e))
  3712. (pin "4" (uuid c6e9c7f1-270f-44e1-b0ef-43ec3a326af8))
  3713. (pin "5" (uuid def08aa1-db1a-4189-9865-b3c776167f53))
  3714. (pin "6" (uuid 15e8dfb5-e61c-4614-b8a9-148547c3cfbb))
  3715. (pin "7" (uuid 8d80c223-8e7b-4d8e-a9e3-f220563d86dc))
  3716. (pin "8" (uuid 200be525-21ab-42c9-b57d-c0fd73779514))
  3717. (pin "9" (uuid a15a2271-1114-4009-becd-cc64ded90a95))
  3718. )
  3719. (symbol (lib_id "conn:CONN_01X02") (at 215.9 76.2 90) (unit 1)
  3720. (in_bom yes) (on_board yes)
  3721. (uuid 00000000-0000-0000-0000-00005fc29f5d)
  3722. (property "Reference" "J1" (id 0) (at 213.36 77.47 90))
  3723. (property "Value" "PWR" (id 1) (at 217.17 73.66 90))
  3724. (property "Footprint" "Phoenix:PCBEdge_1x4_7.6x1.5mm_p1.9mm_2pins" (id 2) (at 215.9 76.2 0)
  3725. (effects (font (size 1.27 1.27)) hide)
  3726. )
  3727. (property "Datasheet" "" (id 3) (at 215.9 76.2 0)
  3728. (effects (font (size 1.27 1.27)) hide)
  3729. )
  3730. (pin "1" (uuid 20f22bac-eeb8-437e-b964-3a6bb0bd9333))
  3731. (pin "2" (uuid 2312ee37-c552-4f60-947c-3d5ea260a9ff))
  3732. )
  3733. (symbol (lib_id "conn:CONN_01X01") (at 256.54 80.01 90) (unit 1)
  3734. (in_bom yes) (on_board yes)
  3735. (uuid 00000000-0000-0000-0000-00005fc29f63)
  3736. (property "Reference" "J3" (id 0) (at 254 81.28 90))
  3737. (property "Value" "EARTH" (id 1) (at 256.54 77.47 90))
  3738. (property "Footprint" "Phoenix:PCBEdge_1x1_6x3mm" (id 2) (at 256.54 80.01 0)
  3739. (effects (font (size 1.27 1.27)) hide)
  3740. )
  3741. (property "Datasheet" "" (id 3) (at 256.54 80.01 0)
  3742. (effects (font (size 1.27 1.27)) hide)
  3743. )
  3744. (pin "1" (uuid 058ef172-2a6c-4211-9f3d-463aefd25e08))
  3745. )
  3746. (symbol (lib_id "conn:CONN_01X04") (at 229.87 25.4 0) (unit 1)
  3747. (in_bom yes) (on_board yes)
  3748. (uuid 00000000-0000-0000-0000-00005fc29fd0)
  3749. (property "Reference" "P4" (id 0) (at 226.06 19.05 0)
  3750. (effects (font (size 1.27 1.27)) (justify left))
  3751. )
  3752. (property "Value" "CONN_01X04" (id 1) (at 232.41 31.75 90)
  3753. (effects (font (size 1.27 1.27)) (justify left))
  3754. )
  3755. (property "Footprint" "Phoenix:PhoenixContact_MSTBO_2,5_4-G1L_1x4_p5.00mm" (id 2) (at 229.87 25.4 0)
  3756. (effects (font (size 1.27 1.27)) hide)
  3757. )
  3758. (property "Datasheet" "" (id 3) (at 229.87 25.4 0))
  3759. (pin "1" (uuid 8f3dd8a7-25eb-47af-8acb-9d5e227d31bc))
  3760. (pin "2" (uuid 3ed4153b-3440-46a0-a586-856064df3365))
  3761. (pin "3" (uuid b57cf66c-7f45-4b73-9f81-3b997e9718f7))
  3762. (pin "4" (uuid ea3cceb4-bee0-4bb6-88c0-745dad9d4928))
  3763. )
  3764. (symbol (lib_id "conn:CONN_01X04") (at 222.25 43.18 0) (unit 1)
  3765. (in_bom yes) (on_board yes)
  3766. (uuid 00000000-0000-0000-0000-00005fc29fd6)
  3767. (property "Reference" "P3" (id 0) (at 217.17 36.83 0)
  3768. (effects (font (size 1.27 1.27)) (justify left))
  3769. )
  3770. (property "Value" "CONN_01X04" (id 1) (at 224.79 48.26 90)
  3771. (effects (font (size 1.27 1.27)) (justify left))
  3772. )
  3773. (property "Footprint" "Phoenix:PhoenixContact_MSTBO_2,5_4-G1L_1x4_p5.00mm" (id 2) (at 222.25 43.18 0)
  3774. (effects (font (size 1.27 1.27)) hide)
  3775. )
  3776. (property "Datasheet" "" (id 3) (at 222.25 43.18 0))
  3777. (pin "1" (uuid f39d4d16-e748-43ad-9007-2f861ce68eb3))
  3778. (pin "2" (uuid 7a5b776b-d43d-4cf2-ab9c-6cb55bae625f))
  3779. (pin "3" (uuid 60a8abf6-b7d3-4d15-8b02-d1e90a877a23))
  3780. (pin "4" (uuid d5c95c75-1b7f-4b21-ab5b-62cd790cde88))
  3781. )
  3782. (symbol (lib_id "conn:CONN_01X04") (at 214.63 60.96 0) (unit 1)
  3783. (in_bom yes) (on_board yes)
  3784. (uuid 00000000-0000-0000-0000-00005fc29fdc)
  3785. (property "Reference" "P2" (id 0) (at 207.01 54.61 0)
  3786. (effects (font (size 1.27 1.27)) (justify left))
  3787. )
  3788. (property "Value" "CONN_01X04" (id 1) (at 217.17 67.31 90)
  3789. (effects (font (size 1.27 1.27)) (justify left))
  3790. )
  3791. (property "Footprint" "Phoenix:PhoenixContact_MSTBO_2,5_4-G1L_1x4_p5.00mm" (id 2) (at 214.63 60.96 0)
  3792. (effects (font (size 1.27 1.27)) hide)
  3793. )
  3794. (property "Datasheet" "" (id 3) (at 214.63 60.96 0))
  3795. (pin "1" (uuid 54e6b028-669c-4e30-b084-0d6597e734a4))
  3796. (pin "2" (uuid 22b24f60-2cc9-4d7d-8a79-83f09e283f45))
  3797. (pin "3" (uuid c8da220b-ecb6-4357-aca7-aa1836a4ef43))
  3798. (pin "4" (uuid 495a2d08-b523-4fda-b8ec-589a4b91263c))
  3799. )
  3800. (symbol (lib_id "conn:CONN_01X04") (at 257.81 60.96 0) (mirror y) (unit 1)
  3801. (in_bom yes) (on_board yes)
  3802. (uuid 00000000-0000-0000-0000-00005fc29fe2)
  3803. (property "Reference" "P8" (id 0) (at 261.62 54.61 0))
  3804. (property "Value" "CONN_01X04" (id 1) (at 255.27 60.96 90))
  3805. (property "Footprint" "Phoenix:PhoenixContact_MSTBO_2,5_4-G1R_1x4_p5.00mm" (id 2) (at 257.81 60.96 0)
  3806. (effects (font (size 1.27 1.27)) hide)
  3807. )
  3808. (property "Datasheet" "" (id 3) (at 257.81 60.96 0))
  3809. (pin "1" (uuid f2037dbe-9893-48e9-8c91-77a8171922dd))
  3810. (pin "2" (uuid db423170-9afd-48f6-a4d7-f6880a58fb1e))
  3811. (pin "3" (uuid 59abd686-6d9a-4d12-88fd-2b64177e24b9))
  3812. (pin "4" (uuid 38706c63-7bff-43a4-87a1-cde82db6638a))
  3813. )
  3814. (symbol (lib_id "conn:CONN_01X04") (at 250.19 43.18 0) (mirror y) (unit 1)
  3815. (in_bom yes) (on_board yes)
  3816. (uuid 00000000-0000-0000-0000-00005fc29fe8)
  3817. (property "Reference" "P6" (id 0) (at 252.73 35.56 0))
  3818. (property "Value" "CONN_01X04" (id 1) (at 247.65 43.18 90))
  3819. (property "Footprint" "Phoenix:PhoenixContact_MSTBO_2,5_4-G1R_1x4_p5.00mm" (id 2) (at 250.19 43.18 0)
  3820. (effects (font (size 1.27 1.27)) hide)
  3821. )
  3822. (property "Datasheet" "" (id 3) (at 250.19 43.18 0))
  3823. (pin "1" (uuid bcfd66b5-104b-487d-b277-2a1adc33897b))
  3824. (pin "2" (uuid a1c3bf24-032b-4d73-81be-de7d7929f6b9))
  3825. (pin "3" (uuid 222c8520-a9fc-436d-b7e6-f665626d2588))
  3826. (pin "4" (uuid 3cb2d4a7-95a1-4288-9095-41e7c23ec45c))
  3827. )
  3828. (symbol (lib_id "conn:CONN_01X04") (at 242.57 25.4 0) (mirror y) (unit 1)
  3829. (in_bom yes) (on_board yes)
  3830. (uuid 00000000-0000-0000-0000-00005fc29fee)
  3831. (property "Reference" "P5" (id 0) (at 246.38 19.05 0))
  3832. (property "Value" "CONN_01X04" (id 1) (at 240.03 25.4 90))
  3833. (property "Footprint" "Phoenix:PhoenixContact_MSTBO_2,5_4-G1R_1x4_p5.00mm" (id 2) (at 242.57 25.4 0)
  3834. (effects (font (size 1.27 1.27)) hide)
  3835. )
  3836. (property "Datasheet" "" (id 3) (at 242.57 25.4 0))
  3837. (pin "1" (uuid e6249270-3611-4763-8e8b-018caadca1cb))
  3838. (pin "2" (uuid 04ce41ce-e70e-432e-a7bf-b54334022d61))
  3839. (pin "3" (uuid e2973f9e-f86b-4097-a304-97963e0a9135))
  3840. (pin "4" (uuid e2f915ab-0afe-47bf-bf27-1e4b79a41b3c))
  3841. )
  3842. (symbol (lib_id "global:R") (at 175.26 138.43 270) (unit 1)
  3843. (in_bom yes) (on_board yes)
  3844. (uuid 00000000-0000-0000-0000-00006012d5e7)
  3845. (property "Reference" "R29" (id 0) (at 175.26 140.462 90))
  3846. (property "Value" "10K" (id 1) (at 175.26 138.43 90))
  3847. (property "Footprint" "R:0805" (id 2) (at 175.26 136.652 90)
  3848. (effects (font (size 1.27 1.27)) hide)
  3849. )
  3850. (property "Datasheet" "" (id 3) (at 175.26 138.43 0))
  3851. (property "Partkeepr" "910" (id 4) (at 144.78 63.5 0)
  3852. (effects (font (size 1.27 1.27)) hide)
  3853. )
  3854. (pin "1" (uuid ddcce9cd-0952-46d6-82c0-26ea30fee890))
  3855. (pin "2" (uuid 74bb3e62-1151-49e9-9aae-860fb9e2b7e1))
  3856. )
  3857. (symbol (lib_id "global:R") (at 95.25 91.44 180) (unit 1)
  3858. (in_bom yes) (on_board yes)
  3859. (uuid 00000000-0000-0000-0000-00006026ac36)
  3860. (property "Reference" "R33" (id 0) (at 93.218 91.44 90))
  3861. (property "Value" "10K" (id 1) (at 95.25 91.44 90))
  3862. (property "Footprint" "R:0805" (id 2) (at 97.028 91.44 90)
  3863. (effects (font (size 1.27 1.27)) hide)
  3864. )
  3865. (property "Datasheet" "" (id 3) (at 95.25 91.44 0))
  3866. (property "Partkeepr" "910" (id 4) (at 278.13 66.04 0)
  3867. (effects (font (size 1.27 1.27)) hide)
  3868. )
  3869. (pin "1" (uuid f23395ae-4b1c-4530-850f-75ef7e14051b))
  3870. (pin "2" (uuid 9a07f142-6b90-4370-9e8f-f53846c7acf5))
  3871. )
  3872. (symbol (lib_id "global:R") (at 100.33 91.44 180) (unit 1)
  3873. (in_bom yes) (on_board yes)
  3874. (uuid 00000000-0000-0000-0000-00006026ac3d)
  3875. (property "Reference" "R32" (id 0) (at 98.298 91.44 90))
  3876. (property "Value" "10K" (id 1) (at 100.33 91.44 90))
  3877. (property "Footprint" "R:0805" (id 2) (at 102.108 91.44 90)
  3878. (effects (font (size 1.27 1.27)) hide)
  3879. )
  3880. (property "Datasheet" "" (id 3) (at 100.33 91.44 0))
  3881. (property "Partkeepr" "910" (id 4) (at 278.13 66.04 0)
  3882. (effects (font (size 1.27 1.27)) hide)
  3883. )
  3884. (pin "1" (uuid b1e51524-4b94-41d8-84d5-dc97a759bbbf))
  3885. (pin "2" (uuid 9d7e3e37-147e-4a5c-a92c-16998527de49))
  3886. )
  3887. (symbol (lib_id "global:R") (at 105.41 91.44 180) (unit 1)
  3888. (in_bom yes) (on_board yes)
  3889. (uuid 00000000-0000-0000-0000-00006026ac44)
  3890. (property "Reference" "R31" (id 0) (at 103.378 91.44 90))
  3891. (property "Value" "10K" (id 1) (at 105.41 91.44 90))
  3892. (property "Footprint" "R:0805" (id 2) (at 107.188 91.44 90)
  3893. (effects (font (size 1.27 1.27)) hide)
  3894. )
  3895. (property "Datasheet" "" (id 3) (at 105.41 91.44 0))
  3896. (property "Partkeepr" "910" (id 4) (at 278.13 66.04 0)
  3897. (effects (font (size 1.27 1.27)) hide)
  3898. )
  3899. (pin "1" (uuid 7beb6ef7-0a25-4cdb-bd8e-4f879a9ee993))
  3900. (pin "2" (uuid 171a6156-3d8a-48fb-9753-97006a679532))
  3901. )
  3902. (symbol (lib_id "global:Battery") (at 161.29 87.63 0) (unit 1)
  3903. (in_bom yes) (on_board yes)
  3904. (uuid 00000000-0000-0000-0000-00006026ac5a)
  3905. (property "Reference" "BT1" (id 0) (at 163.83 86.36 0)
  3906. (effects (font (size 1.27 1.27)) (justify left))
  3907. )
  3908. (property "Value" "Battery" (id 1) (at 163.83 88.9 0)
  3909. (effects (font (size 1.27 1.27)) (justify left))
  3910. )
  3911. (property "Footprint" "Connector:batterie" (id 2) (at 161.29 86.614 90)
  3912. (effects (font (size 1.27 1.27)) hide)
  3913. )
  3914. (property "Datasheet" "" (id 3) (at 161.29 86.614 90))
  3915. (property "Partkeepr" "3" (id 4) (at 161.29 87.63 0)
  3916. (effects (font (size 1.27 1.27)) hide)
  3917. )
  3918. (pin "1" (uuid 134c054d-a9cf-4260-8d62-c0b744b89860))
  3919. (pin "2" (uuid ce13da58-14b5-41e9-9b80-1582157aa5bb))
  3920. )
  3921. (symbol (lib_id "ST:M41T83") (at 129.54 71.12 180) (unit 1)
  3922. (in_bom yes) (on_board yes)
  3923. (uuid 00000000-0000-0000-0000-00006026ac62)
  3924. (property "Reference" "U6" (id 0) (at 129.54 106.68 0)
  3925. (effects (font (size 1.524 1.524)))
  3926. )
  3927. (property "Value" "M41T83" (id 1) (at 129.54 76.2 0)
  3928. (effects (font (size 1.524 1.524)))
  3929. )
  3930. (property "Footprint" "U:SOX18" (id 2) (at 129.54 71.12 0)
  3931. (effects (font (size 1.524 1.524)) hide)
  3932. )
  3933. (property "Datasheet" "" (id 3) (at 129.54 71.12 0)
  3934. (effects (font (size 1.524 1.524)))
  3935. )
  3936. (property "Partkeepr" "1600" (id 4) (at 336.55 48.26 0)
  3937. (effects (font (size 1.27 1.27)) hide)
  3938. )
  3939. (pin "1" (uuid 16926857-f645-4b25-8718-48fa51e3d7b0))
  3940. (pin "10" (uuid a5dbc2d1-e02f-4bfa-aada-a867ceda72c0))
  3941. (pin "11" (uuid 2243c33b-a38b-45e1-967d-f89b10729386))
  3942. (pin "12" (uuid 567a06d8-5f82-44cb-9932-f38e525f6b4d))
  3943. (pin "13" (uuid 03444d3c-dcb1-40c9-9914-016d0036dbd5))
  3944. (pin "14" (uuid 5925a899-45b4-4e1a-88ff-93b2b523fc19))
  3945. (pin "15" (uuid 1e51fdcb-4307-4df4-9ee3-f79afe2d6910))
  3946. (pin "16" (uuid 0afe11ce-3641-4aaf-ba36-b63a5b23da89))
  3947. (pin "17" (uuid 47616826-c556-4c90-88da-93fd0ebd9c1a))
  3948. (pin "18" (uuid 6a9188b7-b304-4dcd-be4e-8cc70bdc620a))
  3949. (pin "2" (uuid 068d7cf6-2603-4106-9455-b67ef02aaa70))
  3950. (pin "3" (uuid 26f0542f-f59d-426c-9917-dc9432c258bf))
  3951. (pin "4" (uuid eae74001-32dc-4006-aced-7c0fbf2f658f))
  3952. (pin "5" (uuid 8e6974ce-abba-4184-bf65-2c01dd6199e1))
  3953. (pin "6" (uuid 79a1976d-1a3b-4d76-86ac-27b444879b77))
  3954. (pin "7" (uuid 0d84070e-4199-42aa-9359-8dc2ac3cd402))
  3955. (pin "8" (uuid 1fdd074d-f2de-43d1-946b-4d9bf95391c7))
  3956. (pin "9" (uuid 6629eebc-7bc2-4fb5-a70d-590512763ee2))
  3957. )
  3958. (symbol (lib_id "global:C") (at 91.44 189.23 0) (unit 1)
  3959. (in_bom yes) (on_board yes)
  3960. (uuid 00000000-0000-0000-0000-0000602a983f)
  3961. (property "Reference" "C4" (id 0) (at 92.075 186.69 0)
  3962. (effects (font (size 1.27 1.27)) (justify left))
  3963. )
  3964. (property "Value" "100nF" (id 1) (at 92.075 191.77 0)
  3965. (effects (font (size 1.27 1.27)) (justify left))
  3966. )
  3967. (property "Footprint" "C:0805" (id 2) (at 92.4052 193.04 0)
  3968. (effects (font (size 1.27 1.27)) hide)
  3969. )
  3970. (property "Datasheet" "" (id 3) (at 91.44 189.23 0))
  3971. (property "Partkeepr" "605" (id 4) (at -10.795 371.475 0)
  3972. (effects (font (size 1.27 1.27)) hide)
  3973. )
  3974. (pin "1" (uuid 8f7c17b7-85fb-4228-88eb-39914341b04c))
  3975. (pin "2" (uuid 8c0e6791-9cd7-4956-b7cf-f6106152f506))
  3976. )
  3977. (symbol (lib_id "global:C") (at 99.06 189.23 0) (unit 1)
  3978. (in_bom yes) (on_board yes)
  3979. (uuid 00000000-0000-0000-0000-0000602a9846)
  3980. (property "Reference" "C5" (id 0) (at 99.695 186.69 0)
  3981. (effects (font (size 1.27 1.27)) (justify left))
  3982. )
  3983. (property "Value" "100nF" (id 1) (at 99.695 191.77 0)
  3984. (effects (font (size 1.27 1.27)) (justify left))
  3985. )
  3986. (property "Footprint" "C:0805" (id 2) (at 100.0252 193.04 0)
  3987. (effects (font (size 1.27 1.27)) hide)
  3988. )
  3989. (property "Datasheet" "" (id 3) (at 99.06 189.23 0))
  3990. (property "Partkeepr" "605" (id 4) (at -25.4 311.15 0)
  3991. (effects (font (size 1.27 1.27)) hide)
  3992. )
  3993. (pin "1" (uuid a70fc465-ab8a-441e-b706-8b5fd3a3d8c3))
  3994. (pin "2" (uuid 23af547b-0425-4afa-b7bf-7cdbacd06780))
  3995. )
  3996. (symbol (lib_id "global:C") (at 83.82 189.23 0) (unit 1)
  3997. (in_bom yes) (on_board yes)
  3998. (uuid 00000000-0000-0000-0000-0000602a984f)
  3999. (property "Reference" "C3" (id 0) (at 84.455 186.69 0)
  4000. (effects (font (size 1.27 1.27)) (justify left))
  4001. )
  4002. (property "Value" "10nF" (id 1) (at 84.455 191.77 0)
  4003. (effects (font (size 1.27 1.27)) (justify left))
  4004. )
  4005. (property "Footprint" "C:0805" (id 2) (at 84.7852 193.04 0)
  4006. (effects (font (size 1.27 1.27)) hide)
  4007. )
  4008. (property "Datasheet" "" (id 3) (at 83.82 189.23 0))
  4009. (property "Partkeepr" "605" (id 4) (at 15.875 370.205 0)
  4010. (effects (font (size 1.27 1.27)) hide)
  4011. )
  4012. (pin "1" (uuid 8bc545b1-222e-49af-8dde-016d5584f640))
  4013. (pin "2" (uuid 30f2bcae-4817-4588-98b2-d2c5803a0839))
  4014. )
  4015. (symbol (lib_id "global:C") (at 77.47 189.23 0) (unit 1)
  4016. (in_bom yes) (on_board yes)
  4017. (uuid 00000000-0000-0000-0000-0000602a9858)
  4018. (property "Reference" "C2" (id 0) (at 78.105 186.69 0)
  4019. (effects (font (size 1.27 1.27)) (justify left))
  4020. )
  4021. (property "Value" "1µF" (id 1) (at 78.105 191.77 0)
  4022. (effects (font (size 1.27 1.27)) (justify left))
  4023. )
  4024. (property "Footprint" "C:0805" (id 2) (at 78.4352 193.04 0)
  4025. (effects (font (size 1.27 1.27)) hide)
  4026. )
  4027. (property "Datasheet" "" (id 3) (at 77.47 189.23 0))
  4028. (property "Partkeepr" "606" (id 4) (at 42.545 339.09 0)
  4029. (effects (font (size 1.27 1.27)) hide)
  4030. )
  4031. (pin "1" (uuid ae905c17-5017-4a10-b135-abc4b5c8dc31))
  4032. (pin "2" (uuid 9103553f-128f-411a-a0b6-b7a581fdada6))
  4033. )
  4034. (symbol (lib_id "ST:STM32F030C8") (at 57.15 151.13 0) (unit 1)
  4035. (in_bom yes) (on_board yes)
  4036. (uuid 00000000-0000-0000-0000-0000602a986e)
  4037. (property "Reference" "U1" (id 0) (at 74.93 172.72 0)
  4038. (effects (font (size 1.27 1.27)) (justify left))
  4039. )
  4040. (property "Value" "STM32F030C8" (id 1) (at 50.8 160.02 0)
  4041. (effects (font (size 1.27 1.27)) (justify left))
  4042. )
  4043. (property "Footprint" "U:LQFP48" (id 2) (at 57.15 151.13 0)
  4044. (effects (font (size 1.524 1.524)) hide)
  4045. )
  4046. (property "Datasheet" "" (id 3) (at 44.45 132.08 90))
  4047. (property "Partkeepr" "2100" (id 4) (at 54.61 162.56 0)
  4048. (effects (font (size 1.27 1.27)) hide)
  4049. )
  4050. (pin "1" (uuid e74cb007-8b5f-4d08-bcab-9b2c615d73b4))
  4051. (pin "10" (uuid 9dd6a197-cb6d-4327-b55b-3bf8147b6168))
  4052. (pin "11" (uuid 6f1c0380-18f6-43f0-b722-ce7d1e5eeda2))
  4053. (pin "12" (uuid 3c47886c-0593-4b99-a440-6e52abcf225f))
  4054. (pin "13" (uuid 2c9a04c5-3b76-45f6-a4b2-ae65e3754d3a))
  4055. (pin "14" (uuid d6b9e9dd-2015-49e6-9111-dd9196025410))
  4056. (pin "15" (uuid b4314bcf-4f9c-4f09-a3e8-bc74433d8ff8))
  4057. (pin "16" (uuid eb877355-6b6f-42f8-ac50-c20d026df94d))
  4058. (pin "17" (uuid a318e50a-2b10-46df-9dc5-e459ee387e82))
  4059. (pin "18" (uuid 1d888a3a-d211-4194-8450-7994d0d8ad64))
  4060. (pin "19" (uuid 58e34879-4d61-4f92-b816-fac4381cc5ab))
  4061. (pin "2" (uuid 4a9ba65a-437a-4d91-97a0-5557a9335cab))
  4062. (pin "20" (uuid 5b73875a-ecf7-4582-a1e1-cb53a258970e))
  4063. (pin "21" (uuid f92864d3-564c-4f2f-9c5e-3a41dd46c009))
  4064. (pin "22" (uuid 74cc124b-c43e-44fc-a85a-8ef2913776e0))
  4065. (pin "23" (uuid 201d3b06-9778-4e67-937c-29f63e8790c4))
  4066. (pin "24" (uuid 60e1cab2-58fa-4eac-934a-42d9f54729c4))
  4067. (pin "25" (uuid 28016e10-413e-4aed-a62b-270c06c41f06))
  4068. (pin "26" (uuid 5bdb1387-8a27-4a50-a607-cf2698e61a4e))
  4069. (pin "27" (uuid fcd53a70-38ef-4c63-bcc5-29131dc32816))
  4070. (pin "28" (uuid 2a97fa29-f2f7-47fe-8878-1c1c7e389566))
  4071. (pin "29" (uuid 7c34c58d-f4c5-40b7-9a62-c10659e09874))
  4072. (pin "3" (uuid 9a5fe66e-661b-4735-9e3f-6828d0386870))
  4073. (pin "30" (uuid 1c5146a5-efc3-4e92-bc01-c450b75ec013))
  4074. (pin "31" (uuid 33cc9e91-e7ad-48c5-b5e1-423155f7925e))
  4075. (pin "32" (uuid a422645b-8ddd-43af-9b7f-ffde2521be5c))
  4076. (pin "33" (uuid 53e9e3b1-eb14-4e25-bef9-02a376537c09))
  4077. (pin "34" (uuid 1a3ea973-af34-4793-a4c8-a53df83ecc33))
  4078. (pin "35" (uuid 81637a90-4536-40f2-818d-f49c5e28f79f))
  4079. (pin "36" (uuid 8f0db764-556a-4a2b-9aca-2cf1bec58fb7))
  4080. (pin "37" (uuid 0b51c53f-49b2-4124-8cc6-b927b19127cc))
  4081. (pin "38" (uuid 58820971-ecde-4173-af26-a848ee920c51))
  4082. (pin "39" (uuid 0b091ac4-8564-494b-83e6-decaed8d0faa))
  4083. (pin "4" (uuid 3b86357b-d8a1-40e7-8272-05e4f286cd16))
  4084. (pin "40" (uuid f2fba453-6b82-40c7-a753-acc249194291))
  4085. (pin "41" (uuid 6d5ec136-ef7b-4e76-9931-9cdd07095f79))
  4086. (pin "42" (uuid f1e59be1-53d1-4424-942a-7a4b7d50b82b))
  4087. (pin "43" (uuid ed380fbc-150b-46b6-815e-445d4792d730))
  4088. (pin "44" (uuid 7bcb2292-ab46-4fc9-bd6a-8f2a0e34e61d))
  4089. (pin "45" (uuid 2d376045-6f09-476e-a5a4-4ce3354414f1))
  4090. (pin "46" (uuid c08ae0de-061d-4b5c-b295-06519926d157))
  4091. (pin "47" (uuid a5c9f7a0-26a1-4eb8-90b3-7a6bfa0d1171))
  4092. (pin "48" (uuid 4d16103c-9dcf-405b-89e0-dfed3a77497f))
  4093. (pin "5" (uuid c0e8f554-8479-4a5a-9072-123cd6b43dc2))
  4094. (pin "6" (uuid 98116947-3785-4caa-99bc-639d47bf7fc4))
  4095. (pin "7" (uuid e63a21d9-6411-4346-a243-5889e99a2797))
  4096. (pin "8" (uuid a28d74a4-0e00-404d-90f7-e6367cea02b1))
  4097. (pin "9" (uuid 1faa82eb-31cc-4b07-b81c-ab56221d95fb))
  4098. )
  4099. (symbol (lib_id "global:C") (at 69.85 189.23 0) (unit 1)
  4100. (in_bom yes) (on_board yes)
  4101. (uuid 00000000-0000-0000-0000-0000602a9875)
  4102. (property "Reference" "C1" (id 0) (at 70.485 186.69 0)
  4103. (effects (font (size 1.27 1.27)) (justify left))
  4104. )
  4105. (property "Value" "4.7µF" (id 1) (at 70.485 191.77 0)
  4106. (effects (font (size 1.27 1.27)) (justify left))
  4107. )
  4108. (property "Footprint" "C:0805" (id 2) (at 70.8152 193.04 0)
  4109. (effects (font (size 1.27 1.27)) hide)
  4110. )
  4111. (property "Datasheet" "" (id 3) (at 69.85 189.23 0))
  4112. (property "Partkeepr" "607" (id 4) (at 49.53 366.395 0)
  4113. (effects (font (size 1.27 1.27)) hide)
  4114. )
  4115. (pin "1" (uuid 83335009-8f8f-4de2-9955-c0446ad4692d))
  4116. (pin "2" (uuid 82622d55-3526-4f59-8920-a684408d5df3))
  4117. )
  4118. (symbol (lib_id "ST:M24C32") (at 175.26 -3.81 0) (unit 1)
  4119. (in_bom yes) (on_board yes) (fields_autoplaced)
  4120. (uuid 46c20f5e-bd44-4a12-b42a-3379131f5f30)
  4121. (property "Reference" "U?" (id 0) (at 175.26 -13.97 0)
  4122. (effects (font (size 1.524 1.524)))
  4123. )
  4124. (property "Value" "M24C32" (id 1) (at 175.26 -10.16 0)
  4125. (effects (font (size 1.524 1.524)))
  4126. )
  4127. (property "Footprint" "U:SO8N" (id 2) (at 175.26 1.27 0)
  4128. (effects (font (size 1.524 1.524)) hide)
  4129. )
  4130. (property "Datasheet" "" (id 3) (at 175.26 1.27 0)
  4131. (effects (font (size 1.524 1.524)))
  4132. )
  4133. (property "Partkeepr" "1700" (id 4) (at 175.26 -3.81 0)
  4134. (effects (font (size 1.27 1.27)) hide)
  4135. )
  4136. (pin "1" (uuid 68a580a9-f27e-4c55-b0da-7fea11a3a2f9))
  4137. (pin "2" (uuid f4a77dab-6908-4647-98d3-e64cc205e554))
  4138. (pin "3" (uuid a93fdfb2-43b7-4e7d-ac64-5309b3495906))
  4139. (pin "4" (uuid 13b74763-8605-4532-8a77-9e811899794a))
  4140. (pin "5" (uuid 37c5b20a-0b64-48d4-be7e-4bad6084c345))
  4141. (pin "6" (uuid b7ee8286-23f9-47c5-9f04-a7db2716866a))
  4142. (pin "7" (uuid fbd3f6e7-899b-47d1-84dd-d5f50ffecfd1))
  4143. (pin "8" (uuid cce87e44-0e57-4975-bba5-647998ea2db6))
  4144. )
  4145. (sheet_instances
  4146. (path "/" (page "1"))
  4147. )
  4148. (symbol_instances
  4149. (path "/00000000-0000-0000-0000-00006026ac5a"
  4150. (reference "BT1") (unit 1) (value "Battery") (footprint "Connector:batterie")
  4151. )
  4152. (path "/00000000-0000-0000-0000-0000602a9875"
  4153. (reference "C1") (unit 1) (value "4.7µF") (footprint "C:0805")
  4154. )
  4155. (path "/00000000-0000-0000-0000-0000602a9858"
  4156. (reference "C2") (unit 1) (value "1µF") (footprint "C:0805")
  4157. )
  4158. (path "/00000000-0000-0000-0000-0000602a984f"
  4159. (reference "C3") (unit 1) (value "10nF") (footprint "C:0805")
  4160. )
  4161. (path "/00000000-0000-0000-0000-0000602a983f"
  4162. (reference "C4") (unit 1) (value "100nF") (footprint "C:0805")
  4163. )
  4164. (path "/00000000-0000-0000-0000-0000602a9846"
  4165. (reference "C5") (unit 1) (value "100nF") (footprint "C:0805")
  4166. )
  4167. (path "/00000000-0000-0000-0000-00005afae5f9"
  4168. (reference "C10") (unit 1) (value "100nF") (footprint "C:0805")
  4169. )
  4170. (path "/00000000-0000-0000-0000-00005cf18bc0"
  4171. (reference "C11") (unit 1) (value "100nF") (footprint "C:3216-18")
  4172. )
  4173. (path "/00000000-0000-0000-0000-00005cf18b65"
  4174. (reference "C12") (unit 1) (value "100nF") (footprint "C:3216-18")
  4175. )
  4176. (path "/00000000-0000-0000-0000-00005cf18bb6"
  4177. (reference "C13") (unit 1) (value "10µF") (footprint "C:CP_CMS5X5.8")
  4178. )
  4179. (path "/00000000-0000-0000-0000-00005cf18b5b"
  4180. (reference "C14") (unit 1) (value "10µF") (footprint "C:CP_CMS5X5.8")
  4181. )
  4182. (path "/00000000-0000-0000-0000-00005afae512"
  4183. (reference "C15") (unit 1) (value "100nF") (footprint "C:0805")
  4184. )
  4185. (path "/00000000-0000-0000-0000-00005cf18be6"
  4186. (reference "C16") (unit 1) (value "1µF") (footprint "C:CP_CMS4X5.8")
  4187. )
  4188. (path "/00000000-0000-0000-0000-00005cf18b8b"
  4189. (reference "C17") (unit 1) (value "1µF") (footprint "C:CP_CMS4X5.8")
  4190. )
  4191. (path "/00000000-0000-0000-0000-00005cf5ce3a"
  4192. (reference "C18") (unit 1) (value "4.7µF") (footprint "C:0805")
  4193. )
  4194. (path "/00000000-0000-0000-0000-00005cf5ce05"
  4195. (reference "C19") (unit 1) (value "100nF") (footprint "C:0805")
  4196. )
  4197. (path "/00000000-0000-0000-0000-00005d9b8114"
  4198. (reference "C20") (unit 1) (value "1µF") (footprint "C:0805")
  4199. )
  4200. (path "/00000000-0000-0000-0000-00005d9e4bd8"
  4201. (reference "C21") (unit 1) (value "1µF") (footprint "C:0805")
  4202. )
  4203. (path "/00000000-0000-0000-0000-00005cf18bf5"
  4204. (reference "D1") (unit 1) (value "D") (footprint "D:SMA")
  4205. )
  4206. (path "/00000000-0000-0000-0000-00005cf18b9a"
  4207. (reference "D2") (unit 1) (value "D") (footprint "D:SMA")
  4208. )
  4209. (path "/00000000-0000-0000-0000-00005fc29f5d"
  4210. (reference "J1") (unit 1) (value "PWR") (footprint "Phoenix:PCBEdge_1x4_7.6x1.5mm_p1.9mm_2pins")
  4211. )
  4212. (path "/00000000-0000-0000-0000-00005fc29f57"
  4213. (reference "J2") (unit 1) (value "DATA") (footprint "Phoenix:PCBEdge_1x10_5.7x2.21mm_p3.81mm")
  4214. )
  4215. (path "/00000000-0000-0000-0000-00005fc29f63"
  4216. (reference "J3") (unit 1) (value "EARTH") (footprint "Phoenix:PCBEdge_1x1_6x3mm")
  4217. )
  4218. (path "/00000000-0000-0000-0000-00005b5832b2"
  4219. (reference "P1") (unit 1) (value "CONN_01X05") (footprint "Connector:PinHeader2.54_1X5")
  4220. )
  4221. (path "/00000000-0000-0000-0000-00005fc29fdc"
  4222. (reference "P2") (unit 1) (value "CONN_01X04") (footprint "Phoenix:PhoenixContact_MSTBO_2,5_4-G1L_1x4_p5.00mm")
  4223. )
  4224. (path "/00000000-0000-0000-0000-00005fc29fd6"
  4225. (reference "P3") (unit 1) (value "CONN_01X04") (footprint "Phoenix:PhoenixContact_MSTBO_2,5_4-G1L_1x4_p5.00mm")
  4226. )
  4227. (path "/00000000-0000-0000-0000-00005fc29fd0"
  4228. (reference "P4") (unit 1) (value "CONN_01X04") (footprint "Phoenix:PhoenixContact_MSTBO_2,5_4-G1L_1x4_p5.00mm")
  4229. )
  4230. (path "/00000000-0000-0000-0000-00005fc29fee"
  4231. (reference "P5") (unit 1) (value "CONN_01X04") (footprint "Phoenix:PhoenixContact_MSTBO_2,5_4-G1R_1x4_p5.00mm")
  4232. )
  4233. (path "/00000000-0000-0000-0000-00005fc29fe8"
  4234. (reference "P6") (unit 1) (value "CONN_01X04") (footprint "Phoenix:PhoenixContact_MSTBO_2,5_4-G1R_1x4_p5.00mm")
  4235. )
  4236. (path "/00000000-0000-0000-0000-00005cf5ce43"
  4237. (reference "P7") (unit 1) (value "ProgESP") (footprint "Connector:PinHeader2.54_1X3")
  4238. )
  4239. (path "/00000000-0000-0000-0000-00005fc29fe2"
  4240. (reference "P8") (unit 1) (value "CONN_01X04") (footprint "Phoenix:PhoenixContact_MSTBO_2,5_4-G1R_1x4_p5.00mm")
  4241. )
  4242. (path "/00000000-0000-0000-0000-00005d9b7c9f"
  4243. (reference "Q1") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4244. )
  4245. (path "/00000000-0000-0000-0000-00005d9e4bc3"
  4246. (reference "Q2") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4247. )
  4248. (path "/00000000-0000-0000-0000-00005daa64c1"
  4249. (reference "R1") (unit 1) (value "4.7K") (footprint "R:0805")
  4250. )
  4251. (path "/00000000-0000-0000-0000-00005daa6670"
  4252. (reference "R2") (unit 1) (value "10K") (footprint "R:0805")
  4253. )
  4254. (path "/00000000-0000-0000-0000-00005dad452d"
  4255. (reference "R3") (unit 1) (value "4.7K") (footprint "R:0805")
  4256. )
  4257. (path "/00000000-0000-0000-0000-00005dad4535"
  4258. (reference "R4") (unit 1) (value "10K") (footprint "R:0805")
  4259. )
  4260. (path "/00000000-0000-0000-0000-00005dae4856"
  4261. (reference "R5") (unit 1) (value "4.7K") (footprint "R:0805")
  4262. )
  4263. (path "/00000000-0000-0000-0000-00005dae485e"
  4264. (reference "R6") (unit 1) (value "10K") (footprint "R:0805")
  4265. )
  4266. (path "/00000000-0000-0000-0000-00005daecaa6"
  4267. (reference "R7") (unit 1) (value "4.7K") (footprint "R:0805")
  4268. )
  4269. (path "/00000000-0000-0000-0000-00005daecaae"
  4270. (reference "R8") (unit 1) (value "10K") (footprint "R:0805")
  4271. )
  4272. (path "/00000000-0000-0000-0000-00005daf4bce"
  4273. (reference "R9") (unit 1) (value "4.7K") (footprint "R:0805")
  4274. )
  4275. (path "/00000000-0000-0000-0000-00005daf4bd6"
  4276. (reference "R10") (unit 1) (value "10K") (footprint "R:0805")
  4277. )
  4278. (path "/00000000-0000-0000-0000-00005dafcd32"
  4279. (reference "R11") (unit 1) (value "4.7K") (footprint "R:0805")
  4280. )
  4281. (path "/00000000-0000-0000-0000-00005dafcd3a"
  4282. (reference "R12") (unit 1) (value "10K") (footprint "R:0805")
  4283. )
  4284. (path "/00000000-0000-0000-0000-00005afae837"
  4285. (reference "R13") (unit 1) (value "10K") (footprint "C:0805")
  4286. )
  4287. (path "/00000000-0000-0000-0000-00005cf18ba6"
  4288. (reference "R14") (unit 1) (value "1K") (footprint "R:0805")
  4289. )
  4290. (path "/00000000-0000-0000-0000-00005cf18b4b"
  4291. (reference "R15") (unit 1) (value "510") (footprint "R:0805")
  4292. )
  4293. (path "/00000000-0000-0000-0000-00005cf18bae"
  4294. (reference "R16") (unit 1) (value "330") (footprint "R:0805")
  4295. )
  4296. (path "/00000000-0000-0000-0000-00005cf18b53"
  4297. (reference "R17") (unit 1) (value "330") (footprint "R:0805")
  4298. )
  4299. (path "/00000000-0000-0000-0000-00005afae6c4"
  4300. (reference "R18") (unit 1) (value "10K") (footprint "R:0805")
  4301. )
  4302. (path "/00000000-0000-0000-0000-00005afaf4ac"
  4303. (reference "R19") (unit 1) (value "10K") (footprint "C:0805")
  4304. )
  4305. (path "/00000000-0000-0000-0000-00005cf5cde7"
  4306. (reference "R20") (unit 1) (value "10K") (footprint "R:0805")
  4307. )
  4308. (path "/00000000-0000-0000-0000-00005cf5cdef"
  4309. (reference "R21") (unit 1) (value "10K") (footprint "R:0805")
  4310. )
  4311. (path "/00000000-0000-0000-0000-00005d9b824d"
  4312. (reference "R22") (unit 1) (value "4.7K") (footprint "R:0805")
  4313. )
  4314. (path "/00000000-0000-0000-0000-00005d9e4bdf"
  4315. (reference "R23") (unit 1) (value "4.7K") (footprint "R:0805")
  4316. )
  4317. (path "/00000000-0000-0000-0000-00005d9b7e20"
  4318. (reference "R24") (unit 1) (value "1K") (footprint "R:0805")
  4319. )
  4320. (path "/00000000-0000-0000-0000-00005d9e4bca"
  4321. (reference "R25") (unit 1) (value "1K") (footprint "R:0805")
  4322. )
  4323. (path "/00000000-0000-0000-0000-00005d9b7f5e"
  4324. (reference "R26") (unit 1) (value "1K") (footprint "R:0805")
  4325. )
  4326. (path "/00000000-0000-0000-0000-00005d9e4bd1"
  4327. (reference "R27") (unit 1) (value "1K") (footprint "R:0805")
  4328. )
  4329. (path "/00000000-0000-0000-0000-00005cf5ce0f"
  4330. (reference "R28") (unit 1) (value "10K") (footprint "R:0805")
  4331. )
  4332. (path "/00000000-0000-0000-0000-00006012d5e7"
  4333. (reference "R29") (unit 1) (value "10K") (footprint "R:0805")
  4334. )
  4335. (path "/00000000-0000-0000-0000-00005cf5ce19"
  4336. (reference "R30") (unit 1) (value "10K") (footprint "R:0805")
  4337. )
  4338. (path "/00000000-0000-0000-0000-00006026ac44"
  4339. (reference "R31") (unit 1) (value "10K") (footprint "R:0805")
  4340. )
  4341. (path "/00000000-0000-0000-0000-00006026ac3d"
  4342. (reference "R32") (unit 1) (value "10K") (footprint "R:0805")
  4343. )
  4344. (path "/00000000-0000-0000-0000-00006026ac36"
  4345. (reference "R33") (unit 1) (value "10K") (footprint "R:0805")
  4346. )
  4347. (path "/00000000-0000-0000-0000-00005cf5ce26"
  4348. (reference "SJ1") (unit 1) (value "Mode") (footprint "Jumper:Jumper_2.54mm")
  4349. )
  4350. (path "/00000000-0000-0000-0000-00005afae461"
  4351. (reference "SW1") (unit 1) (value "SW_PUSH") (footprint "SW:SW")
  4352. )
  4353. (path "/00000000-0000-0000-0000-00005afae368"
  4354. (reference "SW2") (unit 1) (value "SW_PUSH") (footprint "SW:SW")
  4355. )
  4356. (path "/00000000-0000-0000-0000-0000602a986e"
  4357. (reference "U1") (unit 1) (value "STM32F030C8") (footprint "U:LQFP48")
  4358. )
  4359. (path "/00000000-0000-0000-0000-00005cf18bc8"
  4360. (reference "U2") (unit 1) (value "LM317") (footprint "U:LM317")
  4361. )
  4362. (path "/00000000-0000-0000-0000-00005cf18b6d"
  4363. (reference "U3") (unit 1) (value "LM317") (footprint "U:LM317")
  4364. )
  4365. (path "/00000000-0000-0000-0000-00005cf5cdd9"
  4366. (reference "U5") (unit 1) (value "ESP-12F") (footprint "Module:ESP-12F")
  4367. )
  4368. (path "/00000000-0000-0000-0000-00006026ac62"
  4369. (reference "U6") (unit 1) (value "M41T83") (footprint "U:SOX18")
  4370. )
  4371. (path "/46c20f5e-bd44-4a12-b42a-3379131f5f30"
  4372. (reference "U?") (unit 1) (value "M24C32") (footprint "U:SO8N")
  4373. )
  4374. )
  4375. )