Peristatique.kicad_sch 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 4c57000d-16a4-45b5-9ff0-ca64cb3fdf85)
  3. (paper "A4")
  4. (lib_symbols
  5. (symbol "DIodeInc:AP3211KTR-G1" (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at 3.81 -10.16 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "AP3211KTR-G1" (id 1) (at 0 10.16 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (id 2) (at 2.54 -2.54 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "" (id 3) (at 2.54 -2.54 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "Partkeepr" "?" (id 4) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (symbol "AP3211KTR-G1_0_0"
  22. (pin power_in line (at 0 -11.43 90) (length 2.54)
  23. (name "GND" (effects (font (size 1.27 1.27))))
  24. (number "2" (effects (font (size 1.27 1.27))))
  25. )
  26. (pin passive line (at 7.62 -6.35 180) (length 2.54)
  27. (name "FB" (effects (font (size 1.27 1.27))))
  28. (number "3" (effects (font (size 1.27 1.27))))
  29. )
  30. (pin input line (at -7.62 -6.35 0) (length 2.54)
  31. (name "EN" (effects (font (size 1.27 1.27))))
  32. (number "4" (effects (font (size 1.27 1.27))))
  33. )
  34. (pin power_in line (at -7.62 6.35 0) (length 2.54)
  35. (name "IN" (effects (font (size 1.27 1.27))))
  36. (number "5" (effects (font (size 1.27 1.27))))
  37. )
  38. (pin power_out line (at 7.62 0 180) (length 2.54)
  39. (name "SW" (effects (font (size 1.27 1.27))))
  40. (number "6" (effects (font (size 1.27 1.27))))
  41. )
  42. )
  43. (symbol "AP3211KTR-G1_0_1"
  44. (rectangle (start -5.08 8.89) (end 5.08 -8.89)
  45. (stroke (width 0) (type default) (color 0 0 0 0))
  46. (fill (type background))
  47. )
  48. )
  49. (symbol "AP3211KTR-G1_1_1"
  50. (pin passive line (at 7.62 6.35 180) (length 2.54)
  51. (name "BS" (effects (font (size 1.27 1.27))))
  52. (number "1" (effects (font (size 1.27 1.27))))
  53. )
  54. )
  55. )
  56. (symbol "Module:ESP-12F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  57. (property "Reference" "U" (id 0) (at 11.43 -15.24 0)
  58. (effects (font (size 1.524 1.524)))
  59. )
  60. (property "Value" "ESP-12F" (id 1) (at 0 15.24 0)
  61. (effects (font (size 1.524 1.524)))
  62. )
  63. (property "Footprint" "" (id 2) (at 0 -1.27 0)
  64. (effects (font (size 1.524 1.524)) hide)
  65. )
  66. (property "Datasheet" "" (id 3) (at 0 -1.27 0)
  67. (effects (font (size 1.524 1.524)) hide)
  68. )
  69. (symbol "ESP-12F_0_1"
  70. (rectangle (start -12.7 -12.7) (end 12.7 13.97)
  71. (stroke (width 0) (type default) (color 0 0 0 0))
  72. (fill (type none))
  73. )
  74. (rectangle (start 6.35 -12.7) (end 6.35 -12.7)
  75. (stroke (width 0) (type default) (color 0 0 0 0))
  76. (fill (type none))
  77. )
  78. )
  79. (symbol "ESP-12F_1_1"
  80. (pin input line (at -17.78 11.43 0) (length 5.08)
  81. (name "RST" (effects (font (size 1.27 1.27))))
  82. (number "1" (effects (font (size 1.27 1.27))))
  83. )
  84. (pin input line (at -3.81 -17.78 90) (length 5.08)
  85. (name "MISO" (effects (font (size 1.27 1.27))))
  86. (number "10" (effects (font (size 1.27 1.27))))
  87. )
  88. (pin input line (at -1.27 -17.78 90) (length 5.08)
  89. (name "GPIO9" (effects (font (size 1.27 1.27))))
  90. (number "11" (effects (font (size 1.27 1.27))))
  91. )
  92. (pin input line (at 1.27 -17.78 90) (length 5.08)
  93. (name "GPIO10" (effects (font (size 1.27 1.27))))
  94. (number "12" (effects (font (size 1.27 1.27))))
  95. )
  96. (pin input line (at 3.81 -17.78 90) (length 5.08)
  97. (name "MOSI" (effects (font (size 1.27 1.27))))
  98. (number "13" (effects (font (size 1.27 1.27))))
  99. )
  100. (pin input line (at 6.35 -17.78 90) (length 5.08)
  101. (name "SCLK" (effects (font (size 1.27 1.27))))
  102. (number "14" (effects (font (size 1.27 1.27))))
  103. )
  104. (pin input line (at 17.78 -6.35 180) (length 5.08)
  105. (name "GND" (effects (font (size 1.27 1.27))))
  106. (number "15" (effects (font (size 1.27 1.27))))
  107. )
  108. (pin input line (at 17.78 -3.81 180) (length 5.08)
  109. (name "GPIO15" (effects (font (size 1.27 1.27))))
  110. (number "16" (effects (font (size 1.27 1.27))))
  111. )
  112. (pin input line (at 17.78 -1.27 180) (length 5.08)
  113. (name "GPIO2" (effects (font (size 1.27 1.27))))
  114. (number "17" (effects (font (size 1.27 1.27))))
  115. )
  116. (pin input line (at 17.78 1.27 180) (length 5.08)
  117. (name "GPIO0" (effects (font (size 1.27 1.27))))
  118. (number "18" (effects (font (size 1.27 1.27))))
  119. )
  120. (pin input line (at 17.78 3.81 180) (length 5.08)
  121. (name "GPIO4" (effects (font (size 1.27 1.27))))
  122. (number "19" (effects (font (size 1.27 1.27))))
  123. )
  124. (pin input line (at -17.78 8.89 0) (length 5.08)
  125. (name "ADC" (effects (font (size 1.27 1.27))))
  126. (number "2" (effects (font (size 1.27 1.27))))
  127. )
  128. (pin input line (at 17.78 6.35 180) (length 5.08)
  129. (name "GPIO5" (effects (font (size 1.27 1.27))))
  130. (number "20" (effects (font (size 1.27 1.27))))
  131. )
  132. (pin input line (at 17.78 8.89 180) (length 5.08)
  133. (name "RXD" (effects (font (size 1.27 1.27))))
  134. (number "21" (effects (font (size 1.27 1.27))))
  135. )
  136. (pin input line (at 17.78 11.43 180) (length 5.08)
  137. (name "TXD" (effects (font (size 1.27 1.27))))
  138. (number "22" (effects (font (size 1.27 1.27))))
  139. )
  140. (pin input line (at -17.78 6.35 0) (length 5.08)
  141. (name "EN" (effects (font (size 1.27 1.27))))
  142. (number "3" (effects (font (size 1.27 1.27))))
  143. )
  144. (pin input line (at -17.78 3.81 0) (length 5.08)
  145. (name "GPIO16" (effects (font (size 1.27 1.27))))
  146. (number "4" (effects (font (size 1.27 1.27))))
  147. )
  148. (pin input line (at -17.78 1.27 0) (length 5.08)
  149. (name "GPIO14" (effects (font (size 1.27 1.27))))
  150. (number "5" (effects (font (size 1.27 1.27))))
  151. )
  152. (pin input line (at -17.78 -1.27 0) (length 5.08)
  153. (name "GPIO12" (effects (font (size 1.27 1.27))))
  154. (number "6" (effects (font (size 1.27 1.27))))
  155. )
  156. (pin input line (at -17.78 -3.81 0) (length 5.08)
  157. (name "GPIO13" (effects (font (size 1.27 1.27))))
  158. (number "7" (effects (font (size 1.27 1.27))))
  159. )
  160. (pin input line (at -17.78 -6.35 0) (length 5.08)
  161. (name "VCC" (effects (font (size 1.27 1.27))))
  162. (number "8" (effects (font (size 1.27 1.27))))
  163. )
  164. (pin input line (at -6.35 -17.78 90) (length 5.08)
  165. (name "CS0" (effects (font (size 1.27 1.27))))
  166. (number "9" (effects (font (size 1.27 1.27))))
  167. )
  168. )
  169. )
  170. (symbol "conn:CONN_01X02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  171. (property "Reference" "P" (id 0) (at 0 3.81 0)
  172. (effects (font (size 1.27 1.27)))
  173. )
  174. (property "Value" "CONN_01X02" (id 1) (at 2.54 0 90)
  175. (effects (font (size 1.27 1.27)))
  176. )
  177. (property "Footprint" "" (id 2) (at 0 0 0)
  178. (effects (font (size 1.27 1.27)))
  179. )
  180. (property "Datasheet" "" (id 3) (at 0 0 0)
  181. (effects (font (size 1.27 1.27)))
  182. )
  183. (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)
  184. (effects (font (size 1.27 1.27)) hide)
  185. )
  186. (symbol "CONN_01X02_0_1"
  187. (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
  188. (stroke (width 0) (type default) (color 0 0 0 0))
  189. (fill (type none))
  190. )
  191. (rectangle (start -1.27 1.397) (end 0.254 1.143)
  192. (stroke (width 0) (type default) (color 0 0 0 0))
  193. (fill (type none))
  194. )
  195. (rectangle (start -1.27 2.54) (end 1.27 -2.54)
  196. (stroke (width 0) (type default) (color 0 0 0 0))
  197. (fill (type none))
  198. )
  199. )
  200. (symbol "CONN_01X02_1_1"
  201. (pin passive line (at -5.08 1.27 0) (length 3.81)
  202. (name "P1" (effects (font (size 1.27 1.27))))
  203. (number "1" (effects (font (size 1.27 1.27))))
  204. )
  205. (pin passive line (at -5.08 -1.27 0) (length 3.81)
  206. (name "P2" (effects (font (size 1.27 1.27))))
  207. (number "2" (effects (font (size 1.27 1.27))))
  208. )
  209. )
  210. )
  211. (symbol "conn:CONN_01X05" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  212. (property "Reference" "P" (id 0) (at 0 7.62 0)
  213. (effects (font (size 1.27 1.27)))
  214. )
  215. (property "Value" "CONN_01X05" (id 1) (at 2.54 0 90)
  216. (effects (font (size 1.27 1.27)))
  217. )
  218. (property "Footprint" "" (id 2) (at 0 0 0)
  219. (effects (font (size 1.27 1.27)))
  220. )
  221. (property "Datasheet" "" (id 3) (at 0 0 0)
  222. (effects (font (size 1.27 1.27)))
  223. )
  224. (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)
  225. (effects (font (size 1.27 1.27)) hide)
  226. )
  227. (symbol "CONN_01X05_0_1"
  228. (rectangle (start -1.27 -4.953) (end 0.254 -5.207)
  229. (stroke (width 0) (type default) (color 0 0 0 0))
  230. (fill (type none))
  231. )
  232. (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
  233. (stroke (width 0) (type default) (color 0 0 0 0))
  234. (fill (type none))
  235. )
  236. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  237. (stroke (width 0) (type default) (color 0 0 0 0))
  238. (fill (type none))
  239. )
  240. (rectangle (start -1.27 2.667) (end 0.254 2.413)
  241. (stroke (width 0) (type default) (color 0 0 0 0))
  242. (fill (type none))
  243. )
  244. (rectangle (start -1.27 5.207) (end 0.254 4.953)
  245. (stroke (width 0) (type default) (color 0 0 0 0))
  246. (fill (type none))
  247. )
  248. (rectangle (start -1.27 6.35) (end 1.27 -6.35)
  249. (stroke (width 0) (type default) (color 0 0 0 0))
  250. (fill (type none))
  251. )
  252. )
  253. (symbol "CONN_01X05_1_1"
  254. (pin passive line (at -5.08 5.08 0) (length 3.81)
  255. (name "P1" (effects (font (size 1.27 1.27))))
  256. (number "1" (effects (font (size 1.27 1.27))))
  257. )
  258. (pin passive line (at -5.08 2.54 0) (length 3.81)
  259. (name "P2" (effects (font (size 1.27 1.27))))
  260. (number "2" (effects (font (size 1.27 1.27))))
  261. )
  262. (pin passive line (at -5.08 0 0) (length 3.81)
  263. (name "P3" (effects (font (size 1.27 1.27))))
  264. (number "3" (effects (font (size 1.27 1.27))))
  265. )
  266. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  267. (name "P4" (effects (font (size 1.27 1.27))))
  268. (number "4" (effects (font (size 1.27 1.27))))
  269. )
  270. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  271. (name "P5" (effects (font (size 1.27 1.27))))
  272. (number "5" (effects (font (size 1.27 1.27))))
  273. )
  274. )
  275. )
  276. (symbol "global:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  277. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  278. (effects (font (size 1.27 1.27)) (justify left))
  279. )
  280. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  281. (effects (font (size 1.27 1.27)) (justify left))
  282. )
  283. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  284. (effects (font (size 1.27 1.27)))
  285. )
  286. (property "Datasheet" "" (id 3) (at 0 0 0)
  287. (effects (font (size 1.27 1.27)))
  288. )
  289. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*" (id 4) (at 0 0 0)
  290. (effects (font (size 1.27 1.27)) hide)
  291. )
  292. (symbol "C_0_1"
  293. (polyline
  294. (pts
  295. (xy -2.032 -0.762)
  296. (xy 2.032 -0.762)
  297. )
  298. (stroke (width 0.508) (type default) (color 0 0 0 0))
  299. (fill (type none))
  300. )
  301. (polyline
  302. (pts
  303. (xy -2.032 0.762)
  304. (xy 2.032 0.762)
  305. )
  306. (stroke (width 0.508) (type default) (color 0 0 0 0))
  307. (fill (type none))
  308. )
  309. )
  310. (symbol "C_1_1"
  311. (pin passive line (at 0 3.81 270) (length 2.794)
  312. (name "~" (effects (font (size 1.016 1.016))))
  313. (number "1" (effects (font (size 1.016 1.016))))
  314. )
  315. (pin passive line (at 0 -3.81 90) (length 2.794)
  316. (name "~" (effects (font (size 1.016 1.016))))
  317. (number "2" (effects (font (size 1.016 1.016))))
  318. )
  319. )
  320. )
  321. (symbol "global:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  322. (property "Reference" "D" (id 0) (at 0 2.54 0)
  323. (effects (font (size 1.27 1.27)))
  324. )
  325. (property "Value" "D" (id 1) (at 0 -2.54 0)
  326. (effects (font (size 1.27 1.27)))
  327. )
  328. (property "Footprint" "" (id 2) (at 0 0 0)
  329. (effects (font (size 1.27 1.27)))
  330. )
  331. (property "Datasheet" "" (id 3) (at 0 0 0)
  332. (effects (font (size 1.27 1.27)))
  333. )
  334. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (id 4) (at 0 0 0)
  335. (effects (font (size 1.27 1.27)) hide)
  336. )
  337. (symbol "D_0_1"
  338. (polyline
  339. (pts
  340. (xy -1.27 1.27)
  341. (xy -1.27 -1.27)
  342. )
  343. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  344. (fill (type none))
  345. )
  346. (polyline
  347. (pts
  348. (xy 1.27 1.27)
  349. (xy -1.27 0)
  350. (xy 1.27 -1.27)
  351. )
  352. (stroke (width 0) (type default) (color 0 0 0 0))
  353. (fill (type outline))
  354. )
  355. )
  356. (symbol "D_1_1"
  357. (pin passive line (at -3.81 0 0) (length 2.54)
  358. (name "K" (effects (font (size 1.27 1.27))))
  359. (number "1" (effects (font (size 1.27 1.27))))
  360. )
  361. (pin passive line (at 3.81 0 180) (length 2.54)
  362. (name "A" (effects (font (size 1.27 1.27))))
  363. (number "2" (effects (font (size 1.27 1.27))))
  364. )
  365. )
  366. )
  367. (symbol "global:FUSE" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  368. (property "Reference" "F" (id 0) (at 2.54 1.27 0)
  369. (effects (font (size 1.27 1.27)))
  370. )
  371. (property "Value" "FUSE" (id 1) (at -2.54 -1.27 0)
  372. (effects (font (size 1.27 1.27)))
  373. )
  374. (property "Footprint" "" (id 2) (at 0 0 0)
  375. (effects (font (size 1.27 1.27)))
  376. )
  377. (property "Datasheet" "" (id 3) (at 0 0 0)
  378. (effects (font (size 1.27 1.27)))
  379. )
  380. (symbol "FUSE_0_1"
  381. (arc (start 0 0) (mid -1.905 1.905) (end -3.81 0)
  382. (stroke (width 0) (type default) (color 0 0 0 0))
  383. (fill (type none))
  384. )
  385. (arc (start 0 0) (mid 1.905 -1.905) (end 3.81 0)
  386. (stroke (width 0) (type default) (color 0 0 0 0))
  387. (fill (type none))
  388. )
  389. )
  390. (symbol "FUSE_1_1"
  391. (pin input line (at -6.35 0 0) (length 2.54)
  392. (name "~" (effects (font (size 1.016 1.016))))
  393. (number "1" (effects (font (size 1.016 1.016))))
  394. )
  395. (pin input line (at 6.35 0 180) (length 2.54)
  396. (name "~" (effects (font (size 1.016 1.016))))
  397. (number "2" (effects (font (size 1.016 1.016))))
  398. )
  399. )
  400. )
  401. (symbol "global:INDUCTOR" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  402. (property "Reference" "L" (id 0) (at -1.27 0 90)
  403. (effects (font (size 1.27 1.27)))
  404. )
  405. (property "Value" "INDUCTOR" (id 1) (at 2.54 0 90)
  406. (effects (font (size 1.27 1.27)))
  407. )
  408. (property "Footprint" "" (id 2) (at 0 0 0)
  409. (effects (font (size 1.27 1.27)))
  410. )
  411. (property "Datasheet" "" (id 3) (at 0 0 0)
  412. (effects (font (size 1.27 1.27)))
  413. )
  414. (symbol "INDUCTOR_0_1"
  415. (arc (start 0.0254 -5.0546) (mid 1.2449 -3.8097) (end 0.0254 -2.54)
  416. (stroke (width 0) (type default) (color 0 0 0 0))
  417. (fill (type none))
  418. )
  419. (arc (start 0.0254 -2.5146) (mid 1.2703 -1.2444) (end 0.0254 0.0508)
  420. (stroke (width 0) (type default) (color 0 0 0 0))
  421. (fill (type none))
  422. )
  423. (arc (start 0.0254 0.0254) (mid 1.2703 1.2956) (end 0.0254 2.5908)
  424. (stroke (width 0) (type default) (color 0 0 0 0))
  425. (fill (type none))
  426. )
  427. (arc (start 0.0254 2.5654) (mid 1.1941 3.7595) (end 0.0254 4.9784)
  428. (stroke (width 0) (type default) (color 0 0 0 0))
  429. (fill (type none))
  430. )
  431. )
  432. (symbol "INDUCTOR_1_1"
  433. (pin passive line (at 0 7.62 270) (length 2.54)
  434. (name "1" (effects (font (size 1.27 1.27))))
  435. (number "1" (effects (font (size 1.27 1.27))))
  436. )
  437. (pin passive line (at 0 -7.62 90) (length 2.54)
  438. (name "2" (effects (font (size 1.27 1.27))))
  439. (number "2" (effects (font (size 1.27 1.27))))
  440. )
  441. )
  442. )
  443. (symbol "global:N_MOSFET" (pin_names (offset 0)) (in_bom yes) (on_board yes)
  444. (property "Reference" "Q" (id 0) (at 4.064 3.556 0)
  445. (effects (font (size 1.524 1.524)))
  446. )
  447. (property "Value" "N_MOSFET" (id 1) (at 0 -3.556 0)
  448. (effects (font (size 1.524 1.524)))
  449. )
  450. (property "Footprint" "" (id 2) (at 0 0 0)
  451. (effects (font (size 1.524 1.524)) hide)
  452. )
  453. (property "Datasheet" "" (id 3) (at 0 0 0)
  454. (effects (font (size 1.524 1.524)) hide)
  455. )
  456. (symbol "N_MOSFET_0_1"
  457. (polyline
  458. (pts
  459. (xy -1.27 1.016)
  460. (xy 1.27 1.016)
  461. )
  462. (stroke (width 0) (type default) (color 0 0 0 0))
  463. (fill (type none))
  464. )
  465. (polyline
  466. (pts
  467. (xy -1.016 0.508)
  468. (xy -1.016 -1.27)
  469. )
  470. (stroke (width 0) (type default) (color 0 0 0 0))
  471. (fill (type none))
  472. )
  473. (polyline
  474. (pts
  475. (xy -0.762 0.508)
  476. (xy -1.27 0.508)
  477. )
  478. (stroke (width 0) (type default) (color 0 0 0 0))
  479. (fill (type none))
  480. )
  481. (polyline
  482. (pts
  483. (xy -0.254 -0.508)
  484. (xy 0 -0.254)
  485. )
  486. (stroke (width 0) (type default) (color 0 0 0 0))
  487. (fill (type none))
  488. )
  489. (polyline
  490. (pts
  491. (xy -0.254 0.508)
  492. (xy 0.254 0.508)
  493. )
  494. (stroke (width 0) (type default) (color 0 0 0 0))
  495. (fill (type none))
  496. )
  497. (polyline
  498. (pts
  499. (xy 0 -0.254)
  500. (xy 0 -0.254)
  501. )
  502. (stroke (width 0) (type default) (color 0 0 0 0))
  503. (fill (type none))
  504. )
  505. (polyline
  506. (pts
  507. (xy 0 -0.254)
  508. (xy 0.254 -0.508)
  509. )
  510. (stroke (width 0) (type default) (color 0 0 0 0))
  511. (fill (type none))
  512. )
  513. (polyline
  514. (pts
  515. (xy 0 0.508)
  516. (xy 0 -0.508)
  517. )
  518. (stroke (width 0) (type default) (color 0 0 0 0))
  519. (fill (type none))
  520. )
  521. (polyline
  522. (pts
  523. (xy 0 1.27)
  524. (xy 0 1.016)
  525. )
  526. (stroke (width 0) (type default) (color 0 0 0 0))
  527. (fill (type none))
  528. )
  529. (polyline
  530. (pts
  531. (xy 0.254 -0.508)
  532. (xy 0 -0.254)
  533. )
  534. (stroke (width 0) (type default) (color 0 0 0 0))
  535. (fill (type none))
  536. )
  537. (polyline
  538. (pts
  539. (xy 0.762 0.508)
  540. (xy 1.27 0.508)
  541. )
  542. (stroke (width 0) (type default) (color 0 0 0 0))
  543. (fill (type none))
  544. )
  545. (polyline
  546. (pts
  547. (xy -1.27 -1.27)
  548. (xy 0 -1.27)
  549. (xy 0 0)
  550. )
  551. (stroke (width 0) (type default) (color 0 0 0 0))
  552. (fill (type none))
  553. )
  554. (polyline
  555. (pts
  556. (xy 1.016 0.508)
  557. (xy 1.016 -1.27)
  558. (xy 1.27 -1.27)
  559. )
  560. (stroke (width 0) (type default) (color 0 0 0 0))
  561. (fill (type none))
  562. )
  563. (polyline
  564. (pts
  565. (xy 0 0.254)
  566. (xy -0.254 -0.508)
  567. (xy 0.254 -0.508)
  568. (xy 0 0.254)
  569. )
  570. (stroke (width 0) (type default) (color 0 0 0 0))
  571. (fill (type none))
  572. )
  573. (circle (center 0 0) (radius 2.032)
  574. (stroke (width 0) (type default) (color 0 0 0 0))
  575. (fill (type none))
  576. )
  577. )
  578. (symbol "N_MOSFET_1_1"
  579. (pin input line (at 0 6.35 270) (length 5.08)
  580. (name "G" (effects (font (size 1.27 1.27))))
  581. (number "1" (effects (font (size 1.27 1.27))))
  582. )
  583. (pin input line (at 6.35 -1.27 180) (length 5.08)
  584. (name "D" (effects (font (size 1.27 1.27))))
  585. (number "2" (effects (font (size 1.27 1.27))))
  586. )
  587. (pin input line (at -6.35 -1.27 0) (length 5.08)
  588. (name "S" (effects (font (size 1.27 1.27))))
  589. (number "3" (effects (font (size 1.27 1.27))))
  590. )
  591. )
  592. )
  593. (symbol "global:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  594. (property "Reference" "R" (id 0) (at 2.032 0 90)
  595. (effects (font (size 1.27 1.27)))
  596. )
  597. (property "Value" "R" (id 1) (at 0 0 90)
  598. (effects (font (size 1.27 1.27)))
  599. )
  600. (property "Footprint" "" (id 2) (at -1.778 0 90)
  601. (effects (font (size 1.27 1.27)))
  602. )
  603. (property "Datasheet" "" (id 3) (at 0 0 0)
  604. (effects (font (size 1.27 1.27)))
  605. )
  606. (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0)
  607. (effects (font (size 1.27 1.27)) hide)
  608. )
  609. (symbol "R_0_1"
  610. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  611. (stroke (width 0.254) (type default) (color 0 0 0 0))
  612. (fill (type none))
  613. )
  614. )
  615. (symbol "R_1_1"
  616. (pin passive line (at 0 3.81 270) (length 1.27)
  617. (name "~" (effects (font (size 1.27 1.27))))
  618. (number "1" (effects (font (size 1.27 1.27))))
  619. )
  620. (pin passive line (at 0 -3.81 90) (length 1.27)
  621. (name "~" (effects (font (size 1.27 1.27))))
  622. (number "2" (effects (font (size 1.27 1.27))))
  623. )
  624. )
  625. )
  626. (symbol "global:TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  627. (property "Reference" "D" (id 0) (at 3.81 0 90)
  628. (effects (font (size 1.27 1.27)))
  629. )
  630. (property "Value" "TVS" (id 1) (at -3.81 0 90)
  631. (effects (font (size 1.27 1.27)))
  632. )
  633. (property "Footprint" "" (id 2) (at 0 0 90)
  634. (effects (font (size 1.27 1.27)))
  635. )
  636. (property "Datasheet" "" (id 3) (at 0 0 90)
  637. (effects (font (size 1.27 1.27)))
  638. )
  639. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (id 4) (at 0 0 0)
  640. (effects (font (size 1.27 1.27)) hide)
  641. )
  642. (symbol "TVS_0_1"
  643. (polyline
  644. (pts
  645. (xy -1.27 1.27)
  646. (xy -2.54 0)
  647. )
  648. (stroke (width 0) (type default) (color 0 0 0 0))
  649. (fill (type none))
  650. )
  651. (polyline
  652. (pts
  653. (xy 1.27 1.27)
  654. (xy -1.27 1.27)
  655. )
  656. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  657. (fill (type none))
  658. )
  659. (polyline
  660. (pts
  661. (xy 1.27 1.27)
  662. (xy 2.54 2.54)
  663. )
  664. (stroke (width 0) (type default) (color 0 0 0 0))
  665. (fill (type none))
  666. )
  667. (polyline
  668. (pts
  669. (xy 1.27 -1.27)
  670. (xy 0 1.27)
  671. (xy -1.27 -1.27)
  672. )
  673. (stroke (width 0) (type default) (color 0 0 0 0))
  674. (fill (type outline))
  675. )
  676. )
  677. (symbol "TVS_1_1"
  678. (pin passive line (at 0 3.81 270) (length 2.54)
  679. (name "K" (effects (font (size 1.27 1.27))))
  680. (number "1" (effects (font (size 1.27 1.27))))
  681. )
  682. (pin passive line (at 0 -3.81 90) (length 2.54)
  683. (name "A" (effects (font (size 1.27 1.27))))
  684. (number "2" (effects (font (size 1.27 1.27))))
  685. )
  686. )
  687. )
  688. )
  689. (junction (at 140.97 97.79) (diameter 0) (color 0 0 0 0)
  690. (uuid 028e0e88-46d1-44e6-ba95-8e2b2e6d850b)
  691. )
  692. (junction (at 193.04 22.86) (diameter 0) (color 0 0 0 0)
  693. (uuid 0b8f8a49-2bd1-454a-a34d-799840bab973)
  694. )
  695. (junction (at 38.1 186.69) (diameter 0) (color 0 0 0 0)
  696. (uuid 0e35902c-1976-4f77-9472-362e36d64d04)
  697. )
  698. (junction (at 132.08 30.48) (diameter 0) (color 0 0 0 0)
  699. (uuid 0eda204c-5210-45fb-847f-dcbe50ea9a1a)
  700. )
  701. (junction (at 142.24 15.24) (diameter 0) (color 0 0 0 0)
  702. (uuid 0f75004e-0a0a-4b8e-8fba-3ea5aea5f22b)
  703. )
  704. (junction (at 67.31 91.44) (diameter 0) (color 0 0 0 0)
  705. (uuid 1d20764d-449f-4da3-8e29-f52514b8ac4f)
  706. )
  707. (junction (at 105.41 148.59) (diameter 0) (color 0 0 0 0)
  708. (uuid 27744428-1fe4-4fb0-a93a-61c36bb4be8b)
  709. )
  710. (junction (at 91.44 15.24) (diameter 0) (color 0 0 0 0)
  711. (uuid 3beccf76-af9c-42a6-b842-74d74ad0f53b)
  712. )
  713. (junction (at 142.24 55.88) (diameter 0) (color 0 0 0 0)
  714. (uuid 41b79675-b5b9-4b9c-bf6b-53c6e037568f)
  715. )
  716. (junction (at 34.29 140.97) (diameter 0) (color 0 0 0 0)
  717. (uuid 44570ccd-e59f-4192-8890-3c2ddd9df6d8)
  718. )
  719. (junction (at 191.77 48.26) (diameter 0) (color 0 0 0 0)
  720. (uuid 4705052b-d218-4cfc-a019-884b0e53bf74)
  721. )
  722. (junction (at 40.64 48.26) (diameter 0) (color 0 0 0 0)
  723. (uuid 5e0d7ac1-d482-4b36-88ce-48cbc2d862d2)
  724. )
  725. (junction (at 193.04 15.24) (diameter 0) (color 0 0 0 0)
  726. (uuid 5fdd7ead-8209-471a-b61c-00e757d728ae)
  727. )
  728. (junction (at 191.77 55.88) (diameter 0) (color 0 0 0 0)
  729. (uuid 607bca8f-4a84-4572-8091-2a46df3c9817)
  730. )
  731. (junction (at 40.64 55.88) (diameter 0) (color 0 0 0 0)
  732. (uuid 63262350-1c9b-4fd5-ab58-af566e0eb6f6)
  733. )
  734. (junction (at 90.17 48.26) (diameter 0) (color 0 0 0 0)
  735. (uuid 7093f905-2cb8-46d5-aa6b-4a242151dc81)
  736. )
  737. (junction (at 58.42 91.44) (diameter 0) (color 0 0 0 0)
  738. (uuid 84a648c2-4470-418f-a1d5-af3c6d3b1ca8)
  739. )
  740. (junction (at 142.24 22.86) (diameter 0) (color 0 0 0 0)
  741. (uuid 86ffe591-2272-44be-8848-e91695972dd0)
  742. )
  743. (junction (at 40.64 15.24) (diameter 0) (color 0 0 0 0)
  744. (uuid 896851d8-95f0-4fe1-accd-6689302ce27e)
  745. )
  746. (junction (at 73.66 91.44) (diameter 0) (color 0 0 0 0)
  747. (uuid 8aa11261-8b22-4332-8e96-551dfa34b36e)
  748. )
  749. (junction (at 81.28 30.48) (diameter 0) (color 0 0 0 0)
  750. (uuid 95916e54-def9-430e-9401-0ba687b4ee59)
  751. )
  752. (junction (at 30.48 30.48) (diameter 0) (color 0 0 0 0)
  753. (uuid 95dbb73a-69c1-4460-96ec-499c0c017e7f)
  754. )
  755. (junction (at 80.01 63.5) (diameter 0) (color 0 0 0 0)
  756. (uuid 99ce86cf-ae4c-48e3-a0c9-476ce8c7256b)
  757. )
  758. (junction (at 40.64 22.86) (diameter 0) (color 0 0 0 0)
  759. (uuid b07a178e-f46b-42ae-a7a9-0f383eb5b342)
  760. )
  761. (junction (at 132.08 63.5) (diameter 0) (color 0 0 0 0)
  762. (uuid b27fb3eb-a97f-4778-9aa7-f42d53f5f78a)
  763. )
  764. (junction (at 99.06 162.56) (diameter 0) (color 0 0 0 0)
  765. (uuid b557cfbe-9232-4401-b826-5b91b060f942)
  766. )
  767. (junction (at 40.64 152.4) (diameter 0) (color 0 0 0 0)
  768. (uuid b9a7d31a-75ec-40c1-8574-0f55d4abb61e)
  769. )
  770. (junction (at 30.48 63.5) (diameter 0) (color 0 0 0 0)
  771. (uuid bd5d73d8-9f7b-4b1d-8132-db187bdc79a8)
  772. )
  773. (junction (at 142.24 48.26) (diameter 0) (color 0 0 0 0)
  774. (uuid beffc9c7-bd8b-43bd-a369-585c0838dd1b)
  775. )
  776. (junction (at 182.88 30.48) (diameter 0) (color 0 0 0 0)
  777. (uuid c3783eed-17c2-4967-bf6b-5f8154f628e3)
  778. )
  779. (junction (at 91.44 22.86) (diameter 0) (color 0 0 0 0)
  780. (uuid c6f69ced-b6b5-4b6a-bd09-27694682401d)
  781. )
  782. (junction (at 128.27 97.79) (diameter 0) (color 0 0 0 0)
  783. (uuid d098e9bd-493e-4460-92a2-b6b2caa71fe4)
  784. )
  785. (junction (at 105.41 97.79) (diameter 0) (color 0 0 0 0)
  786. (uuid d582eb04-b3d4-41f3-8ad0-656d775c0540)
  787. )
  788. (junction (at 128.27 107.95) (diameter 0) (color 0 0 0 0)
  789. (uuid df237b2b-48e1-4451-bbad-4405eadd362d)
  790. )
  791. (junction (at 38.1 179.07) (diameter 0) (color 0 0 0 0)
  792. (uuid e0e4b5bb-489b-4654-9568-90a2bf48001a)
  793. )
  794. (junction (at 101.6 97.79) (diameter 0) (color 0 0 0 0)
  795. (uuid ea6abac3-db3c-4164-a18f-a2c4fd637703)
  796. )
  797. (junction (at 181.61 63.5) (diameter 0) (color 0 0 0 0)
  798. (uuid ef7b7476-d2b9-453e-9c63-80e39a10bfa8)
  799. )
  800. (junction (at 90.17 55.88) (diameter 0) (color 0 0 0 0)
  801. (uuid f7765803-9a1e-4cf0-abee-4fe3ee413b6c)
  802. )
  803. (no_connect (at 46.99 154.94) (uuid 63ac02dc-fb8a-40f9-8969-60060c9dae0e))
  804. (no_connect (at 60.96 181.61) (uuid 97f595ec-67d4-48a5-8c32-d300e8a42637))
  805. (no_connect (at 68.58 181.61) (uuid afa0507b-0217-4a93-9ab1-ac1c2280be8a))
  806. (no_connect (at 58.42 181.61) (uuid d6c84f10-e660-4223-af45-cf324f4fd29d))
  807. (no_connect (at 71.12 181.61) (uuid eba19ec9-2225-4ec9-8f60-3f08e8198275))
  808. (wire (pts (xy 142.24 46.99) (xy 142.24 48.26))
  809. (stroke (width 0) (type default) (color 0 0 0 0))
  810. (uuid 0747720b-e27a-4131-823b-b70c1c6bc957)
  811. )
  812. (wire (pts (xy 91.44 20.32) (xy 91.44 22.86))
  813. (stroke (width 0) (type default) (color 0 0 0 0))
  814. (uuid 0750d9d5-3a5d-4752-89ee-9003e6d58749)
  815. )
  816. (wire (pts (xy 90.17 48.26) (xy 90.17 50.8))
  817. (stroke (width 0) (type default) (color 0 0 0 0))
  818. (uuid 0bc85283-5886-49d2-93c1-8bc3d90a4570)
  819. )
  820. (wire (pts (xy 133.35 48.26) (xy 142.24 48.26))
  821. (stroke (width 0) (type default) (color 0 0 0 0))
  822. (uuid 0d793688-1511-4f29-beab-5492235d5a2e)
  823. )
  824. (wire (pts (xy 40.64 46.99) (xy 40.64 48.26))
  825. (stroke (width 0) (type default) (color 0 0 0 0))
  826. (uuid 0f559b21-c0e0-4275-9e17-b09723fcb9c6)
  827. )
  828. (wire (pts (xy 91.44 13.97) (xy 91.44 15.24))
  829. (stroke (width 0) (type default) (color 0 0 0 0))
  830. (uuid 1092f9a1-e1d1-4a28-9561-2f4294e22324)
  831. )
  832. (wire (pts (xy 78.74 30.48) (xy 81.28 30.48))
  833. (stroke (width 0) (type default) (color 0 0 0 0))
  834. (uuid 14b47029-572c-4288-b172-79b8f98d827d)
  835. )
  836. (wire (pts (xy 105.41 148.59) (xy 107.95 148.59))
  837. (stroke (width 0) (type default) (color 0 0 0 0))
  838. (uuid 14f764ae-94c4-4f74-a227-8348fdf5fe43)
  839. )
  840. (wire (pts (xy 34.29 157.48) (xy 46.99 157.48))
  841. (stroke (width 0) (type default) (color 0 0 0 0))
  842. (uuid 14fb843b-f7fc-4480-980d-976bf0a44da5)
  843. )
  844. (wire (pts (xy 118.11 30.48) (xy 121.92 30.48))
  845. (stroke (width 0) (type default) (color 0 0 0 0))
  846. (uuid 1590cb57-b79a-4603-b54d-41e2b89874d3)
  847. )
  848. (wire (pts (xy 101.6 97.79) (xy 105.41 97.79))
  849. (stroke (width 0) (type default) (color 0 0 0 0))
  850. (uuid 15b65f1e-5022-426b-9563-db521271b8b4)
  851. )
  852. (wire (pts (xy 90.17 55.88) (xy 90.17 57.15))
  853. (stroke (width 0) (type default) (color 0 0 0 0))
  854. (uuid 15efcd3d-c0f8-4e7b-b1ad-acd5c25a7d61)
  855. )
  856. (wire (pts (xy 90.17 53.34) (xy 90.17 55.88))
  857. (stroke (width 0) (type default) (color 0 0 0 0))
  858. (uuid 17b45582-839d-42fe-86b8-e45b59d090d4)
  859. )
  860. (wire (pts (xy 67.31 104.14) (xy 67.31 91.44))
  861. (stroke (width 0) (type default) (color 0 0 0 0))
  862. (uuid 1889060a-1c15-4e5e-bf49-978fbd6b7359)
  863. )
  864. (wire (pts (xy 132.08 63.5) (xy 134.62 63.5))
  865. (stroke (width 0) (type default) (color 0 0 0 0))
  866. (uuid 1945723c-d227-429d-8358-7253d5cf1d6f)
  867. )
  868. (wire (pts (xy 81.28 30.48) (xy 83.82 30.48))
  869. (stroke (width 0) (type default) (color 0 0 0 0))
  870. (uuid 1be46a66-3f90-4cf0-83f2-6c839c875f94)
  871. )
  872. (wire (pts (xy 93.98 107.95) (xy 128.27 107.95))
  873. (stroke (width 0) (type default) (color 0 0 0 0))
  874. (uuid 1d3d4e12-062d-4637-b39e-6d0a23f610c2)
  875. )
  876. (wire (pts (xy 105.41 97.79) (xy 111.76 97.79))
  877. (stroke (width 0) (type default) (color 0 0 0 0))
  878. (uuid 1f58ca10-b44e-4423-8d0f-bb878840901c)
  879. )
  880. (wire (pts (xy 191.77 46.99) (xy 191.77 48.26))
  881. (stroke (width 0) (type default) (color 0 0 0 0))
  882. (uuid 209300a4-aa8f-4201-b3ce-b0c7687e8795)
  883. )
  884. (wire (pts (xy 82.55 22.86) (xy 91.44 22.86))
  885. (stroke (width 0) (type default) (color 0 0 0 0))
  886. (uuid 22091f56-c692-4206-bf3e-08d2a36d0de9)
  887. )
  888. (wire (pts (xy 16.51 63.5) (xy 20.32 63.5))
  889. (stroke (width 0) (type default) (color 0 0 0 0))
  890. (uuid 2326f8e8-715b-42cc-b6bf-18e0f5dd1346)
  891. )
  892. (wire (pts (xy 66.04 63.5) (xy 69.85 63.5))
  893. (stroke (width 0) (type default) (color 0 0 0 0))
  894. (uuid 27b4be2a-2215-463d-b850-fefb58ac193e)
  895. )
  896. (wire (pts (xy 179.07 63.5) (xy 181.61 63.5))
  897. (stroke (width 0) (type default) (color 0 0 0 0))
  898. (uuid 2a612e56-ed77-4d94-bb08-706cc909d860)
  899. )
  900. (polyline (pts (xy 11.43 125.73) (xy 176.53 125.73))
  901. (stroke (width 0) (type default) (color 0 0 0 0))
  902. (uuid 2e8de283-b7a0-4eeb-990a-596d60db33b5)
  903. )
  904. (wire (pts (xy 58.42 91.44) (xy 58.42 95.25))
  905. (stroke (width 0) (type default) (color 0 0 0 0))
  906. (uuid 2ed5e491-6ad6-456d-a0ef-2e7ccef23208)
  907. )
  908. (wire (pts (xy 31.75 55.88) (xy 40.64 55.88))
  909. (stroke (width 0) (type default) (color 0 0 0 0))
  910. (uuid 3177edc6-8942-4d61-9f0f-8cc0fc5d364c)
  911. )
  912. (wire (pts (xy 140.97 97.79) (xy 153.67 97.79))
  913. (stroke (width 0) (type default) (color 0 0 0 0))
  914. (uuid 335edc75-eb4d-4bb5-ab49-dbe29e4e65e0)
  915. )
  916. (wire (pts (xy 181.61 63.5) (xy 181.61 66.04))
  917. (stroke (width 0) (type default) (color 0 0 0 0))
  918. (uuid 348dbc43-477d-4eaa-be03-82ca3ce5acc1)
  919. )
  920. (wire (pts (xy 77.47 63.5) (xy 80.01 63.5))
  921. (stroke (width 0) (type default) (color 0 0 0 0))
  922. (uuid 377ebfe6-2aa4-48a7-a929-e5ab4bb10cb9)
  923. )
  924. (wire (pts (xy 129.54 30.48) (xy 132.08 30.48))
  925. (stroke (width 0) (type default) (color 0 0 0 0))
  926. (uuid 37b9101b-a82d-48dc-987b-c8a0ca491c22)
  927. )
  928. (wire (pts (xy 90.17 46.99) (xy 90.17 48.26))
  929. (stroke (width 0) (type default) (color 0 0 0 0))
  930. (uuid 393e3020-a3cd-4897-affc-88f0f33c5043)
  931. )
  932. (polyline (pts (xy 176.53 166.37) (xy 176.53 125.73))
  933. (stroke (width 0) (type default) (color 0 0 0 0))
  934. (uuid 3b65d359-9ae3-452c-9301-464658c7c074)
  935. )
  936. (wire (pts (xy 132.08 30.48) (xy 134.62 30.48))
  937. (stroke (width 0) (type default) (color 0 0 0 0))
  938. (uuid 3e521d6b-8c1d-4106-80a0-ae2c7029f93d)
  939. )
  940. (wire (pts (xy 142.24 15.24) (xy 142.24 17.78))
  941. (stroke (width 0) (type default) (color 0 0 0 0))
  942. (uuid 45649b19-290d-40dd-b476-1e4a0f57cd2e)
  943. )
  944. (wire (pts (xy 67.31 91.44) (xy 73.66 91.44))
  945. (stroke (width 0) (type default) (color 0 0 0 0))
  946. (uuid 46a564e1-0496-47f5-bd57-5a09d4f69a98)
  947. )
  948. (wire (pts (xy 74.93 104.14) (xy 78.74 104.14))
  949. (stroke (width 0) (type default) (color 0 0 0 0))
  950. (uuid 48d08357-7247-4782-95eb-0c49e197ee7d)
  951. )
  952. (wire (pts (xy 81.28 55.88) (xy 90.17 55.88))
  953. (stroke (width 0) (type default) (color 0 0 0 0))
  954. (uuid 4b2d633a-f4ec-4d14-82ea-e4766f5e3497)
  955. )
  956. (wire (pts (xy 132.08 30.48) (xy 132.08 33.02))
  957. (stroke (width 0) (type default) (color 0 0 0 0))
  958. (uuid 4c0f7289-d5cf-4a41-a8a3-b12937b9e7dc)
  959. )
  960. (wire (pts (xy 132.08 63.5) (xy 132.08 66.04))
  961. (stroke (width 0) (type default) (color 0 0 0 0))
  962. (uuid 4cd53e92-cf1f-4c42-bc82-7ce2b21c0f07)
  963. )
  964. (wire (pts (xy 27.94 152.4) (xy 40.64 152.4))
  965. (stroke (width 0) (type default) (color 0 0 0 0))
  966. (uuid 4f37d48b-1800-4eec-b431-c9b3bf98bef4)
  967. )
  968. (wire (pts (xy 40.64 22.86) (xy 40.64 24.13))
  969. (stroke (width 0) (type default) (color 0 0 0 0))
  970. (uuid 5074b181-d544-4eb2-b63e-fbcaed3af2a1)
  971. )
  972. (wire (pts (xy 91.44 22.86) (xy 91.44 24.13))
  973. (stroke (width 0) (type default) (color 0 0 0 0))
  974. (uuid 5210404e-92a2-4d8e-b5e0-a7a299d277b3)
  975. )
  976. (wire (pts (xy 127 97.79) (xy 128.27 97.79))
  977. (stroke (width 0) (type default) (color 0 0 0 0))
  978. (uuid 52c47b63-3666-4cc3-b27f-b4efbd4356c6)
  979. )
  980. (wire (pts (xy 40.64 152.4) (xy 46.99 152.4))
  981. (stroke (width 0) (type default) (color 0 0 0 0))
  982. (uuid 54f9d381-b235-4ff6-8f6b-bd25559ceaa2)
  983. )
  984. (wire (pts (xy 99.06 148.59) (xy 105.41 148.59))
  985. (stroke (width 0) (type default) (color 0 0 0 0))
  986. (uuid 580c0b60-5295-480f-9df5-e8d1f2057ae9)
  987. )
  988. (wire (pts (xy 128.27 97.79) (xy 140.97 97.79))
  989. (stroke (width 0) (type default) (color 0 0 0 0))
  990. (uuid 58ada84b-f245-4723-9542-b7f95777ce1c)
  991. )
  992. (wire (pts (xy 191.77 53.34) (xy 191.77 55.88))
  993. (stroke (width 0) (type default) (color 0 0 0 0))
  994. (uuid 596cacea-93a6-4ad4-8c35-83ec35e8ce28)
  995. )
  996. (wire (pts (xy 16.51 30.48) (xy 20.32 30.48))
  997. (stroke (width 0) (type default) (color 0 0 0 0))
  998. (uuid 5badca38-c5dc-4b41-8078-0415eae5a47e)
  999. )
  1000. (wire (pts (xy 93.98 91.44) (xy 95.25 91.44))
  1001. (stroke (width 0) (type default) (color 0 0 0 0))
  1002. (uuid 5c14149d-e88f-491a-9925-524c47775156)
  1003. )
  1004. (wire (pts (xy 81.28 30.48) (xy 81.28 33.02))
  1005. (stroke (width 0) (type default) (color 0 0 0 0))
  1006. (uuid 5cb93cd7-f832-48ad-a595-c945c39220bd)
  1007. )
  1008. (wire (pts (xy 142.24 53.34) (xy 142.24 55.88))
  1009. (stroke (width 0) (type default) (color 0 0 0 0))
  1010. (uuid 5fce5d31-4c66-4819-b84a-ddeb63d0a2a2)
  1011. )
  1012. (wire (pts (xy 133.35 22.86) (xy 142.24 22.86))
  1013. (stroke (width 0) (type default) (color 0 0 0 0))
  1014. (uuid 607bda4f-d38f-4312-bfcc-aafbd64dd958)
  1015. )
  1016. (wire (pts (xy 181.61 63.5) (xy 184.15 63.5))
  1017. (stroke (width 0) (type default) (color 0 0 0 0))
  1018. (uuid 679b5944-e58c-49a4-81f3-d1ac2ced663f)
  1019. )
  1020. (wire (pts (xy 128.27 106.68) (xy 128.27 107.95))
  1021. (stroke (width 0) (type default) (color 0 0 0 0))
  1022. (uuid 67d45d16-ed51-4a78-9bcb-93886bdec0f7)
  1023. )
  1024. (wire (pts (xy 81.28 48.26) (xy 90.17 48.26))
  1025. (stroke (width 0) (type default) (color 0 0 0 0))
  1026. (uuid 68cdcec1-78c9-421d-985b-93361f8ddea8)
  1027. )
  1028. (wire (pts (xy 133.35 15.24) (xy 142.24 15.24))
  1029. (stroke (width 0) (type default) (color 0 0 0 0))
  1030. (uuid 68e79a9a-d089-4cbd-ad88-efb54c21d511)
  1031. )
  1032. (wire (pts (xy 30.48 63.5) (xy 30.48 66.04))
  1033. (stroke (width 0) (type default) (color 0 0 0 0))
  1034. (uuid 68f7080c-1eff-417b-a4fe-fd43772af955)
  1035. )
  1036. (wire (pts (xy 182.88 48.26) (xy 191.77 48.26))
  1037. (stroke (width 0) (type default) (color 0 0 0 0))
  1038. (uuid 6e432eb9-d2ec-4738-a0d7-3badf3d1fc90)
  1039. )
  1040. (wire (pts (xy 31.75 140.97) (xy 34.29 140.97))
  1041. (stroke (width 0) (type default) (color 0 0 0 0))
  1042. (uuid 74356167-9eef-43e9-9d48-45bd43226a05)
  1043. )
  1044. (wire (pts (xy 30.48 63.5) (xy 33.02 63.5))
  1045. (stroke (width 0) (type default) (color 0 0 0 0))
  1046. (uuid 74b8666b-3423-4ee3-b9ec-736f207c1385)
  1047. )
  1048. (wire (pts (xy 95.25 91.44) (xy 95.25 90.17))
  1049. (stroke (width 0) (type default) (color 0 0 0 0))
  1050. (uuid 754ffa06-d8df-49b0-8433-39a54613ad5a)
  1051. )
  1052. (wire (pts (xy 38.1 179.07) (xy 46.99 179.07))
  1053. (stroke (width 0) (type default) (color 0 0 0 0))
  1054. (uuid 75f37f77-262a-4973-b76c-4d2586299f33)
  1055. )
  1056. (wire (pts (xy 67.31 30.48) (xy 71.12 30.48))
  1057. (stroke (width 0) (type default) (color 0 0 0 0))
  1058. (uuid 773ba613-3b5f-4f04-a8f7-a2998aabbd18)
  1059. )
  1060. (wire (pts (xy 40.64 55.88) (xy 40.64 57.15))
  1061. (stroke (width 0) (type default) (color 0 0 0 0))
  1062. (uuid 7aacfedd-92d8-42ed-96c9-55113b14bd52)
  1063. )
  1064. (wire (pts (xy 82.55 165.1) (xy 105.41 165.1))
  1065. (stroke (width 0) (type default) (color 0 0 0 0))
  1066. (uuid 7c747c29-fc95-44e6-894a-3bce7c37fced)
  1067. )
  1068. (wire (pts (xy 191.77 55.88) (xy 191.77 57.15))
  1069. (stroke (width 0) (type default) (color 0 0 0 0))
  1070. (uuid 7ef7a9c9-6cb6-4155-9642-cfe34539de8e)
  1071. )
  1072. (wire (pts (xy 167.64 63.5) (xy 171.45 63.5))
  1073. (stroke (width 0) (type default) (color 0 0 0 0))
  1074. (uuid 7f4da385-4686-4d70-953b-86f784363ef3)
  1075. )
  1076. (polyline (pts (xy 12.7 78.74) (xy 176.53 78.74))
  1077. (stroke (width 0) (type default) (color 0 0 0 0))
  1078. (uuid 809052ee-dddc-4beb-94a9-38838a4af291)
  1079. )
  1080. (wire (pts (xy 129.54 63.5) (xy 132.08 63.5))
  1081. (stroke (width 0) (type default) (color 0 0 0 0))
  1082. (uuid 81f8c6cd-dc69-4047-b876-dbdf6ce52f09)
  1083. )
  1084. (wire (pts (xy 40.64 20.32) (xy 40.64 22.86))
  1085. (stroke (width 0) (type default) (color 0 0 0 0))
  1086. (uuid 82e54964-54c5-4cc7-a343-3104d59237ae)
  1087. )
  1088. (wire (pts (xy 184.15 22.86) (xy 193.04 22.86))
  1089. (stroke (width 0) (type default) (color 0 0 0 0))
  1090. (uuid 8320fe2a-b13c-4802-afcd-3b50e51c6170)
  1091. )
  1092. (polyline (pts (xy 176.53 125.73) (xy 176.53 78.74))
  1093. (stroke (width 0) (type default) (color 0 0 0 0))
  1094. (uuid 8776e8e9-749d-4f87-b55b-a3e7810128c6)
  1095. )
  1096. (wire (pts (xy 99.06 156.21) (xy 99.06 162.56))
  1097. (stroke (width 0) (type default) (color 0 0 0 0))
  1098. (uuid 878215bd-61d9-46e8-aee5-4d2964bcbc74)
  1099. )
  1100. (wire (pts (xy 40.64 15.24) (xy 40.64 17.78))
  1101. (stroke (width 0) (type default) (color 0 0 0 0))
  1102. (uuid 8b73b268-1ef6-487e-b057-b5d8e15b0a11)
  1103. )
  1104. (wire (pts (xy 142.24 55.88) (xy 142.24 57.15))
  1105. (stroke (width 0) (type default) (color 0 0 0 0))
  1106. (uuid 8cfe1408-bad6-4c42-b537-075e1ec75dcf)
  1107. )
  1108. (wire (pts (xy 193.04 22.86) (xy 193.04 24.13))
  1109. (stroke (width 0) (type default) (color 0 0 0 0))
  1110. (uuid 8d433a6d-cd5b-4061-be77-8375cc49fc2a)
  1111. )
  1112. (wire (pts (xy 168.91 30.48) (xy 172.72 30.48))
  1113. (stroke (width 0) (type default) (color 0 0 0 0))
  1114. (uuid 8dc072f6-903c-4386-8421-2b437f42f35c)
  1115. )
  1116. (wire (pts (xy 30.48 30.48) (xy 33.02 30.48))
  1117. (stroke (width 0) (type default) (color 0 0 0 0))
  1118. (uuid 917eea61-bc2f-4e69-acdd-21478d1e01c7)
  1119. )
  1120. (wire (pts (xy 142.24 13.97) (xy 142.24 15.24))
  1121. (stroke (width 0) (type default) (color 0 0 0 0))
  1122. (uuid 93140d34-381c-4829-96d6-50d1743f796e)
  1123. )
  1124. (wire (pts (xy 73.66 91.44) (xy 78.74 91.44))
  1125. (stroke (width 0) (type default) (color 0 0 0 0))
  1126. (uuid 933f5614-cce4-4c1f-a784-03bc0c0c0a92)
  1127. )
  1128. (wire (pts (xy 33.02 179.07) (xy 38.1 179.07))
  1129. (stroke (width 0) (type default) (color 0 0 0 0))
  1130. (uuid 95066cda-c01f-43af-97ef-5a5229695b6f)
  1131. )
  1132. (wire (pts (xy 27.94 63.5) (xy 30.48 63.5))
  1133. (stroke (width 0) (type default) (color 0 0 0 0))
  1134. (uuid 95a5a8b9-396e-450f-91bd-8cf304efe01e)
  1135. )
  1136. (wire (pts (xy 80.01 63.5) (xy 80.01 66.04))
  1137. (stroke (width 0) (type default) (color 0 0 0 0))
  1138. (uuid 95eed53f-ebb0-4b79-bc2e-987065af5f53)
  1139. )
  1140. (wire (pts (xy 182.88 30.48) (xy 185.42 30.48))
  1141. (stroke (width 0) (type default) (color 0 0 0 0))
  1142. (uuid 9614216d-af15-41b3-9c73-3e29749d07f6)
  1143. )
  1144. (wire (pts (xy 142.24 20.32) (xy 142.24 22.86))
  1145. (stroke (width 0) (type default) (color 0 0 0 0))
  1146. (uuid 990630a9-04e0-4d53-b7d9-8bc0c21bfd7b)
  1147. )
  1148. (wire (pts (xy 52.07 91.44) (xy 58.42 91.44))
  1149. (stroke (width 0) (type default) (color 0 0 0 0))
  1150. (uuid 9c04b9bb-f4e4-4514-8a17-19a930154ab9)
  1151. )
  1152. (wire (pts (xy 38.1 186.69) (xy 46.99 186.69))
  1153. (stroke (width 0) (type default) (color 0 0 0 0))
  1154. (uuid 9c6f61c3-1903-451a-8cb6-2a8093fa7f8a)
  1155. )
  1156. (wire (pts (xy 34.29 140.97) (xy 40.64 140.97))
  1157. (stroke (width 0) (type default) (color 0 0 0 0))
  1158. (uuid a0d70980-0f0d-46fd-9934-e6be6ba0f9aa)
  1159. )
  1160. (wire (pts (xy 31.75 15.24) (xy 40.64 15.24))
  1161. (stroke (width 0) (type default) (color 0 0 0 0))
  1162. (uuid a43a34dd-2e2a-4f73-8d86-467ced51ba3a)
  1163. )
  1164. (wire (pts (xy 99.06 162.56) (xy 110.49 162.56))
  1165. (stroke (width 0) (type default) (color 0 0 0 0))
  1166. (uuid a72530a3-d93d-4f10-92b6-8c0d5e48fbde)
  1167. )
  1168. (wire (pts (xy 95.25 90.17) (xy 101.6 90.17))
  1169. (stroke (width 0) (type default) (color 0 0 0 0))
  1170. (uuid a8d57a5c-6a07-4ade-a5e0-5702ccafbf8a)
  1171. )
  1172. (wire (pts (xy 31.75 22.86) (xy 40.64 22.86))
  1173. (stroke (width 0) (type default) (color 0 0 0 0))
  1174. (uuid b1884c09-bc5b-4658-b80d-0f056dd720fb)
  1175. )
  1176. (wire (pts (xy 118.11 63.5) (xy 121.92 63.5))
  1177. (stroke (width 0) (type default) (color 0 0 0 0))
  1178. (uuid b1bf7bd6-7b84-4ffe-986c-9633395692a8)
  1179. )
  1180. (wire (pts (xy 58.42 91.44) (xy 67.31 91.44))
  1181. (stroke (width 0) (type default) (color 0 0 0 0))
  1182. (uuid b2e33132-9a27-4e75-9545-85f89f6e9b96)
  1183. )
  1184. (wire (pts (xy 182.88 55.88) (xy 191.77 55.88))
  1185. (stroke (width 0) (type default) (color 0 0 0 0))
  1186. (uuid b5360f58-06b9-44f4-be95-02caaba3958e)
  1187. )
  1188. (wire (pts (xy 40.64 13.97) (xy 40.64 15.24))
  1189. (stroke (width 0) (type default) (color 0 0 0 0))
  1190. (uuid b6e24453-931b-45a4-b8b1-9152a18db1ad)
  1191. )
  1192. (wire (pts (xy 93.98 104.14) (xy 93.98 107.95))
  1193. (stroke (width 0) (type default) (color 0 0 0 0))
  1194. (uuid b8b2744b-d07c-42cc-90f4-c875ca71aa34)
  1195. )
  1196. (wire (pts (xy 30.48 30.48) (xy 30.48 33.02))
  1197. (stroke (width 0) (type default) (color 0 0 0 0))
  1198. (uuid b9343f2b-5acb-4c55-8da4-5cfafabde33f)
  1199. )
  1200. (wire (pts (xy 133.35 55.88) (xy 142.24 55.88))
  1201. (stroke (width 0) (type default) (color 0 0 0 0))
  1202. (uuid ba4e8b39-015e-4c4a-8d70-5c308ca8270f)
  1203. )
  1204. (wire (pts (xy 193.04 13.97) (xy 193.04 15.24))
  1205. (stroke (width 0) (type default) (color 0 0 0 0))
  1206. (uuid c5406451-0272-4b54-b2fa-97667c7fa206)
  1207. )
  1208. (wire (pts (xy 105.41 156.21) (xy 105.41 165.1))
  1209. (stroke (width 0) (type default) (color 0 0 0 0))
  1210. (uuid c60a902b-9fdc-4aa3-b60b-149932315b88)
  1211. )
  1212. (wire (pts (xy 82.55 15.24) (xy 91.44 15.24))
  1213. (stroke (width 0) (type default) (color 0 0 0 0))
  1214. (uuid c670be7b-be06-4524-95ac-b70fef02ec5e)
  1215. )
  1216. (wire (pts (xy 27.94 30.48) (xy 30.48 30.48))
  1217. (stroke (width 0) (type default) (color 0 0 0 0))
  1218. (uuid c8d11b2c-9cf7-421d-ba27-c1f1f2226f8d)
  1219. )
  1220. (wire (pts (xy 193.04 15.24) (xy 193.04 17.78))
  1221. (stroke (width 0) (type default) (color 0 0 0 0))
  1222. (uuid c912a808-470e-4307-b88d-f524d3bad9b8)
  1223. )
  1224. (wire (pts (xy 142.24 22.86) (xy 142.24 24.13))
  1225. (stroke (width 0) (type default) (color 0 0 0 0))
  1226. (uuid ca0116f1-a666-4474-b41d-912f778c7ff8)
  1227. )
  1228. (wire (pts (xy 182.88 30.48) (xy 182.88 33.02))
  1229. (stroke (width 0) (type default) (color 0 0 0 0))
  1230. (uuid ca7198ec-6006-453f-b3f9-40ddb5966502)
  1231. )
  1232. (wire (pts (xy 184.15 15.24) (xy 193.04 15.24))
  1233. (stroke (width 0) (type default) (color 0 0 0 0))
  1234. (uuid cc25f0eb-7bbd-41da-9ee1-648cb4e808e3)
  1235. )
  1236. (wire (pts (xy 40.64 53.34) (xy 40.64 55.88))
  1237. (stroke (width 0) (type default) (color 0 0 0 0))
  1238. (uuid cc9a3cf6-40e6-41c4-a28d-bf2d7e892e21)
  1239. )
  1240. (wire (pts (xy 33.02 186.69) (xy 38.1 186.69))
  1241. (stroke (width 0) (type default) (color 0 0 0 0))
  1242. (uuid cfc366d1-c947-469f-a41c-9c153b312931)
  1243. )
  1244. (wire (pts (xy 91.44 15.24) (xy 91.44 17.78))
  1245. (stroke (width 0) (type default) (color 0 0 0 0))
  1246. (uuid d5a9408d-afb6-4bff-9f08-ca40c26ab7a8)
  1247. )
  1248. (wire (pts (xy 128.27 107.95) (xy 128.27 109.22))
  1249. (stroke (width 0) (type default) (color 0 0 0 0))
  1250. (uuid d805b8ab-e633-45ba-aea1-184082087030)
  1251. )
  1252. (wire (pts (xy 31.75 48.26) (xy 40.64 48.26))
  1253. (stroke (width 0) (type default) (color 0 0 0 0))
  1254. (uuid e1d0e19e-33cd-4529-a6bf-0e1aea98a6e3)
  1255. )
  1256. (wire (pts (xy 80.01 63.5) (xy 82.55 63.5))
  1257. (stroke (width 0) (type default) (color 0 0 0 0))
  1258. (uuid e2a1ee86-4af0-41bb-a408-34cfe5abb532)
  1259. )
  1260. (wire (pts (xy 93.98 97.79) (xy 101.6 97.79))
  1261. (stroke (width 0) (type default) (color 0 0 0 0))
  1262. (uuid ea34b843-09d6-4f31-a9cf-3678badf63c1)
  1263. )
  1264. (wire (pts (xy 40.64 48.26) (xy 40.64 50.8))
  1265. (stroke (width 0) (type default) (color 0 0 0 0))
  1266. (uuid eb6bab29-ba54-492d-9e7f-c359da7cdff6)
  1267. )
  1268. (wire (pts (xy 40.64 148.59) (xy 40.64 152.4))
  1269. (stroke (width 0) (type default) (color 0 0 0 0))
  1270. (uuid ebc9fd5a-0d6e-4de6-a68b-2518bed43e05)
  1271. )
  1272. (wire (pts (xy 180.34 30.48) (xy 182.88 30.48))
  1273. (stroke (width 0) (type default) (color 0 0 0 0))
  1274. (uuid ef9c588f-7b69-45e3-af8d-390b4df6cd1e)
  1275. )
  1276. (wire (pts (xy 128.27 97.79) (xy 128.27 99.06))
  1277. (stroke (width 0) (type default) (color 0 0 0 0))
  1278. (uuid f2095064-f8f8-4b0c-bc35-50f1ebeb8621)
  1279. )
  1280. (wire (pts (xy 82.55 162.56) (xy 99.06 162.56))
  1281. (stroke (width 0) (type default) (color 0 0 0 0))
  1282. (uuid f3379657-2d5e-4421-aab8-92c9c70f4a3f)
  1283. )
  1284. (wire (pts (xy 193.04 20.32) (xy 193.04 22.86))
  1285. (stroke (width 0) (type default) (color 0 0 0 0))
  1286. (uuid f3bf4052-803d-4b6b-95b0-722b92405af7)
  1287. )
  1288. (wire (pts (xy 34.29 148.59) (xy 34.29 157.48))
  1289. (stroke (width 0) (type default) (color 0 0 0 0))
  1290. (uuid f9f8c30a-e1f1-4743-b366-bf6f73c9ac2f)
  1291. )
  1292. (wire (pts (xy 191.77 48.26) (xy 191.77 50.8))
  1293. (stroke (width 0) (type default) (color 0 0 0 0))
  1294. (uuid fb38ebfc-c509-471a-8ac9-dae59ad03098)
  1295. )
  1296. (wire (pts (xy 142.24 48.26) (xy 142.24 50.8))
  1297. (stroke (width 0) (type default) (color 0 0 0 0))
  1298. (uuid fd24379d-3799-417a-8974-61c2a8053fe8)
  1299. )
  1300. (text "ESP-12F\n" (at 59.69 193.04 0)
  1301. (effects (font (size 1.524 1.524)) (justify left bottom))
  1302. (uuid 90928d5c-4313-494b-a812-cb1f47d5ccab)
  1303. )
  1304. (label "TX" (at 135.89 151.13 180)
  1305. (effects (font (size 1.524 1.524)) (justify right bottom))
  1306. (uuid 0274d347-ee6a-48e6-87eb-52156b65b01e)
  1307. )
  1308. (label "Vin" (at 193.04 13.97 0)
  1309. (effects (font (size 1.27 1.27)) (justify left bottom))
  1310. (uuid 09f39503-9721-4b1a-8562-228d13f12bda)
  1311. )
  1312. (label "RX" (at 82.55 154.94 0)
  1313. (effects (font (size 1.524 1.524)) (justify left bottom))
  1314. (uuid 0d2a63a9-6327-47be-9dc4-f79c10b7439d)
  1315. )
  1316. (label "Vin" (at 22.86 110.49 180)
  1317. (effects (font (size 1.27 1.27)) (justify right bottom))
  1318. (uuid 0d55d571-7c83-4f4a-831f-9b547d75d4dc)
  1319. )
  1320. (label "Vin" (at 40.64 46.99 0)
  1321. (effects (font (size 1.27 1.27)) (justify left bottom))
  1322. (uuid 0ecfc1c7-a40a-494a-93dd-e8cc49727a4c)
  1323. )
  1324. (label "GND" (at 181.61 73.66 270)
  1325. (effects (font (size 1.27 1.27)) (justify right bottom))
  1326. (uuid 159ecb75-1894-40d6-adfe-59dc06ae72e7)
  1327. )
  1328. (label "GND" (at 86.36 109.22 270)
  1329. (effects (font (size 1.27 1.27)) (justify right bottom))
  1330. (uuid 1739471b-00ca-4108-9000-896d2b1a9ee9)
  1331. )
  1332. (label "Vin" (at 39.37 91.44 180)
  1333. (effects (font (size 1.27 1.27)) (justify right bottom))
  1334. (uuid 18164c40-2910-48b9-9b31-64164de82ba7)
  1335. )
  1336. (label "GND" (at 132.08 73.66 270)
  1337. (effects (font (size 1.27 1.27)) (justify right bottom))
  1338. (uuid 1f4fa0c7-eb1b-4cbd-ae31-ade838338d7f)
  1339. )
  1340. (label "GPIO0" (at 135.89 156.21 180)
  1341. (effects (font (size 1.27 1.27)) (justify right bottom))
  1342. (uuid 225c161f-ad44-4cec-9e67-56056bb66c8f)
  1343. )
  1344. (label "R4" (at 168.91 30.48 180)
  1345. (effects (font (size 1.27 1.27)) (justify right bottom))
  1346. (uuid 25c78cc3-2e49-4f90-82e5-0a82b2629388)
  1347. )
  1348. (label "Vin" (at 142.24 13.97 0)
  1349. (effects (font (size 1.27 1.27)) (justify left bottom))
  1350. (uuid 25fef09f-2c1d-46f5-bdb9-7ed3185c8057)
  1351. )
  1352. (label "GND" (at 193.04 36.83 270)
  1353. (effects (font (size 1.27 1.27)) (justify right bottom))
  1354. (uuid 26caec40-48aa-4d50-a74b-fc41855e801e)
  1355. )
  1356. (label "GND" (at 22.86 113.03 180)
  1357. (effects (font (size 1.27 1.27)) (justify right bottom))
  1358. (uuid 296310ce-2bf1-45f9-966c-e2f729dfcebd)
  1359. )
  1360. (label "GND" (at 182.88 40.64 270)
  1361. (effects (font (size 1.27 1.27)) (justify right bottom))
  1362. (uuid 3313d5f9-54e3-4b82-b930-c1ecd860a57c)
  1363. )
  1364. (label "Vin" (at 40.64 13.97 0)
  1365. (effects (font (size 1.27 1.27)) (justify left bottom))
  1366. (uuid 35c00c09-dc0a-4f35-9496-8756d839789f)
  1367. )
  1368. (label "R8" (at 167.64 63.5 180)
  1369. (effects (font (size 1.27 1.27)) (justify right bottom))
  1370. (uuid 3e88f630-6dff-46ef-a1d4-10b48ca75fd2)
  1371. )
  1372. (label "3V3" (at 46.99 170.18 180)
  1373. (effects (font (size 1.27 1.27)) (justify right bottom))
  1374. (uuid 436f73bd-aab3-4ed4-881c-106ba2389ac8)
  1375. )
  1376. (label "TX" (at 82.55 152.4 0)
  1377. (effects (font (size 1.524 1.524)) (justify left bottom))
  1378. (uuid 47488d55-6153-4dfd-8a3e-18c5bc3c65bc)
  1379. )
  1380. (label "GND" (at 80.01 73.66 270)
  1381. (effects (font (size 1.27 1.27)) (justify right bottom))
  1382. (uuid 4ea90b67-17e2-49f4-b5fb-0c4e4b989f6a)
  1383. )
  1384. (label "GND" (at 82.55 170.18 0)
  1385. (effects (font (size 1.524 1.524)) (justify left bottom))
  1386. (uuid 543a7ee4-3b0e-4331-8dc0-b6d885bdba81)
  1387. )
  1388. (label "GND" (at 81.28 40.64 270)
  1389. (effects (font (size 1.27 1.27)) (justify right bottom))
  1390. (uuid 5b6d3d1c-c530-469d-b0f8-a18f8c89945a)
  1391. )
  1392. (label "GND" (at 40.64 69.85 270)
  1393. (effects (font (size 1.27 1.27)) (justify right bottom))
  1394. (uuid 6038b6f8-a7a7-44b7-a0a3-47fd26414bb7)
  1395. )
  1396. (label "R5" (at 16.51 63.5 180)
  1397. (effects (font (size 1.27 1.27)) (justify right bottom))
  1398. (uuid 61e64ea7-a4b6-47f6-bb62-81a2264c00b4)
  1399. )
  1400. (label "GND" (at 191.77 69.85 270)
  1401. (effects (font (size 1.27 1.27)) (justify right bottom))
  1402. (uuid 628f93b2-7e53-468c-a7ca-64c4d32d30b8)
  1403. )
  1404. (label "3V3" (at 153.67 97.79 0)
  1405. (effects (font (size 1.27 1.27)) (justify left bottom))
  1406. (uuid 63370fc1-1acd-498c-894a-080f548774da)
  1407. )
  1408. (label "Vin" (at 90.17 46.99 0)
  1409. (effects (font (size 1.27 1.27)) (justify left bottom))
  1410. (uuid 68e3a148-5b7d-4e27-aa02-ab80a83d440a)
  1411. )
  1412. (label "RST" (at 135.89 158.75 180)
  1413. (effects (font (size 1.27 1.27)) (justify right bottom))
  1414. (uuid 6db7ec4e-3038-443f-af18-59b747ba31f2)
  1415. )
  1416. (label "GND" (at 142.24 69.85 270)
  1417. (effects (font (size 1.27 1.27)) (justify right bottom))
  1418. (uuid 72ce94b0-e5bb-4c0b-a43f-6656835ad14c)
  1419. )
  1420. (label "GND" (at 132.08 40.64 270)
  1421. (effects (font (size 1.27 1.27)) (justify right bottom))
  1422. (uuid 79ba1051-3429-4999-8be6-918f459b12c7)
  1423. )
  1424. (label "GND" (at 140.97 105.41 270)
  1425. (effects (font (size 1.27 1.27)) (justify right bottom))
  1426. (uuid 7d5c3cb1-86fe-4bab-99cf-210a45c2a46b)
  1427. )
  1428. (label "GND" (at 40.64 36.83 270)
  1429. (effects (font (size 1.27 1.27)) (justify right bottom))
  1430. (uuid 8156592a-b239-46ed-bc3e-276778180043)
  1431. )
  1432. (label "GND" (at 73.66 99.06 180)
  1433. (effects (font (size 1.27 1.27)) (justify right bottom))
  1434. (uuid 8466004c-f6a7-4b1d-ba43-f8f4b85c803c)
  1435. )
  1436. (label "3V3" (at 33.02 179.07 180)
  1437. (effects (font (size 1.27 1.27)) (justify right bottom))
  1438. (uuid 8ace9090-4e44-46f8-bceb-a98e17b202d5)
  1439. )
  1440. (label "GND" (at 58.42 102.87 270)
  1441. (effects (font (size 1.27 1.27)) (justify right bottom))
  1442. (uuid 92333d64-6369-41c2-b885-359965c9e1ed)
  1443. )
  1444. (label "3V3" (at 31.75 140.97 180)
  1445. (effects (font (size 1.27 1.27)) (justify right bottom))
  1446. (uuid 93c4efca-b2d4-481c-b709-43b4dbddbadd)
  1447. )
  1448. (label "GND" (at 82.55 167.64 0)
  1449. (effects (font (size 1.524 1.524)) (justify left bottom))
  1450. (uuid 947c45c0-965e-431a-ac6f-3cc1a75f8fd3)
  1451. )
  1452. (label "R3" (at 46.99 160.02 180)
  1453. (effects (font (size 1.27 1.27)) (justify right bottom))
  1454. (uuid 95f32910-fc56-44ce-b99a-4ac8feefa944)
  1455. )
  1456. (label "GND" (at 142.24 36.83 270)
  1457. (effects (font (size 1.27 1.27)) (justify right bottom))
  1458. (uuid 96ecaccf-c750-4619-b401-cc3acd592efd)
  1459. )
  1460. (label "R5" (at 46.99 165.1 180)
  1461. (effects (font (size 1.27 1.27)) (justify right bottom))
  1462. (uuid 9800f73f-458f-4b36-abdd-5590b4a8823c)
  1463. )
  1464. (label "GND" (at 33.02 186.69 180)
  1465. (effects (font (size 1.524 1.524)) (justify right bottom))
  1466. (uuid 9a031a7c-009c-4568-bd32-073816abbe11)
  1467. )
  1468. (label "R7" (at 63.5 181.61 270)
  1469. (effects (font (size 1.27 1.27)) (justify right bottom))
  1470. (uuid a09f6e7e-0d8b-40de-98f2-1dba6d2a006a)
  1471. )
  1472. (label "RST" (at 27.94 152.4 180)
  1473. (effects (font (size 1.27 1.27)) (justify right bottom))
  1474. (uuid a398927b-a2ea-4949-8890-201641b3ba45)
  1475. )
  1476. (label "GND" (at 30.48 73.66 270)
  1477. (effects (font (size 1.27 1.27)) (justify right bottom))
  1478. (uuid a5893f27-a681-4274-bbcc-4e13f879c68b)
  1479. )
  1480. (label "Vin" (at 142.24 46.99 0)
  1481. (effects (font (size 1.27 1.27)) (justify left bottom))
  1482. (uuid a6b36ead-a2ec-490f-b7cf-f5a658024e41)
  1483. )
  1484. (label "RX" (at 135.89 153.67 180)
  1485. (effects (font (size 1.524 1.524)) (justify right bottom))
  1486. (uuid aa2a3abb-5c90-4149-9bdc-a6bf0437d1ac)
  1487. )
  1488. (label "GND" (at 90.17 69.85 270)
  1489. (effects (font (size 1.27 1.27)) (justify right bottom))
  1490. (uuid acbe9ce6-c316-4756-b6d0-f10415b38b20)
  1491. )
  1492. (label "Vin" (at 91.44 13.97 0)
  1493. (effects (font (size 1.27 1.27)) (justify left bottom))
  1494. (uuid ad8b5652-5ea5-4927-a51f-74b8a84018d0)
  1495. )
  1496. (label "R2" (at 67.31 30.48 180)
  1497. (effects (font (size 1.27 1.27)) (justify right bottom))
  1498. (uuid aff6216f-f424-4cde-8348-60051b76f96b)
  1499. )
  1500. (label "R1" (at 82.55 157.48 0)
  1501. (effects (font (size 1.27 1.27)) (justify left bottom))
  1502. (uuid b5bf3e73-60d0-4826-91d5-84b12449fada)
  1503. )
  1504. (label "GPIO0" (at 110.49 162.56 0)
  1505. (effects (font (size 1.27 1.27)) (justify left bottom))
  1506. (uuid b6f00976-0f08-4a03-a2ee-c672331a2331)
  1507. )
  1508. (label "GND" (at 135.89 161.29 180)
  1509. (effects (font (size 1.524 1.524)) (justify right bottom))
  1510. (uuid b853680f-2104-4667-a46b-e33e73b48252)
  1511. )
  1512. (label "3V3" (at 107.95 148.59 0)
  1513. (effects (font (size 1.27 1.27)) (justify left bottom))
  1514. (uuid b96b892f-4f2b-49fa-bd51-8b2a3fbbe390)
  1515. )
  1516. (label "GND" (at 105.41 105.41 180)
  1517. (effects (font (size 1.27 1.27)) (justify right bottom))
  1518. (uuid bcdd398d-475c-4d01-a17b-9659ae35b1a5)
  1519. )
  1520. (label "R1" (at 16.51 30.48 180)
  1521. (effects (font (size 1.27 1.27)) (justify right bottom))
  1522. (uuid c0093bee-e162-4729-9e14-09291de19366)
  1523. )
  1524. (label "R2" (at 82.55 160.02 0)
  1525. (effects (font (size 1.27 1.27)) (justify left bottom))
  1526. (uuid cd7f521b-47fd-49f5-8642-d865954ed127)
  1527. )
  1528. (label "R7" (at 118.11 63.5 180)
  1529. (effects (font (size 1.27 1.27)) (justify right bottom))
  1530. (uuid cf7b7f81-a544-4d94-83cc-ecf2950028c6)
  1531. )
  1532. (label "R8" (at 66.04 181.61 270)
  1533. (effects (font (size 1.27 1.27)) (justify right bottom))
  1534. (uuid d205ff0e-cfe8-4533-93aa-40ffd8b55be9)
  1535. )
  1536. (label "R4" (at 46.99 162.56 180)
  1537. (effects (font (size 1.27 1.27)) (justify right bottom))
  1538. (uuid e054d2dd-97dd-426e-8399-9f33c6a49361)
  1539. )
  1540. (label "R6" (at 46.99 167.64 180)
  1541. (effects (font (size 1.27 1.27)) (justify right bottom))
  1542. (uuid e357b87a-8d7e-4a9b-899b-4b680f22a875)
  1543. )
  1544. (label "GND" (at 128.27 116.84 270)
  1545. (effects (font (size 1.27 1.27)) (justify right bottom))
  1546. (uuid e452c036-c4f1-42cc-9459-23d18eb92704)
  1547. )
  1548. (label "GND" (at 91.44 36.83 270)
  1549. (effects (font (size 1.27 1.27)) (justify right bottom))
  1550. (uuid efb20361-18f2-425d-8cce-c5a8b3643551)
  1551. )
  1552. (label "GND" (at 30.48 40.64 270)
  1553. (effects (font (size 1.27 1.27)) (justify right bottom))
  1554. (uuid f0b4d779-367c-4b6b-8c2e-0597d1be6832)
  1555. )
  1556. (label "Vin" (at 191.77 46.99 0)
  1557. (effects (font (size 1.27 1.27)) (justify left bottom))
  1558. (uuid f6d9738d-1f31-4a94-945a-7b35eab96c5f)
  1559. )
  1560. (label "R3" (at 118.11 30.48 180)
  1561. (effects (font (size 1.27 1.27)) (justify right bottom))
  1562. (uuid f9695c0d-77b2-49f9-8b72-f8e808940369)
  1563. )
  1564. (label "R6" (at 66.04 63.5 180)
  1565. (effects (font (size 1.27 1.27)) (justify right bottom))
  1566. (uuid fc867040-5d93-4739-9e50-ec13929289db)
  1567. )
  1568. (symbol (lib_id "conn:CONN_01X02") (at 196.85 52.07 0) (unit 1)
  1569. (in_bom yes) (on_board yes) (fields_autoplaced)
  1570. (uuid 01766516-c2eb-4356-8bf2-8b05434cf46c)
  1571. (property "Reference" "M8" (id 0) (at 199.39 50.7999 0)
  1572. (effects (font (size 1.27 1.27)) (justify left))
  1573. )
  1574. (property "Value" "CONN_01X02" (id 1) (at 199.39 53.3399 0)
  1575. (effects (font (size 1.27 1.27)) (justify left))
  1576. )
  1577. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 196.85 52.07 0)
  1578. (effects (font (size 1.27 1.27)) hide)
  1579. )
  1580. (property "Datasheet" "" (id 3) (at 196.85 52.07 0))
  1581. (property "Partkeepr" "0004" (id 4) (at 196.85 52.07 0)
  1582. (effects (font (size 1.27 1.27)) hide)
  1583. )
  1584. (pin "1" (uuid 8ba16cdb-9126-401d-873b-37af03cda153))
  1585. (pin "2" (uuid a4b88afc-eab0-4411-b62a-697f23ed8a7e))
  1586. )
  1587. (symbol (lib_id "conn:CONN_01X02") (at 198.12 19.05 0) (unit 1)
  1588. (in_bom yes) (on_board yes) (fields_autoplaced)
  1589. (uuid 02a3c444-66a0-4d39-b8e2-54f14fff513d)
  1590. (property "Reference" "M4" (id 0) (at 200.66 17.7799 0)
  1591. (effects (font (size 1.27 1.27)) (justify left))
  1592. )
  1593. (property "Value" "CONN_01X02" (id 1) (at 200.66 20.3199 0)
  1594. (effects (font (size 1.27 1.27)) (justify left))
  1595. )
  1596. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 198.12 19.05 0)
  1597. (effects (font (size 1.27 1.27)) hide)
  1598. )
  1599. (property "Datasheet" "" (id 3) (at 198.12 19.05 0))
  1600. (property "Partkeepr" "0004" (id 4) (at 198.12 19.05 0)
  1601. (effects (font (size 1.27 1.27)) hide)
  1602. )
  1603. (pin "1" (uuid e6c4b03d-5585-413f-93b6-dd79131fae19))
  1604. (pin "2" (uuid dbf4f0a6-dacd-4a99-a73a-765d4a2ba3ea))
  1605. )
  1606. (symbol (lib_id "conn:CONN_01X02") (at 45.72 19.05 0) (unit 1)
  1607. (in_bom yes) (on_board yes) (fields_autoplaced)
  1608. (uuid 06b7ea69-bc47-47e6-8b91-d06bd4a07413)
  1609. (property "Reference" "M1" (id 0) (at 48.26 17.7799 0)
  1610. (effects (font (size 1.27 1.27)) (justify left))
  1611. )
  1612. (property "Value" "CONN_01X02" (id 1) (at 48.26 20.3199 0)
  1613. (effects (font (size 1.27 1.27)) (justify left))
  1614. )
  1615. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 45.72 19.05 0)
  1616. (effects (font (size 1.27 1.27)) hide)
  1617. )
  1618. (property "Datasheet" "" (id 3) (at 45.72 19.05 0))
  1619. (property "Partkeepr" "0004" (id 4) (at 45.72 19.05 0)
  1620. (effects (font (size 1.27 1.27)) hide)
  1621. )
  1622. (pin "1" (uuid 7f2c7bc0-a812-49dc-8b92-ecae3a39078f))
  1623. (pin "2" (uuid 122cff66-9c46-4d66-80c0-a2597707985e))
  1624. )
  1625. (symbol (lib_id "global:R") (at 24.13 63.5 270) (unit 1)
  1626. (in_bom yes) (on_board yes)
  1627. (uuid 0c049cdb-4255-4ceb-bb39-7e892ca9a99b)
  1628. (property "Reference" "R9" (id 0) (at 24.13 60.96 90))
  1629. (property "Value" "120" (id 1) (at 24.13 63.5 90))
  1630. (property "Footprint" "R:0805" (id 2) (at 24.13 61.722 90)
  1631. (effects (font (size 1.27 1.27)) hide)
  1632. )
  1633. (property "Datasheet" "" (id 3) (at 24.13 63.5 0))
  1634. (property "Partkeepr" "0911" (id 4) (at 24.13 63.5 0)
  1635. (effects (font (size 1.27 1.27)) hide)
  1636. )
  1637. (pin "1" (uuid bc2700c8-fbfa-45de-9a6c-081d67061679))
  1638. (pin "2" (uuid 4021fa3e-5bc3-4a2b-a77b-161c1117d8f4))
  1639. )
  1640. (symbol (lib_id "global:D") (at 133.35 19.05 270) (unit 1)
  1641. (in_bom yes) (on_board yes) (fields_autoplaced)
  1642. (uuid 0e04617a-3a28-45c3-92cb-24168d4ab405)
  1643. (property "Reference" "D3" (id 0) (at 135.89 17.7418 90)
  1644. (effects (font (size 1.27 1.27)) (justify left))
  1645. )
  1646. (property "Value" "SS32" (id 1) (at 135.89 20.2818 90)
  1647. (effects (font (size 1.27 1.27)) (justify left))
  1648. )
  1649. (property "Footprint" "D:SMC" (id 2) (at 133.35 19.05 0)
  1650. (effects (font (size 1.27 1.27)) hide)
  1651. )
  1652. (property "Datasheet" "" (id 3) (at 133.35 19.05 0))
  1653. (property "Partkeepr" "1306" (id 4) (at 133.35 19.05 0)
  1654. (effects (font (size 1.27 1.27)) hide)
  1655. )
  1656. (pin "1" (uuid 2f0d790d-d7b4-4409-84ed-4364c5770b72))
  1657. (pin "2" (uuid 9057856a-2c78-4483-b18f-0b96f5e57a94))
  1658. )
  1659. (symbol (lib_id "conn:CONN_01X02") (at 27.94 111.76 0) (unit 1)
  1660. (in_bom yes) (on_board yes) (fields_autoplaced)
  1661. (uuid 0efe519c-39a6-42ea-8084-dd5228ba5014)
  1662. (property "Reference" "P1" (id 0) (at 30.48 110.4899 0)
  1663. (effects (font (size 1.27 1.27)) (justify left))
  1664. )
  1665. (property "Value" "CONN_01X02" (id 1) (at 30.48 113.0299 0)
  1666. (effects (font (size 1.27 1.27)) (justify left))
  1667. )
  1668. (property "Footprint" "Connector:DC_Jack" (id 2) (at 27.94 111.76 0)
  1669. (effects (font (size 1.27 1.27)) hide)
  1670. )
  1671. (property "Datasheet" "" (id 3) (at 27.94 111.76 0))
  1672. (property "Partkeepr" "0000" (id 4) (at 27.94 111.76 0)
  1673. (effects (font (size 1.27 1.27)) hide)
  1674. )
  1675. (pin "1" (uuid dd5dbbf2-17b8-4b5d-9def-083fb467f180))
  1676. (pin "2" (uuid c9add11d-94b2-4e2f-9a99-9b57728586b3))
  1677. )
  1678. (symbol (lib_id "global:R") (at 125.73 30.48 270) (unit 1)
  1679. (in_bom yes) (on_board yes)
  1680. (uuid 116eaacd-2f68-4a4f-91d5-3d46ea099e00)
  1681. (property "Reference" "R3" (id 0) (at 125.73 27.94 90))
  1682. (property "Value" "120" (id 1) (at 125.73 30.48 90))
  1683. (property "Footprint" "R:0805" (id 2) (at 125.73 28.702 90)
  1684. (effects (font (size 1.27 1.27)) hide)
  1685. )
  1686. (property "Datasheet" "" (id 3) (at 125.73 30.48 0))
  1687. (property "Partkeepr" "0911" (id 4) (at 125.73 30.48 0)
  1688. (effects (font (size 1.27 1.27)) hide)
  1689. )
  1690. (pin "1" (uuid 5da84ffa-84ed-42c6-93c3-e42cd79300cf))
  1691. (pin "2" (uuid 3d18046f-2fb9-4170-bc90-04e1dcf32424))
  1692. )
  1693. (symbol (lib_id "global:D") (at 105.41 101.6 270) (unit 1)
  1694. (in_bom yes) (on_board yes) (fields_autoplaced)
  1695. (uuid 19577703-7dca-4312-93b8-9d8b4e107d29)
  1696. (property "Reference" "D10" (id 0) (at 107.95 100.2918 90)
  1697. (effects (font (size 1.27 1.27)) (justify left))
  1698. )
  1699. (property "Value" "D" (id 1) (at 107.95 102.8318 90)
  1700. (effects (font (size 1.27 1.27)) (justify left))
  1701. )
  1702. (property "Footprint" "D:SOD-123" (id 2) (at 105.41 101.6 0)
  1703. (effects (font (size 1.27 1.27)) hide)
  1704. )
  1705. (property "Datasheet" "" (id 3) (at 105.41 101.6 0))
  1706. (property "Partkeepr" "1300" (id 4) (at 105.41 101.6 0)
  1707. (effects (font (size 1.27 1.27)) hide)
  1708. )
  1709. (pin "1" (uuid 94d7df70-8d29-46c5-9a6b-82c4c56537cc))
  1710. (pin "2" (uuid c965556f-77a0-4528-a991-eabd469d8fab))
  1711. )
  1712. (symbol (lib_id "global:R") (at 24.13 30.48 270) (unit 1)
  1713. (in_bom yes) (on_board yes)
  1714. (uuid 214861b3-04c6-422b-b952-f3ef4077e6bf)
  1715. (property "Reference" "R1" (id 0) (at 24.13 27.94 90))
  1716. (property "Value" "120" (id 1) (at 24.13 30.48 90))
  1717. (property "Footprint" "R:0805" (id 2) (at 24.13 28.702 90)
  1718. (effects (font (size 1.27 1.27)) hide)
  1719. )
  1720. (property "Datasheet" "" (id 3) (at 24.13 30.48 0))
  1721. (property "Partkeepr" "0911" (id 4) (at 24.13 30.48 0)
  1722. (effects (font (size 1.27 1.27)) hide)
  1723. )
  1724. (pin "1" (uuid 394935f2-7c69-4669-9340-e9ef930b13f6))
  1725. (pin "2" (uuid fc928968-5725-4994-bff9-e2b61939d408))
  1726. )
  1727. (symbol (lib_id "global:R") (at 74.93 30.48 270) (unit 1)
  1728. (in_bom yes) (on_board yes)
  1729. (uuid 26a1d436-2047-49bb-a50a-62c63abb206c)
  1730. (property "Reference" "R2" (id 0) (at 74.93 27.94 90))
  1731. (property "Value" "120" (id 1) (at 74.93 30.48 90))
  1732. (property "Footprint" "R:0805" (id 2) (at 74.93 28.702 90)
  1733. (effects (font (size 1.27 1.27)) hide)
  1734. )
  1735. (property "Datasheet" "" (id 3) (at 74.93 30.48 0))
  1736. (property "Partkeepr" "0911" (id 4) (at 74.93 30.48 0)
  1737. (effects (font (size 1.27 1.27)) hide)
  1738. )
  1739. (pin "1" (uuid 1183faa1-4d2e-41c1-b35a-317226f96c36))
  1740. (pin "2" (uuid 8ed9f78e-9e9e-4f60-b03f-649122d83b3a))
  1741. )
  1742. (symbol (lib_id "global:D") (at 133.35 52.07 270) (unit 1)
  1743. (in_bom yes) (on_board yes) (fields_autoplaced)
  1744. (uuid 356fe18f-0750-4ec2-a2eb-39b783f2780c)
  1745. (property "Reference" "D7" (id 0) (at 135.89 50.7618 90)
  1746. (effects (font (size 1.27 1.27)) (justify left))
  1747. )
  1748. (property "Value" "SS32" (id 1) (at 135.89 53.3018 90)
  1749. (effects (font (size 1.27 1.27)) (justify left))
  1750. )
  1751. (property "Footprint" "D:SMC" (id 2) (at 135.89 54.5718 90)
  1752. (effects (font (size 1.27 1.27)) (justify left) hide)
  1753. )
  1754. (property "Datasheet" "" (id 3) (at 133.35 52.07 0))
  1755. (property "Partkeepr" "1306" (id 4) (at 133.35 52.07 0)
  1756. (effects (font (size 1.27 1.27)) hide)
  1757. )
  1758. (pin "1" (uuid fac6fd9c-5ebf-4e40-8ab9-740f74bb98f3))
  1759. (pin "2" (uuid 69e46543-4f07-4fab-b2b9-aeae24aafa2e))
  1760. )
  1761. (symbol (lib_id "global:R") (at 125.73 63.5 270) (unit 1)
  1762. (in_bom yes) (on_board yes)
  1763. (uuid 36567b2e-675c-4410-8751-c28054f851a0)
  1764. (property "Reference" "R11" (id 0) (at 125.73 60.96 90))
  1765. (property "Value" "120" (id 1) (at 125.73 63.5 90))
  1766. (property "Footprint" "R:0805" (id 2) (at 125.73 61.722 90)
  1767. (effects (font (size 1.27 1.27)) hide)
  1768. )
  1769. (property "Datasheet" "" (id 3) (at 125.73 63.5 0))
  1770. (property "Partkeepr" "0911" (id 4) (at 125.73 63.5 0)
  1771. (effects (font (size 1.27 1.27)) hide)
  1772. )
  1773. (pin "1" (uuid 36f513f3-e74a-481f-915d-4ed805ef0b72))
  1774. (pin "2" (uuid b65345fd-5093-4cf1-be4d-a891dcbe3643))
  1775. )
  1776. (symbol (lib_id "global:R") (at 182.88 36.83 0) (unit 1)
  1777. (in_bom yes) (on_board yes)
  1778. (uuid 3ceb7a8c-f767-4229-a6ca-2f70fa951d55)
  1779. (property "Reference" "R8" (id 0) (at 184.15 35.56 0)
  1780. (effects (font (size 1.27 1.27)) (justify left))
  1781. )
  1782. (property "Value" "100K" (id 1) (at 182.88 39.37 90)
  1783. (effects (font (size 1.27 1.27)) (justify left))
  1784. )
  1785. (property "Footprint" "R:0805" (id 2) (at 181.102 36.83 90)
  1786. (effects (font (size 1.27 1.27)) hide)
  1787. )
  1788. (property "Datasheet" "" (id 3) (at 182.88 36.83 0))
  1789. (property "Partkeepr" "0916" (id 4) (at 182.88 36.83 0)
  1790. (effects (font (size 1.27 1.27)) hide)
  1791. )
  1792. (pin "1" (uuid 8139dae7-4a37-4e4e-9fd9-e235cc74da33))
  1793. (pin "2" (uuid 37c34a13-87d2-412b-80b2-0ef21747e543))
  1794. )
  1795. (symbol (lib_id "conn:CONN_01X02") (at 45.72 52.07 0) (unit 1)
  1796. (in_bom yes) (on_board yes) (fields_autoplaced)
  1797. (uuid 49d084ac-26c2-4c58-876a-296bf45ef11a)
  1798. (property "Reference" "M5" (id 0) (at 48.26 50.7999 0)
  1799. (effects (font (size 1.27 1.27)) (justify left))
  1800. )
  1801. (property "Value" "CONN_01X02" (id 1) (at 48.26 53.3399 0)
  1802. (effects (font (size 1.27 1.27)) (justify left))
  1803. )
  1804. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 45.72 52.07 0)
  1805. (effects (font (size 1.27 1.27)) hide)
  1806. )
  1807. (property "Datasheet" "" (id 3) (at 45.72 52.07 0))
  1808. (property "Partkeepr" "0004" (id 4) (at 45.72 52.07 0)
  1809. (effects (font (size 1.27 1.27)) hide)
  1810. )
  1811. (pin "1" (uuid 7db41ef7-8c95-4d4b-adc5-b059b2009d61))
  1812. (pin "2" (uuid e4488ead-fae0-4ea1-a9d8-44d13b7c4254))
  1813. )
  1814. (symbol (lib_id "global:D") (at 182.88 52.07 270) (unit 1)
  1815. (in_bom yes) (on_board yes) (fields_autoplaced)
  1816. (uuid 50cf8ca7-f343-4e25-8039-bfb9792c2fad)
  1817. (property "Reference" "D8" (id 0) (at 185.42 50.7618 90)
  1818. (effects (font (size 1.27 1.27)) (justify left))
  1819. )
  1820. (property "Value" "SS32" (id 1) (at 185.42 53.3018 90)
  1821. (effects (font (size 1.27 1.27)) (justify left))
  1822. )
  1823. (property "Footprint" "D:SMC" (id 2) (at 182.88 52.07 0)
  1824. (effects (font (size 1.27 1.27)) hide)
  1825. )
  1826. (property "Datasheet" "" (id 3) (at 182.88 52.07 0))
  1827. (property "Partkeepr" "1306" (id 4) (at 182.88 52.07 0)
  1828. (effects (font (size 1.27 1.27)) hide)
  1829. )
  1830. (pin "1" (uuid 56ee4f26-20c2-4902-9f48-26056fa04730))
  1831. (pin "2" (uuid 97ea86bd-4fc8-4256-a8d0-3d65a716ef2f))
  1832. )
  1833. (symbol (lib_id "global:R") (at 132.08 69.85 0) (unit 1)
  1834. (in_bom yes) (on_board yes)
  1835. (uuid 55b9d5ef-5f52-4f3f-89e7-5d040ac9d5d1)
  1836. (property "Reference" "R15" (id 0) (at 133.35 68.58 0)
  1837. (effects (font (size 1.27 1.27)) (justify left))
  1838. )
  1839. (property "Value" "100K" (id 1) (at 132.08 72.39 90)
  1840. (effects (font (size 1.27 1.27)) (justify left))
  1841. )
  1842. (property "Footprint" "R:0805" (id 2) (at 130.302 69.85 90)
  1843. (effects (font (size 1.27 1.27)) hide)
  1844. )
  1845. (property "Datasheet" "" (id 3) (at 132.08 69.85 0))
  1846. (property "Partkeepr" "0916" (id 4) (at 132.08 69.85 0)
  1847. (effects (font (size 1.27 1.27)) hide)
  1848. )
  1849. (pin "1" (uuid 429dd4dd-bb86-45a8-8aea-a5dea0fe476b))
  1850. (pin "2" (uuid b800a07c-7947-406b-b4c4-04d8178b77e5))
  1851. )
  1852. (symbol (lib_id "global:N_MOSFET") (at 140.97 63.5 90) (unit 1)
  1853. (in_bom yes) (on_board yes) (fields_autoplaced)
  1854. (uuid 5619995d-93b6-4094-bb0c-5cbaf730820b)
  1855. (property "Reference" "Q7" (id 0) (at 144.78 62.23 90)
  1856. (effects (font (size 1.524 1.524)) (justify right))
  1857. )
  1858. (property "Value" "N_MOSFET" (id 1) (at 144.78 66.04 90)
  1859. (effects (font (size 1.524 1.524)) (justify right))
  1860. )
  1861. (property "Footprint" "U:TO-252" (id 2) (at 140.97 63.5 0)
  1862. (effects (font (size 1.524 1.524)) hide)
  1863. )
  1864. (property "Datasheet" "" (id 3) (at 140.97 63.5 0)
  1865. (effects (font (size 1.524 1.524)) hide)
  1866. )
  1867. (property "Partkeepr" "2007" (id 4) (at 140.97 63.5 0)
  1868. (effects (font (size 1.27 1.27)) hide)
  1869. )
  1870. (pin "1" (uuid 1cbb73da-4d68-4a2f-9152-cf67b5788ff6))
  1871. (pin "2" (uuid 90b5ffc3-bae2-4928-8a41-38dc977e7c71))
  1872. (pin "3" (uuid a3562cac-caa8-4c6c-843e-ffc9b3ea3354))
  1873. )
  1874. (symbol (lib_id "global:N_MOSFET") (at 140.97 30.48 90) (unit 1)
  1875. (in_bom yes) (on_board yes) (fields_autoplaced)
  1876. (uuid 567b26d4-cc78-4aa9-9ca2-22fa5ef88415)
  1877. (property "Reference" "Q3" (id 0) (at 144.78 29.21 90)
  1878. (effects (font (size 1.524 1.524)) (justify right))
  1879. )
  1880. (property "Value" "N_MOSFET" (id 1) (at 144.78 33.02 90)
  1881. (effects (font (size 1.524 1.524)) (justify right))
  1882. )
  1883. (property "Footprint" "U:TO-252" (id 2) (at 140.97 30.48 0)
  1884. (effects (font (size 1.524 1.524)) hide)
  1885. )
  1886. (property "Datasheet" "" (id 3) (at 140.97 30.48 0)
  1887. (effects (font (size 1.524 1.524)) hide)
  1888. )
  1889. (property "Partkeepr" "2007" (id 4) (at 140.97 30.48 0)
  1890. (effects (font (size 1.27 1.27)) hide)
  1891. )
  1892. (pin "1" (uuid d407bd0f-c42c-41ae-b783-e2dcf0802a94))
  1893. (pin "2" (uuid 7dde8103-76d5-478b-afa6-25ab5c3f2ed8))
  1894. (pin "3" (uuid 7efa8267-08e0-4b31-8599-76a05bbabdfc))
  1895. )
  1896. (symbol (lib_id "global:R") (at 73.66 63.5 270) (unit 1)
  1897. (in_bom yes) (on_board yes)
  1898. (uuid 587ebfb2-6049-46bd-a461-19295f6d8c0f)
  1899. (property "Reference" "R10" (id 0) (at 73.66 60.96 90))
  1900. (property "Value" "120" (id 1) (at 73.66 63.5 90))
  1901. (property "Footprint" "R:0805" (id 2) (at 73.66 61.722 90)
  1902. (effects (font (size 1.27 1.27)) hide)
  1903. )
  1904. (property "Datasheet" "" (id 3) (at 73.66 63.5 0))
  1905. (property "Partkeepr" "0911" (id 4) (at 73.66 63.5 0)
  1906. (effects (font (size 1.27 1.27)) hide)
  1907. )
  1908. (pin "1" (uuid 81f2c5bb-8cbf-4ab5-885d-7fd275ea305e))
  1909. (pin "2" (uuid 9762f82a-991f-49e0-bcac-a3e282b175c3))
  1910. )
  1911. (symbol (lib_id "conn:CONN_01X02") (at 96.52 19.05 0) (unit 1)
  1912. (in_bom yes) (on_board yes) (fields_autoplaced)
  1913. (uuid 59ec6108-a3d7-46fa-8055-6ac4148e77fa)
  1914. (property "Reference" "M2" (id 0) (at 99.06 17.7799 0)
  1915. (effects (font (size 1.27 1.27)) (justify left))
  1916. )
  1917. (property "Value" "CONN_01X02" (id 1) (at 99.06 20.3199 0)
  1918. (effects (font (size 1.27 1.27)) (justify left))
  1919. )
  1920. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 96.52 19.05 0)
  1921. (effects (font (size 1.27 1.27)) hide)
  1922. )
  1923. (property "Datasheet" "" (id 3) (at 96.52 19.05 0))
  1924. (property "Partkeepr" "0004" (id 4) (at 96.52 19.05 0)
  1925. (effects (font (size 1.27 1.27)) hide)
  1926. )
  1927. (pin "1" (uuid b6df5356-fb69-4501-9f9b-34692f41c53b))
  1928. (pin "2" (uuid 6a2d229e-e769-4fab-bfbc-486de25fed3a))
  1929. )
  1930. (symbol (lib_id "global:C") (at 140.97 101.6 0) (unit 1)
  1931. (in_bom yes) (on_board yes) (fields_autoplaced)
  1932. (uuid 5c648fed-4630-4f71-8428-f6532e5dc991)
  1933. (property "Reference" "C3" (id 0) (at 144.78 100.3299 0)
  1934. (effects (font (size 1.27 1.27)) (justify left))
  1935. )
  1936. (property "Value" "22µF" (id 1) (at 144.78 102.8699 0)
  1937. (effects (font (size 1.27 1.27)) (justify left))
  1938. )
  1939. (property "Footprint" "C:0805" (id 2) (at 141.9352 105.41 0)
  1940. (effects (font (size 1.27 1.27)) hide)
  1941. )
  1942. (property "Datasheet" "" (id 3) (at 140.97 101.6 0))
  1943. (property "Partkeepr" "0622" (id 4) (at 140.97 101.6 0)
  1944. (effects (font (size 1.27 1.27)) hide)
  1945. )
  1946. (pin "1" (uuid f10e3b52-6912-4ac7-8293-fdf0dde2408d))
  1947. (pin "2" (uuid fc8ae59d-6f14-4e7b-aa6d-f8204d6f2457))
  1948. )
  1949. (symbol (lib_id "global:TVS") (at 58.42 99.06 0) (unit 1)
  1950. (in_bom yes) (on_board yes) (fields_autoplaced)
  1951. (uuid 61c004d4-1c00-4308-8f7a-553c0e36297e)
  1952. (property "Reference" "D9" (id 0) (at 62.23 97.1549 0)
  1953. (effects (font (size 1.27 1.27)) (justify left))
  1954. )
  1955. (property "Value" "TVS" (id 1) (at 62.23 99.6949 0)
  1956. (effects (font (size 1.27 1.27)) (justify left))
  1957. )
  1958. (property "Footprint" "D:SMB" (id 2) (at 62.23 100.9649 0)
  1959. (effects (font (size 1.27 1.27)) (justify left) hide)
  1960. )
  1961. (property "Datasheet" "" (id 3) (at 58.42 99.06 90))
  1962. (property "Partkeepr" "1400" (id 4) (at 58.42 99.06 0)
  1963. (effects (font (size 1.27 1.27)) hide)
  1964. )
  1965. (pin "1" (uuid 74230c3c-d718-40fa-96fc-7e5112a7a8fc))
  1966. (pin "2" (uuid 9e19b163-f2aa-437b-bbf9-4e159b80190e))
  1967. )
  1968. (symbol (lib_id "global:N_MOSFET") (at 39.37 63.5 90) (unit 1)
  1969. (in_bom yes) (on_board yes) (fields_autoplaced)
  1970. (uuid 636cff3e-defa-41d6-be19-20bcaccaaa54)
  1971. (property "Reference" "Q5" (id 0) (at 43.18 62.23 90)
  1972. (effects (font (size 1.524 1.524)) (justify right))
  1973. )
  1974. (property "Value" "N_MOSFET" (id 1) (at 43.18 66.04 90)
  1975. (effects (font (size 1.524 1.524)) (justify right))
  1976. )
  1977. (property "Footprint" "U:TO-252" (id 2) (at 39.37 63.5 0)
  1978. (effects (font (size 1.524 1.524)) hide)
  1979. )
  1980. (property "Datasheet" "" (id 3) (at 39.37 63.5 0)
  1981. (effects (font (size 1.524 1.524)) hide)
  1982. )
  1983. (property "Partkeepr" "2007" (id 4) (at 39.37 63.5 0)
  1984. (effects (font (size 1.27 1.27)) hide)
  1985. )
  1986. (pin "1" (uuid e215bb1c-a7ad-4aae-b33f-8069bd0535fe))
  1987. (pin "2" (uuid 51e17d8f-0f0a-400c-8219-0cae168d3aa1))
  1988. (pin "3" (uuid 27d98bf0-4723-4b15-88cb-1252931e194c))
  1989. )
  1990. (symbol (lib_id "global:R") (at 71.12 104.14 270) (unit 1)
  1991. (in_bom yes) (on_board yes)
  1992. (uuid 63f22bcb-433a-417a-961b-6cb50c16005a)
  1993. (property "Reference" "R18" (id 0) (at 69.85 106.68 90)
  1994. (effects (font (size 1.27 1.27)) (justify left))
  1995. )
  1996. (property "Value" "100K" (id 1) (at 68.58 104.14 90)
  1997. (effects (font (size 1.27 1.27)) (justify left))
  1998. )
  1999. (property "Footprint" "R:0805" (id 2) (at 71.12 102.362 90)
  2000. (effects (font (size 1.27 1.27)) hide)
  2001. )
  2002. (property "Datasheet" "" (id 3) (at 71.12 104.14 0))
  2003. (property "Partkeepr" "0916" (id 4) (at 71.12 104.14 0)
  2004. (effects (font (size 1.27 1.27)) hide)
  2005. )
  2006. (pin "1" (uuid 057fb853-5f6c-4689-84aa-a727dc075f28))
  2007. (pin "2" (uuid af9172ce-a988-4c0c-b504-2987fab9c654))
  2008. )
  2009. (symbol (lib_id "global:C") (at 73.66 95.25 0) (unit 1)
  2010. (in_bom yes) (on_board yes)
  2011. (uuid 6713009f-f7cf-440d-93b6-d48ee3822110)
  2012. (property "Reference" "C2" (id 0) (at 74.93 92.71 0)
  2013. (effects (font (size 1.27 1.27)) (justify left))
  2014. )
  2015. (property "Value" "10µF" (id 1) (at 74.93 97.79 0)
  2016. (effects (font (size 1.27 1.27)) (justify left))
  2017. )
  2018. (property "Footprint" "C:0805" (id 2) (at 74.6252 99.06 0)
  2019. (effects (font (size 1.27 1.27)) hide)
  2020. )
  2021. (property "Datasheet" "" (id 3) (at 73.66 95.25 0))
  2022. (property "Partkeepr" "0609" (id 4) (at 73.66 95.25 0)
  2023. (effects (font (size 1.27 1.27)) hide)
  2024. )
  2025. (pin "1" (uuid f0c4cc41-1921-4a41-8b37-4e481f87cbae))
  2026. (pin "2" (uuid a3d3730d-2702-4c6f-be6b-ff8a09edca3e))
  2027. )
  2028. (symbol (lib_id "global:R") (at 132.08 36.83 0) (unit 1)
  2029. (in_bom yes) (on_board yes)
  2030. (uuid 68453239-8878-4140-8302-3602918abd33)
  2031. (property "Reference" "R7" (id 0) (at 133.35 35.56 0)
  2032. (effects (font (size 1.27 1.27)) (justify left))
  2033. )
  2034. (property "Value" "100K" (id 1) (at 132.08 39.37 90)
  2035. (effects (font (size 1.27 1.27)) (justify left))
  2036. )
  2037. (property "Footprint" "R:0805" (id 2) (at 130.302 36.83 90)
  2038. (effects (font (size 1.27 1.27)) hide)
  2039. )
  2040. (property "Datasheet" "" (id 3) (at 132.08 36.83 0))
  2041. (property "Partkeepr" "0916" (id 4) (at 132.08 36.83 0)
  2042. (effects (font (size 1.27 1.27)) hide)
  2043. )
  2044. (pin "1" (uuid 06cc6f08-c4c9-416a-b5f8-d28bffb58716))
  2045. (pin "2" (uuid ff70fc02-06bc-40f1-9897-3452f19f404a))
  2046. )
  2047. (symbol (lib_id "global:D") (at 31.75 52.07 270) (unit 1)
  2048. (in_bom yes) (on_board yes) (fields_autoplaced)
  2049. (uuid 69e99e26-a6f6-4c71-a2e3-812498a61ba7)
  2050. (property "Reference" "D5" (id 0) (at 34.29 50.7618 90)
  2051. (effects (font (size 1.27 1.27)) (justify left))
  2052. )
  2053. (property "Value" "SS32" (id 1) (at 34.29 53.3018 90)
  2054. (effects (font (size 1.27 1.27)) (justify left))
  2055. )
  2056. (property "Footprint" "D:SMC" (id 2) (at 31.75 52.07 0)
  2057. (effects (font (size 1.27 1.27)) hide)
  2058. )
  2059. (property "Datasheet" "" (id 3) (at 31.75 52.07 0))
  2060. (property "Partkeepr" "1306" (id 4) (at 31.75 52.07 0)
  2061. (effects (font (size 1.27 1.27)) hide)
  2062. )
  2063. (pin "1" (uuid 0629eba2-4594-4ddb-9c8a-03a3756dc81b))
  2064. (pin "2" (uuid 94ff8969-b199-49bd-8fc7-942f4b0d20cd))
  2065. )
  2066. (symbol (lib_id "global:C") (at 46.99 182.88 0) (unit 1)
  2067. (in_bom yes) (on_board yes)
  2068. (uuid 777c5661-c5cd-4304-9f83-faa178ac0467)
  2069. (property "Reference" "C5" (id 0) (at 49.911 181.7116 0)
  2070. (effects (font (size 1.27 1.27)) (justify left))
  2071. )
  2072. (property "Value" "100nF" (id 1) (at 49.911 184.023 0)
  2073. (effects (font (size 1.27 1.27)) (justify left))
  2074. )
  2075. (property "Footprint" "C:0805" (id 2) (at 47.9552 186.69 0)
  2076. (effects (font (size 1.27 1.27)) hide)
  2077. )
  2078. (property "Datasheet" "" (id 3) (at 46.99 182.88 0))
  2079. (property "Partkeepr" "0605" (id 4) (at 15.24 231.14 0)
  2080. (effects (font (size 1.27 1.27)) hide)
  2081. )
  2082. (pin "1" (uuid 50f51bee-97fb-4031-92f9-60b5558d3d29))
  2083. (pin "2" (uuid d7803cce-86df-4311-b2de-88f756c31dc4))
  2084. )
  2085. (symbol (lib_id "global:N_MOSFET") (at 39.37 30.48 90) (unit 1)
  2086. (in_bom yes) (on_board yes) (fields_autoplaced)
  2087. (uuid 80d4d556-9395-4c26-9b9e-221b582f1898)
  2088. (property "Reference" "Q1" (id 0) (at 43.18 29.21 90)
  2089. (effects (font (size 1.524 1.524)) (justify right))
  2090. )
  2091. (property "Value" "N_MOSFET" (id 1) (at 43.18 33.02 90)
  2092. (effects (font (size 1.524 1.524)) (justify right))
  2093. )
  2094. (property "Footprint" "U:TO-252" (id 2) (at 39.37 30.48 0)
  2095. (effects (font (size 1.524 1.524)) hide)
  2096. )
  2097. (property "Datasheet" "" (id 3) (at 39.37 30.48 0)
  2098. (effects (font (size 1.524 1.524)) hide)
  2099. )
  2100. (property "Partkeepr" "2007" (id 4) (at 39.37 30.48 0)
  2101. (effects (font (size 1.27 1.27)) hide)
  2102. )
  2103. (pin "1" (uuid 8562e7a7-4be9-45c4-8fca-a382d8934df1))
  2104. (pin "2" (uuid 70e697f3-6853-428d-9560-5eb23540362d))
  2105. (pin "3" (uuid f33820ee-0687-4fef-bc82-17c9ad7a1a01))
  2106. )
  2107. (symbol (lib_id "global:R") (at 128.27 102.87 0) (unit 1)
  2108. (in_bom yes) (on_board yes)
  2109. (uuid 84661d95-ec44-4433-b822-94d7504db147)
  2110. (property "Reference" "R17" (id 0) (at 130.81 101.5999 0)
  2111. (effects (font (size 1.27 1.27)) (justify left))
  2112. )
  2113. (property "Value" "49.9K" (id 1) (at 129.54 104.14 0)
  2114. (effects (font (size 1.27 1.27)) (justify left))
  2115. )
  2116. (property "Footprint" "R:0805" (id 2) (at 126.492 102.87 90)
  2117. (effects (font (size 1.27 1.27)) hide)
  2118. )
  2119. (property "Datasheet" "" (id 3) (at 128.27 102.87 0))
  2120. (property "Partkeepr" "0932" (id 4) (at 128.27 102.87 0)
  2121. (effects (font (size 1.27 1.27)) hide)
  2122. )
  2123. (pin "1" (uuid 539922c7-a6c4-47f3-82a2-8a5047a7a0df))
  2124. (pin "2" (uuid 6762c9b8-5972-4e05-b082-5ff332c0321b))
  2125. )
  2126. (symbol (lib_id "global:R") (at 30.48 69.85 0) (unit 1)
  2127. (in_bom yes) (on_board yes)
  2128. (uuid 857d8169-5977-41e4-9d50-3b9d65f334f6)
  2129. (property "Reference" "R13" (id 0) (at 31.75 68.58 0)
  2130. (effects (font (size 1.27 1.27)) (justify left))
  2131. )
  2132. (property "Value" "100K" (id 1) (at 30.48 72.39 90)
  2133. (effects (font (size 1.27 1.27)) (justify left))
  2134. )
  2135. (property "Footprint" "R:0805" (id 2) (at 28.702 69.85 90)
  2136. (effects (font (size 1.27 1.27)) hide)
  2137. )
  2138. (property "Datasheet" "" (id 3) (at 30.48 69.85 0))
  2139. (property "Partkeepr" "0916" (id 4) (at 30.48 69.85 0)
  2140. (effects (font (size 1.27 1.27)) hide)
  2141. )
  2142. (pin "1" (uuid 98ee792a-240c-4d31-ad35-d6653202b226))
  2143. (pin "2" (uuid b88c91fa-015d-49a5-b62d-48b07c0ec7ee))
  2144. )
  2145. (symbol (lib_id "global:N_MOSFET") (at 191.77 30.48 90) (unit 1)
  2146. (in_bom yes) (on_board yes) (fields_autoplaced)
  2147. (uuid 89f4825b-8992-4768-ae4f-c445f1577b0b)
  2148. (property "Reference" "Q4" (id 0) (at 195.58 29.21 90)
  2149. (effects (font (size 1.524 1.524)) (justify right))
  2150. )
  2151. (property "Value" "N_MOSFET" (id 1) (at 195.58 33.02 90)
  2152. (effects (font (size 1.524 1.524)) (justify right))
  2153. )
  2154. (property "Footprint" "U:TO-252" (id 2) (at 191.77 30.48 0)
  2155. (effects (font (size 1.524 1.524)) hide)
  2156. )
  2157. (property "Datasheet" "" (id 3) (at 191.77 30.48 0)
  2158. (effects (font (size 1.524 1.524)) hide)
  2159. )
  2160. (property "Partkeepr" "2007" (id 4) (at 191.77 30.48 0)
  2161. (effects (font (size 1.27 1.27)) hide)
  2162. )
  2163. (pin "1" (uuid ecf2c15d-ce6e-4802-b05e-acdf8a321367))
  2164. (pin "2" (uuid 8996f23a-ebb4-47ad-a276-af3722e4528f))
  2165. (pin "3" (uuid 2aa8e2a6-4b93-4fa2-af3f-0255f66cf24c))
  2166. )
  2167. (symbol (lib_id "global:INDUCTOR") (at 119.38 97.79 90) (unit 1)
  2168. (in_bom yes) (on_board yes) (fields_autoplaced)
  2169. (uuid 8b616ae9-66ac-4561-9687-81c8072fc680)
  2170. (property "Reference" "L1" (id 0) (at 119.38 91.44 90))
  2171. (property "Value" "4.7µH" (id 1) (at 119.38 93.98 90))
  2172. (property "Footprint" "L:APH0630" (id 2) (at 119.38 97.79 0))
  2173. (property "Datasheet" "" (id 3) (at 119.38 97.79 0))
  2174. (property "Partkeepr" "0805" (id 4) (at 119.38 97.79 0)
  2175. (effects (font (size 1.27 1.27)) hide)
  2176. )
  2177. (pin "1" (uuid 1d7bff79-ebb6-4ab6-bc40-348f2d87ad51))
  2178. (pin "2" (uuid 39b1b26e-b034-402a-b90a-4169c0905d31))
  2179. )
  2180. (symbol (lib_id "global:R") (at 40.64 144.78 0) (unit 1)
  2181. (in_bom yes) (on_board yes)
  2182. (uuid 8e30888a-31fa-431d-8d1b-16c047c91751)
  2183. (property "Reference" "R21" (id 0) (at 42.672 144.78 90))
  2184. (property "Value" "10K" (id 1) (at 40.64 144.78 90))
  2185. (property "Footprint" "R:0805" (id 2) (at 38.862 144.78 90)
  2186. (effects (font (size 1.27 1.27)) hide)
  2187. )
  2188. (property "Datasheet" "" (id 3) (at 40.64 144.78 0))
  2189. (property "Partkeepr" "0910" (id 4) (at 12.7 162.56 0)
  2190. (effects (font (size 1.27 1.27)) hide)
  2191. )
  2192. (pin "1" (uuid 316e2dc9-efbd-49fb-82b4-a66796763b5e))
  2193. (pin "2" (uuid dd5cfae7-161f-4f79-9e8c-dab9d85377d4))
  2194. )
  2195. (symbol (lib_id "global:C") (at 101.6 93.98 0) (unit 1)
  2196. (in_bom yes) (on_board yes) (fields_autoplaced)
  2197. (uuid 8f653806-50f9-4796-8bcb-0d093d94b304)
  2198. (property "Reference" "C1" (id 0) (at 105.41 92.7099 0)
  2199. (effects (font (size 1.27 1.27)) (justify left))
  2200. )
  2201. (property "Value" "10nF" (id 1) (at 105.41 95.2499 0)
  2202. (effects (font (size 1.27 1.27)) (justify left))
  2203. )
  2204. (property "Footprint" "C:0805" (id 2) (at 102.5652 97.79 0)
  2205. (effects (font (size 1.27 1.27)) hide)
  2206. )
  2207. (property "Datasheet" "" (id 3) (at 101.6 93.98 0))
  2208. (property "Partkeepr" "0604" (id 4) (at 101.6 93.98 0)
  2209. (effects (font (size 1.27 1.27)) hide)
  2210. )
  2211. (pin "1" (uuid afca0222-a614-4ab3-a36f-7b9610499562))
  2212. (pin "2" (uuid 88b0d0f5-a3be-4145-bf55-1b15850ae91e))
  2213. )
  2214. (symbol (lib_id "global:R") (at 105.41 152.4 0) (unit 1)
  2215. (in_bom yes) (on_board yes)
  2216. (uuid 91450dd3-5456-415a-9267-a237321b35a2)
  2217. (property "Reference" "R23" (id 0) (at 107.442 152.4 90))
  2218. (property "Value" "10K" (id 1) (at 105.41 152.4 90))
  2219. (property "Footprint" "R:0805" (id 2) (at 103.632 152.4 90)
  2220. (effects (font (size 1.27 1.27)) hide)
  2221. )
  2222. (property "Datasheet" "" (id 3) (at 105.41 152.4 0))
  2223. (property "Partkeepr" "0910" (id 4) (at 27.94 194.31 0)
  2224. (effects (font (size 1.27 1.27)) hide)
  2225. )
  2226. (pin "1" (uuid 1fe52774-ae5c-4976-b5ab-027d9c932e5c))
  2227. (pin "2" (uuid 023a6f45-2600-4c80-8a0e-e878e0da53f6))
  2228. )
  2229. (symbol (lib_id "global:N_MOSFET") (at 90.17 30.48 90) (unit 1)
  2230. (in_bom yes) (on_board yes) (fields_autoplaced)
  2231. (uuid 9748af79-79c9-45f5-b1bd-a65151cfb309)
  2232. (property "Reference" "Q2" (id 0) (at 93.98 29.21 90)
  2233. (effects (font (size 1.524 1.524)) (justify right))
  2234. )
  2235. (property "Value" "N_MOSFET" (id 1) (at 93.98 33.02 90)
  2236. (effects (font (size 1.524 1.524)) (justify right))
  2237. )
  2238. (property "Footprint" "U:TO-252" (id 2) (at 90.17 30.48 0)
  2239. (effects (font (size 1.524 1.524)) hide)
  2240. )
  2241. (property "Datasheet" "" (id 3) (at 90.17 30.48 0)
  2242. (effects (font (size 1.524 1.524)) hide)
  2243. )
  2244. (property "Partkeepr" "2007" (id 4) (at 90.17 30.48 0)
  2245. (effects (font (size 1.27 1.27)) hide)
  2246. )
  2247. (pin "1" (uuid 004e88c3-1da4-4ffb-8755-7a873b65e7a6))
  2248. (pin "2" (uuid 6bcea7e6-0279-4eef-b202-45c128d87eb3))
  2249. (pin "3" (uuid d92e1dad-016c-4a3e-ac1c-7ded450d5fea))
  2250. )
  2251. (symbol (lib_id "conn:CONN_01X02") (at 147.32 19.05 0) (unit 1)
  2252. (in_bom yes) (on_board yes) (fields_autoplaced)
  2253. (uuid 9a91f4f6-b41f-4198-9a66-aa029dc366e5)
  2254. (property "Reference" "M3" (id 0) (at 149.86 17.7799 0)
  2255. (effects (font (size 1.27 1.27)) (justify left))
  2256. )
  2257. (property "Value" "CONN_01X02" (id 1) (at 149.86 20.3199 0)
  2258. (effects (font (size 1.27 1.27)) (justify left))
  2259. )
  2260. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 147.32 19.05 0)
  2261. (effects (font (size 1.27 1.27)) hide)
  2262. )
  2263. (property "Datasheet" "" (id 3) (at 147.32 19.05 0))
  2264. (property "Partkeepr" "0004" (id 4) (at 147.32 19.05 0)
  2265. (effects (font (size 1.27 1.27)) hide)
  2266. )
  2267. (pin "1" (uuid ee893b15-ad35-4551-b167-1ec8f92fc0f8))
  2268. (pin "2" (uuid 6d91d0a9-4fd1-4bd7-98fe-f0be4d75f41e))
  2269. )
  2270. (symbol (lib_id "global:R") (at 99.06 152.4 0) (unit 1)
  2271. (in_bom yes) (on_board yes)
  2272. (uuid 9dabe3d7-5d0d-466c-aaed-82616d0b140d)
  2273. (property "Reference" "R22" (id 0) (at 101.092 152.4 90))
  2274. (property "Value" "10K" (id 1) (at 99.06 152.4 90))
  2275. (property "Footprint" "R:0805" (id 2) (at 97.282 152.4 90)
  2276. (effects (font (size 1.27 1.27)) hide)
  2277. )
  2278. (property "Datasheet" "" (id 3) (at 99.06 152.4 0))
  2279. (property "Partkeepr" "0910" (id 4) (at 24.13 182.88 0)
  2280. (effects (font (size 1.27 1.27)) hide)
  2281. )
  2282. (pin "1" (uuid 59e95bf9-7d43-4973-a32a-f8176da3cbd1))
  2283. (pin "2" (uuid 6c3ff449-7410-4b80-a7a4-544f4c431df0))
  2284. )
  2285. (symbol (lib_id "conn:CONN_01X05") (at 140.97 156.21 0) (unit 1)
  2286. (in_bom yes) (on_board yes) (fields_autoplaced)
  2287. (uuid 9f1409b1-7fe5-46ff-b5b1-2ab13d5146f8)
  2288. (property "Reference" "P2" (id 0) (at 143.51 154.9399 0)
  2289. (effects (font (size 1.27 1.27)) (justify left))
  2290. )
  2291. (property "Value" "CONN_01X05" (id 1) (at 143.51 157.4799 0)
  2292. (effects (font (size 1.27 1.27)) (justify left))
  2293. )
  2294. (property "Footprint" "PinHeader:PinHeader2.54_1X5" (id 2) (at 140.97 156.21 0)
  2295. (effects (font (size 1.27 1.27)) hide)
  2296. )
  2297. (property "Datasheet" "" (id 3) (at 140.97 156.21 0))
  2298. (property "Partkeepr" "0100" (id 4) (at 140.97 156.21 0)
  2299. (effects (font (size 1.27 1.27)) hide)
  2300. )
  2301. (pin "1" (uuid d491c4f0-9c51-4dad-913f-4f7a04cb0b84))
  2302. (pin "2" (uuid a22ad97e-c22b-49c2-bad5-0baf5058a918))
  2303. (pin "3" (uuid 97bc814f-c1f3-43f2-9670-21e3b5b4475b))
  2304. (pin "4" (uuid be1ed2c9-158e-44f9-91ca-0bb877df931d))
  2305. (pin "5" (uuid 2b60bd86-0e91-4e40-a490-91ad56e8e265))
  2306. )
  2307. (symbol (lib_id "global:D") (at 184.15 19.05 270) (unit 1)
  2308. (in_bom yes) (on_board yes) (fields_autoplaced)
  2309. (uuid a36c569a-c7f0-4dc0-842d-9b3dcd968d72)
  2310. (property "Reference" "D4" (id 0) (at 186.69 17.7418 90)
  2311. (effects (font (size 1.27 1.27)) (justify left))
  2312. )
  2313. (property "Value" "SS32" (id 1) (at 186.69 20.2818 90)
  2314. (effects (font (size 1.27 1.27)) (justify left))
  2315. )
  2316. (property "Footprint" "D:SMC" (id 2) (at 184.15 19.05 0)
  2317. (effects (font (size 1.27 1.27)) hide)
  2318. )
  2319. (property "Datasheet" "" (id 3) (at 184.15 19.05 0))
  2320. (property "Partkeepr" "1306" (id 4) (at 184.15 19.05 0)
  2321. (effects (font (size 1.27 1.27)) hide)
  2322. )
  2323. (pin "1" (uuid 455bed85-dd37-4286-8644-1fbc244cb968))
  2324. (pin "2" (uuid 194172df-daa3-4575-8a92-df133a1258cb))
  2325. )
  2326. (symbol (lib_id "global:R") (at 81.28 36.83 0) (unit 1)
  2327. (in_bom yes) (on_board yes)
  2328. (uuid a4266c76-2795-4d92-9dd7-0b8f3dc6ed86)
  2329. (property "Reference" "R6" (id 0) (at 82.55 35.56 0)
  2330. (effects (font (size 1.27 1.27)) (justify left))
  2331. )
  2332. (property "Value" "100K" (id 1) (at 81.28 39.37 90)
  2333. (effects (font (size 1.27 1.27)) (justify left))
  2334. )
  2335. (property "Footprint" "R:0805" (id 2) (at 79.502 36.83 90)
  2336. (effects (font (size 1.27 1.27)) hide)
  2337. )
  2338. (property "Datasheet" "" (id 3) (at 81.28 36.83 0))
  2339. (property "Partkeepr" "0916" (id 4) (at 81.28 36.83 0)
  2340. (effects (font (size 1.27 1.27)) hide)
  2341. )
  2342. (pin "1" (uuid 65359c52-47da-4831-8c35-58e3f281a935))
  2343. (pin "2" (uuid 7eb93646-a05b-40ca-9fdc-f1f6a6f85afb))
  2344. )
  2345. (symbol (lib_id "conn:CONN_01X02") (at 95.25 52.07 0) (unit 1)
  2346. (in_bom yes) (on_board yes) (fields_autoplaced)
  2347. (uuid ac9b4a03-93e7-45ed-beb0-a37b23040369)
  2348. (property "Reference" "M6" (id 0) (at 97.79 50.7999 0)
  2349. (effects (font (size 1.27 1.27)) (justify left))
  2350. )
  2351. (property "Value" "CONN_01X02" (id 1) (at 97.79 53.3399 0)
  2352. (effects (font (size 1.27 1.27)) (justify left))
  2353. )
  2354. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 95.25 52.07 0)
  2355. (effects (font (size 1.27 1.27)) hide)
  2356. )
  2357. (property "Datasheet" "" (id 3) (at 95.25 52.07 0))
  2358. (property "Partkeepr" "0004" (id 4) (at 95.25 52.07 0)
  2359. (effects (font (size 1.27 1.27)) hide)
  2360. )
  2361. (pin "1" (uuid 2a58f7de-cb88-4589-8d66-b386b5209db1))
  2362. (pin "2" (uuid 9837ce4c-fd3d-4240-843c-80d0d29ef858))
  2363. )
  2364. (symbol (lib_id "global:FUSE") (at 45.72 91.44 0) (unit 1)
  2365. (in_bom yes) (on_board yes) (fields_autoplaced)
  2366. (uuid ae88c0bd-fef6-4795-b9fb-6e582a3695b5)
  2367. (property "Reference" "F1" (id 0) (at 45.72 83.82 0))
  2368. (property "Value" "FUSE" (id 1) (at 45.72 86.36 0))
  2369. (property "Footprint" "F:1812" (id 2) (at 45.72 91.44 0)
  2370. (effects (font (size 1.27 1.27)) hide)
  2371. )
  2372. (property "Datasheet" "" (id 3) (at 45.72 91.44 0))
  2373. (property "Partkeepr" "1450" (id 4) (at 45.72 91.44 0)
  2374. (effects (font (size 1.27 1.27)) hide)
  2375. )
  2376. (pin "1" (uuid a04714f2-467d-4566-b86d-fe748c6ec1db))
  2377. (pin "2" (uuid d5b7a171-5128-4c67-a146-d76911f9a535))
  2378. )
  2379. (symbol (lib_id "global:R") (at 34.29 144.78 0) (unit 1)
  2380. (in_bom yes) (on_board yes)
  2381. (uuid af4a861d-9b3f-4fb7-b88b-ac20db198d64)
  2382. (property "Reference" "R20" (id 0) (at 36.322 144.78 90))
  2383. (property "Value" "10K" (id 1) (at 34.29 144.78 90))
  2384. (property "Footprint" "R:0805" (id 2) (at 32.512 144.78 90)
  2385. (effects (font (size 1.27 1.27)) hide)
  2386. )
  2387. (property "Datasheet" "" (id 3) (at 34.29 144.78 0))
  2388. (property "Partkeepr" "0910" (id 4) (at 6.35 167.64 0)
  2389. (effects (font (size 1.27 1.27)) hide)
  2390. )
  2391. (pin "1" (uuid 2438edd9-0e80-49c4-b7bf-f75ed5ea0b20))
  2392. (pin "2" (uuid 7eeb8036-a61b-49ec-8dea-5978b63a29e4))
  2393. )
  2394. (symbol (lib_id "global:C") (at 38.1 182.88 0) (unit 1)
  2395. (in_bom yes) (on_board yes)
  2396. (uuid c312d58c-2723-475d-aac3-dccc64fe6557)
  2397. (property "Reference" "C4" (id 0) (at 38.735 180.34 0)
  2398. (effects (font (size 1.27 1.27)) (justify left))
  2399. )
  2400. (property "Value" "4.7µF" (id 1) (at 38.735 185.42 0)
  2401. (effects (font (size 1.27 1.27)) (justify left))
  2402. )
  2403. (property "Footprint" "C:0805" (id 2) (at 39.0652 186.69 0)
  2404. (effects (font (size 1.27 1.27)) hide)
  2405. )
  2406. (property "Datasheet" "" (id 3) (at 38.1 182.88 0))
  2407. (property "Partkeepr" "0607" (id 4) (at 17.78 360.045 0)
  2408. (effects (font (size 1.27 1.27)) hide)
  2409. )
  2410. (pin "1" (uuid df2f2153-7d8d-4fe8-a4ae-4b7b70a4524c))
  2411. (pin "2" (uuid 85a709a8-1863-47ae-98f3-57a37d4a7005))
  2412. )
  2413. (symbol (lib_id "global:R") (at 30.48 36.83 0) (unit 1)
  2414. (in_bom yes) (on_board yes)
  2415. (uuid c4d46b38-1e7f-4d5d-b4c3-a1ae1e416a9d)
  2416. (property "Reference" "R5" (id 0) (at 31.75 35.56 0)
  2417. (effects (font (size 1.27 1.27)) (justify left))
  2418. )
  2419. (property "Value" "100K" (id 1) (at 30.48 39.37 90)
  2420. (effects (font (size 1.27 1.27)) (justify left))
  2421. )
  2422. (property "Footprint" "R:0805" (id 2) (at 28.702 36.83 90)
  2423. (effects (font (size 1.27 1.27)) hide)
  2424. )
  2425. (property "Datasheet" "" (id 3) (at 30.48 36.83 0))
  2426. (property "Partkeepr" "0916" (id 4) (at 30.48 36.83 0)
  2427. (effects (font (size 1.27 1.27)) hide)
  2428. )
  2429. (pin "1" (uuid 00646eb4-6d94-4602-8263-091a07636798))
  2430. (pin "2" (uuid 79a79887-e18d-46e0-885b-0d46a1f350d6))
  2431. )
  2432. (symbol (lib_id "global:R") (at 80.01 69.85 0) (unit 1)
  2433. (in_bom yes) (on_board yes)
  2434. (uuid c6c9253c-b0fe-4610-b539-f7f1d524323f)
  2435. (property "Reference" "R14" (id 0) (at 81.28 68.58 0)
  2436. (effects (font (size 1.27 1.27)) (justify left))
  2437. )
  2438. (property "Value" "100K" (id 1) (at 80.01 72.39 90)
  2439. (effects (font (size 1.27 1.27)) (justify left))
  2440. )
  2441. (property "Footprint" "R:0805" (id 2) (at 78.232 69.85 90)
  2442. (effects (font (size 1.27 1.27)) hide)
  2443. )
  2444. (property "Datasheet" "" (id 3) (at 80.01 69.85 0))
  2445. (property "Partkeepr" "0916" (id 4) (at 80.01 69.85 0)
  2446. (effects (font (size 1.27 1.27)) hide)
  2447. )
  2448. (pin "1" (uuid 581ca300-94c7-4562-8e24-437945038e12))
  2449. (pin "2" (uuid 11c93a5e-7df4-4f6b-a3ca-8a864e1aace6))
  2450. )
  2451. (symbol (lib_id "global:R") (at 128.27 113.03 0) (unit 1)
  2452. (in_bom yes) (on_board yes) (fields_autoplaced)
  2453. (uuid ca898450-8cf3-4188-a47c-fc248145c9e8)
  2454. (property "Reference" "R19" (id 0) (at 130.81 111.7599 0)
  2455. (effects (font (size 1.27 1.27)) (justify left))
  2456. )
  2457. (property "Value" "16.3K" (id 1) (at 130.81 114.2999 0)
  2458. (effects (font (size 1.27 1.27)) (justify left))
  2459. )
  2460. (property "Footprint" "R:0805" (id 2) (at 126.492 113.03 90)
  2461. (effects (font (size 1.27 1.27)) hide)
  2462. )
  2463. (property "Datasheet" "" (id 3) (at 128.27 113.03 0))
  2464. (property "Partkeepr" "0933" (id 4) (at 128.27 113.03 0)
  2465. (effects (font (size 1.27 1.27)) hide)
  2466. )
  2467. (pin "1" (uuid 173f19e4-79cb-474d-af57-bb567bf91ece))
  2468. (pin "2" (uuid 6ffe155f-ca1e-48c7-a0bf-d6fbcc061222))
  2469. )
  2470. (symbol (lib_id "global:D") (at 81.28 52.07 270) (unit 1)
  2471. (in_bom yes) (on_board yes) (fields_autoplaced)
  2472. (uuid cab530bc-7b81-4c26-ac4a-4af565b24a08)
  2473. (property "Reference" "D6" (id 0) (at 83.82 50.7618 90)
  2474. (effects (font (size 1.27 1.27)) (justify left))
  2475. )
  2476. (property "Value" "SS32" (id 1) (at 83.82 53.3018 90)
  2477. (effects (font (size 1.27 1.27)) (justify left))
  2478. )
  2479. (property "Footprint" "D:SMC" (id 2) (at 81.28 52.07 0)
  2480. (effects (font (size 1.27 1.27)) hide)
  2481. )
  2482. (property "Datasheet" "" (id 3) (at 81.28 52.07 0))
  2483. (property "Partkeepr" "1306" (id 4) (at 81.28 52.07 0)
  2484. (effects (font (size 1.27 1.27)) hide)
  2485. )
  2486. (pin "1" (uuid 94b2d79a-2f12-4866-84dc-d2014b381979))
  2487. (pin "2" (uuid 7d6a26c8-0a11-4baa-b41f-a0a4ae359aac))
  2488. )
  2489. (symbol (lib_id "global:R") (at 176.53 30.48 270) (unit 1)
  2490. (in_bom yes) (on_board yes)
  2491. (uuid cd6fbe07-24ff-4d19-8533-fea5bb9df995)
  2492. (property "Reference" "R4" (id 0) (at 176.53 27.94 90))
  2493. (property "Value" "120" (id 1) (at 176.53 30.48 90))
  2494. (property "Footprint" "R:0805" (id 2) (at 176.53 28.702 90)
  2495. (effects (font (size 1.27 1.27)) hide)
  2496. )
  2497. (property "Datasheet" "" (id 3) (at 176.53 30.48 0))
  2498. (property "Partkeepr" "0911" (id 4) (at 176.53 30.48 0)
  2499. (effects (font (size 1.27 1.27)) hide)
  2500. )
  2501. (pin "1" (uuid de9e256b-72a5-48cb-8012-d2de88cdd1d6))
  2502. (pin "2" (uuid d99021cf-5eb7-45f8-96a2-a6428bc05530))
  2503. )
  2504. (symbol (lib_id "global:R") (at 181.61 69.85 0) (unit 1)
  2505. (in_bom yes) (on_board yes)
  2506. (uuid d08fc6ce-1592-4fce-b5a6-3806f62122ab)
  2507. (property "Reference" "R16" (id 0) (at 182.88 68.58 0)
  2508. (effects (font (size 1.27 1.27)) (justify left))
  2509. )
  2510. (property "Value" "100K" (id 1) (at 181.61 72.39 90)
  2511. (effects (font (size 1.27 1.27)) (justify left))
  2512. )
  2513. (property "Footprint" "R:0805" (id 2) (at 179.832 69.85 90)
  2514. (effects (font (size 1.27 1.27)) hide)
  2515. )
  2516. (property "Datasheet" "" (id 3) (at 181.61 69.85 0))
  2517. (property "Partkeepr" "0916" (id 4) (at 181.61 69.85 0)
  2518. (effects (font (size 1.27 1.27)) hide)
  2519. )
  2520. (pin "1" (uuid 163b7fcd-eea2-48fe-b03e-20637aef0899))
  2521. (pin "2" (uuid a06dd739-45a5-499f-abb3-8c98d6758a08))
  2522. )
  2523. (symbol (lib_id "global:N_MOSFET") (at 190.5 63.5 90) (unit 1)
  2524. (in_bom yes) (on_board yes) (fields_autoplaced)
  2525. (uuid e6c41266-e766-4559-bac1-d54be622b404)
  2526. (property "Reference" "Q8" (id 0) (at 194.31 62.23 90)
  2527. (effects (font (size 1.524 1.524)) (justify right))
  2528. )
  2529. (property "Value" "N_MOSFET" (id 1) (at 194.31 66.04 90)
  2530. (effects (font (size 1.524 1.524)) (justify right))
  2531. )
  2532. (property "Footprint" "U:TO-252" (id 2) (at 190.5 63.5 0)
  2533. (effects (font (size 1.524 1.524)) hide)
  2534. )
  2535. (property "Datasheet" "" (id 3) (at 190.5 63.5 0)
  2536. (effects (font (size 1.524 1.524)) hide)
  2537. )
  2538. (property "Partkeepr" "2007" (id 4) (at 190.5 63.5 0)
  2539. (effects (font (size 1.27 1.27)) hide)
  2540. )
  2541. (pin "1" (uuid 4654a2a7-bb7f-40d0-b286-0dc16b83e8ee))
  2542. (pin "2" (uuid 8ea4762d-1346-42b7-a120-ee65611bae10))
  2543. (pin "3" (uuid c3020add-58a7-4b27-9122-c4d8c43dc235))
  2544. )
  2545. (symbol (lib_id "Module:ESP-12F") (at 64.77 163.83 0) (unit 1)
  2546. (in_bom yes) (on_board yes)
  2547. (uuid ec0376b5-b64f-4c88-a52c-bc3198d3e840)
  2548. (property "Reference" "U2" (id 0) (at 64.77 145.1102 0)
  2549. (effects (font (size 1.524 1.524)))
  2550. )
  2551. (property "Value" "ESP-12F" (id 1) (at 64.77 147.8026 0)
  2552. (effects (font (size 1.524 1.524)))
  2553. )
  2554. (property "Footprint" "Module:ESP-12F" (id 2) (at 64.77 165.1 0)
  2555. (effects (font (size 1.524 1.524)) hide)
  2556. )
  2557. (property "Datasheet" "" (id 3) (at 64.77 165.1 0)
  2558. (effects (font (size 1.524 1.524)) hide)
  2559. )
  2560. (property "Partkeepr" "2800" (id 4) (at 64.77 163.83 0)
  2561. (effects (font (size 1.27 1.27)) hide)
  2562. )
  2563. (pin "1" (uuid 2eae3e3d-ead1-4ce4-ab86-74f0321267de))
  2564. (pin "10" (uuid 9fa3548f-fbf8-4411-bf8e-43a8cbca0e25))
  2565. (pin "11" (uuid dd063726-8aab-4b00-8ee1-c379ee24bfdc))
  2566. (pin "12" (uuid a7f9210d-e550-4cc1-9220-aa6050a52de8))
  2567. (pin "13" (uuid 8eb45e7a-25b0-4928-82ea-de65d9ffbae5))
  2568. (pin "14" (uuid 9cd4409d-298b-4bce-9be3-7bef214f3e4b))
  2569. (pin "15" (uuid 35786073-2cd0-4e04-938f-61648ff5eeb3))
  2570. (pin "16" (uuid b0736914-30eb-49dd-bdbb-e9b09022aa41))
  2571. (pin "17" (uuid 83939822-1ebe-480e-b995-56209f854459))
  2572. (pin "18" (uuid b85fbea4-e7f4-459d-98f1-c55fc3d860d3))
  2573. (pin "19" (uuid ca0bab87-1aa3-417a-bfad-e6e9ba76165b))
  2574. (pin "2" (uuid cc9137ec-8b93-47e4-bd98-02b246acfbc8))
  2575. (pin "20" (uuid 3cd03601-e0be-48ba-b258-3caf2698bb52))
  2576. (pin "21" (uuid af493613-2144-406c-86e4-044b8c28b719))
  2577. (pin "22" (uuid 014e7929-ab3d-464e-ba06-60d42f6c3995))
  2578. (pin "3" (uuid 8aefc0d4-dc87-46b0-8a23-469c55b5ace5))
  2579. (pin "4" (uuid 34839871-7506-4e6d-83db-22276aaf2af0))
  2580. (pin "5" (uuid 005e37ba-e4ba-4fc5-a52d-735ab7e8fa5d))
  2581. (pin "6" (uuid caf915a6-6f05-416b-87f8-e64f6f5b0473))
  2582. (pin "7" (uuid f7bbfd32-b099-419b-883e-11551d92fe34))
  2583. (pin "8" (uuid 6c471b78-ba61-4ba6-8d78-b7eb4dab41fb))
  2584. (pin "9" (uuid 1a95e00e-3284-4512-adb1-eae5287ee9a0))
  2585. )
  2586. (symbol (lib_id "global:D") (at 31.75 19.05 270) (unit 1)
  2587. (in_bom yes) (on_board yes) (fields_autoplaced)
  2588. (uuid ecb42b89-f39c-4603-b13f-6539f1cb5a35)
  2589. (property "Reference" "D1" (id 0) (at 34.29 17.7418 90)
  2590. (effects (font (size 1.27 1.27)) (justify left))
  2591. )
  2592. (property "Value" "SS32" (id 1) (at 34.29 20.2818 90)
  2593. (effects (font (size 1.27 1.27)) (justify left))
  2594. )
  2595. (property "Footprint" "D:SMC" (id 2) (at 31.75 19.05 0)
  2596. (effects (font (size 1.27 1.27)) hide)
  2597. )
  2598. (property "Datasheet" "" (id 3) (at 31.75 19.05 0))
  2599. (property "Partkeepr" "1306" (id 4) (at 31.75 19.05 0)
  2600. (effects (font (size 1.27 1.27)) hide)
  2601. )
  2602. (pin "1" (uuid 17595786-2785-4085-b935-651e4bf66d61))
  2603. (pin "2" (uuid 918f4da9-00d5-4748-aa3c-312ec776bb34))
  2604. )
  2605. (symbol (lib_id "global:R") (at 175.26 63.5 270) (unit 1)
  2606. (in_bom yes) (on_board yes)
  2607. (uuid f63609bf-c579-436c-a139-963dea658304)
  2608. (property "Reference" "R12" (id 0) (at 175.26 60.96 90))
  2609. (property "Value" "120" (id 1) (at 175.26 63.5 90))
  2610. (property "Footprint" "R:0805" (id 2) (at 175.26 61.722 90)
  2611. (effects (font (size 1.27 1.27)) hide)
  2612. )
  2613. (property "Datasheet" "" (id 3) (at 175.26 63.5 0))
  2614. (property "Partkeepr" "0911" (id 4) (at 175.26 63.5 0)
  2615. (effects (font (size 1.27 1.27)) hide)
  2616. )
  2617. (pin "1" (uuid 949ae016-ebbc-4be6-a325-a50e54e6356f))
  2618. (pin "2" (uuid 7de93432-785f-479e-8c09-4aacc8ae1e0f))
  2619. )
  2620. (symbol (lib_id "global:D") (at 82.55 19.05 270) (unit 1)
  2621. (in_bom yes) (on_board yes) (fields_autoplaced)
  2622. (uuid fa1c8450-76bd-46c0-a7a1-dab1f714ec4e)
  2623. (property "Reference" "D2" (id 0) (at 85.09 17.7418 90)
  2624. (effects (font (size 1.27 1.27)) (justify left))
  2625. )
  2626. (property "Value" "SS32" (id 1) (at 85.09 20.2818 90)
  2627. (effects (font (size 1.27 1.27)) (justify left))
  2628. )
  2629. (property "Footprint" "D:SMC" (id 2) (at 82.55 19.05 0)
  2630. (effects (font (size 1.27 1.27)) hide)
  2631. )
  2632. (property "Datasheet" "" (id 3) (at 82.55 19.05 0))
  2633. (property "Partkeepr" "1306" (id 4) (at 82.55 19.05 0)
  2634. (effects (font (size 1.27 1.27)) hide)
  2635. )
  2636. (pin "1" (uuid caacec7c-8d18-42df-a62e-99c77a9e8621))
  2637. (pin "2" (uuid e9ce1029-0697-4b4e-9e0e-61da69dfdf81))
  2638. )
  2639. (symbol (lib_id "global:N_MOSFET") (at 88.9 63.5 90) (unit 1)
  2640. (in_bom yes) (on_board yes) (fields_autoplaced)
  2641. (uuid fca880a1-e68b-46bf-8ab5-ac65e7a22fbc)
  2642. (property "Reference" "Q6" (id 0) (at 92.71 62.23 90)
  2643. (effects (font (size 1.524 1.524)) (justify right))
  2644. )
  2645. (property "Value" "N_MOSFET" (id 1) (at 92.71 66.04 90)
  2646. (effects (font (size 1.524 1.524)) (justify right))
  2647. )
  2648. (property "Footprint" "U:TO-252" (id 2) (at 88.9 63.5 0)
  2649. (effects (font (size 1.524 1.524)) hide)
  2650. )
  2651. (property "Datasheet" "" (id 3) (at 88.9 63.5 0)
  2652. (effects (font (size 1.524 1.524)) hide)
  2653. )
  2654. (property "Partkeepr" "2007" (id 4) (at 88.9 63.5 0)
  2655. (effects (font (size 1.27 1.27)) hide)
  2656. )
  2657. (pin "1" (uuid e679f85f-d848-4c39-8d27-58417c875aee))
  2658. (pin "2" (uuid 3c68986d-9246-46bc-8fe2-8b855faaefd9))
  2659. (pin "3" (uuid b952b5a0-eb01-4859-addd-4944fc4e5df8))
  2660. )
  2661. (symbol (lib_id "conn:CONN_01X02") (at 147.32 52.07 0) (unit 1)
  2662. (in_bom yes) (on_board yes) (fields_autoplaced)
  2663. (uuid fe23a545-ee4b-4e2a-a169-532fcdc83c38)
  2664. (property "Reference" "M7" (id 0) (at 149.86 50.7999 0)
  2665. (effects (font (size 1.27 1.27)) (justify left))
  2666. )
  2667. (property "Value" "CONN_01X02" (id 1) (at 149.86 53.3399 0)
  2668. (effects (font (size 1.27 1.27)) (justify left))
  2669. )
  2670. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 147.32 52.07 0)
  2671. (effects (font (size 1.27 1.27)) hide)
  2672. )
  2673. (property "Datasheet" "" (id 3) (at 147.32 52.07 0))
  2674. (property "Partkeepr" "0004" (id 4) (at 147.32 52.07 0)
  2675. (effects (font (size 1.27 1.27)) hide)
  2676. )
  2677. (pin "1" (uuid f0f134a8-401b-4712-9c77-4288100fd60f))
  2678. (pin "2" (uuid 7b3b3916-5797-4e44-ac1e-8c3280aa4dd7))
  2679. )
  2680. (symbol (lib_id "DIodeInc:AP3211KTR-G1") (at 86.36 97.79 0) (unit 1)
  2681. (in_bom yes) (on_board yes)
  2682. (uuid fe454daa-2828-444c-b4a9-bc549fd09754)
  2683. (property "Reference" "U1" (id 0) (at 88.9 107.95 0)
  2684. (effects (font (size 1.27 1.27)) (justify left))
  2685. )
  2686. (property "Value" "AP3211KTR-G1" (id 1) (at 78.74 87.63 0)
  2687. (effects (font (size 1.27 1.27)) (justify left))
  2688. )
  2689. (property "Footprint" "U:SOT23-6" (id 2) (at 86.36 97.79 0)
  2690. (effects (font (size 1.27 1.27)) hide)
  2691. )
  2692. (property "Datasheet" "" (id 3) (at 86.36 97.79 0)
  2693. (effects (font (size 1.27 1.27)) hide)
  2694. )
  2695. (property "Partkeepr" "1809" (id 4) (at 86.36 97.79 0)
  2696. (effects (font (size 1.27 1.27)) hide)
  2697. )
  2698. (pin "2" (uuid 2cfd9fd8-697b-45f2-be7d-b667ec2f5d37))
  2699. (pin "3" (uuid f8262c1d-d060-42e8-b0bd-902645ce99b8))
  2700. (pin "4" (uuid b5ab9414-42a7-4e79-9b5b-3610bc99115e))
  2701. (pin "5" (uuid 91faf78a-54af-4256-9941-e838d7ddf111))
  2702. (pin "6" (uuid 86be06ff-aa5f-4be8-8df0-615ef8fb042f))
  2703. (pin "1" (uuid 56495514-9c8e-493f-a8b5-89fd9f282891))
  2704. )
  2705. (sheet_instances
  2706. (path "/" (page "1"))
  2707. )
  2708. (symbol_instances
  2709. (path "/8f653806-50f9-4796-8bcb-0d093d94b304"
  2710. (reference "C1") (unit 1) (value "10nF") (footprint "C:0805")
  2711. )
  2712. (path "/6713009f-f7cf-440d-93b6-d48ee3822110"
  2713. (reference "C2") (unit 1) (value "10µF") (footprint "C:0805")
  2714. )
  2715. (path "/5c648fed-4630-4f71-8428-f6532e5dc991"
  2716. (reference "C3") (unit 1) (value "22µF") (footprint "C:0805")
  2717. )
  2718. (path "/c312d58c-2723-475d-aac3-dccc64fe6557"
  2719. (reference "C4") (unit 1) (value "4.7µF") (footprint "C:0805")
  2720. )
  2721. (path "/777c5661-c5cd-4304-9f83-faa178ac0467"
  2722. (reference "C5") (unit 1) (value "100nF") (footprint "C:0805")
  2723. )
  2724. (path "/ecb42b89-f39c-4603-b13f-6539f1cb5a35"
  2725. (reference "D1") (unit 1) (value "SS32") (footprint "D:SMC")
  2726. )
  2727. (path "/fa1c8450-76bd-46c0-a7a1-dab1f714ec4e"
  2728. (reference "D2") (unit 1) (value "SS32") (footprint "D:SMC")
  2729. )
  2730. (path "/0e04617a-3a28-45c3-92cb-24168d4ab405"
  2731. (reference "D3") (unit 1) (value "SS32") (footprint "D:SMC")
  2732. )
  2733. (path "/a36c569a-c7f0-4dc0-842d-9b3dcd968d72"
  2734. (reference "D4") (unit 1) (value "SS32") (footprint "D:SMC")
  2735. )
  2736. (path "/69e99e26-a6f6-4c71-a2e3-812498a61ba7"
  2737. (reference "D5") (unit 1) (value "SS32") (footprint "D:SMC")
  2738. )
  2739. (path "/cab530bc-7b81-4c26-ac4a-4af565b24a08"
  2740. (reference "D6") (unit 1) (value "SS32") (footprint "D:SMC")
  2741. )
  2742. (path "/356fe18f-0750-4ec2-a2eb-39b783f2780c"
  2743. (reference "D7") (unit 1) (value "SS32") (footprint "D:SMC")
  2744. )
  2745. (path "/50cf8ca7-f343-4e25-8039-bfb9792c2fad"
  2746. (reference "D8") (unit 1) (value "SS32") (footprint "D:SMC")
  2747. )
  2748. (path "/61c004d4-1c00-4308-8f7a-553c0e36297e"
  2749. (reference "D9") (unit 1) (value "TVS") (footprint "D:SMB")
  2750. )
  2751. (path "/19577703-7dca-4312-93b8-9d8b4e107d29"
  2752. (reference "D10") (unit 1) (value "D") (footprint "D:SOD-123")
  2753. )
  2754. (path "/ae88c0bd-fef6-4795-b9fb-6e582a3695b5"
  2755. (reference "F1") (unit 1) (value "FUSE") (footprint "F:1812")
  2756. )
  2757. (path "/8b616ae9-66ac-4561-9687-81c8072fc680"
  2758. (reference "L1") (unit 1) (value "4.7µH") (footprint "L:APH0630")
  2759. )
  2760. (path "/06b7ea69-bc47-47e6-8b91-d06bd4a07413"
  2761. (reference "M1") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
  2762. )
  2763. (path "/59ec6108-a3d7-46fa-8055-6ac4148e77fa"
  2764. (reference "M2") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
  2765. )
  2766. (path "/9a91f4f6-b41f-4198-9a66-aa029dc366e5"
  2767. (reference "M3") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
  2768. )
  2769. (path "/02a3c444-66a0-4d39-b8e2-54f14fff513d"
  2770. (reference "M4") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
  2771. )
  2772. (path "/49d084ac-26c2-4c58-876a-296bf45ef11a"
  2773. (reference "M5") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
  2774. )
  2775. (path "/ac9b4a03-93e7-45ed-beb0-a37b23040369"
  2776. (reference "M6") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
  2777. )
  2778. (path "/fe23a545-ee4b-4e2a-a169-532fcdc83c38"
  2779. (reference "M7") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
  2780. )
  2781. (path "/01766516-c2eb-4356-8bf2-8b05434cf46c"
  2782. (reference "M8") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
  2783. )
  2784. (path "/0efe519c-39a6-42ea-8084-dd5228ba5014"
  2785. (reference "P1") (unit 1) (value "CONN_01X02") (footprint "Connector:DC_Jack")
  2786. )
  2787. (path "/9f1409b1-7fe5-46ff-b5b1-2ab13d5146f8"
  2788. (reference "P2") (unit 1) (value "CONN_01X05") (footprint "PinHeader:PinHeader2.54_1X5")
  2789. )
  2790. (path "/80d4d556-9395-4c26-9b9e-221b582f1898"
  2791. (reference "Q1") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
  2792. )
  2793. (path "/9748af79-79c9-45f5-b1bd-a65151cfb309"
  2794. (reference "Q2") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
  2795. )
  2796. (path "/567b26d4-cc78-4aa9-9ca2-22fa5ef88415"
  2797. (reference "Q3") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
  2798. )
  2799. (path "/89f4825b-8992-4768-ae4f-c445f1577b0b"
  2800. (reference "Q4") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
  2801. )
  2802. (path "/636cff3e-defa-41d6-be19-20bcaccaaa54"
  2803. (reference "Q5") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
  2804. )
  2805. (path "/fca880a1-e68b-46bf-8ab5-ac65e7a22fbc"
  2806. (reference "Q6") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
  2807. )
  2808. (path "/5619995d-93b6-4094-bb0c-5cbaf730820b"
  2809. (reference "Q7") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
  2810. )
  2811. (path "/e6c41266-e766-4559-bac1-d54be622b404"
  2812. (reference "Q8") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
  2813. )
  2814. (path "/214861b3-04c6-422b-b952-f3ef4077e6bf"
  2815. (reference "R1") (unit 1) (value "120") (footprint "R:0805")
  2816. )
  2817. (path "/26a1d436-2047-49bb-a50a-62c63abb206c"
  2818. (reference "R2") (unit 1) (value "120") (footprint "R:0805")
  2819. )
  2820. (path "/116eaacd-2f68-4a4f-91d5-3d46ea099e00"
  2821. (reference "R3") (unit 1) (value "120") (footprint "R:0805")
  2822. )
  2823. (path "/cd6fbe07-24ff-4d19-8533-fea5bb9df995"
  2824. (reference "R4") (unit 1) (value "120") (footprint "R:0805")
  2825. )
  2826. (path "/c4d46b38-1e7f-4d5d-b4c3-a1ae1e416a9d"
  2827. (reference "R5") (unit 1) (value "100K") (footprint "R:0805")
  2828. )
  2829. (path "/a4266c76-2795-4d92-9dd7-0b8f3dc6ed86"
  2830. (reference "R6") (unit 1) (value "100K") (footprint "R:0805")
  2831. )
  2832. (path "/68453239-8878-4140-8302-3602918abd33"
  2833. (reference "R7") (unit 1) (value "100K") (footprint "R:0805")
  2834. )
  2835. (path "/3ceb7a8c-f767-4229-a6ca-2f70fa951d55"
  2836. (reference "R8") (unit 1) (value "100K") (footprint "R:0805")
  2837. )
  2838. (path "/0c049cdb-4255-4ceb-bb39-7e892ca9a99b"
  2839. (reference "R9") (unit 1) (value "120") (footprint "R:0805")
  2840. )
  2841. (path "/587ebfb2-6049-46bd-a461-19295f6d8c0f"
  2842. (reference "R10") (unit 1) (value "120") (footprint "R:0805")
  2843. )
  2844. (path "/36567b2e-675c-4410-8751-c28054f851a0"
  2845. (reference "R11") (unit 1) (value "120") (footprint "R:0805")
  2846. )
  2847. (path "/f63609bf-c579-436c-a139-963dea658304"
  2848. (reference "R12") (unit 1) (value "120") (footprint "R:0805")
  2849. )
  2850. (path "/857d8169-5977-41e4-9d50-3b9d65f334f6"
  2851. (reference "R13") (unit 1) (value "100K") (footprint "R:0805")
  2852. )
  2853. (path "/c6c9253c-b0fe-4610-b539-f7f1d524323f"
  2854. (reference "R14") (unit 1) (value "100K") (footprint "R:0805")
  2855. )
  2856. (path "/55b9d5ef-5f52-4f3f-89e7-5d040ac9d5d1"
  2857. (reference "R15") (unit 1) (value "100K") (footprint "R:0805")
  2858. )
  2859. (path "/d08fc6ce-1592-4fce-b5a6-3806f62122ab"
  2860. (reference "R16") (unit 1) (value "100K") (footprint "R:0805")
  2861. )
  2862. (path "/84661d95-ec44-4433-b822-94d7504db147"
  2863. (reference "R17") (unit 1) (value "49.9K") (footprint "R:0805")
  2864. )
  2865. (path "/63f22bcb-433a-417a-961b-6cb50c16005a"
  2866. (reference "R18") (unit 1) (value "100K") (footprint "R:0805")
  2867. )
  2868. (path "/ca898450-8cf3-4188-a47c-fc248145c9e8"
  2869. (reference "R19") (unit 1) (value "16.3K") (footprint "R:0805")
  2870. )
  2871. (path "/af4a861d-9b3f-4fb7-b88b-ac20db198d64"
  2872. (reference "R20") (unit 1) (value "10K") (footprint "R:0805")
  2873. )
  2874. (path "/8e30888a-31fa-431d-8d1b-16c047c91751"
  2875. (reference "R21") (unit 1) (value "10K") (footprint "R:0805")
  2876. )
  2877. (path "/9dabe3d7-5d0d-466c-aaed-82616d0b140d"
  2878. (reference "R22") (unit 1) (value "10K") (footprint "R:0805")
  2879. )
  2880. (path "/91450dd3-5456-415a-9267-a237321b35a2"
  2881. (reference "R23") (unit 1) (value "10K") (footprint "R:0805")
  2882. )
  2883. (path "/fe454daa-2828-444c-b4a9-bc549fd09754"
  2884. (reference "U1") (unit 1) (value "AP3211KTR-G1") (footprint "U:SOT23-6")
  2885. )
  2886. (path "/ec0376b5-b64f-4c88-a52c-bc3198d3e840"
  2887. (reference "U2") (unit 1) (value "ESP-12F") (footprint "Module:ESP-12F")
  2888. )
  2889. )
  2890. )