esp32.kicad_sch 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 7caf98e4-1466-4c74-8252-9e06859f5812)
  3. (paper "A4")
  4. (title_block
  5. (title "MAX80")
  6. (date "2021-02-22")
  7. (rev "0.01")
  8. (company "Peter o Per")
  9. )
  10. (lib_symbols
  11. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  12. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  13. (effects (font (size 1.27 1.27)) (justify left))
  14. )
  15. (property "Value" "Device_C_Small" (id 1) (at 0.254 -2.032 0)
  16. (effects (font (size 1.27 1.27)) (justify left))
  17. )
  18. (property "Footprint" "" (id 2) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "Datasheet" "" (id 3) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_fp_filters" "C_*" (id 4) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (symbol "C_Small_0_1"
  28. (polyline
  29. (pts
  30. (xy -1.524 -0.508)
  31. (xy 1.524 -0.508)
  32. )
  33. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  34. (fill (type none))
  35. )
  36. (polyline
  37. (pts
  38. (xy -1.524 0.508)
  39. (xy 1.524 0.508)
  40. )
  41. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  42. (fill (type none))
  43. )
  44. )
  45. (symbol "C_Small_1_1"
  46. (pin passive line (at 0 2.54 270) (length 2.032)
  47. (name "~" (effects (font (size 1.27 1.27))))
  48. (number "1" (effects (font (size 1.27 1.27))))
  49. )
  50. (pin passive line (at 0 -2.54 90) (length 2.032)
  51. (name "~" (effects (font (size 1.27 1.27))))
  52. (number "2" (effects (font (size 1.27 1.27))))
  53. )
  54. )
  55. )
  56. (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  57. (property "Reference" "D" (id 0) (at 0 2.54 0)
  58. (effects (font (size 1.27 1.27)))
  59. )
  60. (property "Value" "Device_D_Schottky" (id 1) (at 0 -2.54 0)
  61. (effects (font (size 1.27 1.27)))
  62. )
  63. (property "Footprint" "" (id 2) (at 0 0 0)
  64. (effects (font (size 1.27 1.27)) hide)
  65. )
  66. (property "Datasheet" "" (id 3) (at 0 0 0)
  67. (effects (font (size 1.27 1.27)) hide)
  68. )
  69. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 4) (at 0 0 0)
  70. (effects (font (size 1.27 1.27)) hide)
  71. )
  72. (symbol "D_Schottky_0_1"
  73. (polyline
  74. (pts
  75. (xy 1.27 0)
  76. (xy -1.27 0)
  77. )
  78. (stroke (width 0) (type default) (color 0 0 0 0))
  79. (fill (type none))
  80. )
  81. (polyline
  82. (pts
  83. (xy 1.27 1.27)
  84. (xy 1.27 -1.27)
  85. (xy -1.27 0)
  86. (xy 1.27 1.27)
  87. )
  88. (stroke (width 0.254) (type default) (color 0 0 0 0))
  89. (fill (type none))
  90. )
  91. (polyline
  92. (pts
  93. (xy -1.905 0.635)
  94. (xy -1.905 1.27)
  95. (xy -1.27 1.27)
  96. (xy -1.27 -1.27)
  97. (xy -0.635 -1.27)
  98. (xy -0.635 -0.635)
  99. )
  100. (stroke (width 0.254) (type default) (color 0 0 0 0))
  101. (fill (type none))
  102. )
  103. )
  104. (symbol "D_Schottky_1_1"
  105. (pin passive line (at -3.81 0 0) (length 2.54)
  106. (name "K" (effects (font (size 1.27 1.27))))
  107. (number "1" (effects (font (size 1.27 1.27))))
  108. )
  109. (pin passive line (at 3.81 0 180) (length 2.54)
  110. (name "A" (effects (font (size 1.27 1.27))))
  111. (number "2" (effects (font (size 1.27 1.27))))
  112. )
  113. )
  114. )
  115. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  116. (property "Reference" "D" (id 0) (at 0 2.54 0)
  117. (effects (font (size 1.27 1.27)))
  118. )
  119. (property "Value" "Device_LED" (id 1) (at 0 -2.54 0)
  120. (effects (font (size 1.27 1.27)))
  121. )
  122. (property "Footprint" "" (id 2) (at 0 0 0)
  123. (effects (font (size 1.27 1.27)) hide)
  124. )
  125. (property "Datasheet" "" (id 3) (at 0 0 0)
  126. (effects (font (size 1.27 1.27)) hide)
  127. )
  128. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 4) (at 0 0 0)
  129. (effects (font (size 1.27 1.27)) hide)
  130. )
  131. (symbol "LED_0_1"
  132. (polyline
  133. (pts
  134. (xy -1.27 -1.27)
  135. (xy -1.27 1.27)
  136. )
  137. (stroke (width 0.254) (type default) (color 0 0 0 0))
  138. (fill (type none))
  139. )
  140. (polyline
  141. (pts
  142. (xy -1.27 0)
  143. (xy 1.27 0)
  144. )
  145. (stroke (width 0) (type default) (color 0 0 0 0))
  146. (fill (type none))
  147. )
  148. (polyline
  149. (pts
  150. (xy 1.27 -1.27)
  151. (xy 1.27 1.27)
  152. (xy -1.27 0)
  153. (xy 1.27 -1.27)
  154. )
  155. (stroke (width 0.254) (type default) (color 0 0 0 0))
  156. (fill (type none))
  157. )
  158. (polyline
  159. (pts
  160. (xy -3.048 -0.762)
  161. (xy -4.572 -2.286)
  162. (xy -3.81 -2.286)
  163. (xy -4.572 -2.286)
  164. (xy -4.572 -1.524)
  165. )
  166. (stroke (width 0) (type default) (color 0 0 0 0))
  167. (fill (type none))
  168. )
  169. (polyline
  170. (pts
  171. (xy -1.778 -0.762)
  172. (xy -3.302 -2.286)
  173. (xy -2.54 -2.286)
  174. (xy -3.302 -2.286)
  175. (xy -3.302 -1.524)
  176. )
  177. (stroke (width 0) (type default) (color 0 0 0 0))
  178. (fill (type none))
  179. )
  180. )
  181. (symbol "LED_1_1"
  182. (pin passive line (at -3.81 0 0) (length 2.54)
  183. (name "K" (effects (font (size 1.27 1.27))))
  184. (number "1" (effects (font (size 1.27 1.27))))
  185. )
  186. (pin passive line (at 3.81 0 180) (length 2.54)
  187. (name "A" (effects (font (size 1.27 1.27))))
  188. (number "2" (effects (font (size 1.27 1.27))))
  189. )
  190. )
  191. )
  192. (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  193. (property "Reference" "F" (id 0) (at -2.54 0 90)
  194. (effects (font (size 1.27 1.27)))
  195. )
  196. (property "Value" "Device_Polyfuse" (id 1) (at 2.54 0 90)
  197. (effects (font (size 1.27 1.27)))
  198. )
  199. (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
  200. (effects (font (size 1.27 1.27)) (justify left) hide)
  201. )
  202. (property "Datasheet" "" (id 3) (at 0 0 0)
  203. (effects (font (size 1.27 1.27)) hide)
  204. )
  205. (property "ki_fp_filters" "*polyfuse* *PTC*" (id 4) (at 0 0 0)
  206. (effects (font (size 1.27 1.27)) hide)
  207. )
  208. (symbol "Polyfuse_0_1"
  209. (rectangle (start -0.762 2.54) (end 0.762 -2.54)
  210. (stroke (width 0.254) (type default) (color 0 0 0 0))
  211. (fill (type none))
  212. )
  213. (polyline
  214. (pts
  215. (xy 0 2.54)
  216. (xy 0 -2.54)
  217. )
  218. (stroke (width 0) (type default) (color 0 0 0 0))
  219. (fill (type none))
  220. )
  221. (polyline
  222. (pts
  223. (xy -1.524 2.54)
  224. (xy -1.524 1.524)
  225. (xy 1.524 -1.524)
  226. (xy 1.524 -2.54)
  227. )
  228. (stroke (width 0) (type default) (color 0 0 0 0))
  229. (fill (type none))
  230. )
  231. )
  232. (symbol "Polyfuse_1_1"
  233. (pin passive line (at 0 3.81 270) (length 1.27)
  234. (name "~" (effects (font (size 1.27 1.27))))
  235. (number "1" (effects (font (size 1.27 1.27))))
  236. )
  237. (pin passive line (at 0 -3.81 90) (length 1.27)
  238. (name "~" (effects (font (size 1.27 1.27))))
  239. (number "2" (effects (font (size 1.27 1.27))))
  240. )
  241. )
  242. )
  243. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  244. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  245. (effects (font (size 1.27 1.27)) (justify left))
  246. )
  247. (property "Value" "Device_R_Small" (id 1) (at 0.762 -1.016 0)
  248. (effects (font (size 1.27 1.27)) (justify left))
  249. )
  250. (property "Footprint" "" (id 2) (at 0 0 0)
  251. (effects (font (size 1.27 1.27)) hide)
  252. )
  253. (property "Datasheet" "" (id 3) (at 0 0 0)
  254. (effects (font (size 1.27 1.27)) hide)
  255. )
  256. (property "ki_fp_filters" "R_*" (id 4) (at 0 0 0)
  257. (effects (font (size 1.27 1.27)) hide)
  258. )
  259. (symbol "R_Small_0_1"
  260. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  261. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  262. (fill (type none))
  263. )
  264. )
  265. (symbol "R_Small_1_1"
  266. (pin passive line (at 0 2.54 270) (length 0.762)
  267. (name "~" (effects (font (size 1.27 1.27))))
  268. (number "1" (effects (font (size 1.27 1.27))))
  269. )
  270. (pin passive line (at 0 -2.54 90) (length 0.762)
  271. (name "~" (effects (font (size 1.27 1.27))))
  272. (number "2" (effects (font (size 1.27 1.27))))
  273. )
  274. )
  275. )
  276. (symbol "Power_Protection:USBLC6-2SC6" (pin_names hide) (in_bom yes) (on_board yes)
  277. (property "Reference" "U" (id 0) (at 2.54 8.89 0)
  278. (effects (font (size 1.27 1.27)) (justify left))
  279. )
  280. (property "Value" "Power_Protection_USBLC6-2SC6" (id 1) (at 2.54 -8.89 0)
  281. (effects (font (size 1.27 1.27)) (justify left))
  282. )
  283. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 0 -12.7 0)
  284. (effects (font (size 1.27 1.27)) hide)
  285. )
  286. (property "Datasheet" "" (id 3) (at 5.08 8.89 0)
  287. (effects (font (size 1.27 1.27)) hide)
  288. )
  289. (property "ki_fp_filters" "SOT?23*" (id 4) (at 0 0 0)
  290. (effects (font (size 1.27 1.27)) hide)
  291. )
  292. (symbol "USBLC6-2SC6_0_1"
  293. (rectangle (start -7.62 -7.62) (end 7.62 7.62)
  294. (stroke (width 0.254) (type default) (color 0 0 0 0))
  295. (fill (type background))
  296. )
  297. (circle (center -5.08 0) (radius 0.254)
  298. (stroke (width 0) (type default) (color 0 0 0 0))
  299. (fill (type outline))
  300. )
  301. (circle (center -2.54 0) (radius 0.254)
  302. (stroke (width 0) (type default) (color 0 0 0 0))
  303. (fill (type outline))
  304. )
  305. (rectangle (start -2.54 6.35) (end 2.54 -6.35)
  306. (stroke (width 0) (type default) (color 0 0 0 0))
  307. (fill (type none))
  308. )
  309. (circle (center 0 -6.35) (radius 0.254)
  310. (stroke (width 0) (type default) (color 0 0 0 0))
  311. (fill (type outline))
  312. )
  313. (polyline
  314. (pts
  315. (xy -5.08 -2.54)
  316. (xy -7.62 -2.54)
  317. )
  318. (stroke (width 0) (type default) (color 0 0 0 0))
  319. (fill (type none))
  320. )
  321. (polyline
  322. (pts
  323. (xy -5.08 0)
  324. (xy -5.08 -2.54)
  325. )
  326. (stroke (width 0) (type default) (color 0 0 0 0))
  327. (fill (type none))
  328. )
  329. (polyline
  330. (pts
  331. (xy -5.08 2.54)
  332. (xy -7.62 2.54)
  333. )
  334. (stroke (width 0) (type default) (color 0 0 0 0))
  335. (fill (type none))
  336. )
  337. (polyline
  338. (pts
  339. (xy -1.524 -2.794)
  340. (xy -3.556 -2.794)
  341. )
  342. (stroke (width 0) (type default) (color 0 0 0 0))
  343. (fill (type none))
  344. )
  345. (polyline
  346. (pts
  347. (xy -1.524 4.826)
  348. (xy -3.556 4.826)
  349. )
  350. (stroke (width 0) (type default) (color 0 0 0 0))
  351. (fill (type none))
  352. )
  353. (polyline
  354. (pts
  355. (xy 0 -7.62)
  356. (xy 0 -6.35)
  357. )
  358. (stroke (width 0) (type default) (color 0 0 0 0))
  359. (fill (type none))
  360. )
  361. (polyline
  362. (pts
  363. (xy 0 -6.35)
  364. (xy 0 1.27)
  365. )
  366. (stroke (width 0) (type default) (color 0 0 0 0))
  367. (fill (type none))
  368. )
  369. (polyline
  370. (pts
  371. (xy 0 1.27)
  372. (xy 0 6.35)
  373. )
  374. (stroke (width 0) (type default) (color 0 0 0 0))
  375. (fill (type none))
  376. )
  377. (polyline
  378. (pts
  379. (xy 0 6.35)
  380. (xy 0 7.62)
  381. )
  382. (stroke (width 0) (type default) (color 0 0 0 0))
  383. (fill (type none))
  384. )
  385. (polyline
  386. (pts
  387. (xy 1.524 -2.794)
  388. (xy 3.556 -2.794)
  389. )
  390. (stroke (width 0) (type default) (color 0 0 0 0))
  391. (fill (type none))
  392. )
  393. (polyline
  394. (pts
  395. (xy 1.524 4.826)
  396. (xy 3.556 4.826)
  397. )
  398. (stroke (width 0) (type default) (color 0 0 0 0))
  399. (fill (type none))
  400. )
  401. (polyline
  402. (pts
  403. (xy 5.08 -2.54)
  404. (xy 7.62 -2.54)
  405. )
  406. (stroke (width 0) (type default) (color 0 0 0 0))
  407. (fill (type none))
  408. )
  409. (polyline
  410. (pts
  411. (xy 5.08 0)
  412. (xy 5.08 -2.54)
  413. )
  414. (stroke (width 0) (type default) (color 0 0 0 0))
  415. (fill (type none))
  416. )
  417. (polyline
  418. (pts
  419. (xy 5.08 2.54)
  420. (xy 7.62 2.54)
  421. )
  422. (stroke (width 0) (type default) (color 0 0 0 0))
  423. (fill (type none))
  424. )
  425. (polyline
  426. (pts
  427. (xy -2.54 0)
  428. (xy -5.08 0)
  429. (xy -5.08 2.54)
  430. )
  431. (stroke (width 0) (type default) (color 0 0 0 0))
  432. (fill (type none))
  433. )
  434. (polyline
  435. (pts
  436. (xy 2.54 0)
  437. (xy 5.08 0)
  438. (xy 5.08 2.54)
  439. )
  440. (stroke (width 0) (type default) (color 0 0 0 0))
  441. (fill (type none))
  442. )
  443. (polyline
  444. (pts
  445. (xy -3.556 -4.826)
  446. (xy -1.524 -4.826)
  447. (xy -2.54 -2.794)
  448. (xy -3.556 -4.826)
  449. )
  450. (stroke (width 0) (type default) (color 0 0 0 0))
  451. (fill (type none))
  452. )
  453. (polyline
  454. (pts
  455. (xy -3.556 2.794)
  456. (xy -1.524 2.794)
  457. (xy -2.54 4.826)
  458. (xy -3.556 2.794)
  459. )
  460. (stroke (width 0) (type default) (color 0 0 0 0))
  461. (fill (type none))
  462. )
  463. (polyline
  464. (pts
  465. (xy -1.016 -1.016)
  466. (xy 1.016 -1.016)
  467. (xy 0 1.016)
  468. (xy -1.016 -1.016)
  469. )
  470. (stroke (width 0) (type default) (color 0 0 0 0))
  471. (fill (type none))
  472. )
  473. (polyline
  474. (pts
  475. (xy 1.016 1.016)
  476. (xy 0.762 1.016)
  477. (xy -1.016 1.016)
  478. (xy -1.016 0.508)
  479. )
  480. (stroke (width 0) (type default) (color 0 0 0 0))
  481. (fill (type none))
  482. )
  483. (polyline
  484. (pts
  485. (xy 3.556 -4.826)
  486. (xy 1.524 -4.826)
  487. (xy 2.54 -2.794)
  488. (xy 3.556 -4.826)
  489. )
  490. (stroke (width 0) (type default) (color 0 0 0 0))
  491. (fill (type none))
  492. )
  493. (polyline
  494. (pts
  495. (xy 3.556 2.794)
  496. (xy 1.524 2.794)
  497. (xy 2.54 4.826)
  498. (xy 3.556 2.794)
  499. )
  500. (stroke (width 0) (type default) (color 0 0 0 0))
  501. (fill (type none))
  502. )
  503. (circle (center 0 6.35) (radius 0.254)
  504. (stroke (width 0) (type default) (color 0 0 0 0))
  505. (fill (type outline))
  506. )
  507. (circle (center 2.54 0) (radius 0.254)
  508. (stroke (width 0) (type default) (color 0 0 0 0))
  509. (fill (type outline))
  510. )
  511. (circle (center 5.08 0) (radius 0.254)
  512. (stroke (width 0) (type default) (color 0 0 0 0))
  513. (fill (type outline))
  514. )
  515. )
  516. (symbol "USBLC6-2SC6_1_1"
  517. (pin passive line (at -10.16 -2.54 0) (length 2.54)
  518. (name "I/O1" (effects (font (size 1.27 1.27))))
  519. (number "1" (effects (font (size 1.27 1.27))))
  520. )
  521. (pin passive line (at 0 -10.16 90) (length 2.54)
  522. (name "GND" (effects (font (size 1.27 1.27))))
  523. (number "2" (effects (font (size 1.27 1.27))))
  524. )
  525. (pin passive line (at 10.16 -2.54 180) (length 2.54)
  526. (name "I/O2" (effects (font (size 1.27 1.27))))
  527. (number "3" (effects (font (size 1.27 1.27))))
  528. )
  529. (pin passive line (at 10.16 2.54 180) (length 2.54)
  530. (name "I/O2" (effects (font (size 1.27 1.27))))
  531. (number "4" (effects (font (size 1.27 1.27))))
  532. )
  533. (pin passive line (at 0 10.16 270) (length 2.54)
  534. (name "VBUS" (effects (font (size 1.27 1.27))))
  535. (number "5" (effects (font (size 1.27 1.27))))
  536. )
  537. (pin passive line (at -10.16 2.54 0) (length 2.54)
  538. (name "I/O1" (effects (font (size 1.27 1.27))))
  539. (number "6" (effects (font (size 1.27 1.27))))
  540. )
  541. )
  542. )
  543. (symbol "RF_Module:ESP32-S2-WROVER-I" (in_bom yes) (on_board yes)
  544. (property "Reference" "U" (id 0) (at -12.7 29.21 0)
  545. (effects (font (size 1.27 1.27)) (justify left))
  546. )
  547. (property "Value" "RF_Module_ESP32-S2-WROVER-I" (id 1) (at 2.54 29.21 0)
  548. (effects (font (size 1.27 1.27)) (justify left))
  549. )
  550. (property "Footprint" "RF_Module:ESP32-S2-WROVER" (id 2) (at 19.05 -29.21 0)
  551. (effects (font (size 1.27 1.27)) hide)
  552. )
  553. (property "Datasheet" "" (id 3) (at -7.62 -20.32 0)
  554. (effects (font (size 1.27 1.27)) hide)
  555. )
  556. (property "ki_fp_filters" "ESP32?S2?WROVER*" (id 4) (at 0 0 0)
  557. (effects (font (size 1.27 1.27)) hide)
  558. )
  559. (symbol "ESP32-S2-WROVER-I_0_1"
  560. (rectangle (start -12.7 27.94) (end 12.7 -25.4)
  561. (stroke (width 0.254) (type default) (color 0 0 0 0))
  562. (fill (type background))
  563. )
  564. )
  565. (symbol "ESP32-S2-WROVER-I_1_1"
  566. (pin power_in line (at 0 -27.94 90) (length 2.54)
  567. (name "GND" (effects (font (size 1.27 1.27))))
  568. (number "1" (effects (font (size 1.27 1.27))))
  569. )
  570. (pin bidirectional line (at -15.24 5.08 0) (length 2.54)
  571. (name "IO07" (effects (font (size 1.27 1.27))))
  572. (number "10" (effects (font (size 1.27 1.27))))
  573. )
  574. (pin bidirectional line (at -15.24 2.54 0) (length 2.54)
  575. (name "IO08" (effects (font (size 1.27 1.27))))
  576. (number "11" (effects (font (size 1.27 1.27))))
  577. )
  578. (pin bidirectional line (at -15.24 0 0) (length 2.54)
  579. (name "IO09" (effects (font (size 1.27 1.27))))
  580. (number "12" (effects (font (size 1.27 1.27))))
  581. )
  582. (pin bidirectional line (at -15.24 -2.54 0) (length 2.54)
  583. (name "IO10" (effects (font (size 1.27 1.27))))
  584. (number "13" (effects (font (size 1.27 1.27))))
  585. )
  586. (pin bidirectional line (at -15.24 -5.08 0) (length 2.54)
  587. (name "IO11" (effects (font (size 1.27 1.27))))
  588. (number "14" (effects (font (size 1.27 1.27))))
  589. )
  590. (pin bidirectional line (at -15.24 -7.62 0) (length 2.54)
  591. (name "IO12" (effects (font (size 1.27 1.27))))
  592. (number "15" (effects (font (size 1.27 1.27))))
  593. )
  594. (pin bidirectional line (at -15.24 -10.16 0) (length 2.54)
  595. (name "IO13" (effects (font (size 1.27 1.27))))
  596. (number "16" (effects (font (size 1.27 1.27))))
  597. )
  598. (pin bidirectional line (at -15.24 -12.7 0) (length 2.54)
  599. (name "IO14" (effects (font (size 1.27 1.27))))
  600. (number "17" (effects (font (size 1.27 1.27))))
  601. )
  602. (pin bidirectional line (at -15.24 -15.24 0) (length 2.54)
  603. (name "IO15" (effects (font (size 1.27 1.27))))
  604. (number "18" (effects (font (size 1.27 1.27))))
  605. )
  606. (pin bidirectional line (at -15.24 -17.78 0) (length 2.54)
  607. (name "IO16" (effects (font (size 1.27 1.27))))
  608. (number "19" (effects (font (size 1.27 1.27))))
  609. )
  610. (pin power_in line (at 0 30.48 270) (length 2.54)
  611. (name "3V3" (effects (font (size 1.27 1.27))))
  612. (number "2" (effects (font (size 1.27 1.27))))
  613. )
  614. (pin bidirectional line (at -15.24 -20.32 0) (length 2.54)
  615. (name "IO17" (effects (font (size 1.27 1.27))))
  616. (number "20" (effects (font (size 1.27 1.27))))
  617. )
  618. (pin bidirectional line (at -15.24 -22.86 0) (length 2.54)
  619. (name "IO18" (effects (font (size 1.27 1.27))))
  620. (number "21" (effects (font (size 1.27 1.27))))
  621. )
  622. (pin bidirectional line (at 15.24 -17.78 180) (length 2.54)
  623. (name "USB_D-" (effects (font (size 1.27 1.27))))
  624. (number "22" (effects (font (size 1.27 1.27))))
  625. )
  626. (pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
  627. (name "USB_D+" (effects (font (size 1.27 1.27))))
  628. (number "23" (effects (font (size 1.27 1.27))))
  629. )
  630. (pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
  631. (name "IO21" (effects (font (size 1.27 1.27))))
  632. (number "24" (effects (font (size 1.27 1.27))))
  633. )
  634. (pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
  635. (name "IO26" (effects (font (size 1.27 1.27))))
  636. (number "25" (effects (font (size 1.27 1.27))))
  637. )
  638. (pin passive line (at 0 -27.94 90) (length 2.54) hide
  639. (name "GND" (effects (font (size 1.27 1.27))))
  640. (number "26" (effects (font (size 1.27 1.27))))
  641. )
  642. (pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
  643. (name "IO33" (effects (font (size 1.27 1.27))))
  644. (number "27" (effects (font (size 1.27 1.27))))
  645. )
  646. (pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
  647. (name "IO34" (effects (font (size 1.27 1.27))))
  648. (number "28" (effects (font (size 1.27 1.27))))
  649. )
  650. (pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
  651. (name "IO35" (effects (font (size 1.27 1.27))))
  652. (number "29" (effects (font (size 1.27 1.27))))
  653. )
  654. (pin bidirectional line (at -15.24 22.86 0) (length 2.54)
  655. (name "IO00" (effects (font (size 1.27 1.27))))
  656. (number "3" (effects (font (size 1.27 1.27))))
  657. )
  658. (pin bidirectional line (at 15.24 0 180) (length 2.54)
  659. (name "IO36" (effects (font (size 1.27 1.27))))
  660. (number "30" (effects (font (size 1.27 1.27))))
  661. )
  662. (pin bidirectional line (at 15.24 2.54 180) (length 2.54)
  663. (name "IO37" (effects (font (size 1.27 1.27))))
  664. (number "31" (effects (font (size 1.27 1.27))))
  665. )
  666. (pin bidirectional line (at 15.24 5.08 180) (length 2.54)
  667. (name "IO38" (effects (font (size 1.27 1.27))))
  668. (number "32" (effects (font (size 1.27 1.27))))
  669. )
  670. (pin bidirectional line (at 15.24 7.62 180) (length 2.54)
  671. (name "IO39" (effects (font (size 1.27 1.27))))
  672. (number "33" (effects (font (size 1.27 1.27))))
  673. )
  674. (pin bidirectional line (at 15.24 10.16 180) (length 2.54)
  675. (name "IO40" (effects (font (size 1.27 1.27))))
  676. (number "34" (effects (font (size 1.27 1.27))))
  677. )
  678. (pin bidirectional line (at 15.24 12.7 180) (length 2.54)
  679. (name "IO41" (effects (font (size 1.27 1.27))))
  680. (number "35" (effects (font (size 1.27 1.27))))
  681. )
  682. (pin bidirectional line (at 15.24 15.24 180) (length 2.54)
  683. (name "IO42" (effects (font (size 1.27 1.27))))
  684. (number "36" (effects (font (size 1.27 1.27))))
  685. )
  686. (pin bidirectional line (at 15.24 17.78 180) (length 2.54)
  687. (name "TXD0" (effects (font (size 1.27 1.27))))
  688. (number "37" (effects (font (size 1.27 1.27))))
  689. )
  690. (pin bidirectional line (at 15.24 20.32 180) (length 2.54)
  691. (name "RXD0" (effects (font (size 1.27 1.27))))
  692. (number "38" (effects (font (size 1.27 1.27))))
  693. )
  694. (pin bidirectional line (at 15.24 22.86 180) (length 2.54)
  695. (name "IO45" (effects (font (size 1.27 1.27))))
  696. (number "39" (effects (font (size 1.27 1.27))))
  697. )
  698. (pin bidirectional line (at -15.24 20.32 0) (length 2.54)
  699. (name "IO01" (effects (font (size 1.27 1.27))))
  700. (number "4" (effects (font (size 1.27 1.27))))
  701. )
  702. (pin input line (at 15.24 25.4 180) (length 2.54)
  703. (name "IO46" (effects (font (size 1.27 1.27))))
  704. (number "40" (effects (font (size 1.27 1.27))))
  705. )
  706. (pin input line (at -15.24 25.4 0) (length 2.54)
  707. (name "EN" (effects (font (size 1.27 1.27))))
  708. (number "41" (effects (font (size 1.27 1.27))))
  709. )
  710. (pin passive line (at 0 -27.94 90) (length 2.54) hide
  711. (name "GND" (effects (font (size 1.27 1.27))))
  712. (number "42" (effects (font (size 1.27 1.27))))
  713. )
  714. (pin passive line (at 0 -27.94 90) (length 2.54) hide
  715. (name "GND" (effects (font (size 1.27 1.27))))
  716. (number "43" (effects (font (size 1.27 1.27))))
  717. )
  718. (pin bidirectional line (at -15.24 17.78 0) (length 2.54)
  719. (name "IO02" (effects (font (size 1.27 1.27))))
  720. (number "5" (effects (font (size 1.27 1.27))))
  721. )
  722. (pin bidirectional line (at -15.24 15.24 0) (length 2.54)
  723. (name "IO03" (effects (font (size 1.27 1.27))))
  724. (number "6" (effects (font (size 1.27 1.27))))
  725. )
  726. (pin bidirectional line (at -15.24 12.7 0) (length 2.54)
  727. (name "IO04" (effects (font (size 1.27 1.27))))
  728. (number "7" (effects (font (size 1.27 1.27))))
  729. )
  730. (pin bidirectional line (at -15.24 10.16 0) (length 2.54)
  731. (name "IO05" (effects (font (size 1.27 1.27))))
  732. (number "8" (effects (font (size 1.27 1.27))))
  733. )
  734. (pin bidirectional line (at -15.24 7.62 0) (length 2.54)
  735. (name "IO06" (effects (font (size 1.27 1.27))))
  736. (number "9" (effects (font (size 1.27 1.27))))
  737. )
  738. )
  739. )
  740. (symbol "Transistor_FET:AO3400A" (pin_names hide) (in_bom yes) (on_board yes)
  741. (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
  742. (effects (font (size 1.27 1.27)) (justify left))
  743. )
  744. (property "Value" "Transistor_FET_AO3400A" (id 1) (at 5.08 0 0)
  745. (effects (font (size 1.27 1.27)) (justify left))
  746. )
  747. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
  748. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  749. )
  750. (property "Datasheet" "" (id 3) (at 0 0 0)
  751. (effects (font (size 1.27 1.27)) (justify left) hide)
  752. )
  753. (property "ki_fp_filters" "SOT?23*" (id 4) (at 0 0 0)
  754. (effects (font (size 1.27 1.27)) hide)
  755. )
  756. (symbol "AO3400A_0_1"
  757. (polyline
  758. (pts
  759. (xy 0.254 0)
  760. (xy -2.54 0)
  761. )
  762. (stroke (width 0) (type default) (color 0 0 0 0))
  763. (fill (type none))
  764. )
  765. (polyline
  766. (pts
  767. (xy 0.254 1.905)
  768. (xy 0.254 -1.905)
  769. )
  770. (stroke (width 0.254) (type default) (color 0 0 0 0))
  771. (fill (type none))
  772. )
  773. (polyline
  774. (pts
  775. (xy 0.762 -1.27)
  776. (xy 0.762 -2.286)
  777. )
  778. (stroke (width 0.254) (type default) (color 0 0 0 0))
  779. (fill (type none))
  780. )
  781. (polyline
  782. (pts
  783. (xy 0.762 0.508)
  784. (xy 0.762 -0.508)
  785. )
  786. (stroke (width 0.254) (type default) (color 0 0 0 0))
  787. (fill (type none))
  788. )
  789. (polyline
  790. (pts
  791. (xy 0.762 2.286)
  792. (xy 0.762 1.27)
  793. )
  794. (stroke (width 0.254) (type default) (color 0 0 0 0))
  795. (fill (type none))
  796. )
  797. (polyline
  798. (pts
  799. (xy 2.54 2.54)
  800. (xy 2.54 1.778)
  801. )
  802. (stroke (width 0) (type default) (color 0 0 0 0))
  803. (fill (type none))
  804. )
  805. (polyline
  806. (pts
  807. (xy 2.54 -2.54)
  808. (xy 2.54 0)
  809. (xy 0.762 0)
  810. )
  811. (stroke (width 0) (type default) (color 0 0 0 0))
  812. (fill (type none))
  813. )
  814. (polyline
  815. (pts
  816. (xy 0.762 -1.778)
  817. (xy 3.302 -1.778)
  818. (xy 3.302 1.778)
  819. (xy 0.762 1.778)
  820. )
  821. (stroke (width 0) (type default) (color 0 0 0 0))
  822. (fill (type none))
  823. )
  824. (polyline
  825. (pts
  826. (xy 1.016 0)
  827. (xy 2.032 0.381)
  828. (xy 2.032 -0.381)
  829. (xy 1.016 0)
  830. )
  831. (stroke (width 0) (type default) (color 0 0 0 0))
  832. (fill (type outline))
  833. )
  834. (polyline
  835. (pts
  836. (xy 2.794 0.508)
  837. (xy 2.921 0.381)
  838. (xy 3.683 0.381)
  839. (xy 3.81 0.254)
  840. )
  841. (stroke (width 0) (type default) (color 0 0 0 0))
  842. (fill (type none))
  843. )
  844. (polyline
  845. (pts
  846. (xy 3.302 0.381)
  847. (xy 2.921 -0.254)
  848. (xy 3.683 -0.254)
  849. (xy 3.302 0.381)
  850. )
  851. (stroke (width 0) (type default) (color 0 0 0 0))
  852. (fill (type none))
  853. )
  854. (circle (center 1.651 0) (radius 2.794)
  855. (stroke (width 0.254) (type default) (color 0 0 0 0))
  856. (fill (type none))
  857. )
  858. (circle (center 2.54 -1.778) (radius 0.254)
  859. (stroke (width 0) (type default) (color 0 0 0 0))
  860. (fill (type outline))
  861. )
  862. (circle (center 2.54 1.778) (radius 0.254)
  863. (stroke (width 0) (type default) (color 0 0 0 0))
  864. (fill (type outline))
  865. )
  866. )
  867. (symbol "AO3400A_1_1"
  868. (pin input line (at -5.08 0 0) (length 2.54)
  869. (name "G" (effects (font (size 1.27 1.27))))
  870. (number "1" (effects (font (size 1.27 1.27))))
  871. )
  872. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  873. (name "S" (effects (font (size 1.27 1.27))))
  874. (number "2" (effects (font (size 1.27 1.27))))
  875. )
  876. (pin passive line (at 2.54 5.08 270) (length 2.54)
  877. (name "D" (effects (font (size 1.27 1.27))))
  878. (number "3" (effects (font (size 1.27 1.27))))
  879. )
  880. )
  881. )
  882. (symbol "Transistor_FET:AO3401A" (pin_names hide) (in_bom yes) (on_board yes)
  883. (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
  884. (effects (font (size 1.27 1.27)) (justify left))
  885. )
  886. (property "Value" "Transistor_FET_AO3401A" (id 1) (at 5.08 0 0)
  887. (effects (font (size 1.27 1.27)) (justify left))
  888. )
  889. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
  890. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  891. )
  892. (property "Datasheet" "" (id 3) (at 0 0 0)
  893. (effects (font (size 1.27 1.27)) (justify left) hide)
  894. )
  895. (property "ki_fp_filters" "SOT?23*" (id 4) (at 0 0 0)
  896. (effects (font (size 1.27 1.27)) hide)
  897. )
  898. (symbol "AO3401A_0_1"
  899. (polyline
  900. (pts
  901. (xy 0.254 0)
  902. (xy -2.54 0)
  903. )
  904. (stroke (width 0) (type default) (color 0 0 0 0))
  905. (fill (type none))
  906. )
  907. (polyline
  908. (pts
  909. (xy 0.254 1.905)
  910. (xy 0.254 -1.905)
  911. )
  912. (stroke (width 0.254) (type default) (color 0 0 0 0))
  913. (fill (type none))
  914. )
  915. (polyline
  916. (pts
  917. (xy 0.762 -1.27)
  918. (xy 0.762 -2.286)
  919. )
  920. (stroke (width 0.254) (type default) (color 0 0 0 0))
  921. (fill (type none))
  922. )
  923. (polyline
  924. (pts
  925. (xy 0.762 0.508)
  926. (xy 0.762 -0.508)
  927. )
  928. (stroke (width 0.254) (type default) (color 0 0 0 0))
  929. (fill (type none))
  930. )
  931. (polyline
  932. (pts
  933. (xy 0.762 2.286)
  934. (xy 0.762 1.27)
  935. )
  936. (stroke (width 0.254) (type default) (color 0 0 0 0))
  937. (fill (type none))
  938. )
  939. (polyline
  940. (pts
  941. (xy 2.54 2.54)
  942. (xy 2.54 1.778)
  943. )
  944. (stroke (width 0) (type default) (color 0 0 0 0))
  945. (fill (type none))
  946. )
  947. (polyline
  948. (pts
  949. (xy 2.54 -2.54)
  950. (xy 2.54 0)
  951. (xy 0.762 0)
  952. )
  953. (stroke (width 0) (type default) (color 0 0 0 0))
  954. (fill (type none))
  955. )
  956. (polyline
  957. (pts
  958. (xy 0.762 1.778)
  959. (xy 3.302 1.778)
  960. (xy 3.302 -1.778)
  961. (xy 0.762 -1.778)
  962. )
  963. (stroke (width 0) (type default) (color 0 0 0 0))
  964. (fill (type none))
  965. )
  966. (polyline
  967. (pts
  968. (xy 2.286 0)
  969. (xy 1.27 0.381)
  970. (xy 1.27 -0.381)
  971. (xy 2.286 0)
  972. )
  973. (stroke (width 0) (type default) (color 0 0 0 0))
  974. (fill (type outline))
  975. )
  976. (polyline
  977. (pts
  978. (xy 2.794 -0.508)
  979. (xy 2.921 -0.381)
  980. (xy 3.683 -0.381)
  981. (xy 3.81 -0.254)
  982. )
  983. (stroke (width 0) (type default) (color 0 0 0 0))
  984. (fill (type none))
  985. )
  986. (polyline
  987. (pts
  988. (xy 3.302 -0.381)
  989. (xy 2.921 0.254)
  990. (xy 3.683 0.254)
  991. (xy 3.302 -0.381)
  992. )
  993. (stroke (width 0) (type default) (color 0 0 0 0))
  994. (fill (type none))
  995. )
  996. (circle (center 1.651 0) (radius 2.794)
  997. (stroke (width 0.254) (type default) (color 0 0 0 0))
  998. (fill (type none))
  999. )
  1000. (circle (center 2.54 -1.778) (radius 0.254)
  1001. (stroke (width 0) (type default) (color 0 0 0 0))
  1002. (fill (type outline))
  1003. )
  1004. (circle (center 2.54 1.778) (radius 0.254)
  1005. (stroke (width 0) (type default) (color 0 0 0 0))
  1006. (fill (type outline))
  1007. )
  1008. )
  1009. (symbol "AO3401A_1_1"
  1010. (pin input line (at -5.08 0 0) (length 2.54)
  1011. (name "G" (effects (font (size 1.27 1.27))))
  1012. (number "1" (effects (font (size 1.27 1.27))))
  1013. )
  1014. (pin passive line (at 2.54 -5.08 90) (length 2.54)
  1015. (name "S" (effects (font (size 1.27 1.27))))
  1016. (number "2" (effects (font (size 1.27 1.27))))
  1017. )
  1018. (pin passive line (at 2.54 5.08 270) (length 2.54)
  1019. (name "D" (effects (font (size 1.27 1.27))))
  1020. (number "3" (effects (font (size 1.27 1.27))))
  1021. )
  1022. )
  1023. )
  1024. (symbol "max80:HRO-TYPE-C-31-M-12" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1025. (property "Reference" "USB" (id 0) (at -5.08 16.51 0)
  1026. (effects (font (size 1.524 1.524)))
  1027. )
  1028. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at -10.16 -1.27 90)
  1029. (effects (font (size 1.524 1.524)))
  1030. )
  1031. (property "Footprint" "" (id 2) (at 0 0 0)
  1032. (effects (font (size 1.524 1.524)) hide)
  1033. )
  1034. (property "Datasheet" "" (id 3) (at 0 0 0)
  1035. (effects (font (size 1.524 1.524)) hide)
  1036. )
  1037. (symbol "HRO-TYPE-C-31-M-12_0_1"
  1038. (rectangle (start -11.43 15.24) (end -8.89 -17.78)
  1039. (stroke (width 0) (type default) (color 0 0 0 0))
  1040. (fill (type background))
  1041. )
  1042. (rectangle (start 0 -17.78) (end -8.89 15.24)
  1043. (stroke (width 0) (type default) (color 0 0 0 0))
  1044. (fill (type background))
  1045. )
  1046. )
  1047. (symbol "HRO-TYPE-C-31-M-12_1_1"
  1048. (pin input line (at 2.54 13.97 180) (length 2.54)
  1049. (name "GND" (effects (font (size 1.27 1.27))))
  1050. (number "1" (effects (font (size 1.27 1.27))))
  1051. )
  1052. (pin input line (at 2.54 -8.89 180) (length 2.54)
  1053. (name "CC2" (effects (font (size 1.27 1.27))))
  1054. (number "10" (effects (font (size 1.27 1.27))))
  1055. )
  1056. (pin input line (at 2.54 -11.43 180) (length 2.54)
  1057. (name "VBUS" (effects (font (size 1.27 1.27))))
  1058. (number "11" (effects (font (size 1.27 1.27))))
  1059. )
  1060. (pin input line (at 2.54 -13.97 180) (length 2.54)
  1061. (name "GND" (effects (font (size 1.27 1.27))))
  1062. (number "12" (effects (font (size 1.27 1.27))))
  1063. )
  1064. (pin input line (at 2.54 -16.51 180) (length 2.54)
  1065. (name "SHIELD" (effects (font (size 1.27 1.27))))
  1066. (number "13" (effects (font (size 1.27 1.27))))
  1067. )
  1068. (pin input line (at 2.54 11.43 180) (length 2.54)
  1069. (name "VBUS" (effects (font (size 1.27 1.27))))
  1070. (number "2" (effects (font (size 1.27 1.27))))
  1071. )
  1072. (pin input line (at 2.54 8.89 180) (length 2.54)
  1073. (name "SBU2" (effects (font (size 1.27 1.27))))
  1074. (number "3" (effects (font (size 1.27 1.27))))
  1075. )
  1076. (pin input line (at 2.54 6.35 180) (length 2.54)
  1077. (name "CC1" (effects (font (size 1.27 1.27))))
  1078. (number "4" (effects (font (size 1.27 1.27))))
  1079. )
  1080. (pin input line (at 2.54 3.81 180) (length 2.54)
  1081. (name "DN2" (effects (font (size 1.27 1.27))))
  1082. (number "5" (effects (font (size 1.27 1.27))))
  1083. )
  1084. (pin input line (at 2.54 1.27 180) (length 2.54)
  1085. (name "DP1" (effects (font (size 1.27 1.27))))
  1086. (number "6" (effects (font (size 1.27 1.27))))
  1087. )
  1088. (pin input line (at 2.54 -1.27 180) (length 2.54)
  1089. (name "DN1" (effects (font (size 1.27 1.27))))
  1090. (number "7" (effects (font (size 1.27 1.27))))
  1091. )
  1092. (pin input line (at 2.54 -3.81 180) (length 2.54)
  1093. (name "DP2" (effects (font (size 1.27 1.27))))
  1094. (number "8" (effects (font (size 1.27 1.27))))
  1095. )
  1096. (pin input line (at 2.54 -6.35 180) (length 2.54)
  1097. (name "SBU1" (effects (font (size 1.27 1.27))))
  1098. (number "9" (effects (font (size 1.27 1.27))))
  1099. )
  1100. )
  1101. )
  1102. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1103. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1104. (effects (font (size 1.27 1.27)) hide)
  1105. )
  1106. (property "Value" "power_+3V3" (id 1) (at 0 3.556 0)
  1107. (effects (font (size 1.27 1.27)))
  1108. )
  1109. (property "Footprint" "" (id 2) (at 0 0 0)
  1110. (effects (font (size 1.27 1.27)) hide)
  1111. )
  1112. (property "Datasheet" "" (id 3) (at 0 0 0)
  1113. (effects (font (size 1.27 1.27)) hide)
  1114. )
  1115. (symbol "+3V3_0_1"
  1116. (polyline
  1117. (pts
  1118. (xy -0.762 1.27)
  1119. (xy 0 2.54)
  1120. )
  1121. (stroke (width 0) (type default) (color 0 0 0 0))
  1122. (fill (type none))
  1123. )
  1124. (polyline
  1125. (pts
  1126. (xy 0 0)
  1127. (xy 0 2.54)
  1128. )
  1129. (stroke (width 0) (type default) (color 0 0 0 0))
  1130. (fill (type none))
  1131. )
  1132. (polyline
  1133. (pts
  1134. (xy 0 2.54)
  1135. (xy 0.762 1.27)
  1136. )
  1137. (stroke (width 0) (type default) (color 0 0 0 0))
  1138. (fill (type none))
  1139. )
  1140. )
  1141. (symbol "+3V3_1_1"
  1142. (pin power_in line (at 0 0 90) (length 0) hide
  1143. (name "+3V3" (effects (font (size 1.27 1.27))))
  1144. (number "1" (effects (font (size 1.27 1.27))))
  1145. )
  1146. )
  1147. )
  1148. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1149. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1150. (effects (font (size 1.27 1.27)) hide)
  1151. )
  1152. (property "Value" "power_+5V" (id 1) (at 0 3.556 0)
  1153. (effects (font (size 1.27 1.27)))
  1154. )
  1155. (property "Footprint" "" (id 2) (at 0 0 0)
  1156. (effects (font (size 1.27 1.27)) hide)
  1157. )
  1158. (property "Datasheet" "" (id 3) (at 0 0 0)
  1159. (effects (font (size 1.27 1.27)) hide)
  1160. )
  1161. (symbol "+5V_0_1"
  1162. (polyline
  1163. (pts
  1164. (xy -0.762 1.27)
  1165. (xy 0 2.54)
  1166. )
  1167. (stroke (width 0) (type default) (color 0 0 0 0))
  1168. (fill (type none))
  1169. )
  1170. (polyline
  1171. (pts
  1172. (xy 0 0)
  1173. (xy 0 2.54)
  1174. )
  1175. (stroke (width 0) (type default) (color 0 0 0 0))
  1176. (fill (type none))
  1177. )
  1178. (polyline
  1179. (pts
  1180. (xy 0 2.54)
  1181. (xy 0.762 1.27)
  1182. )
  1183. (stroke (width 0) (type default) (color 0 0 0 0))
  1184. (fill (type none))
  1185. )
  1186. )
  1187. (symbol "+5V_1_1"
  1188. (pin power_in line (at 0 0 90) (length 0) hide
  1189. (name "+5V" (effects (font (size 1.27 1.27))))
  1190. (number "1" (effects (font (size 1.27 1.27))))
  1191. )
  1192. )
  1193. )
  1194. (symbol "power:+5VA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1195. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  1196. (effects (font (size 1.27 1.27)) hide)
  1197. )
  1198. (property "Value" "power_+5VA" (id 1) (at 0 3.556 0)
  1199. (effects (font (size 1.27 1.27)))
  1200. )
  1201. (property "Footprint" "" (id 2) (at 0 0 0)
  1202. (effects (font (size 1.27 1.27)) hide)
  1203. )
  1204. (property "Datasheet" "" (id 3) (at 0 0 0)
  1205. (effects (font (size 1.27 1.27)) hide)
  1206. )
  1207. (symbol "+5VA_0_1"
  1208. (polyline
  1209. (pts
  1210. (xy -0.762 1.27)
  1211. (xy 0 2.54)
  1212. )
  1213. (stroke (width 0) (type default) (color 0 0 0 0))
  1214. (fill (type none))
  1215. )
  1216. (polyline
  1217. (pts
  1218. (xy 0 0)
  1219. (xy 0 2.54)
  1220. )
  1221. (stroke (width 0) (type default) (color 0 0 0 0))
  1222. (fill (type none))
  1223. )
  1224. (polyline
  1225. (pts
  1226. (xy 0 2.54)
  1227. (xy 0.762 1.27)
  1228. )
  1229. (stroke (width 0) (type default) (color 0 0 0 0))
  1230. (fill (type none))
  1231. )
  1232. )
  1233. (symbol "+5VA_1_1"
  1234. (pin power_in line (at 0 0 90) (length 0) hide
  1235. (name "+5VA" (effects (font (size 1.27 1.27))))
  1236. (number "1" (effects (font (size 1.27 1.27))))
  1237. )
  1238. )
  1239. )
  1240. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1241. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  1242. (effects (font (size 1.27 1.27)) hide)
  1243. )
  1244. (property "Value" "power_GND" (id 1) (at 0 -3.81 0)
  1245. (effects (font (size 1.27 1.27)))
  1246. )
  1247. (property "Footprint" "" (id 2) (at 0 0 0)
  1248. (effects (font (size 1.27 1.27)) hide)
  1249. )
  1250. (property "Datasheet" "" (id 3) (at 0 0 0)
  1251. (effects (font (size 1.27 1.27)) hide)
  1252. )
  1253. (symbol "GND_0_1"
  1254. (polyline
  1255. (pts
  1256. (xy 0 0)
  1257. (xy 0 -1.27)
  1258. (xy 1.27 -1.27)
  1259. (xy 0 -2.54)
  1260. (xy -1.27 -1.27)
  1261. (xy 0 -1.27)
  1262. )
  1263. (stroke (width 0) (type default) (color 0 0 0 0))
  1264. (fill (type none))
  1265. )
  1266. )
  1267. (symbol "GND_1_1"
  1268. (pin power_in line (at 0 0 270) (length 0) hide
  1269. (name "GND" (effects (font (size 1.27 1.27))))
  1270. (number "1" (effects (font (size 1.27 1.27))))
  1271. )
  1272. )
  1273. )
  1274. )
  1275. (junction (at 85.09 49.53) (diameter 0) (color 0 0 0 0)
  1276. (uuid 158af5df-cc1b-4506-bbe6-cb7505295b5b)
  1277. )
  1278. (junction (at 246.38 148.59) (diameter 0) (color 0 0 0 0)
  1279. (uuid 233d14ec-e17f-4b70-ace9-a65479e58a33)
  1280. )
  1281. (junction (at 93.98 59.69) (diameter 0) (color 0 0 0 0)
  1282. (uuid 2460f6d2-1d7c-4c35-9be4-33dfefab8082)
  1283. )
  1284. (junction (at 93.98 85.09) (diameter 0) (color 0 0 0 0)
  1285. (uuid 25e5e3b2-c628-460f-8b34-28a2c7950e5f)
  1286. )
  1287. (junction (at 74.93 78.74) (diameter 0) (color 0 0 0 0)
  1288. (uuid 2a6f1b1e-6809-43d7-b0c5-e4424e33d333)
  1289. )
  1290. (junction (at 189.23 50.8) (diameter 0) (color 0 0 0 0)
  1291. (uuid 3581de8b-daeb-467a-8039-51714599e4ba)
  1292. )
  1293. (junction (at 44.45 83.82) (diameter 0) (color 0 0 0 0)
  1294. (uuid 3e3af5be-1b4c-4ba4-b660-3033fdf1caed)
  1295. )
  1296. (junction (at 38.1 91.44) (diameter 0) (color 0 0 0 0)
  1297. (uuid 415d6a7d-98b2-4d17-b46f-6f38749a3ba2)
  1298. )
  1299. (junction (at 118.11 78.74) (diameter 0) (color 0 0 0 0)
  1300. (uuid 422a6702-d1c1-4e76-898e-ec20aaee30c2)
  1301. )
  1302. (junction (at 74.93 85.09) (diameter 0) (color 0 0 0 0)
  1303. (uuid 5d9cc826-4756-4365-b769-24e883398d0a)
  1304. )
  1305. (junction (at 41.91 78.74) (diameter 0) (color 0 0 0 0)
  1306. (uuid 646182ef-83d3-48ef-8f13-39bd3cf49786)
  1307. )
  1308. (junction (at 152.4 85.09) (diameter 0) (color 0 0 0 0)
  1309. (uuid 86a6b9b9-3de3-44b4-b763-98233419d240)
  1310. )
  1311. (junction (at 273.05 140.97) (diameter 0) (color 0 0 0 0)
  1312. (uuid 88b7d164-35a2-420d-9da6-a56db04f962b)
  1313. )
  1314. (junction (at 59.69 80.01) (diameter 0) (color 0 0 0 0)
  1315. (uuid 8aff71fc-0b55-4238-837c-95b0b4aac181)
  1316. )
  1317. (junction (at 147.32 99.06) (diameter 0) (color 0 0 0 0)
  1318. (uuid 9098a6bf-eae0-4636-90c3-6c2f5d9401fd)
  1319. )
  1320. (junction (at 34.29 88.9) (diameter 0) (color 0 0 0 0)
  1321. (uuid b9f8ba78-9b7b-4a7c-8351-c9f145a140ab)
  1322. )
  1323. (junction (at 43.18 99.06) (diameter 0) (color 0 0 0 0)
  1324. (uuid cdce2be4-88ef-44ed-b591-e6404a14a2cf)
  1325. )
  1326. (junction (at 147.32 82.55) (diameter 0) (color 0 0 0 0)
  1327. (uuid d18dfc73-4f65-499b-85e8-0e65b03fabb2)
  1328. )
  1329. (junction (at 85.09 68.58) (diameter 0) (color 0 0 0 0)
  1330. (uuid dbe20cc9-b99f-4e22-ad59-f96e667d1efa)
  1331. )
  1332. (junction (at 152.4 97.79) (diameter 0) (color 0 0 0 0)
  1333. (uuid e085e529-431d-4fe9-aed9-287036ceabd6)
  1334. )
  1335. (junction (at 142.24 100.33) (diameter 0) (color 0 0 0 0)
  1336. (uuid e1a929c4-c484-4255-9524-8c224d1f6e73)
  1337. )
  1338. (junction (at 189.23 58.42) (diameter 0) (color 0 0 0 0)
  1339. (uuid e61e3b10-16bb-45fa-9a42-277efd2ec104)
  1340. )
  1341. (junction (at 142.24 80.01) (diameter 0) (color 0 0 0 0)
  1342. (uuid f1353e9e-7eae-44e9-872c-ec11c41e5657)
  1343. )
  1344. (junction (at 93.98 78.74) (diameter 0) (color 0 0 0 0)
  1345. (uuid f9fdab0b-0971-4c0c-831c-cda73093deb5)
  1346. )
  1347. (no_connect (at 31.75 96.52) (uuid 4ff71e44-dddb-450e-9f6f-fe3947968fd4))
  1348. (no_connect (at 31.75 106.68) (uuid 833beff7-0439-4b25-8f23-ed949f699ed1))
  1349. (no_connect (at 215.9 72.39) (uuid d0292983-0ab9-4b24-b3bd-f154f790c7ec))
  1350. (no_connect (at 215.9 107.95) (uuid e08b3dd0-5717-45d9-897c-a2c963f9de1a))
  1351. (no_connect (at 31.75 81.28) (uuid f094eb5d-05c7-4c16-84d0-9d4665317bfb))
  1352. (wire (pts (xy 185.42 100.33) (xy 184.15 100.33))
  1353. (stroke (width 0) (type default) (color 0 0 0 0))
  1354. (uuid 03a79994-33b9-4df6-bdb0-d3807834d731)
  1355. )
  1356. (wire (pts (xy 152.4 95.25) (xy 152.4 97.79))
  1357. (stroke (width 0) (type default) (color 0 0 0 0))
  1358. (uuid 0673bd15-bb27-42a3-b8dd-ff34de638161)
  1359. )
  1360. (wire (pts (xy 86.36 88.9) (xy 86.36 93.98))
  1361. (stroke (width 0) (type default) (color 0 0 0 0))
  1362. (uuid 07838c19-bdee-4759-9a7b-a62a5deb9737)
  1363. )
  1364. (wire (pts (xy 85.09 68.58) (xy 93.98 68.58))
  1365. (stroke (width 0) (type default) (color 0 0 0 0))
  1366. (uuid 0850d44a-6bde-4886-b872-ef2fda5e1590)
  1367. )
  1368. (wire (pts (xy 184.15 120.65) (xy 185.42 120.65))
  1369. (stroke (width 0) (type default) (color 0 0 0 0))
  1370. (uuid 08601885-ffd0-426c-9b07-2dc479593fb1)
  1371. )
  1372. (wire (pts (xy 142.24 80.01) (xy 185.42 80.01))
  1373. (stroke (width 0) (type default) (color 0 0 0 0))
  1374. (uuid 09433d97-62ec-42de-89f2-7d0b68dc1b9d)
  1375. )
  1376. (wire (pts (xy 273.05 140.97) (xy 274.32 140.97))
  1377. (stroke (width 0) (type default) (color 0 0 0 0))
  1378. (uuid 09684b6c-5d15-4020-b96b-0b388e8ee3ea)
  1379. )
  1380. (wire (pts (xy 93.98 85.09) (xy 100.33 85.09))
  1381. (stroke (width 0) (type default) (color 0 0 0 0))
  1382. (uuid 0f0d22b0-c2a7-436a-931c-fa4be6782d48)
  1383. )
  1384. (wire (pts (xy 246.38 147.32) (xy 246.38 148.59))
  1385. (stroke (width 0) (type default) (color 0 0 0 0))
  1386. (uuid 0f99d31f-3e61-45ba-a78c-4a282f861613)
  1387. )
  1388. (wire (pts (xy 31.75 86.36) (xy 38.1 86.36))
  1389. (stroke (width 0) (type default) (color 0 0 0 0))
  1390. (uuid 1002411f-a485-468c-981b-cec2ce41d8bd)
  1391. )
  1392. (wire (pts (xy 127 87.63) (xy 127 80.01))
  1393. (stroke (width 0) (type default) (color 0 0 0 0))
  1394. (uuid 111c2bf6-9865-4ea4-a9f9-1702355a872d)
  1395. )
  1396. (wire (pts (xy 93.98 49.53) (xy 93.98 50.8))
  1397. (stroke (width 0) (type default) (color 0 0 0 0))
  1398. (uuid 11896c2c-8771-4362-a4aa-2f8901fb1bc7)
  1399. )
  1400. (wire (pts (xy 127 95.25) (xy 127 100.33))
  1401. (stroke (width 0) (type default) (color 0 0 0 0))
  1402. (uuid 15328724-62c0-4c64-8165-7ba7fa235831)
  1403. )
  1404. (wire (pts (xy 147.32 99.06) (xy 147.32 95.25))
  1405. (stroke (width 0) (type default) (color 0 0 0 0))
  1406. (uuid 15ddbae8-4879-44da-8c42-497366b84781)
  1407. )
  1408. (wire (pts (xy 99.06 104.14) (xy 101.6 104.14))
  1409. (stroke (width 0) (type default) (color 0 0 0 0))
  1410. (uuid 18ee575f-d41e-4a26-ac0a-b229112d8877)
  1411. )
  1412. (wire (pts (xy 38.1 86.36) (xy 38.1 91.44))
  1413. (stroke (width 0) (type default) (color 0 0 0 0))
  1414. (uuid 1a0c5194-0d7e-4fcc-a11d-049fac80c4dc)
  1415. )
  1416. (wire (pts (xy 44.45 80.01) (xy 44.45 83.82))
  1417. (stroke (width 0) (type default) (color 0 0 0 0))
  1418. (uuid 1f2605ff-0052-4214-ba00-e5f83f987c66)
  1419. )
  1420. (wire (pts (xy 127 100.33) (xy 142.24 100.33))
  1421. (stroke (width 0) (type default) (color 0 0 0 0))
  1422. (uuid 1fcbe337-d147-4e02-846e-7f1ec4528bd0)
  1423. )
  1424. (wire (pts (xy 41.91 101.6) (xy 41.91 78.74))
  1425. (stroke (width 0) (type default) (color 0 0 0 0))
  1426. (uuid 21a4e5f9-158c-4a1e-a6d3-12c826291e62)
  1427. )
  1428. (wire (pts (xy 132.08 95.25) (xy 132.08 99.06))
  1429. (stroke (width 0) (type default) (color 0 0 0 0))
  1430. (uuid 23a49e10-e7d0-41d9-a15a-25ac614cee99)
  1431. )
  1432. (wire (pts (xy 92.71 59.69) (xy 93.98 59.69))
  1433. (stroke (width 0) (type default) (color 0 0 0 0))
  1434. (uuid 23e32b5c-4ca6-4614-a426-44d605a7d8fd)
  1435. )
  1436. (wire (pts (xy 200.66 64.77) (xy 200.66 67.31))
  1437. (stroke (width 0) (type default) (color 0 0 0 0))
  1438. (uuid 260f62f6-a6cf-45e0-9208-51504e701f69)
  1439. )
  1440. (wire (pts (xy 62.23 95.25) (xy 49.53 95.25))
  1441. (stroke (width 0) (type default) (color 0 0 0 0))
  1442. (uuid 26fd0d92-e1d7-4ec3-9cd1-0c12f182f0d8)
  1443. )
  1444. (wire (pts (xy 184.15 74.93) (xy 185.42 74.93))
  1445. (stroke (width 0) (type default) (color 0 0 0 0))
  1446. (uuid 29e27db0-3c69-4f62-9b26-37b540cf4f34)
  1447. )
  1448. (wire (pts (xy 91.44 116.84) (xy 91.44 114.3))
  1449. (stroke (width 0) (type default) (color 0 0 0 0))
  1450. (uuid 2aabebab-10c6-4637-946b-cda31980f550)
  1451. )
  1452. (wire (pts (xy 93.98 68.58) (xy 93.98 69.85))
  1453. (stroke (width 0) (type default) (color 0 0 0 0))
  1454. (uuid 2df83ebe-1ddf-4544-b413-d0b7b3d7c49e)
  1455. )
  1456. (wire (pts (xy 93.98 78.74) (xy 93.98 85.09))
  1457. (stroke (width 0) (type default) (color 0 0 0 0))
  1458. (uuid 2edba9d3-c333-4296-851f-3df46822dd7b)
  1459. )
  1460. (wire (pts (xy 93.98 59.69) (xy 96.52 59.69))
  1461. (stroke (width 0) (type default) (color 0 0 0 0))
  1462. (uuid 2fc6c800-22f6-42f6-a664-0677d01cefba)
  1463. )
  1464. (wire (pts (xy 215.9 77.47) (xy 217.17 77.47))
  1465. (stroke (width 0) (type default) (color 0 0 0 0))
  1466. (uuid 30d4a5b8-34e9-412f-9d1a-e616a8a28215)
  1467. )
  1468. (wire (pts (xy 152.4 85.09) (xy 152.4 87.63))
  1469. (stroke (width 0) (type default) (color 0 0 0 0))
  1470. (uuid 31518452-8dcd-4719-9aa4-aad4159920e6)
  1471. )
  1472. (wire (pts (xy 152.4 85.09) (xy 185.42 85.09))
  1473. (stroke (width 0) (type default) (color 0 0 0 0))
  1474. (uuid 33770b56-77ab-4a0c-a675-0ef4f02f8519)
  1475. )
  1476. (wire (pts (xy 142.24 95.25) (xy 142.24 100.33))
  1477. (stroke (width 0) (type default) (color 0 0 0 0))
  1478. (uuid 34d6d782-5641-4526-b346-05de03ea8c0e)
  1479. )
  1480. (wire (pts (xy 38.1 91.44) (xy 73.66 91.44))
  1481. (stroke (width 0) (type default) (color 0 0 0 0))
  1482. (uuid 3520b9bf-2dfc-4868-a650-86ff98682e83)
  1483. )
  1484. (wire (pts (xy 118.11 68.58) (xy 118.11 78.74))
  1485. (stroke (width 0) (type default) (color 0 0 0 0))
  1486. (uuid 3850e2d4-b49e-4213-938e-107014b88c2f)
  1487. )
  1488. (wire (pts (xy 31.75 101.6) (xy 41.91 101.6))
  1489. (stroke (width 0) (type default) (color 0 0 0 0))
  1490. (uuid 3b5147db-69cc-4871-96a7-79c3437a6213)
  1491. )
  1492. (wire (pts (xy 99.06 78.74) (xy 99.06 76.2))
  1493. (stroke (width 0) (type default) (color 0 0 0 0))
  1494. (uuid 3b5cbb6d-677b-4641-88bd-7044bfd6bfae)
  1495. )
  1496. (wire (pts (xy 185.42 110.49) (xy 184.15 110.49))
  1497. (stroke (width 0) (type default) (color 0 0 0 0))
  1498. (uuid 3bdc61da-fd87-4d91-ae6a-f160ef1e6b25)
  1499. )
  1500. (wire (pts (xy 147.32 99.06) (xy 147.32 102.87))
  1501. (stroke (width 0) (type default) (color 0 0 0 0))
  1502. (uuid 3d774050-1f75-473e-bdf5-d052504e6a25)
  1503. )
  1504. (wire (pts (xy 90.17 78.74) (xy 93.98 78.74))
  1505. (stroke (width 0) (type default) (color 0 0 0 0))
  1506. (uuid 3e1cb3e4-d855-414e-b1ff-d8f86a215960)
  1507. )
  1508. (wire (pts (xy 152.4 107.95) (xy 152.4 109.22))
  1509. (stroke (width 0) (type default) (color 0 0 0 0))
  1510. (uuid 411f21c0-dcce-4bff-ac0e-7c5571730a65)
  1511. )
  1512. (wire (pts (xy 31.75 91.44) (xy 38.1 91.44))
  1513. (stroke (width 0) (type default) (color 0 0 0 0))
  1514. (uuid 4221b138-87b6-4073-a6e3-acb41ba2e601)
  1515. )
  1516. (wire (pts (xy 31.75 76.2) (xy 35.56 76.2))
  1517. (stroke (width 0) (type default) (color 0 0 0 0))
  1518. (uuid 443b842e-cdd6-495f-a7fb-0cef04c17274)
  1519. )
  1520. (wire (pts (xy 132.08 82.55) (xy 147.32 82.55))
  1521. (stroke (width 0) (type default) (color 0 0 0 0))
  1522. (uuid 446c08d7-8986-4d18-8f0f-30d613706dfc)
  1523. )
  1524. (wire (pts (xy 274.32 147.32) (xy 274.32 148.59))
  1525. (stroke (width 0) (type default) (color 0 0 0 0))
  1526. (uuid 462f8e7e-09c6-4676-ba4f-fd07b2868aa8)
  1527. )
  1528. (wire (pts (xy 274.32 140.97) (xy 274.32 142.24))
  1529. (stroke (width 0) (type default) (color 0 0 0 0))
  1530. (uuid 471f517c-6d52-459f-9d7a-aedf176fc9e0)
  1531. )
  1532. (wire (pts (xy 41.91 78.74) (xy 74.93 78.74))
  1533. (stroke (width 0) (type default) (color 0 0 0 0))
  1534. (uuid 494a6b97-f33e-4834-b724-0c3a3ff54317)
  1535. )
  1536. (wire (pts (xy 59.69 80.01) (xy 59.69 74.93))
  1537. (stroke (width 0) (type default) (color 0 0 0 0))
  1538. (uuid 4be25af8-39f2-4002-9837-911821c1b9cc)
  1539. )
  1540. (wire (pts (xy 31.75 93.98) (xy 34.29 93.98))
  1541. (stroke (width 0) (type default) (color 0 0 0 0))
  1542. (uuid 4dfbe524-132d-43d4-8ae0-9aa2f72df70b)
  1543. )
  1544. (wire (pts (xy 85.09 49.53) (xy 93.98 49.53))
  1545. (stroke (width 0) (type default) (color 0 0 0 0))
  1546. (uuid 4eeb2bf2-5aa0-4534-94bd-c0dab739d13b)
  1547. )
  1548. (wire (pts (xy 73.66 116.84) (xy 86.36 116.84))
  1549. (stroke (width 0) (type default) (color 0 0 0 0))
  1550. (uuid 504b138d-cda6-48ea-a44b-2c0d0cf874fc)
  1551. )
  1552. (wire (pts (xy 185.42 105.41) (xy 184.15 105.41))
  1553. (stroke (width 0) (type default) (color 0 0 0 0))
  1554. (uuid 505c1d3e-8ca5-438e-9eae-18483f12882c)
  1555. )
  1556. (wire (pts (xy 34.29 88.9) (xy 86.36 88.9))
  1557. (stroke (width 0) (type default) (color 0 0 0 0))
  1558. (uuid 506110af-ac51-4501-bfa6-1552a848d599)
  1559. )
  1560. (wire (pts (xy 35.56 68.58) (xy 39.37 68.58))
  1561. (stroke (width 0) (type default) (color 0 0 0 0))
  1562. (uuid 52fe3400-bf18-4fe5-aa6e-2be779b65697)
  1563. )
  1564. (wire (pts (xy 110.49 78.74) (xy 118.11 78.74))
  1565. (stroke (width 0) (type default) (color 0 0 0 0))
  1566. (uuid 5338134d-a05d-4ad9-9bd6-6a3cccd5d5a9)
  1567. )
  1568. (wire (pts (xy 147.32 82.55) (xy 185.42 82.55))
  1569. (stroke (width 0) (type default) (color 0 0 0 0))
  1570. (uuid 53548090-4b36-44b5-9ef5-2fa214b2fbf4)
  1571. )
  1572. (wire (pts (xy 74.93 85.09) (xy 81.28 85.09))
  1573. (stroke (width 0) (type default) (color 0 0 0 0))
  1574. (uuid 5379d081-922a-4828-9d43-7b2f2572d06c)
  1575. )
  1576. (wire (pts (xy 118.11 87.63) (xy 118.11 88.9))
  1577. (stroke (width 0) (type default) (color 0 0 0 0))
  1578. (uuid 555e8fc3-19b4-40e8-abc6-87d7c193534e)
  1579. )
  1580. (wire (pts (xy 93.98 85.09) (xy 88.9 85.09))
  1581. (stroke (width 0) (type default) (color 0 0 0 0))
  1582. (uuid 56d5d2e4-dbd9-4665-9c2f-4cd76f3e3bd2)
  1583. )
  1584. (wire (pts (xy 49.53 80.01) (xy 59.69 80.01))
  1585. (stroke (width 0) (type default) (color 0 0 0 0))
  1586. (uuid 570ee06f-38f1-44a9-ae2b-f08cf56305e0)
  1587. )
  1588. (wire (pts (xy 85.09 71.12) (xy 85.09 68.58))
  1589. (stroke (width 0) (type default) (color 0 0 0 0))
  1590. (uuid 57a07bfe-e0c8-4178-9efc-c658d0aa0c5b)
  1591. )
  1592. (wire (pts (xy 93.98 78.74) (xy 99.06 78.74))
  1593. (stroke (width 0) (type default) (color 0 0 0 0))
  1594. (uuid 58e43a80-a74c-4a45-a990-a8fe7ecac27a)
  1595. )
  1596. (wire (pts (xy 152.4 85.09) (xy 137.16 85.09))
  1597. (stroke (width 0) (type default) (color 0 0 0 0))
  1598. (uuid 5bc4bec0-de82-443a-a56c-94cfb0912fcb)
  1599. )
  1600. (wire (pts (xy 189.23 58.42) (xy 194.31 58.42))
  1601. (stroke (width 0) (type default) (color 0 0 0 0))
  1602. (uuid 5c4ddc3a-1b67-4d06-8b43-5f565c9d4f71)
  1603. )
  1604. (wire (pts (xy 271.78 142.24) (xy 271.78 140.97))
  1605. (stroke (width 0) (type default) (color 0 0 0 0))
  1606. (uuid 5d00cbc9-46cb-472e-b705-59da8e971192)
  1607. )
  1608. (wire (pts (xy 271.78 140.97) (xy 273.05 140.97))
  1609. (stroke (width 0) (type default) (color 0 0 0 0))
  1610. (uuid 5ecea6c7-cbcd-4340-9db8-55b54a886e1e)
  1611. )
  1612. (wire (pts (xy 74.93 52.07) (xy 74.93 49.53))
  1613. (stroke (width 0) (type default) (color 0 0 0 0))
  1614. (uuid 5edbc061-8621-4c13-864b-a2a2b212044e)
  1615. )
  1616. (wire (pts (xy 59.69 99.06) (xy 59.69 80.01))
  1617. (stroke (width 0) (type default) (color 0 0 0 0))
  1618. (uuid 5f9c5087-aeae-41db-97be-1dd276294553)
  1619. )
  1620. (wire (pts (xy 215.9 95.25) (xy 217.17 95.25))
  1621. (stroke (width 0) (type default) (color 0 0 0 0))
  1622. (uuid 64bbd1a8-b20b-4d12-891d-7b53b4a0334a)
  1623. )
  1624. (wire (pts (xy 43.18 99.06) (xy 44.45 99.06))
  1625. (stroke (width 0) (type default) (color 0 0 0 0))
  1626. (uuid 64d84e49-aaf5-4eba-8a78-1b20287a1fe2)
  1627. )
  1628. (wire (pts (xy 243.84 148.59) (xy 246.38 148.59))
  1629. (stroke (width 0) (type default) (color 0 0 0 0))
  1630. (uuid 6505825f-43ee-4fb8-b546-c0b2310ed040)
  1631. )
  1632. (wire (pts (xy 194.31 58.42) (xy 194.31 57.15))
  1633. (stroke (width 0) (type default) (color 0 0 0 0))
  1634. (uuid 65908b01-f0a0-46e1-84f2-bf49d46af2a7)
  1635. )
  1636. (wire (pts (xy 246.38 154.94) (xy 246.38 156.21))
  1637. (stroke (width 0) (type default) (color 0 0 0 0))
  1638. (uuid 69cceaac-6f1b-4182-8e1c-91402953f92a)
  1639. )
  1640. (wire (pts (xy 100.33 85.09) (xy 100.33 78.74))
  1641. (stroke (width 0) (type default) (color 0 0 0 0))
  1642. (uuid 69e05192-f084-4bb3-aff6-f350c539f1a8)
  1643. )
  1644. (wire (pts (xy 34.29 93.98) (xy 34.29 88.9))
  1645. (stroke (width 0) (type default) (color 0 0 0 0))
  1646. (uuid 6b1d6bcd-1928-474b-8dbd-6dab746597ca)
  1647. )
  1648. (wire (pts (xy 31.75 99.06) (xy 43.18 99.06))
  1649. (stroke (width 0) (type default) (color 0 0 0 0))
  1650. (uuid 6bdf4c09-0d97-4f84-a45b-4830c8cb3132)
  1651. )
  1652. (wire (pts (xy 39.37 68.58) (xy 39.37 71.12))
  1653. (stroke (width 0) (type default) (color 0 0 0 0))
  1654. (uuid 7112d2ae-7915-4f1a-aae6-e71244f669d8)
  1655. )
  1656. (wire (pts (xy 215.9 90.17) (xy 217.17 90.17))
  1657. (stroke (width 0) (type default) (color 0 0 0 0))
  1658. (uuid 713e4d09-6cf1-49fc-bf2e-c643eb7890b8)
  1659. )
  1660. (wire (pts (xy 142.24 100.33) (xy 142.24 102.87))
  1661. (stroke (width 0) (type default) (color 0 0 0 0))
  1662. (uuid 75080b0b-6140-45af-8605-622af6de8bea)
  1663. )
  1664. (wire (pts (xy 184.15 118.11) (xy 185.42 118.11))
  1665. (stroke (width 0) (type default) (color 0 0 0 0))
  1666. (uuid 785187eb-3061-4043-a954-4178556793a1)
  1667. )
  1668. (wire (pts (xy 93.98 59.69) (xy 93.98 55.88))
  1669. (stroke (width 0) (type default) (color 0 0 0 0))
  1670. (uuid 79fa940a-2b5a-472f-9a29-806c2daad595)
  1671. )
  1672. (wire (pts (xy 35.56 76.2) (xy 35.56 68.58))
  1673. (stroke (width 0) (type default) (color 0 0 0 0))
  1674. (uuid 7ab8aff0-29e4-4be7-af1f-6a97b7752e20)
  1675. )
  1676. (wire (pts (xy 194.31 50.8) (xy 194.31 52.07))
  1677. (stroke (width 0) (type default) (color 0 0 0 0))
  1678. (uuid 7b1f2f40-abe7-4adb-bfe4-3f1a7f99a0f2)
  1679. )
  1680. (wire (pts (xy 118.11 78.74) (xy 118.11 82.55))
  1681. (stroke (width 0) (type default) (color 0 0 0 0))
  1682. (uuid 7b485fa8-406a-42d5-9a01-13ae76ec07b5)
  1683. )
  1684. (wire (pts (xy 189.23 49.53) (xy 189.23 50.8))
  1685. (stroke (width 0) (type default) (color 0 0 0 0))
  1686. (uuid 7bc13ee4-2194-461b-9242-0d96ebba241b)
  1687. )
  1688. (wire (pts (xy 257.81 139.7) (xy 257.81 142.24))
  1689. (stroke (width 0) (type default) (color 0 0 0 0))
  1690. (uuid 7bd09790-9a37-4331-94a2-940c4fb9585b)
  1691. )
  1692. (wire (pts (xy 215.9 110.49) (xy 217.17 110.49))
  1693. (stroke (width 0) (type default) (color 0 0 0 0))
  1694. (uuid 824a1256-25d4-4c20-968f-40a07210c698)
  1695. )
  1696. (wire (pts (xy 43.18 99.06) (xy 43.18 95.25))
  1697. (stroke (width 0) (type default) (color 0 0 0 0))
  1698. (uuid 8524da93-8e55-4af1-8974-d6a0c4c21263)
  1699. )
  1700. (wire (pts (xy 137.16 85.09) (xy 137.16 87.63))
  1701. (stroke (width 0) (type default) (color 0 0 0 0))
  1702. (uuid 86b1650c-27f6-4516-8b60-2a6a434a183e)
  1703. )
  1704. (wire (pts (xy 215.9 105.41) (xy 217.17 105.41))
  1705. (stroke (width 0) (type default) (color 0 0 0 0))
  1706. (uuid 89d9af53-e698-40c4-8ab2-a44fdf0a4c6c)
  1707. )
  1708. (wire (pts (xy 215.9 92.71) (xy 217.17 92.71))
  1709. (stroke (width 0) (type default) (color 0 0 0 0))
  1710. (uuid 8f0c1305-7bd7-41b0-a77d-0a9232a17e2e)
  1711. )
  1712. (wire (pts (xy 273.05 139.7) (xy 273.05 140.97))
  1713. (stroke (width 0) (type default) (color 0 0 0 0))
  1714. (uuid 92ff4797-ba89-46c8-b3a8-8260d960e660)
  1715. )
  1716. (wire (pts (xy 73.66 91.44) (xy 73.66 116.84))
  1717. (stroke (width 0) (type default) (color 0 0 0 0))
  1718. (uuid 965bc598-5f52-4615-847f-179635cd5cde)
  1719. )
  1720. (wire (pts (xy 215.9 74.93) (xy 217.17 74.93))
  1721. (stroke (width 0) (type default) (color 0 0 0 0))
  1722. (uuid 96bdf5ea-ca81-4096-814f-ff6d6aaf3220)
  1723. )
  1724. (wire (pts (xy 93.98 74.93) (xy 93.98 78.74))
  1725. (stroke (width 0) (type default) (color 0 0 0 0))
  1726. (uuid 97675b30-915a-43e3-828c-166fb0161c3a)
  1727. )
  1728. (wire (pts (xy 74.93 85.09) (xy 74.93 104.14))
  1729. (stroke (width 0) (type default) (color 0 0 0 0))
  1730. (uuid 97db24fe-c1f7-4f86-9060-dc632af2d885)
  1731. )
  1732. (wire (pts (xy 85.09 54.61) (xy 85.09 49.53))
  1733. (stroke (width 0) (type default) (color 0 0 0 0))
  1734. (uuid 9a025d13-3f10-4480-b02b-5650c6d28ed8)
  1735. )
  1736. (wire (pts (xy 31.75 104.14) (xy 43.18 104.14))
  1737. (stroke (width 0) (type default) (color 0 0 0 0))
  1738. (uuid 9ad54c14-6dd1-4741-ab11-80a0275cae72)
  1739. )
  1740. (wire (pts (xy 43.18 104.14) (xy 43.18 109.22))
  1741. (stroke (width 0) (type default) (color 0 0 0 0))
  1742. (uuid 9b774066-2c22-4032-af01-4291adb02340)
  1743. )
  1744. (wire (pts (xy 74.93 78.74) (xy 74.93 85.09))
  1745. (stroke (width 0) (type default) (color 0 0 0 0))
  1746. (uuid 9e39ed40-271f-40f8-b1c9-20b888c10512)
  1747. )
  1748. (wire (pts (xy 147.32 107.95) (xy 147.32 109.22))
  1749. (stroke (width 0) (type default) (color 0 0 0 0))
  1750. (uuid 9fb9a654-045f-4c58-ba9d-e6e9d641e3ae)
  1751. )
  1752. (wire (pts (xy 184.15 107.95) (xy 185.42 107.95))
  1753. (stroke (width 0) (type default) (color 0 0 0 0))
  1754. (uuid a0129fe7-e9e9-4c74-af85-e2b335707eb4)
  1755. )
  1756. (wire (pts (xy 237.49 148.59) (xy 238.76 148.59))
  1757. (stroke (width 0) (type default) (color 0 0 0 0))
  1758. (uuid a1533d6a-9d56-4622-800a-f5af923f4a97)
  1759. )
  1760. (wire (pts (xy 200.66 125.73) (xy 200.66 128.27))
  1761. (stroke (width 0) (type default) (color 0 0 0 0))
  1762. (uuid a559f63f-b3a0-4b81-aa6a-605d4da47af6)
  1763. )
  1764. (wire (pts (xy 86.36 116.84) (xy 86.36 114.3))
  1765. (stroke (width 0) (type default) (color 0 0 0 0))
  1766. (uuid a6d1221a-1077-412d-8a73-7025f9b4ca20)
  1767. )
  1768. (wire (pts (xy 257.81 147.32) (xy 257.81 148.59))
  1769. (stroke (width 0) (type default) (color 0 0 0 0))
  1770. (uuid a9240eb1-cd96-4728-9dbf-17ea5e90b45d)
  1771. )
  1772. (wire (pts (xy 215.9 87.63) (xy 217.17 87.63))
  1773. (stroke (width 0) (type default) (color 0 0 0 0))
  1774. (uuid a9fdce30-e0b1-49dc-914c-0573fb33fbc7)
  1775. )
  1776. (wire (pts (xy 49.53 99.06) (xy 59.69 99.06))
  1777. (stroke (width 0) (type default) (color 0 0 0 0))
  1778. (uuid ab15be4c-1efb-422a-9053-a5c97ba751b0)
  1779. )
  1780. (wire (pts (xy 184.15 115.57) (xy 185.42 115.57))
  1781. (stroke (width 0) (type default) (color 0 0 0 0))
  1782. (uuid b0b40da2-8918-4f0b-b11b-1408b929feb5)
  1783. )
  1784. (wire (pts (xy 215.9 80.01) (xy 217.17 80.01))
  1785. (stroke (width 0) (type default) (color 0 0 0 0))
  1786. (uuid b6670714-a829-420f-8f82-042c74d803a5)
  1787. )
  1788. (wire (pts (xy 101.6 104.14) (xy 101.6 106.68))
  1789. (stroke (width 0) (type default) (color 0 0 0 0))
  1790. (uuid b78bfc8f-0469-4499-ad41-c131461c3c5d)
  1791. )
  1792. (wire (pts (xy 132.08 99.06) (xy 147.32 99.06))
  1793. (stroke (width 0) (type default) (color 0 0 0 0))
  1794. (uuid b8e9717b-c8d9-44dd-9eb5-d37e3b2c2fb5)
  1795. )
  1796. (wire (pts (xy 271.78 147.32) (xy 271.78 148.59))
  1797. (stroke (width 0) (type default) (color 0 0 0 0))
  1798. (uuid bc007755-47dc-4b01-a9a3-8f34e8741895)
  1799. )
  1800. (wire (pts (xy 142.24 107.95) (xy 142.24 109.22))
  1801. (stroke (width 0) (type default) (color 0 0 0 0))
  1802. (uuid bf8bfbb4-4b7a-430e-865f-8acab9f8c04d)
  1803. )
  1804. (wire (pts (xy 152.4 97.79) (xy 152.4 102.87))
  1805. (stroke (width 0) (type default) (color 0 0 0 0))
  1806. (uuid bff35e53-0373-44e5-a0ce-05175bbecd57)
  1807. )
  1808. (wire (pts (xy 85.09 68.58) (xy 85.09 64.77))
  1809. (stroke (width 0) (type default) (color 0 0 0 0))
  1810. (uuid c261f2c7-400a-44c0-9c0a-e7dc7bbb3f90)
  1811. )
  1812. (wire (pts (xy 184.15 72.39) (xy 185.42 72.39))
  1813. (stroke (width 0) (type default) (color 0 0 0 0))
  1814. (uuid c4e3a83a-2945-4c21-9d1d-f3f3be86b7bd)
  1815. )
  1816. (wire (pts (xy 132.08 87.63) (xy 132.08 82.55))
  1817. (stroke (width 0) (type default) (color 0 0 0 0))
  1818. (uuid c645efa1-5cf3-4d27-be7a-303fdbabecd8)
  1819. )
  1820. (wire (pts (xy 184.15 92.71) (xy 185.42 92.71))
  1821. (stroke (width 0) (type default) (color 0 0 0 0))
  1822. (uuid c6505e92-8e90-436d-b6f5-959c6248d156)
  1823. )
  1824. (wire (pts (xy 184.15 95.25) (xy 185.42 95.25))
  1825. (stroke (width 0) (type default) (color 0 0 0 0))
  1826. (uuid c71e1710-20a1-4e33-88ae-549fb47faa61)
  1827. )
  1828. (wire (pts (xy 49.53 83.82) (xy 62.23 83.82))
  1829. (stroke (width 0) (type default) (color 0 0 0 0))
  1830. (uuid c95ae74a-ca90-4a39-aa68-19d5d2714b13)
  1831. )
  1832. (wire (pts (xy 31.75 88.9) (xy 34.29 88.9))
  1833. (stroke (width 0) (type default) (color 0 0 0 0))
  1834. (uuid c9dc1467-f8a9-424e-ab40-9eace7cb7fbb)
  1835. )
  1836. (wire (pts (xy 184.15 97.79) (xy 185.42 97.79))
  1837. (stroke (width 0) (type default) (color 0 0 0 0))
  1838. (uuid cb082ca8-e559-493c-a769-6ac76ddc831e)
  1839. )
  1840. (wire (pts (xy 189.23 58.42) (xy 189.23 59.69))
  1841. (stroke (width 0) (type default) (color 0 0 0 0))
  1842. (uuid ccdce88e-24b7-4692-934b-22bb9b0763dc)
  1843. )
  1844. (wire (pts (xy 215.9 102.87) (xy 217.17 102.87))
  1845. (stroke (width 0) (type default) (color 0 0 0 0))
  1846. (uuid cf6465a5-cdc8-43ab-af6a-066f3abc4788)
  1847. )
  1848. (wire (pts (xy 215.9 100.33) (xy 217.17 100.33))
  1849. (stroke (width 0) (type default) (color 0 0 0 0))
  1850. (uuid d0c5561a-ecf5-4fb9-9963-743c221a8335)
  1851. )
  1852. (wire (pts (xy 215.9 113.03) (xy 237.49 113.03))
  1853. (stroke (width 0) (type default) (color 0 0 0 0))
  1854. (uuid d2b76814-7e11-4ea5-b409-7892e0c8500a)
  1855. )
  1856. (wire (pts (xy 246.38 139.7) (xy 246.38 142.24))
  1857. (stroke (width 0) (type default) (color 0 0 0 0))
  1858. (uuid d2f72b7f-67e2-4cf3-9de6-340a26ecf95b)
  1859. )
  1860. (wire (pts (xy 182.88 113.03) (xy 185.42 113.03))
  1861. (stroke (width 0) (type default) (color 0 0 0 0))
  1862. (uuid d5ad3607-7629-4f44-bfe3-a3b510cd5b14)
  1863. )
  1864. (wire (pts (xy 137.16 95.25) (xy 137.16 97.79))
  1865. (stroke (width 0) (type default) (color 0 0 0 0))
  1866. (uuid d618158f-4184-4754-aa33-65a98e706342)
  1867. )
  1868. (wire (pts (xy 142.24 80.01) (xy 142.24 87.63))
  1869. (stroke (width 0) (type default) (color 0 0 0 0))
  1870. (uuid d70b07f0-7794-49ac-aab9-bba7744f562e)
  1871. )
  1872. (wire (pts (xy 215.9 82.55) (xy 217.17 82.55))
  1873. (stroke (width 0) (type default) (color 0 0 0 0))
  1874. (uuid d7329050-0c4f-4d4d-b156-c34af61257ff)
  1875. )
  1876. (wire (pts (xy 99.06 76.2) (xy 102.87 76.2))
  1877. (stroke (width 0) (type default) (color 0 0 0 0))
  1878. (uuid d75f1379-cf40-49b3-9b28-2d291ed900e9)
  1879. )
  1880. (wire (pts (xy 189.23 50.8) (xy 189.23 52.07))
  1881. (stroke (width 0) (type default) (color 0 0 0 0))
  1882. (uuid d98b06b1-d759-4372-889f-6ac21114139f)
  1883. )
  1884. (wire (pts (xy 215.9 97.79) (xy 217.17 97.79))
  1885. (stroke (width 0) (type default) (color 0 0 0 0))
  1886. (uuid d9c1c6f8-c198-49f9-bff0-eab2393a0053)
  1887. )
  1888. (wire (pts (xy 100.33 78.74) (xy 102.87 78.74))
  1889. (stroke (width 0) (type default) (color 0 0 0 0))
  1890. (uuid da423bcf-af02-422a-8d3f-915d7fd393eb)
  1891. )
  1892. (wire (pts (xy 184.15 77.47) (xy 185.42 77.47))
  1893. (stroke (width 0) (type default) (color 0 0 0 0))
  1894. (uuid dad24ddf-e25d-4aa8-b795-2adc252edc45)
  1895. )
  1896. (wire (pts (xy 31.75 78.74) (xy 41.91 78.74))
  1897. (stroke (width 0) (type default) (color 0 0 0 0))
  1898. (uuid dc2e4d69-ab4d-4864-999d-7aa340dd63c7)
  1899. )
  1900. (wire (pts (xy 215.9 115.57) (xy 237.49 115.57))
  1901. (stroke (width 0) (type default) (color 0 0 0 0))
  1902. (uuid dd07efd4-24c4-483d-a118-ed58a9223c8c)
  1903. )
  1904. (wire (pts (xy 91.44 116.84) (xy 100.33 116.84))
  1905. (stroke (width 0) (type default) (color 0 0 0 0))
  1906. (uuid dd4b4783-44b6-4bbf-bf18-b846491e4d4c)
  1907. )
  1908. (wire (pts (xy 189.23 50.8) (xy 194.31 50.8))
  1909. (stroke (width 0) (type default) (color 0 0 0 0))
  1910. (uuid ddfa4cf0-3486-4284-897b-3a9e51f271d9)
  1911. )
  1912. (wire (pts (xy 43.18 95.25) (xy 44.45 95.25))
  1913. (stroke (width 0) (type default) (color 0 0 0 0))
  1914. (uuid dfe0615d-48dd-4d5e-ae77-f5a2410688c9)
  1915. )
  1916. (wire (pts (xy 127 80.01) (xy 142.24 80.01))
  1917. (stroke (width 0) (type default) (color 0 0 0 0))
  1918. (uuid e0130066-f120-45ab-8ca4-de7cd402c362)
  1919. )
  1920. (wire (pts (xy 189.23 57.15) (xy 189.23 58.42))
  1921. (stroke (width 0) (type default) (color 0 0 0 0))
  1922. (uuid e02b47af-92a8-4b6e-841f-f88d0fa73eb7)
  1923. )
  1924. (wire (pts (xy 184.15 102.87) (xy 185.42 102.87))
  1925. (stroke (width 0) (type default) (color 0 0 0 0))
  1926. (uuid e188f4e0-97d6-45d5-9852-98640c6abc42)
  1927. )
  1928. (wire (pts (xy 91.44 90.17) (xy 100.33 90.17))
  1929. (stroke (width 0) (type default) (color 0 0 0 0))
  1930. (uuid e325a134-36dc-4151-9d17-8bf13dc78564)
  1931. )
  1932. (wire (pts (xy 215.9 85.09) (xy 217.17 85.09))
  1933. (stroke (width 0) (type default) (color 0 0 0 0))
  1934. (uuid e595c6c4-f51e-40bc-a76d-c0a08bbd62be)
  1935. )
  1936. (wire (pts (xy 62.23 83.82) (xy 62.23 95.25))
  1937. (stroke (width 0) (type default) (color 0 0 0 0))
  1938. (uuid e5e10b7e-d4e1-472a-acd2-b7ba1a3292f0)
  1939. )
  1940. (wire (pts (xy 102.87 76.2) (xy 102.87 71.12))
  1941. (stroke (width 0) (type default) (color 0 0 0 0))
  1942. (uuid ee86ad28-2e8a-4b4f-a90f-b244d52f0462)
  1943. )
  1944. (wire (pts (xy 74.93 49.53) (xy 85.09 49.53))
  1945. (stroke (width 0) (type default) (color 0 0 0 0))
  1946. (uuid f09eeb0b-a016-4287-8ed5-683b4c4b51a3)
  1947. )
  1948. (wire (pts (xy 246.38 148.59) (xy 246.38 149.86))
  1949. (stroke (width 0) (type default) (color 0 0 0 0))
  1950. (uuid f22aae5d-f6eb-438b-9ba4-dcb7ba01f85f)
  1951. )
  1952. (wire (pts (xy 91.44 93.98) (xy 91.44 90.17))
  1953. (stroke (width 0) (type default) (color 0 0 0 0))
  1954. (uuid f50538bf-e44a-4d20-ab4a-ccf1e95ea69c)
  1955. )
  1956. (wire (pts (xy 137.16 97.79) (xy 152.4 97.79))
  1957. (stroke (width 0) (type default) (color 0 0 0 0))
  1958. (uuid f84570f0-8f86-40f4-8c85-4d0ad12444b2)
  1959. )
  1960. (wire (pts (xy 31.75 83.82) (xy 44.45 83.82))
  1961. (stroke (width 0) (type default) (color 0 0 0 0))
  1962. (uuid fc153f76-4971-47fe-9c36-88d5ca4ab507)
  1963. )
  1964. (wire (pts (xy 147.32 82.55) (xy 147.32 87.63))
  1965. (stroke (width 0) (type default) (color 0 0 0 0))
  1966. (uuid fc48681f-9397-420c-a160-4d40e8208b22)
  1967. )
  1968. (wire (pts (xy 74.93 104.14) (xy 78.74 104.14))
  1969. (stroke (width 0) (type default) (color 0 0 0 0))
  1970. (uuid fe0a8ab1-7b25-4d9a-9a3b-f8c5e10b289a)
  1971. )
  1972. (wire (pts (xy 74.93 78.74) (xy 80.01 78.74))
  1973. (stroke (width 0) (type default) (color 0 0 0 0))
  1974. (uuid ff579cc0-821d-40ca-8f3d-8708c2d87acb)
  1975. )
  1976. (label "USB_D+" (at 237.49 113.03 180)
  1977. (effects (font (size 1.27 1.27)) (justify right bottom))
  1978. (uuid 3d6472eb-4872-48d0-9b65-1b39f6d4a46a)
  1979. )
  1980. (label "USB_D+" (at 100.33 90.17 180)
  1981. (effects (font (size 1.27 1.27)) (justify right bottom))
  1982. (uuid 3eee2221-7af9-4d6a-ba79-a48c3fd1ac35)
  1983. )
  1984. (label "USB_D-" (at 237.49 115.57 180)
  1985. (effects (font (size 1.27 1.27)) (justify right bottom))
  1986. (uuid 44c331f8-33e4-4ba1-bb1e-3071cc175bfd)
  1987. )
  1988. (label "USB_D-" (at 100.33 116.84 180)
  1989. (effects (font (size 1.27 1.27)) (justify right bottom))
  1990. (uuid 7b694997-43fc-41fd-818b-681c539b1571)
  1991. )
  1992. (global_label "ESP32_MISO" (shape input) (at 217.17 95.25 0) (fields_autoplaced)
  1993. (effects (font (size 1.27 1.27)) (justify left))
  1994. (uuid 04b78285-4974-4fa0-8f4e-46d399f5727c)
  1995. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1996. (effects (font (size 1.27 1.27)) hide)
  1997. )
  1998. )
  1999. (global_label "ESP32_EN" (shape input) (at 184.15 72.39 180) (fields_autoplaced)
  2000. (effects (font (size 0.9906 0.9906)) (justify right))
  2001. (uuid 0e11718f-21aa-474d-9bf4-88d875870740)
  2002. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2003. (effects (font (size 1.27 1.27)) hide)
  2004. )
  2005. )
  2006. (global_label "ESP32_TCK" (shape input) (at 217.17 90.17 0) (fields_autoplaced)
  2007. (effects (font (size 1.27 1.27)) (justify left))
  2008. (uuid 1533b475-c834-40d3-ae2c-55eb46ae810f)
  2009. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2010. (effects (font (size 1.27 1.27)) hide)
  2011. )
  2012. )
  2013. (global_label "FLASH_CS#" (shape input) (at 184.15 77.47 180) (fields_autoplaced)
  2014. (effects (font (size 0.9906 0.9906)) (justify right))
  2015. (uuid 201a8082-80bc-49cb-a857-a9c917ee8418)
  2016. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2017. (effects (font (size 1.27 1.27)) hide)
  2018. )
  2019. )
  2020. (global_label "ESP32_CS1" (shape input) (at 217.17 74.93 0) (fields_autoplaced)
  2021. (effects (font (size 1.27 1.27)) (justify left))
  2022. (uuid 22127bf3-28e1-4f2a-9132-0b2244d2149e)
  2023. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2024. (effects (font (size 1.27 1.27)) hide)
  2025. )
  2026. )
  2027. (global_label "ESP32_TDI" (shape input) (at 217.17 85.09 0) (fields_autoplaced)
  2028. (effects (font (size 1.27 1.27)) (justify left))
  2029. (uuid 22312754-c8c2-4400-b598-394e06b2be81)
  2030. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2031. (effects (font (size 1.27 1.27)) hide)
  2032. )
  2033. )
  2034. (global_label "ESP32_TXD" (shape input) (at 217.17 80.01 0) (fields_autoplaced)
  2035. (effects (font (size 1.27 1.27)) (justify left))
  2036. (uuid 27b32d30-a0e6-48e4-8f63-c61987047d29)
  2037. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2038. (effects (font (size 1.27 1.27)) hide)
  2039. )
  2040. )
  2041. (global_label "ESP32_TDO" (shape input) (at 217.17 87.63 0) (fields_autoplaced)
  2042. (effects (font (size 1.27 1.27)) (justify left))
  2043. (uuid 2d4ba971-ddd9-4f08-ae0a-4bc49faa5143)
  2044. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2045. (effects (font (size 1.27 1.27)) hide)
  2046. )
  2047. )
  2048. (global_label "FPGA_TDO" (shape input) (at 184.15 118.11 180) (fields_autoplaced)
  2049. (effects (font (size 0.9906 0.9906)) (justify right))
  2050. (uuid 2f58dd1b-258a-4fb6-a155-4e2931ab012c)
  2051. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2052. (effects (font (size 1.27 1.27)) hide)
  2053. )
  2054. )
  2055. (global_label "FPGA_SPI_MOSI" (shape input) (at 184.15 105.41 180) (fields_autoplaced)
  2056. (effects (font (size 0.9906 0.9906)) (justify right))
  2057. (uuid 3785db90-bbe9-4018-bab6-3a4673f84f27)
  2058. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2059. (effects (font (size 1.27 1.27)) hide)
  2060. )
  2061. )
  2062. (global_label "ESP32_TMS" (shape input) (at 217.17 82.55 0) (fields_autoplaced)
  2063. (effects (font (size 1.27 1.27)) (justify left))
  2064. (uuid 38c40dcc-c1da-4f6f-a147-01497313c7b0)
  2065. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2066. (effects (font (size 1.27 1.27)) hide)
  2067. )
  2068. )
  2069. (global_label "ESP32_SDA" (shape input) (at 274.32 148.59 270) (fields_autoplaced)
  2070. (effects (font (size 1.27 1.27)) (justify right))
  2071. (uuid 46255620-16a2-4e81-9e4a-58dddcf89388)
  2072. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2073. (effects (font (size 1.27 1.27)) hide)
  2074. )
  2075. )
  2076. (global_label "ESP32_IO0" (shape input) (at 257.81 148.59 270) (fields_autoplaced)
  2077. (effects (font (size 1.27 1.27)) (justify right))
  2078. (uuid 4c77837f-2440-4b7b-8e7e-430f981c7c04)
  2079. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2080. (effects (font (size 1.27 1.27)) hide)
  2081. )
  2082. )
  2083. (global_label "ESP32_EN" (shape input) (at 237.49 148.59 180) (fields_autoplaced)
  2084. (effects (font (size 1.27 1.27)) (justify right))
  2085. (uuid 4cbba380-690c-405e-bbfb-a0cd7ef65d0e)
  2086. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2087. (effects (font (size 1.27 1.27)) hide)
  2088. )
  2089. )
  2090. (global_label "ESP32_SCL" (shape input) (at 217.17 102.87 0) (fields_autoplaced)
  2091. (effects (font (size 1.27 1.27)) (justify left))
  2092. (uuid 5fe5bd8d-5a86-4565-bd10-e08c6de9aa03)
  2093. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2094. (effects (font (size 1.27 1.27)) hide)
  2095. )
  2096. )
  2097. (global_label "FGPA_SPI_CS_ESP32" (shape input) (at 184.15 100.33 180) (fields_autoplaced)
  2098. (effects (font (size 0.9906 0.9906)) (justify right))
  2099. (uuid 728dda43-38f9-4d13-b2a9-59e599c86d99)
  2100. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2101. (effects (font (size 1.27 1.27)) hide)
  2102. )
  2103. )
  2104. (global_label "ESP32_MOSI" (shape input) (at 217.17 100.33 0) (fields_autoplaced)
  2105. (effects (font (size 1.27 1.27)) (justify left))
  2106. (uuid 8d9ea4cf-1047-42af-bf72-13258f22d6ad)
  2107. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2108. (effects (font (size 1.27 1.27)) hide)
  2109. )
  2110. )
  2111. (global_label "ESP32_RXD" (shape input) (at 217.17 77.47 0) (fields_autoplaced)
  2112. (effects (font (size 1.27 1.27)) (justify left))
  2113. (uuid 97972d9a-c8ac-431f-b1f4-0da8477b5639)
  2114. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2115. (effects (font (size 1.27 1.27)) hide)
  2116. )
  2117. )
  2118. (global_label "ESP32_CS0" (shape input) (at 217.17 92.71 0) (fields_autoplaced)
  2119. (effects (font (size 1.27 1.27)) (justify left))
  2120. (uuid 9cd1ba63-2087-4000-a5a9-797dad78d993)
  2121. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2122. (effects (font (size 1.27 1.27)) hide)
  2123. )
  2124. )
  2125. (global_label "ESP32_CS2" (shape input) (at 217.17 110.49 0) (fields_autoplaced)
  2126. (effects (font (size 1.27 1.27)) (justify left))
  2127. (uuid a11284ee-2f71-4eb8-b0ee-e01b498d0140)
  2128. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2129. (effects (font (size 1.27 1.27)) hide)
  2130. )
  2131. )
  2132. (global_label "INT_ESP32" (shape input) (at 184.15 97.79 180) (fields_autoplaced)
  2133. (effects (font (size 0.9906 0.9906)) (justify right))
  2134. (uuid a1441258-3477-4706-8540-9e88ae0dac49)
  2135. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2136. (effects (font (size 1.27 1.27)) hide)
  2137. )
  2138. )
  2139. (global_label "FPGA_SPI_CLK" (shape input) (at 184.15 102.87 180) (fields_autoplaced)
  2140. (effects (font (size 0.9906 0.9906)) (justify right))
  2141. (uuid a65cad0c-0ef1-4ea5-a965-4eae7ac1f6af)
  2142. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2143. (effects (font (size 1.27 1.27)) hide)
  2144. )
  2145. )
  2146. (global_label "ESP32_SDA" (shape input) (at 217.17 105.41 0) (fields_autoplaced)
  2147. (effects (font (size 1.27 1.27)) (justify left))
  2148. (uuid af5a6355-b37d-4130-98e5-c563dae6ea34)
  2149. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2150. (effects (font (size 1.27 1.27)) hide)
  2151. )
  2152. )
  2153. (global_label "ESP32_SCK" (shape input) (at 217.17 97.79 0) (fields_autoplaced)
  2154. (effects (font (size 1.27 1.27)) (justify left))
  2155. (uuid b2de1057-44b4-4b1a-b3d7-c19d3cd25553)
  2156. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2157. (effects (font (size 1.27 1.27)) hide)
  2158. )
  2159. )
  2160. (global_label "FPGA_TMS" (shape input) (at 184.15 110.49 180) (fields_autoplaced)
  2161. (effects (font (size 0.9906 0.9906)) (justify right))
  2162. (uuid b45301a2-b6d7-44bd-8834-616acde30aef)
  2163. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2164. (effects (font (size 1.27 1.27)) hide)
  2165. )
  2166. )
  2167. (global_label "USB_PWR_EN" (shape input) (at 184.15 92.71 180) (fields_autoplaced)
  2168. (effects (font (size 0.9906 0.9906)) (justify right))
  2169. (uuid b4796a06-5ec1-4b7e-a305-c6447cc5c644)
  2170. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2171. (effects (font (size 1.27 1.27)) hide)
  2172. )
  2173. )
  2174. (global_label "ESP32_SCL" (shape input) (at 271.78 148.59 270) (fields_autoplaced)
  2175. (effects (font (size 1.27 1.27)) (justify right))
  2176. (uuid ba660766-df56-40bf-b584-d5d4ed6cb6fc)
  2177. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2178. (effects (font (size 1.27 1.27)) hide)
  2179. )
  2180. )
  2181. (global_label "FPGA_TDI" (shape input) (at 184.15 115.57 180) (fields_autoplaced)
  2182. (effects (font (size 0.9906 0.9906)) (justify right))
  2183. (uuid d23aa89d-c621-4b1b-a845-8c26429d6622)
  2184. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2185. (effects (font (size 1.27 1.27)) hide)
  2186. )
  2187. )
  2188. (global_label "FPGA_TCK" (shape input) (at 184.15 120.65 180) (fields_autoplaced)
  2189. (effects (font (size 0.9906 0.9906)) (justify right))
  2190. (uuid d32a4687-3a9c-4aaa-9fc8-6c464698f554)
  2191. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2192. (effects (font (size 1.27 1.27)) hide)
  2193. )
  2194. )
  2195. (global_label "~{USB_PWR_SINK}" (shape input) (at 184.15 95.25 180) (fields_autoplaced)
  2196. (effects (font (size 0.9906 0.9906)) (justify right))
  2197. (uuid d432cbe6-4998-44d8-87df-626563ccc34f)
  2198. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2199. (effects (font (size 1.27 1.27)) hide)
  2200. )
  2201. )
  2202. (global_label "~{USB_PWR_SINK}" (shape input) (at 62.23 83.82 0) (fields_autoplaced)
  2203. (effects (font (size 0.9906 0.9906)) (justify left))
  2204. (uuid db002d44-34dc-4a16-a373-be2b73d8ad8e)
  2205. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2206. (effects (font (size 1.27 1.27)) hide)
  2207. )
  2208. )
  2209. (global_label "FPGA_SPI_MISO" (shape input) (at 184.15 107.95 180) (fields_autoplaced)
  2210. (effects (font (size 0.9906 0.9906)) (justify right))
  2211. (uuid e96432f3-c6ee-4cdc-892b-eb9f8e5ebd05)
  2212. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2213. (effects (font (size 1.27 1.27)) hide)
  2214. )
  2215. )
  2216. (global_label "USB_PWR_EN" (shape input) (at 96.52 59.69 0) (fields_autoplaced)
  2217. (effects (font (size 0.9906 0.9906)) (justify left))
  2218. (uuid efb5ebae-d680-4d30-add6-fa2b005bc2e3)
  2219. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2220. (effects (font (size 1.27 1.27)) hide)
  2221. )
  2222. )
  2223. (global_label "ESP32_IO0" (shape input) (at 184.15 74.93 180) (fields_autoplaced)
  2224. (effects (font (size 0.9906 0.9906)) (justify right))
  2225. (uuid f3642676-ce32-431a-adfa-a8e750bc449d)
  2226. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  2227. (effects (font (size 1.27 1.27)) hide)
  2228. )
  2229. )
  2230. (hierarchical_label "FPGA_I2C_SCL" (shape input) (at 185.42 90.17 180)
  2231. (effects (font (size 0.9906 0.9906)) (justify right))
  2232. (uuid 7f29ecb0-6265-4d60-8278-7704387a2057)
  2233. )
  2234. (hierarchical_label "FPGA_I2C_SDA" (shape input) (at 185.42 87.63 180)
  2235. (effects (font (size 0.9906 0.9906)) (justify right))
  2236. (uuid 922b14e9-e5b4-4506-8c7b-f653748d7f34)
  2237. )
  2238. (hierarchical_label "RTC" (shape input) (at 182.88 113.03 180)
  2239. (effects (font (size 1.27 1.27)) (justify right))
  2240. (uuid bead2789-cf29-4cdd-ad3a-a7fd6922e223)
  2241. )
  2242. (symbol (lib_id "power:GND") (at 43.18 109.22 0) (unit 1)
  2243. (in_bom yes) (on_board yes)
  2244. (uuid 00000000-0000-0000-0000-00005cc7520b)
  2245. (property "Reference" "#PWR0136" (id 0) (at 43.18 115.57 0)
  2246. (effects (font (size 1.27 1.27)) hide)
  2247. )
  2248. (property "Value" "GND" (id 1) (at 43.307 113.6142 0))
  2249. (property "Footprint" "" (id 2) (at 43.18 109.22 0)
  2250. (effects (font (size 1.27 1.27)) hide)
  2251. )
  2252. (property "Datasheet" "" (id 3) (at 43.18 109.22 0)
  2253. (effects (font (size 1.27 1.27)) hide)
  2254. )
  2255. (pin "1" (uuid 3663e84d-fbb5-4cbb-a94c-3bf2e0f4528b))
  2256. )
  2257. (symbol (lib_id "Device:R_Small") (at 46.99 95.25 270) (unit 1)
  2258. (in_bom yes) (on_board yes)
  2259. (uuid 00000000-0000-0000-0000-00005e79f20f)
  2260. (property "Reference" "R4" (id 0) (at 45.72 92.71 90))
  2261. (property "Value" "5.1k" (id 1) (at 49.53 92.71 90))
  2262. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 46.99 93.472 90)
  2263. (effects (font (size 1.27 1.27)) hide)
  2264. )
  2265. (property "Datasheet" "~" (id 3) (at 46.99 95.25 0)
  2266. (effects (font (size 1.27 1.27)) hide)
  2267. )
  2268. (property "LCSC" "C25905" (id 4) (at 46.99 95.25 0)
  2269. (effects (font (size 1.27 1.27)) hide)
  2270. )
  2271. (property "Supplier" "" (id 5) (at 46.99 95.25 0)
  2272. (effects (font (size 1.27 1.27)) hide)
  2273. )
  2274. (pin "1" (uuid b2e7f506-f7d4-448a-af52-7dbef3267d9c))
  2275. (pin "2" (uuid 37a13556-8115-4188-a66b-25cd57806830))
  2276. )
  2277. (symbol (lib_id "Device:C_Small") (at 118.11 85.09 0) (mirror y) (unit 1)
  2278. (in_bom yes) (on_board yes)
  2279. (uuid 00000000-0000-0000-0000-00005e7feac9)
  2280. (property "Reference" "C52" (id 0) (at 120.65 82.55 0))
  2281. (property "Value" "1uF" (id 1) (at 120.65 87.63 0))
  2282. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 117.1448 88.9 0)
  2283. (effects (font (size 1.27 1.27)) hide)
  2284. )
  2285. (property "Datasheet" "~" (id 3) (at 118.11 85.09 0)
  2286. (effects (font (size 1.27 1.27)) hide)
  2287. )
  2288. (property "LCSC" "C28323" (id 4) (at 153.67 109.22 0)
  2289. (effects (font (size 1.27 1.27)) hide)
  2290. )
  2291. (property "MOUSER" "" (id 5) (at 153.67 109.22 0)
  2292. (effects (font (size 1.27 1.27)) hide)
  2293. )
  2294. (property "MPN" "" (id 6) (at 153.67 109.22 0)
  2295. (effects (font (size 1.27 1.27)) hide)
  2296. )
  2297. (property "Supplier" "" (id 7) (at 118.11 85.09 0)
  2298. (effects (font (size 1.27 1.27)) hide)
  2299. )
  2300. (pin "1" (uuid df0f39c5-ac25-4662-916a-1037e83cf195))
  2301. (pin "2" (uuid 5ee72b24-30a2-4ba3-ba3d-ec1cb3a2b25f))
  2302. )
  2303. (symbol (lib_id "Device:D_Schottky") (at 85.09 85.09 180) (unit 1)
  2304. (in_bom yes) (on_board yes)
  2305. (uuid 00000000-0000-0000-0000-00006032d6a5)
  2306. (property "Reference" "D27" (id 0) (at 82.55 83.82 0)
  2307. (effects (font (size 1.27 1.27)) (justify left))
  2308. )
  2309. (property "Value" "1N5819W" (id 1) (at 83.947 87.122 90)
  2310. (effects (font (size 1.27 1.27)) (justify left))
  2311. )
  2312. (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 85.09 85.09 0)
  2313. (effects (font (size 1.27 1.27)) hide)
  2314. )
  2315. (property "Datasheet" "~" (id 3) (at 85.09 85.09 0)
  2316. (effects (font (size 1.27 1.27)) hide)
  2317. )
  2318. (property "LCSC" "C963381" (id 4) (at 85.09 85.09 0)
  2319. (effects (font (size 1.27 1.27)) hide)
  2320. )
  2321. (pin "1" (uuid 03697bdb-be93-4e64-898e-2a285d8a1b68))
  2322. (pin "2" (uuid e22ecb52-9362-41d3-a43c-a881b8d24db9))
  2323. )
  2324. (symbol (lib_id "power:+5V") (at 118.11 68.58 0) (unit 1)
  2325. (in_bom yes) (on_board yes)
  2326. (uuid 00000000-0000-0000-0000-00006032df88)
  2327. (property "Reference" "#PWR0161" (id 0) (at 118.11 72.39 0)
  2328. (effects (font (size 1.27 1.27)) hide)
  2329. )
  2330. (property "Value" "+5V" (id 1) (at 118.491 64.1858 0))
  2331. (property "Footprint" "" (id 2) (at 118.11 68.58 0)
  2332. (effects (font (size 1.27 1.27)) hide)
  2333. )
  2334. (property "Datasheet" "" (id 3) (at 118.11 68.58 0)
  2335. (effects (font (size 1.27 1.27)) hide)
  2336. )
  2337. (pin "1" (uuid fd4bdd26-e48c-49cf-9f62-cc6bfc3c25b9))
  2338. )
  2339. (symbol (lib_id "power:+3V3") (at 246.38 139.7 0) (unit 1)
  2340. (in_bom yes) (on_board yes)
  2341. (uuid 00000000-0000-0000-0000-00006035b9ad)
  2342. (property "Reference" "#PWR0175" (id 0) (at 246.38 143.51 0)
  2343. (effects (font (size 1.27 1.27)) hide)
  2344. )
  2345. (property "Value" "+3V3" (id 1) (at 246.761 135.3058 0))
  2346. (property "Footprint" "" (id 2) (at 246.38 139.7 0)
  2347. (effects (font (size 1.27 1.27)) hide)
  2348. )
  2349. (property "Datasheet" "" (id 3) (at 246.38 139.7 0)
  2350. (effects (font (size 1.27 1.27)) hide)
  2351. )
  2352. (pin "1" (uuid 17ae423f-6f17-4fd2-aea5-d3d8c77fc776))
  2353. )
  2354. (symbol (lib_id "Device:R_Small") (at 246.38 144.78 0) (unit 1)
  2355. (in_bom yes) (on_board yes)
  2356. (uuid 00000000-0000-0000-0000-000060379925)
  2357. (property "Reference" "R1" (id 0) (at 247.8786 143.6116 0)
  2358. (effects (font (size 1.27 1.27)) (justify left))
  2359. )
  2360. (property "Value" "10k" (id 1) (at 247.8786 145.923 0)
  2361. (effects (font (size 1.27 1.27)) (justify left))
  2362. )
  2363. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 246.38 144.78 0)
  2364. (effects (font (size 1.27 1.27)) hide)
  2365. )
  2366. (property "Datasheet" "~" (id 3) (at 246.38 144.78 0)
  2367. (effects (font (size 1.27 1.27)) hide)
  2368. )
  2369. (property "LCSC" "C25744" (id 4) (at 246.38 144.78 0)
  2370. (effects (font (size 1.27 1.27)) hide)
  2371. )
  2372. (pin "1" (uuid cecc35a9-9205-4ae7-a0bd-74fd3ba1022e))
  2373. (pin "2" (uuid ce052e62-9895-4eaf-b763-02bb1f2f2fc0))
  2374. )
  2375. (symbol (lib_id "RF_Module:ESP32-S2-WROVER-I") (at 200.66 97.79 0) (unit 1)
  2376. (in_bom yes) (on_board yes)
  2377. (uuid 00000000-0000-0000-0000-0000610edbda)
  2378. (property "Reference" "U11" (id 0) (at 190.5 67.31 0))
  2379. (property "Value" "ESP32-S2-WROVER-I" (id 1) (at 212.09 67.31 0))
  2380. (property "Footprint" "max80:ESP32-S2-WROVER" (id 2) (at 219.71 127 0)
  2381. (effects (font (size 1.27 1.27)) hide)
  2382. )
  2383. (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf" (id 3) (at 193.04 118.11 0)
  2384. (effects (font (size 1.27 1.27)) hide)
  2385. )
  2386. (property "LCSC" "C967028" (id 4) (at 200.66 97.79 0)
  2387. (effects (font (size 1.27 1.27)) hide)
  2388. )
  2389. (pin "1" (uuid 228e687f-46bf-4c71-b216-27a36bf502b3))
  2390. (pin "10" (uuid 1ad7167c-d842-43e1-aa03-616956653f99))
  2391. (pin "11" (uuid 1ecc1846-9d45-47c8-a9a5-7ee29d34b71f))
  2392. (pin "12" (uuid acaabde7-e8f4-4725-896f-2d7564a7cbe9))
  2393. (pin "13" (uuid 514b636b-fcea-4b24-9700-348d8bb6d8c3))
  2394. (pin "14" (uuid 756c57ca-b724-416e-bbc3-080fcadffb70))
  2395. (pin "15" (uuid 1a583d77-1271-468e-9e6d-48c6b4b96c33))
  2396. (pin "16" (uuid 4e9748b4-9793-4c68-99f7-24ad5e00abd4))
  2397. (pin "17" (uuid 3ace8ec6-69f0-440a-a0d0-6974f2827dfc))
  2398. (pin "18" (uuid e0e2ca39-d81d-4638-b2d7-b3eff9325a7e))
  2399. (pin "19" (uuid d038719f-bd10-44ee-af1d-bbbbd049eabf))
  2400. (pin "2" (uuid b6e81dd6-ac21-44c4-b41e-33986174ff12))
  2401. (pin "20" (uuid f1d21065-3e98-4f76-bf00-449e62d84735))
  2402. (pin "21" (uuid 92d05aad-ed2d-48a1-8722-6f04baafafa8))
  2403. (pin "22" (uuid 360c2bbd-a0a3-46a6-a8fc-000e22263bb0))
  2404. (pin "23" (uuid 73ff453e-6e39-4800-947b-a5ba4142b15e))
  2405. (pin "24" (uuid 8367ac6f-a401-42a3-80d6-61003e3b96b7))
  2406. (pin "25" (uuid 39b32f38-e85c-4148-a7da-5963c53275c0))
  2407. (pin "26" (uuid 4c436fb9-5de1-4241-82c9-60c46b745983))
  2408. (pin "27" (uuid e1c39d3d-107f-47ac-a722-15091d16106c))
  2409. (pin "28" (uuid e3e3c9f3-0c5c-4c7a-bbd0-cd87170d7267))
  2410. (pin "29" (uuid d6441129-9f99-4c29-8263-dd5ca075e046))
  2411. (pin "3" (uuid beb01147-abc1-4a6b-88ff-a8947d580d9d))
  2412. (pin "30" (uuid e0c90fa4-34d6-4bdd-8060-6f1e3b1600cd))
  2413. (pin "31" (uuid e4c50208-faff-4dc6-92f3-177bc479ae49))
  2414. (pin "32" (uuid 71507327-aca7-400b-91af-35ed0f809b8f))
  2415. (pin "33" (uuid 31d58769-4cff-4557-a551-62670289ca77))
  2416. (pin "34" (uuid e2543627-5409-4a7b-8859-04e0792eebb7))
  2417. (pin "35" (uuid 561099e0-143b-4476-90ab-c417c91b1a04))
  2418. (pin "36" (uuid e7c62455-092d-4b40-96ae-88b150e3c5b0))
  2419. (pin "37" (uuid 37d3bf2b-1361-43a6-a660-8e584912f573))
  2420. (pin "38" (uuid 7a4a755d-2ace-41c1-b10d-7757788b8203))
  2421. (pin "39" (uuid 5fd956ea-65d6-43f8-ada9-d42beef6dfb4))
  2422. (pin "4" (uuid 72eb8031-447e-41e3-aaa5-59f792bf0a9e))
  2423. (pin "40" (uuid 85ae0676-f861-4514-b9fb-20bc3f549861))
  2424. (pin "41" (uuid 50383816-a4cc-4b5e-9339-20372903bf5c))
  2425. (pin "42" (uuid bede1092-872b-4e49-9d3a-d552aec96b57))
  2426. (pin "43" (uuid 83d90ef5-ba1f-4396-a807-2497210769f8))
  2427. (pin "5" (uuid 269dc11e-3732-4b0d-8804-d7467b2caa7b))
  2428. (pin "6" (uuid d04e4a25-fea8-400a-b78a-19b8bbedb78b))
  2429. (pin "7" (uuid cc3751c1-5834-4b4a-b5b0-11d94044b147))
  2430. (pin "8" (uuid ec342f29-7fc9-4394-8f4d-4b6d773540e9))
  2431. (pin "9" (uuid ae6839cd-d76e-41ae-9d9d-d53496654de7))
  2432. )
  2433. (symbol (lib_id "Device:Polyfuse") (at 106.68 78.74 270) (unit 1)
  2434. (in_bom yes) (on_board yes)
  2435. (uuid 00000000-0000-0000-0000-0000610ee853)
  2436. (property "Reference" "F2" (id 0) (at 106.68 76.2 90))
  2437. (property "Value" "Polyfuse 1.8A" (id 1) (at 109.22 81.28 90))
  2438. (property "Footprint" "max80:Fuse_1206_3216Metric" (id 2) (at 101.6 80.01 0)
  2439. (effects (font (size 1.27 1.27)) (justify left) hide)
  2440. )
  2441. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf" (id 3) (at 106.68 78.74 0)
  2442. (effects (font (size 1.27 1.27)) hide)
  2443. )
  2444. (property "LCSC" "C70082" (id 4) (at 68.58 44.45 0)
  2445. (effects (font (size 1.27 1.27)) hide)
  2446. )
  2447. (property "MOUSER" "" (id 5) (at 68.58 44.45 0)
  2448. (effects (font (size 1.27 1.27)) hide)
  2449. )
  2450. (property "MPN" "" (id 6) (at 68.58 44.45 0)
  2451. (effects (font (size 1.27 1.27)) hide)
  2452. )
  2453. (pin "1" (uuid f778b720-4dba-4694-97cb-af3248f3da0b))
  2454. (pin "2" (uuid 679644e3-5194-49c9-bc2f-670fb057cc6d))
  2455. )
  2456. (symbol (lib_id "max80:HRO-TYPE-C-31-M-12") (at 29.21 90.17 0) (unit 1)
  2457. (in_bom yes) (on_board yes)
  2458. (uuid 00000000-0000-0000-0000-0000610ee858)
  2459. (property "Reference" "USB2" (id 0) (at 29.21 59.6138 0)
  2460. (effects (font (size 1.524 1.524)))
  2461. )
  2462. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at 29.21 62.3062 0)
  2463. (effects (font (size 1.524 1.524)))
  2464. )
  2465. (property "Footprint" "max80:HRO-TYPE-C-31-M-12" (id 2) (at 29.21 64.9986 0)
  2466. (effects (font (size 1.524 1.524)))
  2467. )
  2468. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at 11.43 88.9 0)
  2469. (effects (font (size 1.524 1.524)) hide)
  2470. )
  2471. (property "LCSC" "C165948" (id 4) (at 29.21 90.17 0)
  2472. (effects (font (size 1.27 1.27)) hide)
  2473. )
  2474. (pin "1" (uuid f4b1cc82-032f-46e4-b914-51c04d09819d))
  2475. (pin "10" (uuid 16165d61-b1b6-457b-9112-2a44bf6cf509))
  2476. (pin "11" (uuid b2023a43-10ff-43ab-80df-26954228ee9c))
  2477. (pin "12" (uuid dc587071-cf10-4ce9-ae6c-4c72ef2698a5))
  2478. (pin "13" (uuid 31f48bfa-414a-4ea3-87a1-96ca97a99923))
  2479. (pin "2" (uuid e30e2336-2dbc-4130-9889-d5f2eae65709))
  2480. (pin "3" (uuid 2235fd0e-bbb7-4dcf-8575-21064ddca5b1))
  2481. (pin "4" (uuid 393c5f35-b604-403b-bb49-564befc1d4e1))
  2482. (pin "5" (uuid 8908b45d-e610-4e95-b4ce-9dd90ff3d44f))
  2483. (pin "6" (uuid 082217f1-4379-4503-b728-55106d6bf1c7))
  2484. (pin "7" (uuid c8fcd968-155f-44aa-a800-8cf269c9dcc4))
  2485. (pin "8" (uuid a0640d39-d3f5-4c67-8446-2d0c8eeedef9))
  2486. (pin "9" (uuid e75dd901-2fb2-4ad2-9bd3-4f38583036d1))
  2487. )
  2488. (symbol (lib_id "power:GND") (at 118.11 88.9 0) (unit 1)
  2489. (in_bom yes) (on_board yes)
  2490. (uuid 00000000-0000-0000-0000-0000610ee85c)
  2491. (property "Reference" "#PWR0140" (id 0) (at 118.11 95.25 0)
  2492. (effects (font (size 1.27 1.27)) hide)
  2493. )
  2494. (property "Value" "GND" (id 1) (at 118.237 93.2942 0))
  2495. (property "Footprint" "" (id 2) (at 118.11 88.9 0)
  2496. (effects (font (size 1.27 1.27)) hide)
  2497. )
  2498. (property "Datasheet" "" (id 3) (at 118.11 88.9 0)
  2499. (effects (font (size 1.27 1.27)) hide)
  2500. )
  2501. (pin "1" (uuid 58c005b6-6e50-4fc2-9acb-ce195450e776))
  2502. )
  2503. (symbol (lib_id "Power_Protection:USBLC6-2SC6") (at 88.9 104.14 90) (unit 1)
  2504. (in_bom yes) (on_board yes)
  2505. (uuid 00000000-0000-0000-0000-0000610ee85e)
  2506. (property "Reference" "U15" (id 0) (at 80.01 95.25 90)
  2507. (effects (font (size 1.27 1.27)) (justify right))
  2508. )
  2509. (property "Value" "USBLC6-2SC6" (id 1) (at 93.98 95.25 90)
  2510. (effects (font (size 1.27 1.27)) (justify right))
  2511. )
  2512. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 78.74 123.19 0)
  2513. (effects (font (size 1.27 1.27)) hide)
  2514. )
  2515. (property "Datasheet" "" (id 3) (at 80.01 99.06 0)
  2516. (effects (font (size 1.27 1.27)) hide)
  2517. )
  2518. (property "LCSC" "C7519" (id 4) (at 88.9 104.14 0)
  2519. (effects (font (size 1.27 1.27)) hide)
  2520. )
  2521. (pin "1" (uuid a0f76d93-112e-417c-b52c-3672f2d1d60a))
  2522. (pin "2" (uuid 27ffb4d8-9026-4ae6-9928-ea9707dfcbd9))
  2523. (pin "3" (uuid 19a5a40d-c31a-4b14-b306-06b0a763bddb))
  2524. (pin "4" (uuid 5881ee20-278a-4e12-9254-07f1db1cba4c))
  2525. (pin "5" (uuid 88a3fa09-9050-4a94-a796-98b43c4981e7))
  2526. (pin "6" (uuid 149f0dc4-9b74-4a1a-a37b-7eb355956a7a))
  2527. )
  2528. (symbol (lib_id "power:GND") (at 101.6 106.68 0) (unit 1)
  2529. (in_bom yes) (on_board yes)
  2530. (uuid 00000000-0000-0000-0000-0000610ee85f)
  2531. (property "Reference" "#PWR0141" (id 0) (at 101.6 113.03 0)
  2532. (effects (font (size 1.27 1.27)) hide)
  2533. )
  2534. (property "Value" "GND" (id 1) (at 101.727 111.0742 0))
  2535. (property "Footprint" "" (id 2) (at 101.6 106.68 0)
  2536. (effects (font (size 1.27 1.27)) hide)
  2537. )
  2538. (property "Datasheet" "" (id 3) (at 101.6 106.68 0)
  2539. (effects (font (size 1.27 1.27)) hide)
  2540. )
  2541. (pin "1" (uuid ef0448bc-4f6c-4a2b-b2c1-bcb39e98b287))
  2542. )
  2543. (symbol (lib_id "Device:R_Small") (at 46.99 83.82 270) (unit 1)
  2544. (in_bom yes) (on_board yes)
  2545. (uuid 00000000-0000-0000-0000-000061104569)
  2546. (property "Reference" "R3" (id 0) (at 43.18 86.36 90))
  2547. (property "Value" "5.1k" (id 1) (at 50.8 86.36 90))
  2548. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 46.99 83.82 0)
  2549. (effects (font (size 1.27 1.27)) hide)
  2550. )
  2551. (property "Datasheet" "~" (id 3) (at 46.99 83.82 0)
  2552. (effects (font (size 1.27 1.27)) hide)
  2553. )
  2554. (property "LCSC" "C25905" (id 4) (at 46.99 83.82 0)
  2555. (effects (font (size 1.27 1.27)) hide)
  2556. )
  2557. (pin "1" (uuid 2d596433-9303-455a-b481-8baffdc68f31))
  2558. (pin "2" (uuid ee16771b-aed3-4080-b343-6e728660dc9f))
  2559. )
  2560. (symbol (lib_id "power:GND") (at 200.66 128.27 0) (unit 1)
  2561. (in_bom yes) (on_board yes)
  2562. (uuid 00000000-0000-0000-0000-00006110ba8e)
  2563. (property "Reference" "#PWR010" (id 0) (at 200.66 134.62 0)
  2564. (effects (font (size 1.27 1.27)) hide)
  2565. )
  2566. (property "Value" "GND" (id 1) (at 200.787 132.6642 0))
  2567. (property "Footprint" "" (id 2) (at 200.66 128.27 0)
  2568. (effects (font (size 1.27 1.27)) hide)
  2569. )
  2570. (property "Datasheet" "" (id 3) (at 200.66 128.27 0)
  2571. (effects (font (size 1.27 1.27)) hide)
  2572. )
  2573. (pin "1" (uuid 0c100e24-d6e9-4165-9e6a-35608d735eda))
  2574. )
  2575. (symbol (lib_id "power:+3V3") (at 200.66 64.77 0) (unit 1)
  2576. (in_bom yes) (on_board yes)
  2577. (uuid 00000000-0000-0000-0000-00006110e24f)
  2578. (property "Reference" "#PWR09" (id 0) (at 200.66 68.58 0)
  2579. (effects (font (size 1.27 1.27)) hide)
  2580. )
  2581. (property "Value" "+3V3" (id 1) (at 201.041 60.3758 0))
  2582. (property "Footprint" "" (id 2) (at 200.66 64.77 0)
  2583. (effects (font (size 1.27 1.27)) hide)
  2584. )
  2585. (property "Datasheet" "" (id 3) (at 200.66 64.77 0)
  2586. (effects (font (size 1.27 1.27)) hide)
  2587. )
  2588. (pin "1" (uuid b270f771-721b-49fe-aa42-63a5cebe1f4d))
  2589. )
  2590. (symbol (lib_id "Device:C_Small") (at 189.23 54.61 0) (unit 1)
  2591. (in_bom yes) (on_board yes)
  2592. (uuid 00000000-0000-0000-0000-0000611262ee)
  2593. (property "Reference" "C54" (id 0) (at 182.88 53.34 0)
  2594. (effects (font (size 1.27 1.27)) (justify left))
  2595. )
  2596. (property "Value" "22uF" (id 1) (at 181.61 55.88 0)
  2597. (effects (font (size 1.27 1.27)) (justify left))
  2598. )
  2599. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 189.23 54.61 0)
  2600. (effects (font (size 1.27 1.27)) hide)
  2601. )
  2602. (property "Datasheet" "~" (id 3) (at 189.23 54.61 0)
  2603. (effects (font (size 1.27 1.27)) hide)
  2604. )
  2605. (property "LCSC" "C45783" (id 4) (at 189.23 54.61 0)
  2606. (effects (font (size 1.27 1.27)) hide)
  2607. )
  2608. (pin "1" (uuid 1462d938-5411-4e22-aa72-27d46121d151))
  2609. (pin "2" (uuid add861c7-e8f7-4cfa-8bd4-7e4de3f19f7c))
  2610. )
  2611. (symbol (lib_id "Device:C_Small") (at 194.31 54.61 0) (unit 1)
  2612. (in_bom yes) (on_board yes)
  2613. (uuid 00000000-0000-0000-0000-000061126fc2)
  2614. (property "Reference" "C55" (id 0) (at 196.6468 53.4416 0)
  2615. (effects (font (size 1.27 1.27)) (justify left))
  2616. )
  2617. (property "Value" "100nF" (id 1) (at 196.6468 55.753 0)
  2618. (effects (font (size 1.27 1.27)) (justify left))
  2619. )
  2620. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 194.31 54.61 0)
  2621. (effects (font (size 1.27 1.27)) hide)
  2622. )
  2623. (property "Datasheet" "~" (id 3) (at 194.31 54.61 0)
  2624. (effects (font (size 1.27 1.27)) hide)
  2625. )
  2626. (property "LCSC" "C1525" (id 4) (at 194.31 54.61 0)
  2627. (effects (font (size 1.27 1.27)) hide)
  2628. )
  2629. (pin "1" (uuid 2c8d589a-b9f4-4b08-9a5c-2a4974fdd278))
  2630. (pin "2" (uuid 874c218a-578e-4a62-a8c1-fe8414dd125f))
  2631. )
  2632. (symbol (lib_id "power:+3V3") (at 189.23 49.53 0) (unit 1)
  2633. (in_bom yes) (on_board yes)
  2634. (uuid 00000000-0000-0000-0000-0000611276ff)
  2635. (property "Reference" "#PWR0143" (id 0) (at 189.23 53.34 0)
  2636. (effects (font (size 1.27 1.27)) hide)
  2637. )
  2638. (property "Value" "+3V3" (id 1) (at 189.611 45.1358 0))
  2639. (property "Footprint" "" (id 2) (at 189.23 49.53 0)
  2640. (effects (font (size 1.27 1.27)) hide)
  2641. )
  2642. (property "Datasheet" "" (id 3) (at 189.23 49.53 0)
  2643. (effects (font (size 1.27 1.27)) hide)
  2644. )
  2645. (pin "1" (uuid ad3d2496-9d91-4c3e-a06b-0ce2ea4713c0))
  2646. )
  2647. (symbol (lib_id "power:GND") (at 189.23 59.69 0) (unit 1)
  2648. (in_bom yes) (on_board yes)
  2649. (uuid 00000000-0000-0000-0000-000061127d02)
  2650. (property "Reference" "#PWR0144" (id 0) (at 189.23 66.04 0)
  2651. (effects (font (size 1.27 1.27)) hide)
  2652. )
  2653. (property "Value" "GND" (id 1) (at 189.357 64.0842 0))
  2654. (property "Footprint" "" (id 2) (at 189.23 59.69 0)
  2655. (effects (font (size 1.27 1.27)) hide)
  2656. )
  2657. (property "Datasheet" "" (id 3) (at 189.23 59.69 0)
  2658. (effects (font (size 1.27 1.27)) hide)
  2659. )
  2660. (pin "1" (uuid f3ba663e-8563-4c48-a8cc-72c18d8d96e8))
  2661. )
  2662. (symbol (lib_id "Device:C_Small") (at 246.38 152.4 0) (unit 1)
  2663. (in_bom yes) (on_board yes)
  2664. (uuid 00000000-0000-0000-0000-00006112e6f3)
  2665. (property "Reference" "C53" (id 0) (at 248.7168 151.2316 0)
  2666. (effects (font (size 1.27 1.27)) (justify left))
  2667. )
  2668. (property "Value" "100nF" (id 1) (at 248.7168 153.543 0)
  2669. (effects (font (size 1.27 1.27)) (justify left))
  2670. )
  2671. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 246.38 152.4 0)
  2672. (effects (font (size 1.27 1.27)) hide)
  2673. )
  2674. (property "Datasheet" "~" (id 3) (at 246.38 152.4 0)
  2675. (effects (font (size 1.27 1.27)) hide)
  2676. )
  2677. (property "LCSC" "C1525" (id 4) (at 246.38 152.4 0)
  2678. (effects (font (size 1.27 1.27)) hide)
  2679. )
  2680. (pin "1" (uuid 5d0d7524-b89d-4f6c-9d44-8457b02a6678))
  2681. (pin "2" (uuid 35af6bdd-53ff-42e4-b72a-2b3ff4a35922))
  2682. )
  2683. (symbol (lib_id "power:GND") (at 246.38 156.21 0) (unit 1)
  2684. (in_bom yes) (on_board yes)
  2685. (uuid 00000000-0000-0000-0000-0000611302a2)
  2686. (property "Reference" "#PWR0145" (id 0) (at 246.38 162.56 0)
  2687. (effects (font (size 1.27 1.27)) hide)
  2688. )
  2689. (property "Value" "GND" (id 1) (at 246.507 160.6042 0))
  2690. (property "Footprint" "" (id 2) (at 246.38 156.21 0)
  2691. (effects (font (size 1.27 1.27)) hide)
  2692. )
  2693. (property "Datasheet" "" (id 3) (at 246.38 156.21 0)
  2694. (effects (font (size 1.27 1.27)) hide)
  2695. )
  2696. (pin "1" (uuid f6f1d552-75bb-4b55-b8a4-e2bf105fbebb))
  2697. )
  2698. (symbol (lib_id "Device:R_Small") (at 241.3 148.59 270) (unit 1)
  2699. (in_bom yes) (on_board yes)
  2700. (uuid 00000000-0000-0000-0000-0000611331f0)
  2701. (property "Reference" "R15" (id 0) (at 242.4684 150.0886 0)
  2702. (effects (font (size 1.27 1.27)) (justify left))
  2703. )
  2704. (property "Value" "1k" (id 1) (at 240.157 150.0886 0)
  2705. (effects (font (size 1.27 1.27)) (justify left))
  2706. )
  2707. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 241.3 148.59 0)
  2708. (effects (font (size 1.27 1.27)) hide)
  2709. )
  2710. (property "Datasheet" "~" (id 3) (at 241.3 148.59 0)
  2711. (effects (font (size 1.27 1.27)) hide)
  2712. )
  2713. (property "LCSC" "C11702" (id 4) (at 241.3 148.59 0)
  2714. (effects (font (size 1.27 1.27)) hide)
  2715. )
  2716. (pin "1" (uuid e956ff4d-e455-4edd-96aa-f86004139587))
  2717. (pin "2" (uuid 471eb4c1-1fb6-4731-b769-cc81195874cc))
  2718. )
  2719. (symbol (lib_id "Device:R_Small") (at 271.78 144.78 0) (unit 1)
  2720. (in_bom yes) (on_board yes)
  2721. (uuid 00000000-0000-0000-0000-0000611ab901)
  2722. (property "Reference" "R19" (id 0) (at 266.7 143.51 0)
  2723. (effects (font (size 1.27 1.27)) (justify left))
  2724. )
  2725. (property "Value" "4.7k" (id 1) (at 266.7 146.05 0)
  2726. (effects (font (size 1.27 1.27)) (justify left))
  2727. )
  2728. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 271.78 144.78 0)
  2729. (effects (font (size 1.27 1.27)) hide)
  2730. )
  2731. (property "Datasheet" "~" (id 3) (at 271.78 144.78 0)
  2732. (effects (font (size 1.27 1.27)) hide)
  2733. )
  2734. (property "LCSC" "C25900" (id 4) (at 271.78 144.78 0)
  2735. (effects (font (size 1.27 1.27)) hide)
  2736. )
  2737. (pin "1" (uuid 2902cb0a-8f42-4c95-9ea3-5e179bfad9e8))
  2738. (pin "2" (uuid c36f8251-808c-4f72-8a4b-d0fe3ef6d78f))
  2739. )
  2740. (symbol (lib_id "Device:R_Small") (at 274.32 144.78 0) (unit 1)
  2741. (in_bom yes) (on_board yes)
  2742. (uuid 00000000-0000-0000-0000-0000611abcc5)
  2743. (property "Reference" "R20" (id 0) (at 275.8186 143.6116 0)
  2744. (effects (font (size 1.27 1.27)) (justify left))
  2745. )
  2746. (property "Value" "4.7k" (id 1) (at 275.8186 145.923 0)
  2747. (effects (font (size 1.27 1.27)) (justify left))
  2748. )
  2749. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 274.32 144.78 0)
  2750. (effects (font (size 1.27 1.27)) hide)
  2751. )
  2752. (property "Datasheet" "~" (id 3) (at 274.32 144.78 0)
  2753. (effects (font (size 1.27 1.27)) hide)
  2754. )
  2755. (property "LCSC" "C25900" (id 4) (at 274.32 144.78 0)
  2756. (effects (font (size 1.27 1.27)) hide)
  2757. )
  2758. (pin "1" (uuid 575a00a1-dec2-49af-ab3a-df281627a881))
  2759. (pin "2" (uuid ad88d1c1-a355-41d5-9f44-f354b8bdcfb9))
  2760. )
  2761. (symbol (lib_id "power:+3V3") (at 273.05 139.7 0) (unit 1)
  2762. (in_bom yes) (on_board yes)
  2763. (uuid 00000000-0000-0000-0000-0000611af690)
  2764. (property "Reference" "#PWR034" (id 0) (at 273.05 143.51 0)
  2765. (effects (font (size 1.27 1.27)) hide)
  2766. )
  2767. (property "Value" "+3V3" (id 1) (at 273.431 135.3058 0))
  2768. (property "Footprint" "" (id 2) (at 273.05 139.7 0)
  2769. (effects (font (size 1.27 1.27)) hide)
  2770. )
  2771. (property "Datasheet" "" (id 3) (at 273.05 139.7 0)
  2772. (effects (font (size 1.27 1.27)) hide)
  2773. )
  2774. (pin "1" (uuid 64221fe8-21fa-49d0-9f10-9851134afcf1))
  2775. )
  2776. (symbol (lib_id "Device:LED") (at 142.24 91.44 270) (mirror x) (unit 1)
  2777. (in_bom yes) (on_board yes)
  2778. (uuid 00000000-0000-0000-0000-0000611b5a79)
  2779. (property "Reference" "D1" (id 0) (at 138.43 91.44 90)
  2780. (effects (font (size 1.27 1.27)) (justify left))
  2781. )
  2782. (property "Value" "LED-Y" (id 1) (at 142.24 81.28 90)
  2783. (effects (font (size 1.27 1.27)) (justify left))
  2784. )
  2785. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 142.24 91.44 0)
  2786. (effects (font (size 1.27 1.27)) hide)
  2787. )
  2788. (property "Datasheet" "~" (id 3) (at 142.24 91.44 0)
  2789. (effects (font (size 1.27 1.27)) hide)
  2790. )
  2791. (property "LCSC" "C72038" (id 4) (at 142.24 91.44 0)
  2792. (effects (font (size 1.27 1.27)) hide)
  2793. )
  2794. (pin "1" (uuid 6f655528-a61c-4c23-868b-815cc79f5f8e))
  2795. (pin "2" (uuid 780c110f-d675-44a5-9b77-e6d74a308504))
  2796. )
  2797. (symbol (lib_id "Device:R_Small") (at 142.24 105.41 0) (unit 1)
  2798. (in_bom yes) (on_board yes)
  2799. (uuid 00000000-0000-0000-0000-0000611b7173)
  2800. (property "Reference" "R16" (id 0) (at 139.7 106.68 90)
  2801. (effects (font (size 1.27 1.27)) (justify left))
  2802. )
  2803. (property "Value" "1k" (id 1) (at 138.43 107.95 0)
  2804. (effects (font (size 1.27 1.27)) (justify left))
  2805. )
  2806. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 105.41 0)
  2807. (effects (font (size 1.27 1.27)) hide)
  2808. )
  2809. (property "Datasheet" "~" (id 3) (at 142.24 105.41 0)
  2810. (effects (font (size 1.27 1.27)) hide)
  2811. )
  2812. (property "LCSC" "C11702" (id 4) (at 142.24 105.41 0)
  2813. (effects (font (size 1.27 1.27)) hide)
  2814. )
  2815. (pin "1" (uuid 03b7ea59-04ff-4bfc-a26f-17e4b04b9d62))
  2816. (pin "2" (uuid 16f4e47b-2fb8-4bbd-8c1d-9c3549f80104))
  2817. )
  2818. (symbol (lib_id "Device:R_Small") (at 152.4 105.41 0) (unit 1)
  2819. (in_bom yes) (on_board yes)
  2820. (uuid 00000000-0000-0000-0000-0000611b7e9f)
  2821. (property "Reference" "R17" (id 0) (at 149.86 106.68 90)
  2822. (effects (font (size 1.27 1.27)) (justify left))
  2823. )
  2824. (property "Value" "1k" (id 1) (at 148.59 107.95 0)
  2825. (effects (font (size 1.27 1.27)) (justify left))
  2826. )
  2827. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 152.4 105.41 0)
  2828. (effects (font (size 1.27 1.27)) hide)
  2829. )
  2830. (property "Datasheet" "~" (id 3) (at 152.4 105.41 0)
  2831. (effects (font (size 1.27 1.27)) hide)
  2832. )
  2833. (property "LCSC" "C11702" (id 4) (at 152.4 105.41 0)
  2834. (effects (font (size 1.27 1.27)) hide)
  2835. )
  2836. (pin "1" (uuid 2d665c4d-1437-426f-b9cd-c53451fe5b1a))
  2837. (pin "2" (uuid 72263aa2-32c4-4252-a768-30b77365cca2))
  2838. )
  2839. (symbol (lib_id "Device:R_Small") (at 147.32 105.41 0) (unit 1)
  2840. (in_bom yes) (on_board yes)
  2841. (uuid 00000000-0000-0000-0000-0000611b8401)
  2842. (property "Reference" "R18" (id 0) (at 144.78 106.68 90)
  2843. (effects (font (size 1.27 1.27)) (justify left))
  2844. )
  2845. (property "Value" "820" (id 1) (at 143.51 107.95 0)
  2846. (effects (font (size 1.27 1.27)) (justify left))
  2847. )
  2848. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 147.32 105.41 0)
  2849. (effects (font (size 1.27 1.27)) hide)
  2850. )
  2851. (property "Datasheet" "~" (id 3) (at 147.32 105.41 0)
  2852. (effects (font (size 1.27 1.27)) hide)
  2853. )
  2854. (property "LCSC" "C23253" (id 4) (at 147.32 105.41 0)
  2855. (effects (font (size 1.27 1.27)) hide)
  2856. )
  2857. (pin "1" (uuid 851a5144-622e-4e9b-84aa-b2177ea53c92))
  2858. (pin "2" (uuid bff8daab-48b4-47d4-9ffa-e5f1ce2dcca8))
  2859. )
  2860. (symbol (lib_id "power:GND") (at 142.24 109.22 0) (unit 1)
  2861. (in_bom yes) (on_board yes)
  2862. (uuid 00000000-0000-0000-0000-0000611bd13b)
  2863. (property "Reference" "#PWR031" (id 0) (at 142.24 115.57 0)
  2864. (effects (font (size 1.27 1.27)) hide)
  2865. )
  2866. (property "Value" "GND" (id 1) (at 142.367 113.6142 0))
  2867. (property "Footprint" "" (id 2) (at 142.24 109.22 0)
  2868. (effects (font (size 1.27 1.27)) hide)
  2869. )
  2870. (property "Datasheet" "" (id 3) (at 142.24 109.22 0)
  2871. (effects (font (size 1.27 1.27)) hide)
  2872. )
  2873. (pin "1" (uuid 95568ddf-be8c-46db-99de-cfd2b3a0cf9e))
  2874. )
  2875. (symbol (lib_id "power:GND") (at 147.32 109.22 0) (unit 1)
  2876. (in_bom yes) (on_board yes)
  2877. (uuid 00000000-0000-0000-0000-0000611bd757)
  2878. (property "Reference" "#PWR032" (id 0) (at 147.32 115.57 0)
  2879. (effects (font (size 1.27 1.27)) hide)
  2880. )
  2881. (property "Value" "GND" (id 1) (at 147.447 113.6142 0))
  2882. (property "Footprint" "" (id 2) (at 147.32 109.22 0)
  2883. (effects (font (size 1.27 1.27)) hide)
  2884. )
  2885. (property "Datasheet" "" (id 3) (at 147.32 109.22 0)
  2886. (effects (font (size 1.27 1.27)) hide)
  2887. )
  2888. (pin "1" (uuid 15ce1418-55b0-4ffc-8756-eed419e71700))
  2889. )
  2890. (symbol (lib_id "power:GND") (at 152.4 109.22 0) (unit 1)
  2891. (in_bom yes) (on_board yes)
  2892. (uuid 00000000-0000-0000-0000-0000611bdcb7)
  2893. (property "Reference" "#PWR033" (id 0) (at 152.4 115.57 0)
  2894. (effects (font (size 1.27 1.27)) hide)
  2895. )
  2896. (property "Value" "GND" (id 1) (at 152.527 113.6142 0))
  2897. (property "Footprint" "" (id 2) (at 152.4 109.22 0)
  2898. (effects (font (size 1.27 1.27)) hide)
  2899. )
  2900. (property "Datasheet" "" (id 3) (at 152.4 109.22 0)
  2901. (effects (font (size 1.27 1.27)) hide)
  2902. )
  2903. (pin "1" (uuid 3597f731-eae6-47ca-8690-cde5f7bdb161))
  2904. )
  2905. (symbol (lib_id "Device:LED") (at 152.4 91.44 270) (mirror x) (unit 1)
  2906. (in_bom yes) (on_board yes)
  2907. (uuid 00000000-0000-0000-0000-0000611d1925)
  2908. (property "Reference" "D2" (id 0) (at 148.59 91.44 90)
  2909. (effects (font (size 1.27 1.27)) (justify left))
  2910. )
  2911. (property "Value" "LED-G" (id 1) (at 144.78 83.82 90)
  2912. (effects (font (size 1.27 1.27)) (justify left))
  2913. )
  2914. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 152.4 91.44 0)
  2915. (effects (font (size 1.27 1.27)) hide)
  2916. )
  2917. (property "Datasheet" "~" (id 3) (at 152.4 91.44 0)
  2918. (effects (font (size 1.27 1.27)) hide)
  2919. )
  2920. (property "LCSC" "C72043" (id 4) (at 152.4 91.44 0)
  2921. (effects (font (size 1.27 1.27)) hide)
  2922. )
  2923. (pin "1" (uuid 633327ee-5c92-4cdd-8991-349aa39eaddb))
  2924. (pin "2" (uuid 7a289eba-f626-41bf-8419-f5e4380e1684))
  2925. )
  2926. (symbol (lib_id "Device:LED") (at 147.32 91.44 270) (mirror x) (unit 1)
  2927. (in_bom yes) (on_board yes)
  2928. (uuid 00000000-0000-0000-0000-0000611d1f01)
  2929. (property "Reference" "D3" (id 0) (at 143.51 91.44 90)
  2930. (effects (font (size 1.27 1.27)) (justify left))
  2931. )
  2932. (property "Value" "LED-B" (id 1) (at 147.32 86.36 90)
  2933. (effects (font (size 1.27 1.27)) (justify left))
  2934. )
  2935. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 147.32 91.44 0)
  2936. (effects (font (size 1.27 1.27)) hide)
  2937. )
  2938. (property "Datasheet" "~" (id 3) (at 147.32 91.44 0)
  2939. (effects (font (size 1.27 1.27)) hide)
  2940. )
  2941. (property "LCSC" "C72041" (id 4) (at 147.32 91.44 0)
  2942. (effects (font (size 1.27 1.27)) hide)
  2943. )
  2944. (pin "1" (uuid 63ba11bb-a8d4-4ad2-916f-bb8801f9c48e))
  2945. (pin "2" (uuid cb6e0760-74c5-4d61-9d5c-e561e72a4768))
  2946. )
  2947. (symbol (lib_id "Device:R_Small") (at 257.81 144.78 0) (unit 1)
  2948. (in_bom yes) (on_board yes)
  2949. (uuid 00000000-0000-0000-0000-0000613a0f9d)
  2950. (property "Reference" "R21" (id 0) (at 259.3086 143.6116 0)
  2951. (effects (font (size 1.27 1.27)) (justify left))
  2952. )
  2953. (property "Value" "10k" (id 1) (at 259.3086 145.923 0)
  2954. (effects (font (size 1.27 1.27)) (justify left))
  2955. )
  2956. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 257.81 144.78 0)
  2957. (effects (font (size 1.27 1.27)) hide)
  2958. )
  2959. (property "Datasheet" "~" (id 3) (at 257.81 144.78 0)
  2960. (effects (font (size 1.27 1.27)) hide)
  2961. )
  2962. (property "LCSC" "C25744" (id 4) (at 257.81 144.78 0)
  2963. (effects (font (size 1.27 1.27)) hide)
  2964. )
  2965. (pin "1" (uuid 3f7ea723-dba9-4dc0-bf29-c9e6ac75f873))
  2966. (pin "2" (uuid d063ba46-22f6-4e50-9d5e-95f13fbaf268))
  2967. )
  2968. (symbol (lib_id "power:+3V3") (at 257.81 139.7 0) (unit 1)
  2969. (in_bom yes) (on_board yes)
  2970. (uuid 00000000-0000-0000-0000-0000613a45c4)
  2971. (property "Reference" "#PWR0150" (id 0) (at 257.81 143.51 0)
  2972. (effects (font (size 1.27 1.27)) hide)
  2973. )
  2974. (property "Value" "+3V3" (id 1) (at 258.191 135.3058 0))
  2975. (property "Footprint" "" (id 2) (at 257.81 139.7 0)
  2976. (effects (font (size 1.27 1.27)) hide)
  2977. )
  2978. (property "Datasheet" "" (id 3) (at 257.81 139.7 0)
  2979. (effects (font (size 1.27 1.27)) hide)
  2980. )
  2981. (pin "1" (uuid 11b01bb4-39ea-409f-925f-51bc6ae57194))
  2982. )
  2983. (symbol (lib_id "Device:R_Small") (at 46.99 80.01 270) (unit 1)
  2984. (in_bom yes) (on_board yes)
  2985. (uuid 00000000-0000-0000-0000-0000619f265c)
  2986. (property "Reference" "R34" (id 0) (at 45.72 77.47 90))
  2987. (property "Value" "68k" (id 1) (at 49.53 77.47 90))
  2988. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 46.99 80.01 0)
  2989. (effects (font (size 1.27 1.27)) hide)
  2990. )
  2991. (property "Datasheet" "~" (id 3) (at 46.99 80.01 0)
  2992. (effects (font (size 1.27 1.27)) hide)
  2993. )
  2994. (property "LCSC" "C36871" (id 4) (at 46.99 80.01 0)
  2995. (effects (font (size 1.27 1.27)) hide)
  2996. )
  2997. (pin "1" (uuid 98af1557-14b5-4fcd-83f4-700ba43358c4))
  2998. (pin "2" (uuid 78d57e68-36dc-47c5-997a-7a524fc0acf1))
  2999. )
  3000. (symbol (lib_id "power:GND") (at 39.37 71.12 0) (unit 1)
  3001. (in_bom yes) (on_board yes)
  3002. (uuid 00000000-0000-0000-0000-0000619f35b6)
  3003. (property "Reference" "#PWR012" (id 0) (at 39.37 77.47 0)
  3004. (effects (font (size 1.27 1.27)) hide)
  3005. )
  3006. (property "Value" "GND" (id 1) (at 39.497 75.5142 0))
  3007. (property "Footprint" "" (id 2) (at 39.37 71.12 0)
  3008. (effects (font (size 1.27 1.27)) hide)
  3009. )
  3010. (property "Datasheet" "" (id 3) (at 39.37 71.12 0)
  3011. (effects (font (size 1.27 1.27)) hide)
  3012. )
  3013. (pin "1" (uuid 4451a169-326b-4ea5-98a4-34b43dbe20d5))
  3014. )
  3015. (symbol (lib_id "Device:R_Small") (at 46.99 99.06 270) (unit 1)
  3016. (in_bom yes) (on_board yes)
  3017. (uuid 00000000-0000-0000-0000-0000619fb3aa)
  3018. (property "Reference" "R35" (id 0) (at 45.72 101.6 90))
  3019. (property "Value" "68k" (id 1) (at 50.8 101.6 90))
  3020. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 46.99 99.06 0)
  3021. (effects (font (size 1.27 1.27)) hide)
  3022. )
  3023. (property "Datasheet" "~" (id 3) (at 46.99 99.06 0)
  3024. (effects (font (size 1.27 1.27)) hide)
  3025. )
  3026. (property "LCSC" "C36871" (id 4) (at 46.99 99.06 0)
  3027. (effects (font (size 1.27 1.27)) hide)
  3028. )
  3029. (pin "1" (uuid 74b247e1-12fe-4245-a089-e07f9f950569))
  3030. (pin "2" (uuid 78516991-6fde-4cb5-a03e-6a16e2b8674c))
  3031. )
  3032. (symbol (lib_id "power:+3V3") (at 59.69 74.93 0) (unit 1)
  3033. (in_bom yes) (on_board yes)
  3034. (uuid 00000000-0000-0000-0000-000061a2bd43)
  3035. (property "Reference" "#PWR014" (id 0) (at 59.69 78.74 0)
  3036. (effects (font (size 1.27 1.27)) hide)
  3037. )
  3038. (property "Value" "+3V3" (id 1) (at 60.071 70.5358 0))
  3039. (property "Footprint" "" (id 2) (at 59.69 74.93 0)
  3040. (effects (font (size 1.27 1.27)) hide)
  3041. )
  3042. (property "Datasheet" "" (id 3) (at 59.69 74.93 0)
  3043. (effects (font (size 1.27 1.27)) hide)
  3044. )
  3045. (pin "1" (uuid a11f8acc-bae0-4c11-a859-c3c2c341939a))
  3046. )
  3047. (symbol (lib_id "Transistor_FET:AO3400A") (at 87.63 59.69 180) (unit 1)
  3048. (in_bom yes) (on_board yes)
  3049. (uuid 00000000-0000-0000-0000-000061a76d78)
  3050. (property "Reference" "Q8" (id 0) (at 82.423 58.5216 0)
  3051. (effects (font (size 1.27 1.27)) (justify left))
  3052. )
  3053. (property "Value" "AO3400A" (id 1) (at 82.423 60.833 0)
  3054. (effects (font (size 1.27 1.27)) (justify left))
  3055. )
  3056. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 82.55 57.785 0)
  3057. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  3058. )
  3059. (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf" (id 3) (at 87.63 59.69 0)
  3060. (effects (font (size 1.27 1.27)) (justify left) hide)
  3061. )
  3062. (property "LCSC" "C347476" (id 4) (at 87.63 59.69 0)
  3063. (effects (font (size 1.27 1.27)) hide)
  3064. )
  3065. (pin "1" (uuid cd3851c8-43a7-44ba-a57d-7da51bf4d405))
  3066. (pin "2" (uuid b1ffd1fd-32ab-4a8c-9cb0-68c64d5846a8))
  3067. (pin "3" (uuid def56ef8-2877-4427-9903-57250c5a3b07))
  3068. )
  3069. (symbol (lib_id "Transistor_FET:AO3401A") (at 85.09 76.2 90) (mirror x) (unit 1)
  3070. (in_bom yes) (on_board yes)
  3071. (uuid 00000000-0000-0000-0000-000061a79372)
  3072. (property "Reference" "Q9" (id 0) (at 80.01 73.66 90))
  3073. (property "Value" "AO3401A" (id 1) (at 77.47 76.2 90))
  3074. (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 86.995 81.28 0)
  3075. (effects (font (size 1.27 1.27) italic) (justify left) hide)
  3076. )
  3077. (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" (id 3) (at 85.09 76.2 0)
  3078. (effects (font (size 1.27 1.27)) (justify left) hide)
  3079. )
  3080. (property "LCSC" "C15127" (id 4) (at 85.09 76.2 90)
  3081. (effects (font (size 1.27 1.27)) hide)
  3082. )
  3083. (pin "1" (uuid 8ec07e79-d89b-4a66-8963-3bbe64adaa98))
  3084. (pin "2" (uuid 9beabaab-ef77-45bf-a024-5b1095c39aa2))
  3085. (pin "3" (uuid e9cfdde6-7112-4587-8587-8eb874bda1d5))
  3086. )
  3087. (symbol (lib_id "Device:R_Small") (at 93.98 72.39 0) (unit 1)
  3088. (in_bom yes) (on_board yes)
  3089. (uuid 00000000-0000-0000-0000-000061a919f7)
  3090. (property "Reference" "R36" (id 0) (at 95.4786 71.2216 0)
  3091. (effects (font (size 1.27 1.27)) (justify left))
  3092. )
  3093. (property "Value" "36k" (id 1) (at 95.4786 73.533 0)
  3094. (effects (font (size 1.27 1.27)) (justify left))
  3095. )
  3096. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 72.39 0)
  3097. (effects (font (size 1.27 1.27)) hide)
  3098. )
  3099. (property "Datasheet" "~" (id 3) (at 93.98 72.39 0)
  3100. (effects (font (size 1.27 1.27)) hide)
  3101. )
  3102. (property "LCSC" "C25556" (id 4) (at 93.98 72.39 0)
  3103. (effects (font (size 1.27 1.27)) hide)
  3104. )
  3105. (pin "1" (uuid 4c614581-218c-490b-91c8-5ade65ca0f20))
  3106. (pin "2" (uuid 8d859ebf-9390-4cb5-961d-e7beaa0a4ae4))
  3107. )
  3108. (symbol (lib_id "Device:R_Small") (at 93.98 53.34 0) (unit 1)
  3109. (in_bom yes) (on_board yes)
  3110. (uuid 00000000-0000-0000-0000-000061ac14cb)
  3111. (property "Reference" "R48" (id 0) (at 95.4786 52.1716 0)
  3112. (effects (font (size 1.27 1.27)) (justify left))
  3113. )
  3114. (property "Value" "36k" (id 1) (at 95.4786 54.483 0)
  3115. (effects (font (size 1.27 1.27)) (justify left))
  3116. )
  3117. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 53.34 0)
  3118. (effects (font (size 1.27 1.27)) hide)
  3119. )
  3120. (property "Datasheet" "~" (id 3) (at 93.98 53.34 0)
  3121. (effects (font (size 1.27 1.27)) hide)
  3122. )
  3123. (property "LCSC" "C25556" (id 4) (at 93.98 53.34 0)
  3124. (effects (font (size 1.27 1.27)) hide)
  3125. )
  3126. (pin "1" (uuid 1b9d78c4-3203-44e3-958f-425f2e4ec9ec))
  3127. (pin "2" (uuid 2e8a0e7d-b8cb-4d7e-ba29-f94a45314cf7))
  3128. )
  3129. (symbol (lib_id "power:GND") (at 74.93 52.07 0) (unit 1)
  3130. (in_bom yes) (on_board yes)
  3131. (uuid 00000000-0000-0000-0000-000061ad2f8f)
  3132. (property "Reference" "#PWR017" (id 0) (at 74.93 58.42 0)
  3133. (effects (font (size 1.27 1.27)) hide)
  3134. )
  3135. (property "Value" "GND" (id 1) (at 75.057 56.4642 0))
  3136. (property "Footprint" "" (id 2) (at 74.93 52.07 0)
  3137. (effects (font (size 1.27 1.27)) hide)
  3138. )
  3139. (property "Datasheet" "" (id 3) (at 74.93 52.07 0)
  3140. (effects (font (size 1.27 1.27)) hide)
  3141. )
  3142. (pin "1" (uuid bcfc8ebe-3259-407f-9ca0-83b908ed29de))
  3143. )
  3144. (symbol (lib_id "power:+5VA") (at 102.87 71.12 0) (unit 1)
  3145. (in_bom yes) (on_board yes)
  3146. (uuid 00000000-0000-0000-0000-000061b8cb71)
  3147. (property "Reference" "#PWR0254" (id 0) (at 102.87 74.93 0)
  3148. (effects (font (size 1.27 1.27)) hide)
  3149. )
  3150. (property "Value" "+5VA" (id 1) (at 103.251 66.7258 0))
  3151. (property "Footprint" "" (id 2) (at 102.87 71.12 0)
  3152. (effects (font (size 1.27 1.27)) hide)
  3153. )
  3154. (property "Datasheet" "" (id 3) (at 102.87 71.12 0)
  3155. (effects (font (size 1.27 1.27)) hide)
  3156. )
  3157. (pin "1" (uuid 79e03ae3-04c1-4136-9d11-edbf8450c5e6))
  3158. )
  3159. (symbol (lib_id "Device:LED") (at 127 91.44 270) (mirror x) (unit 1)
  3160. (in_bom yes) (on_board yes)
  3161. (uuid 00000000-0000-0000-0000-000061d533ef)
  3162. (property "Reference" "D11" (id 0) (at 123.19 91.44 90)
  3163. (effects (font (size 1.27 1.27)) (justify left))
  3164. )
  3165. (property "Value" "DNP-Y" (id 1) (at 127 81.28 90)
  3166. (effects (font (size 1.27 1.27)) (justify left))
  3167. )
  3168. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 127 91.44 0)
  3169. (effects (font (size 1.27 1.27)) hide)
  3170. )
  3171. (property "Datasheet" "~" (id 3) (at 127 91.44 0)
  3172. (effects (font (size 1.27 1.27)) hide)
  3173. )
  3174. (property "LCSC" "" (id 4) (at 127 91.44 0)
  3175. (effects (font (size 1.27 1.27)) hide)
  3176. )
  3177. (pin "1" (uuid 2faae2bb-a0c2-4054-ae9f-2d25525a48e8))
  3178. (pin "2" (uuid 08f0a69d-2047-4f15-9147-57cc2889ba57))
  3179. )
  3180. (symbol (lib_id "Device:LED") (at 137.16 91.44 270) (mirror x) (unit 1)
  3181. (in_bom yes) (on_board yes)
  3182. (uuid 00000000-0000-0000-0000-000061d5378a)
  3183. (property "Reference" "D13" (id 0) (at 133.35 91.44 90)
  3184. (effects (font (size 1.27 1.27)) (justify left))
  3185. )
  3186. (property "Value" "DNP-G" (id 1) (at 129.54 83.82 90)
  3187. (effects (font (size 1.27 1.27)) (justify left))
  3188. )
  3189. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 137.16 91.44 0)
  3190. (effects (font (size 1.27 1.27)) hide)
  3191. )
  3192. (property "Datasheet" "~" (id 3) (at 137.16 91.44 0)
  3193. (effects (font (size 1.27 1.27)) hide)
  3194. )
  3195. (property "LCSC" "" (id 4) (at 137.16 91.44 0)
  3196. (effects (font (size 1.27 1.27)) hide)
  3197. )
  3198. (pin "1" (uuid dbf9d52f-7c18-496f-9222-1cd5f4d22ee1))
  3199. (pin "2" (uuid 12290910-e1c4-4f12-a089-9b99be24c1fc))
  3200. )
  3201. (symbol (lib_id "Device:LED") (at 132.08 91.44 270) (mirror x) (unit 1)
  3202. (in_bom yes) (on_board yes)
  3203. (uuid 00000000-0000-0000-0000-000061d53795)
  3204. (property "Reference" "D12" (id 0) (at 128.27 91.44 90)
  3205. (effects (font (size 1.27 1.27)) (justify left))
  3206. )
  3207. (property "Value" "DNP-B" (id 1) (at 132.08 86.36 90)
  3208. (effects (font (size 1.27 1.27)) (justify left))
  3209. )
  3210. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 132.08 91.44 0)
  3211. (effects (font (size 1.27 1.27)) hide)
  3212. )
  3213. (property "Datasheet" "~" (id 3) (at 132.08 91.44 0)
  3214. (effects (font (size 1.27 1.27)) hide)
  3215. )
  3216. (property "LCSC" "" (id 4) (at 132.08 91.44 0)
  3217. (effects (font (size 1.27 1.27)) hide)
  3218. )
  3219. (pin "1" (uuid 797336a2-12e4-4dd0-a33e-dc6624c7dd5e))
  3220. (pin "2" (uuid 63889b5b-319a-4ec7-9d88-38746b1ff624))
  3221. )
  3222. )