暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

drumkit.kicad_sch 95KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742
  1. (kicad_sch (version 20230121) (generator eeschema)
  2. (uuid 13d14c25-8baa-4714-9b30-86acf6c3cb37)
  3. (paper "A4")
  4. (title_block
  5. (title "Drumkit")
  6. (date "2024-03-25")
  7. (rev "1")
  8. )
  9. (lib_symbols
  10. (symbol "Connector:Conn_01x04_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  11. (property "Reference" "J" (at 0 5.08 0)
  12. (effects (font (size 1.27 1.27)))
  13. )
  14. (property "Value" "Conn_01x04_Female" (at 0 -7.62 0)
  15. (effects (font (size 1.27 1.27)))
  16. )
  17. (property "Footprint" "" (at 0 0 0)
  18. (effects (font (size 1.27 1.27)) hide)
  19. )
  20. (property "Datasheet" "~" (at 0 0 0)
  21. (effects (font (size 1.27 1.27)) hide)
  22. )
  23. (property "ki_keywords" "connector" (at 0 0 0)
  24. (effects (font (size 1.27 1.27)) hide)
  25. )
  26. (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  27. (effects (font (size 1.27 1.27)) hide)
  28. )
  29. (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
  30. (effects (font (size 1.27 1.27)) hide)
  31. )
  32. (symbol "Conn_01x04_Female_1_1"
  33. (arc (start 0 -4.572) (mid -0.5058 -5.08) (end 0 -5.588)
  34. (stroke (width 0.1524) (type solid))
  35. (fill (type none))
  36. )
  37. (arc (start 0 -2.032) (mid -0.5058 -2.54) (end 0 -3.048)
  38. (stroke (width 0.1524) (type solid))
  39. (fill (type none))
  40. )
  41. (polyline
  42. (pts
  43. (xy -1.27 -5.08)
  44. (xy -0.508 -5.08)
  45. )
  46. (stroke (width 0.1524) (type solid))
  47. (fill (type none))
  48. )
  49. (polyline
  50. (pts
  51. (xy -1.27 -2.54)
  52. (xy -0.508 -2.54)
  53. )
  54. (stroke (width 0.1524) (type solid))
  55. (fill (type none))
  56. )
  57. (polyline
  58. (pts
  59. (xy -1.27 0)
  60. (xy -0.508 0)
  61. )
  62. (stroke (width 0.1524) (type solid))
  63. (fill (type none))
  64. )
  65. (polyline
  66. (pts
  67. (xy -1.27 2.54)
  68. (xy -0.508 2.54)
  69. )
  70. (stroke (width 0.1524) (type solid))
  71. (fill (type none))
  72. )
  73. (arc (start 0 0.508) (mid -0.5058 0) (end 0 -0.508)
  74. (stroke (width 0.1524) (type solid))
  75. (fill (type none))
  76. )
  77. (arc (start 0 3.048) (mid -0.5058 2.54) (end 0 2.032)
  78. (stroke (width 0.1524) (type solid))
  79. (fill (type none))
  80. )
  81. (pin passive line (at -5.08 2.54 0) (length 3.81)
  82. (name "Pin_1" (effects (font (size 1.27 1.27))))
  83. (number "1" (effects (font (size 1.27 1.27))))
  84. )
  85. (pin passive line (at -5.08 0 0) (length 3.81)
  86. (name "Pin_2" (effects (font (size 1.27 1.27))))
  87. (number "2" (effects (font (size 1.27 1.27))))
  88. )
  89. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  90. (name "Pin_3" (effects (font (size 1.27 1.27))))
  91. (number "3" (effects (font (size 1.27 1.27))))
  92. )
  93. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  94. (name "Pin_4" (effects (font (size 1.27 1.27))))
  95. (number "4" (effects (font (size 1.27 1.27))))
  96. )
  97. )
  98. )
  99. (symbol "Connector:Screw_Terminal_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  100. (property "Reference" "J" (at 0 2.54 0)
  101. (effects (font (size 1.27 1.27)))
  102. )
  103. (property "Value" "Screw_Terminal_01x02" (at 0 -5.08 0)
  104. (effects (font (size 1.27 1.27)))
  105. )
  106. (property "Footprint" "" (at 0 0 0)
  107. (effects (font (size 1.27 1.27)) hide)
  108. )
  109. (property "Datasheet" "~" (at 0 0 0)
  110. (effects (font (size 1.27 1.27)) hide)
  111. )
  112. (property "ki_keywords" "screw terminal" (at 0 0 0)
  113. (effects (font (size 1.27 1.27)) hide)
  114. )
  115. (property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  116. (effects (font (size 1.27 1.27)) hide)
  117. )
  118. (property "ki_fp_filters" "TerminalBlock*:*" (at 0 0 0)
  119. (effects (font (size 1.27 1.27)) hide)
  120. )
  121. (symbol "Screw_Terminal_01x02_1_1"
  122. (rectangle (start -1.27 1.27) (end 1.27 -3.81)
  123. (stroke (width 0.254) (type solid))
  124. (fill (type background))
  125. )
  126. (circle (center 0 -2.54) (radius 0.635)
  127. (stroke (width 0.1524) (type solid))
  128. (fill (type none))
  129. )
  130. (polyline
  131. (pts
  132. (xy -0.5334 -2.2098)
  133. (xy 0.3302 -3.048)
  134. )
  135. (stroke (width 0.1524) (type solid))
  136. (fill (type none))
  137. )
  138. (polyline
  139. (pts
  140. (xy -0.5334 0.3302)
  141. (xy 0.3302 -0.508)
  142. )
  143. (stroke (width 0.1524) (type solid))
  144. (fill (type none))
  145. )
  146. (polyline
  147. (pts
  148. (xy -0.3556 -2.032)
  149. (xy 0.508 -2.8702)
  150. )
  151. (stroke (width 0.1524) (type solid))
  152. (fill (type none))
  153. )
  154. (polyline
  155. (pts
  156. (xy -0.3556 0.508)
  157. (xy 0.508 -0.3302)
  158. )
  159. (stroke (width 0.1524) (type solid))
  160. (fill (type none))
  161. )
  162. (circle (center 0 0) (radius 0.635)
  163. (stroke (width 0.1524) (type solid))
  164. (fill (type none))
  165. )
  166. (pin passive line (at -5.08 0 0) (length 3.81)
  167. (name "Pin_1" (effects (font (size 1.27 1.27))))
  168. (number "1" (effects (font (size 1.27 1.27))))
  169. )
  170. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  171. (name "Pin_2" (effects (font (size 1.27 1.27))))
  172. (number "2" (effects (font (size 1.27 1.27))))
  173. )
  174. )
  175. )
  176. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  177. (property "Reference" "D" (at 0 2.54 0)
  178. (effects (font (size 1.27 1.27)))
  179. )
  180. (property "Value" "LED" (at 0 -2.54 0)
  181. (effects (font (size 1.27 1.27)))
  182. )
  183. (property "Footprint" "" (at 0 0 0)
  184. (effects (font (size 1.27 1.27)) hide)
  185. )
  186. (property "Datasheet" "~" (at 0 0 0)
  187. (effects (font (size 1.27 1.27)) hide)
  188. )
  189. (property "ki_keywords" "LED diode" (at 0 0 0)
  190. (effects (font (size 1.27 1.27)) hide)
  191. )
  192. (property "ki_description" "Light emitting diode" (at 0 0 0)
  193. (effects (font (size 1.27 1.27)) hide)
  194. )
  195. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
  196. (effects (font (size 1.27 1.27)) hide)
  197. )
  198. (symbol "LED_0_1"
  199. (polyline
  200. (pts
  201. (xy -1.27 -1.27)
  202. (xy -1.27 1.27)
  203. )
  204. (stroke (width 0.2032) (type solid))
  205. (fill (type none))
  206. )
  207. (polyline
  208. (pts
  209. (xy -1.27 0)
  210. (xy 1.27 0)
  211. )
  212. (stroke (width 0) (type solid))
  213. (fill (type none))
  214. )
  215. (polyline
  216. (pts
  217. (xy 1.27 -1.27)
  218. (xy 1.27 1.27)
  219. (xy -1.27 0)
  220. (xy 1.27 -1.27)
  221. )
  222. (stroke (width 0.2032) (type solid))
  223. (fill (type none))
  224. )
  225. (polyline
  226. (pts
  227. (xy -3.048 -0.762)
  228. (xy -4.572 -2.286)
  229. (xy -3.81 -2.286)
  230. (xy -4.572 -2.286)
  231. (xy -4.572 -1.524)
  232. )
  233. (stroke (width 0) (type solid))
  234. (fill (type none))
  235. )
  236. (polyline
  237. (pts
  238. (xy -1.778 -0.762)
  239. (xy -3.302 -2.286)
  240. (xy -2.54 -2.286)
  241. (xy -3.302 -2.286)
  242. (xy -3.302 -1.524)
  243. )
  244. (stroke (width 0) (type solid))
  245. (fill (type none))
  246. )
  247. )
  248. (symbol "LED_1_1"
  249. (pin passive line (at -3.81 0 0) (length 2.54)
  250. (name "K" (effects (font (size 1.27 1.27))))
  251. (number "1" (effects (font (size 1.27 1.27))))
  252. )
  253. (pin passive line (at 3.81 0 180) (length 2.54)
  254. (name "A" (effects (font (size 1.27 1.27))))
  255. (number "2" (effects (font (size 1.27 1.27))))
  256. )
  257. )
  258. )
  259. (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  260. (property "Reference" "R" (at 2.032 0 90)
  261. (effects (font (size 1.27 1.27)))
  262. )
  263. (property "Value" "R" (at 0 0 90)
  264. (effects (font (size 1.27 1.27)))
  265. )
  266. (property "Footprint" "" (at -1.778 0 90)
  267. (effects (font (size 1.27 1.27)) hide)
  268. )
  269. (property "Datasheet" "~" (at 0 0 0)
  270. (effects (font (size 1.27 1.27)) hide)
  271. )
  272. (property "ki_keywords" "R res resistor" (at 0 0 0)
  273. (effects (font (size 1.27 1.27)) hide)
  274. )
  275. (property "ki_description" "Resistor" (at 0 0 0)
  276. (effects (font (size 1.27 1.27)) hide)
  277. )
  278. (property "ki_fp_filters" "R_*" (at 0 0 0)
  279. (effects (font (size 1.27 1.27)) hide)
  280. )
  281. (symbol "R_0_1"
  282. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  283. (stroke (width 0.254) (type solid))
  284. (fill (type none))
  285. )
  286. )
  287. (symbol "R_1_1"
  288. (pin passive line (at 0 3.81 270) (length 1.27)
  289. (name "~" (effects (font (size 1.27 1.27))))
  290. (number "1" (effects (font (size 1.27 1.27))))
  291. )
  292. (pin passive line (at 0 -3.81 90) (length 1.27)
  293. (name "~" (effects (font (size 1.27 1.27))))
  294. (number "2" (effects (font (size 1.27 1.27))))
  295. )
  296. )
  297. )
  298. (symbol "GND_1" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  299. (property "Reference" "#PWR" (at 0 -6.35 0)
  300. (effects (font (size 1.27 1.27)) hide)
  301. )
  302. (property "Value" "GND_1" (at 0 -3.81 0)
  303. (effects (font (size 1.27 1.27)))
  304. )
  305. (property "Footprint" "" (at 0 0 0)
  306. (effects (font (size 1.27 1.27)) hide)
  307. )
  308. (property "Datasheet" "" (at 0 0 0)
  309. (effects (font (size 1.27 1.27)) hide)
  310. )
  311. (property "ki_keywords" "global power" (at 0 0 0)
  312. (effects (font (size 1.27 1.27)) hide)
  313. )
  314. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
  315. (effects (font (size 1.27 1.27)) hide)
  316. )
  317. (symbol "GND_1_0_1"
  318. (polyline
  319. (pts
  320. (xy 0 0)
  321. (xy 0 -1.27)
  322. (xy 1.27 -1.27)
  323. (xy 0 -2.54)
  324. (xy -1.27 -1.27)
  325. (xy 0 -1.27)
  326. )
  327. (stroke (width 0) (type default))
  328. (fill (type none))
  329. )
  330. )
  331. (symbol "GND_1_1_1"
  332. (pin power_in line (at 0 0 270) (length 0) hide
  333. (name "GND" (effects (font (size 1.27 1.27))))
  334. (number "1" (effects (font (size 1.27 1.27))))
  335. )
  336. )
  337. )
  338. (symbol "MCU_RaspberryPi_and_Boards:Pico" (in_bom yes) (on_board yes)
  339. (property "Reference" "U" (at -13.97 27.94 0)
  340. (effects (font (size 1.27 1.27)))
  341. )
  342. (property "Value" "Pico" (at 0 19.05 0)
  343. (effects (font (size 1.27 1.27)))
  344. )
  345. (property "Footprint" "RPi_Pico:RPi_Pico_SMD_TH" (at 0 0 90)
  346. (effects (font (size 1.27 1.27)) hide)
  347. )
  348. (property "Datasheet" "" (at 0 0 0)
  349. (effects (font (size 1.27 1.27)) hide)
  350. )
  351. (symbol "Pico_0_0"
  352. (text "Raspberry Pi Pico" (at 0 21.59 0)
  353. (effects (font (size 1.27 1.27)))
  354. )
  355. )
  356. (symbol "Pico_0_1"
  357. (rectangle (start -15.24 26.67) (end 15.24 -26.67)
  358. (stroke (width 0) (type default))
  359. (fill (type background))
  360. )
  361. )
  362. (symbol "Pico_1_1"
  363. (pin bidirectional line (at -17.78 24.13 0) (length 2.54)
  364. (name "GPIO0" (effects (font (size 1.27 1.27))))
  365. (number "1" (effects (font (size 1.27 1.27))))
  366. )
  367. (pin bidirectional line (at -17.78 1.27 0) (length 2.54)
  368. (name "GPIO7" (effects (font (size 1.27 1.27))))
  369. (number "10" (effects (font (size 1.27 1.27))))
  370. )
  371. (pin bidirectional line (at -17.78 -1.27 0) (length 2.54)
  372. (name "GPIO8" (effects (font (size 1.27 1.27))))
  373. (number "11" (effects (font (size 1.27 1.27))))
  374. )
  375. (pin bidirectional line (at -17.78 -3.81 0) (length 2.54)
  376. (name "GPIO9" (effects (font (size 1.27 1.27))))
  377. (number "12" (effects (font (size 1.27 1.27))))
  378. )
  379. (pin power_in line (at -17.78 -6.35 0) (length 2.54)
  380. (name "GND" (effects (font (size 1.27 1.27))))
  381. (number "13" (effects (font (size 1.27 1.27))))
  382. )
  383. (pin bidirectional line (at -17.78 -8.89 0) (length 2.54)
  384. (name "GPIO10" (effects (font (size 1.27 1.27))))
  385. (number "14" (effects (font (size 1.27 1.27))))
  386. )
  387. (pin bidirectional line (at -17.78 -11.43 0) (length 2.54)
  388. (name "GPIO11" (effects (font (size 1.27 1.27))))
  389. (number "15" (effects (font (size 1.27 1.27))))
  390. )
  391. (pin bidirectional line (at -17.78 -13.97 0) (length 2.54)
  392. (name "GPIO12" (effects (font (size 1.27 1.27))))
  393. (number "16" (effects (font (size 1.27 1.27))))
  394. )
  395. (pin bidirectional line (at -17.78 -16.51 0) (length 2.54)
  396. (name "GPIO13" (effects (font (size 1.27 1.27))))
  397. (number "17" (effects (font (size 1.27 1.27))))
  398. )
  399. (pin power_in line (at -17.78 -19.05 0) (length 2.54)
  400. (name "GND" (effects (font (size 1.27 1.27))))
  401. (number "18" (effects (font (size 1.27 1.27))))
  402. )
  403. (pin bidirectional line (at -17.78 -21.59 0) (length 2.54)
  404. (name "GPIO14" (effects (font (size 1.27 1.27))))
  405. (number "19" (effects (font (size 1.27 1.27))))
  406. )
  407. (pin bidirectional line (at -17.78 21.59 0) (length 2.54)
  408. (name "GPIO1" (effects (font (size 1.27 1.27))))
  409. (number "2" (effects (font (size 1.27 1.27))))
  410. )
  411. (pin bidirectional line (at -17.78 -24.13 0) (length 2.54)
  412. (name "GPIO15" (effects (font (size 1.27 1.27))))
  413. (number "20" (effects (font (size 1.27 1.27))))
  414. )
  415. (pin bidirectional line (at 17.78 -24.13 180) (length 2.54)
  416. (name "GPIO16" (effects (font (size 1.27 1.27))))
  417. (number "21" (effects (font (size 1.27 1.27))))
  418. )
  419. (pin bidirectional line (at 17.78 -21.59 180) (length 2.54)
  420. (name "GPIO17" (effects (font (size 1.27 1.27))))
  421. (number "22" (effects (font (size 1.27 1.27))))
  422. )
  423. (pin power_in line (at 17.78 -19.05 180) (length 2.54)
  424. (name "GND" (effects (font (size 1.27 1.27))))
  425. (number "23" (effects (font (size 1.27 1.27))))
  426. )
  427. (pin bidirectional line (at 17.78 -16.51 180) (length 2.54)
  428. (name "GPIO18" (effects (font (size 1.27 1.27))))
  429. (number "24" (effects (font (size 1.27 1.27))))
  430. )
  431. (pin bidirectional line (at 17.78 -13.97 180) (length 2.54)
  432. (name "GPIO19" (effects (font (size 1.27 1.27))))
  433. (number "25" (effects (font (size 1.27 1.27))))
  434. )
  435. (pin bidirectional line (at 17.78 -11.43 180) (length 2.54)
  436. (name "GPIO20" (effects (font (size 1.27 1.27))))
  437. (number "26" (effects (font (size 1.27 1.27))))
  438. )
  439. (pin bidirectional line (at 17.78 -8.89 180) (length 2.54)
  440. (name "GPIO21" (effects (font (size 1.27 1.27))))
  441. (number "27" (effects (font (size 1.27 1.27))))
  442. )
  443. (pin power_in line (at 17.78 -6.35 180) (length 2.54)
  444. (name "GND" (effects (font (size 1.27 1.27))))
  445. (number "28" (effects (font (size 1.27 1.27))))
  446. )
  447. (pin bidirectional line (at 17.78 -3.81 180) (length 2.54)
  448. (name "GPIO22" (effects (font (size 1.27 1.27))))
  449. (number "29" (effects (font (size 1.27 1.27))))
  450. )
  451. (pin power_in line (at -17.78 19.05 0) (length 2.54)
  452. (name "GND" (effects (font (size 1.27 1.27))))
  453. (number "3" (effects (font (size 1.27 1.27))))
  454. )
  455. (pin input line (at 17.78 -1.27 180) (length 2.54)
  456. (name "RUN" (effects (font (size 1.27 1.27))))
  457. (number "30" (effects (font (size 1.27 1.27))))
  458. )
  459. (pin bidirectional line (at 17.78 1.27 180) (length 2.54)
  460. (name "GPIO26_ADC0" (effects (font (size 1.27 1.27))))
  461. (number "31" (effects (font (size 1.27 1.27))))
  462. )
  463. (pin bidirectional line (at 17.78 3.81 180) (length 2.54)
  464. (name "GPIO27_ADC1" (effects (font (size 1.27 1.27))))
  465. (number "32" (effects (font (size 1.27 1.27))))
  466. )
  467. (pin power_in line (at 17.78 6.35 180) (length 2.54)
  468. (name "AGND" (effects (font (size 1.27 1.27))))
  469. (number "33" (effects (font (size 1.27 1.27))))
  470. )
  471. (pin bidirectional line (at 17.78 8.89 180) (length 2.54)
  472. (name "GPIO28_ADC2" (effects (font (size 1.27 1.27))))
  473. (number "34" (effects (font (size 1.27 1.27))))
  474. )
  475. (pin power_in line (at 17.78 11.43 180) (length 2.54)
  476. (name "ADC_VREF" (effects (font (size 1.27 1.27))))
  477. (number "35" (effects (font (size 1.27 1.27))))
  478. )
  479. (pin power_in line (at 17.78 13.97 180) (length 2.54)
  480. (name "3V3" (effects (font (size 1.27 1.27))))
  481. (number "36" (effects (font (size 1.27 1.27))))
  482. )
  483. (pin input line (at 17.78 16.51 180) (length 2.54)
  484. (name "3V3_EN" (effects (font (size 1.27 1.27))))
  485. (number "37" (effects (font (size 1.27 1.27))))
  486. )
  487. (pin bidirectional line (at 17.78 19.05 180) (length 2.54)
  488. (name "GND" (effects (font (size 1.27 1.27))))
  489. (number "38" (effects (font (size 1.27 1.27))))
  490. )
  491. (pin power_in line (at 17.78 21.59 180) (length 2.54)
  492. (name "VSYS" (effects (font (size 1.27 1.27))))
  493. (number "39" (effects (font (size 1.27 1.27))))
  494. )
  495. (pin bidirectional line (at -17.78 16.51 0) (length 2.54)
  496. (name "GPIO2" (effects (font (size 1.27 1.27))))
  497. (number "4" (effects (font (size 1.27 1.27))))
  498. )
  499. (pin power_in line (at 17.78 24.13 180) (length 2.54)
  500. (name "VBUS" (effects (font (size 1.27 1.27))))
  501. (number "40" (effects (font (size 1.27 1.27))))
  502. )
  503. (pin input line (at -2.54 -29.21 90) (length 2.54)
  504. (name "SWCLK" (effects (font (size 1.27 1.27))))
  505. (number "41" (effects (font (size 1.27 1.27))))
  506. )
  507. (pin power_in line (at 0 -29.21 90) (length 2.54)
  508. (name "GND" (effects (font (size 1.27 1.27))))
  509. (number "42" (effects (font (size 1.27 1.27))))
  510. )
  511. (pin bidirectional line (at 2.54 -29.21 90) (length 2.54)
  512. (name "SWDIO" (effects (font (size 1.27 1.27))))
  513. (number "43" (effects (font (size 1.27 1.27))))
  514. )
  515. (pin bidirectional line (at -17.78 13.97 0) (length 2.54)
  516. (name "GPIO3" (effects (font (size 1.27 1.27))))
  517. (number "5" (effects (font (size 1.27 1.27))))
  518. )
  519. (pin bidirectional line (at -17.78 11.43 0) (length 2.54)
  520. (name "GPIO4" (effects (font (size 1.27 1.27))))
  521. (number "6" (effects (font (size 1.27 1.27))))
  522. )
  523. (pin bidirectional line (at -17.78 8.89 0) (length 2.54)
  524. (name "GPIO5" (effects (font (size 1.27 1.27))))
  525. (number "7" (effects (font (size 1.27 1.27))))
  526. )
  527. (pin power_in line (at -17.78 6.35 0) (length 2.54)
  528. (name "GND" (effects (font (size 1.27 1.27))))
  529. (number "8" (effects (font (size 1.27 1.27))))
  530. )
  531. (pin bidirectional line (at -17.78 3.81 0) (length 2.54)
  532. (name "GPIO6" (effects (font (size 1.27 1.27))))
  533. (number "9" (effects (font (size 1.27 1.27))))
  534. )
  535. )
  536. )
  537. (symbol "R_1" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  538. (property "Reference" "R" (at 2.032 0 90)
  539. (effects (font (size 1.27 1.27)))
  540. )
  541. (property "Value" "R" (at 0 0 90)
  542. (effects (font (size 1.27 1.27)))
  543. )
  544. (property "Footprint" "" (at -1.778 0 90)
  545. (effects (font (size 1.27 1.27)) hide)
  546. )
  547. (property "Datasheet" "~" (at 0 0 0)
  548. (effects (font (size 1.27 1.27)) hide)
  549. )
  550. (property "ki_keywords" "R res resistor" (at 0 0 0)
  551. (effects (font (size 1.27 1.27)) hide)
  552. )
  553. (property "ki_description" "Resistor" (at 0 0 0)
  554. (effects (font (size 1.27 1.27)) hide)
  555. )
  556. (property "ki_fp_filters" "R_*" (at 0 0 0)
  557. (effects (font (size 1.27 1.27)) hide)
  558. )
  559. (symbol "R_1_0_1"
  560. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  561. (stroke (width 0.254) (type default))
  562. (fill (type none))
  563. )
  564. )
  565. (symbol "R_1_1_1"
  566. (pin passive line (at 0 3.81 270) (length 1.27)
  567. (name "~" (effects (font (size 1.27 1.27))))
  568. (number "1" (effects (font (size 1.27 1.27))))
  569. )
  570. (pin passive line (at 0 -3.81 90) (length 1.27)
  571. (name "~" (effects (font (size 1.27 1.27))))
  572. (number "2" (effects (font (size 1.27 1.27))))
  573. )
  574. )
  575. )
  576. (symbol "Switch:SW_DPST_x2" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  577. (property "Reference" "SW" (at 0 3.175 0)
  578. (effects (font (size 1.27 1.27)))
  579. )
  580. (property "Value" "SW_DPST_x2" (at 0 -2.54 0)
  581. (effects (font (size 1.27 1.27)))
  582. )
  583. (property "Footprint" "" (at 0 0 0)
  584. (effects (font (size 1.27 1.27)) hide)
  585. )
  586. (property "Datasheet" "~" (at 0 0 0)
  587. (effects (font (size 1.27 1.27)) hide)
  588. )
  589. (property "ki_keywords" "switch lever" (at 0 0 0)
  590. (effects (font (size 1.27 1.27)) hide)
  591. )
  592. (property "ki_description" "Single Pole Single Throw (SPST) switch, separate symbol" (at 0 0 0)
  593. (effects (font (size 1.27 1.27)) hide)
  594. )
  595. (symbol "SW_DPST_x2_0_0"
  596. (circle (center -2.032 0) (radius 0.508)
  597. (stroke (width 0) (type solid))
  598. (fill (type none))
  599. )
  600. (polyline
  601. (pts
  602. (xy -1.524 0.254)
  603. (xy 1.524 1.778)
  604. )
  605. (stroke (width 0) (type solid))
  606. (fill (type none))
  607. )
  608. (circle (center 2.032 0) (radius 0.508)
  609. (stroke (width 0) (type solid))
  610. (fill (type none))
  611. )
  612. )
  613. (symbol "SW_DPST_x2_1_1"
  614. (pin passive line (at -5.08 0 0) (length 2.54)
  615. (name "A" (effects (font (size 1.27 1.27))))
  616. (number "1" (effects (font (size 1.27 1.27))))
  617. )
  618. (pin passive line (at 5.08 0 180) (length 2.54)
  619. (name "B" (effects (font (size 1.27 1.27))))
  620. (number "2" (effects (font (size 1.27 1.27))))
  621. )
  622. )
  623. (symbol "SW_DPST_x2_2_1"
  624. (pin passive line (at -5.08 0 0) (length 2.54)
  625. (name "A" (effects (font (size 1.27 1.27))))
  626. (number "3" (effects (font (size 1.27 1.27))))
  627. )
  628. (pin passive line (at 5.08 0 180) (length 2.54)
  629. (name "B" (effects (font (size 1.27 1.27))))
  630. (number "4" (effects (font (size 1.27 1.27))))
  631. )
  632. )
  633. )
  634. (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  635. (property "Reference" "SW" (at 1.27 2.54 0)
  636. (effects (font (size 1.27 1.27)) (justify left))
  637. )
  638. (property "Value" "SW_Push" (at 0 -1.524 0)
  639. (effects (font (size 1.27 1.27)))
  640. )
  641. (property "Footprint" "" (at 0 5.08 0)
  642. (effects (font (size 1.27 1.27)) hide)
  643. )
  644. (property "Datasheet" "~" (at 0 5.08 0)
  645. (effects (font (size 1.27 1.27)) hide)
  646. )
  647. (property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0)
  648. (effects (font (size 1.27 1.27)) hide)
  649. )
  650. (property "ki_description" "Push button switch, generic, two pins" (at 0 0 0)
  651. (effects (font (size 1.27 1.27)) hide)
  652. )
  653. (symbol "SW_Push_0_1"
  654. (circle (center -2.032 0) (radius 0.508)
  655. (stroke (width 0) (type solid))
  656. (fill (type none))
  657. )
  658. (polyline
  659. (pts
  660. (xy 0 1.27)
  661. (xy 0 3.048)
  662. )
  663. (stroke (width 0) (type solid))
  664. (fill (type none))
  665. )
  666. (polyline
  667. (pts
  668. (xy 2.54 1.27)
  669. (xy -2.54 1.27)
  670. )
  671. (stroke (width 0) (type solid))
  672. (fill (type none))
  673. )
  674. (circle (center 2.032 0) (radius 0.508)
  675. (stroke (width 0) (type solid))
  676. (fill (type none))
  677. )
  678. (pin passive line (at -5.08 0 0) (length 2.54)
  679. (name "1" (effects (font (size 1.27 1.27))))
  680. (number "1" (effects (font (size 1.27 1.27))))
  681. )
  682. (pin passive line (at 5.08 0 180) (length 2.54)
  683. (name "2" (effects (font (size 1.27 1.27))))
  684. (number "2" (effects (font (size 1.27 1.27))))
  685. )
  686. )
  687. )
  688. (symbol "chinese_modules:charger" (in_bom yes) (on_board yes)
  689. (property "Reference" "U" (at 0 0 0)
  690. (effects (font (size 1.27 1.27)))
  691. )
  692. (property "Value" "" (at 0 0 0)
  693. (effects (font (size 1.27 1.27)))
  694. )
  695. (property "Footprint" "" (at 0 0 0)
  696. (effects (font (size 1.27 1.27)) hide)
  697. )
  698. (property "Datasheet" "" (at 0 0 0)
  699. (effects (font (size 1.27 1.27)) hide)
  700. )
  701. (symbol "charger_0_1"
  702. (rectangle (start -6.35 5.08) (end 6.35 -5.08)
  703. (stroke (width 0) (type default))
  704. (fill (type none))
  705. )
  706. )
  707. (symbol "charger_1_1"
  708. (pin input line (at 8.89 2.54 180) (length 2.54)
  709. (name "Vin+" (effects (font (size 1.27 1.27))))
  710. (number "1" (effects (font (size 1.27 1.27))))
  711. )
  712. (pin input line (at 8.89 -2.54 180) (length 2.54)
  713. (name "Vin-" (effects (font (size 1.27 1.27))))
  714. (number "2" (effects (font (size 1.27 1.27))))
  715. )
  716. (pin input line (at -8.89 2.54 0) (length 2.54)
  717. (name "B+" (effects (font (size 1.27 1.27))))
  718. (number "3" (effects (font (size 1.27 1.27))))
  719. )
  720. (pin input line (at -8.89 -2.54 0) (length 2.54)
  721. (name "B-" (effects (font (size 1.27 1.27))))
  722. (number "4" (effects (font (size 1.27 1.27))))
  723. )
  724. )
  725. )
  726. (symbol "chinese_modules:dc-dc" (in_bom yes) (on_board yes)
  727. (property "Reference" "U" (at 0 0 0)
  728. (effects (font (size 1.27 1.27)))
  729. )
  730. (property "Value" "" (at 0 0 0)
  731. (effects (font (size 1.27 1.27)))
  732. )
  733. (property "Footprint" "" (at 0 0 0)
  734. (effects (font (size 1.27 1.27)) hide)
  735. )
  736. (property "Datasheet" "" (at 0 0 0)
  737. (effects (font (size 1.27 1.27)) hide)
  738. )
  739. (symbol "dc-dc_0_1"
  740. (rectangle (start -3.81 5.08) (end 3.81 -5.08)
  741. (stroke (width 0) (type default))
  742. (fill (type none))
  743. )
  744. )
  745. (symbol "dc-dc_1_1"
  746. (pin power_in line (at -6.35 -2.54 0) (length 2.54)
  747. (name "Vin+" (effects (font (size 1.27 1.27))))
  748. (number "1" (effects (font (size 1.27 1.27))))
  749. )
  750. (pin power_in line (at -6.35 2.54 0) (length 2.54)
  751. (name "Vin+" (effects (font (size 1.27 1.27))))
  752. (number "2" (effects (font (size 1.27 1.27))))
  753. )
  754. (pin power_out line (at 6.35 -2.54 180) (length 2.54)
  755. (name "Out-" (effects (font (size 1.27 1.27))))
  756. (number "3" (effects (font (size 1.27 1.27))))
  757. )
  758. (pin power_out line (at 6.35 2.54 180) (length 2.54)
  759. (name "Out+" (effects (font (size 1.27 1.27))))
  760. (number "4" (effects (font (size 1.27 1.27))))
  761. )
  762. )
  763. )
  764. (symbol "chinese_modules:xy-mos" (in_bom yes) (on_board yes)
  765. (property "Reference" "U" (at -11.43 0 0)
  766. (effects (font (size 1.27 1.27)))
  767. )
  768. (property "Value" "" (at 0 0 0)
  769. (effects (font (size 1.27 1.27)))
  770. )
  771. (property "Footprint" "" (at 0 0 0)
  772. (effects (font (size 1.27 1.27)) hide)
  773. )
  774. (property "Datasheet" "" (at 0 0 0)
  775. (effects (font (size 1.27 1.27)) hide)
  776. )
  777. (symbol "xy-mos_0_1"
  778. (rectangle (start -3.81 5.08) (end 3.81 -5.08)
  779. (stroke (width 0) (type default))
  780. (fill (type none))
  781. )
  782. )
  783. (symbol "xy-mos_1_1"
  784. (pin power_in line (at -6.35 2.54 0) (length 2.54)
  785. (name "Vin+" (effects (font (size 1.27 1.27))))
  786. (number "1" (effects (font (size 1.27 1.27))))
  787. )
  788. (pin power_in line (at -6.35 -2.54 0) (length 2.54)
  789. (name "Vin-" (effects (font (size 1.27 1.27))))
  790. (number "2" (effects (font (size 1.27 1.27))))
  791. )
  792. (pin power_out line (at 6.35 2.54 180) (length 2.54)
  793. (name "Out+" (effects (font (size 1.27 1.27))))
  794. (number "3" (effects (font (size 1.27 1.27))))
  795. )
  796. (pin power_out line (at 6.35 -2.54 180) (length 2.54)
  797. (name "Out-" (effects (font (size 1.27 1.27))))
  798. (number "4" (effects (font (size 1.27 1.27))))
  799. )
  800. (pin input line (at 0 -7.62 90) (length 2.54)
  801. (name "GND" (effects (font (size 1.27 1.27))))
  802. (number "5" (effects (font (size 1.27 1.27))))
  803. )
  804. (pin input line (at 0 7.62 270) (length 2.54)
  805. (name "trig" (effects (font (size 1.27 1.27))))
  806. (number "6" (effects (font (size 1.27 1.27))))
  807. )
  808. )
  809. )
  810. (symbol "dk_Encoders:PEC11R-4215F-S0024" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  811. (property "Reference" "S" (at -1.27 5.715 0)
  812. (effects (font (size 1.524 1.524)))
  813. )
  814. (property "Value" "PEC11R-4215F-S0024" (at -1.27 -9.906 0)
  815. (effects (font (size 1.524 1.524)))
  816. )
  817. (property "Footprint" "digikey-footprints:Rotary_Encoder_Switched_PEC11R" (at 5.08 5.08 0)
  818. (effects (font (size 1.524 1.524)) (justify left) hide)
  819. )
  820. (property "Datasheet" "https://www.bourns.com/docs/Product-Datasheets/PEC11R.pdf" (at 5.08 7.62 0)
  821. (effects (font (size 1.524 1.524)) (justify left) hide)
  822. )
  823. (property "Digi-Key_PN" "PEC11R-4215F-S0024-ND" (at 5.08 10.16 0)
  824. (effects (font (size 1.524 1.524)) (justify left) hide)
  825. )
  826. (property "MPN" "PEC11R-4215F-S0024" (at 5.08 12.7 0)
  827. (effects (font (size 1.524 1.524)) (justify left) hide)
  828. )
  829. (property "Category" "Sensors, Transducers" (at 5.08 15.24 0)
  830. (effects (font (size 1.524 1.524)) (justify left) hide)
  831. )
  832. (property "Family" "Encoders" (at 5.08 17.78 0)
  833. (effects (font (size 1.524 1.524)) (justify left) hide)
  834. )
  835. (property "DK_Datasheet_Link" "https://www.bourns.com/docs/Product-Datasheets/PEC11R.pdf" (at 5.08 20.32 0)
  836. (effects (font (size 1.524 1.524)) (justify left) hide)
  837. )
  838. (property "DK_Detail_Page" "/product-detail/en/bourns-inc/PEC11R-4215F-S0024/PEC11R-4215F-S0024-ND/4499665" (at 5.08 22.86 0)
  839. (effects (font (size 1.524 1.524)) (justify left) hide)
  840. )
  841. (property "Description" "ROTARY ENCODER MECHANICAL 24PPR" (at 5.08 25.4 0)
  842. (effects (font (size 1.524 1.524)) (justify left) hide)
  843. )
  844. (property "Manufacturer" "Bourns Inc." (at 5.08 27.94 0)
  845. (effects (font (size 1.524 1.524)) (justify left) hide)
  846. )
  847. (property "Status" "Active" (at 5.08 30.48 0)
  848. (effects (font (size 1.524 1.524)) (justify left) hide)
  849. )
  850. (property "ki_keywords" "PEC11R-4215F-S0024-ND PEC11R" (at 0 0 0)
  851. (effects (font (size 1.27 1.27)) hide)
  852. )
  853. (property "ki_description" "ROTARY ENCODER MECHANICAL 24PPR" (at 0 0 0)
  854. (effects (font (size 1.27 1.27)) hide)
  855. )
  856. (symbol "PEC11R-4215F-S0024_0_1"
  857. (rectangle (start -5.08 4.699) (end 2.54 -8.89)
  858. (stroke (width 0) (type solid))
  859. (fill (type background))
  860. )
  861. (polyline
  862. (pts
  863. (xy 0 2.54)
  864. (xy 2.54 2.54)
  865. )
  866. (stroke (width 0) (type solid))
  867. (fill (type none))
  868. )
  869. (polyline
  870. (pts
  871. (xy -5.08 2.54)
  872. (xy -3.81 2.54)
  873. (xy 0 3.81)
  874. )
  875. (stroke (width 0) (type solid))
  876. (fill (type none))
  877. )
  878. )
  879. (symbol "PEC11R-4215F-S0024_1_1"
  880. (pin bidirectional line (at -7.62 2.54 0) (length 2.54)
  881. (name "~" (effects (font (size 1.27 1.27))))
  882. (number "1" (effects (font (size 1.27 1.27))))
  883. )
  884. (pin bidirectional line (at 5.08 2.54 180) (length 2.54)
  885. (name "~" (effects (font (size 1.27 1.27))))
  886. (number "2" (effects (font (size 1.27 1.27))))
  887. )
  888. (pin unspecified line (at -7.62 -7.62 0) (length 2.54)
  889. (name "~" (effects (font (size 1.27 1.27))))
  890. (number "3" (effects (font (size 1.27 1.27))))
  891. )
  892. (pin bidirectional line (at -7.62 0 0) (length 2.54)
  893. (name "CH_A" (effects (font (size 1.27 1.27))))
  894. (number "A" (effects (font (size 1.27 1.27))))
  895. )
  896. (pin bidirectional line (at -7.62 -5.08 0) (length 2.54)
  897. (name "CH_B" (effects (font (size 1.27 1.27))))
  898. (number "B" (effects (font (size 1.27 1.27))))
  899. )
  900. (pin input line (at -7.62 -2.54 0) (length 2.54)
  901. (name "COM" (effects (font (size 1.27 1.27))))
  902. (number "C" (effects (font (size 1.27 1.27))))
  903. )
  904. )
  905. )
  906. (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  907. (property "Reference" "#PWR" (at 0 -3.81 0)
  908. (effects (font (size 1.27 1.27)) hide)
  909. )
  910. (property "Value" "+3.3V" (at 0 3.556 0)
  911. (effects (font (size 1.27 1.27)))
  912. )
  913. (property "Footprint" "" (at 0 0 0)
  914. (effects (font (size 1.27 1.27)) hide)
  915. )
  916. (property "Datasheet" "" (at 0 0 0)
  917. (effects (font (size 1.27 1.27)) hide)
  918. )
  919. (property "ki_keywords" "power-flag" (at 0 0 0)
  920. (effects (font (size 1.27 1.27)) hide)
  921. )
  922. (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
  923. (effects (font (size 1.27 1.27)) hide)
  924. )
  925. (symbol "+3.3V_0_1"
  926. (polyline
  927. (pts
  928. (xy -0.762 1.27)
  929. (xy 0 2.54)
  930. )
  931. (stroke (width 0) (type solid))
  932. (fill (type none))
  933. )
  934. (polyline
  935. (pts
  936. (xy 0 0)
  937. (xy 0 2.54)
  938. )
  939. (stroke (width 0) (type solid))
  940. (fill (type none))
  941. )
  942. (polyline
  943. (pts
  944. (xy 0 2.54)
  945. (xy 0.762 1.27)
  946. )
  947. (stroke (width 0) (type solid))
  948. (fill (type none))
  949. )
  950. )
  951. (symbol "+3.3V_1_1"
  952. (pin power_in line (at 0 0 90) (length 0) hide
  953. (name "+3V3" (effects (font (size 1.27 1.27))))
  954. (number "1" (effects (font (size 1.27 1.27))))
  955. )
  956. )
  957. )
  958. (symbol "power:+BATT" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  959. (property "Reference" "#PWR" (at 0 -3.81 0)
  960. (effects (font (size 1.27 1.27)) hide)
  961. )
  962. (property "Value" "+BATT" (at 0 3.556 0)
  963. (effects (font (size 1.27 1.27)))
  964. )
  965. (property "Footprint" "" (at 0 0 0)
  966. (effects (font (size 1.27 1.27)) hide)
  967. )
  968. (property "Datasheet" "" (at 0 0 0)
  969. (effects (font (size 1.27 1.27)) hide)
  970. )
  971. (property "ki_keywords" "power-flag battery" (at 0 0 0)
  972. (effects (font (size 1.27 1.27)) hide)
  973. )
  974. (property "ki_description" "Power symbol creates a global label with name \"+BATT\"" (at 0 0 0)
  975. (effects (font (size 1.27 1.27)) hide)
  976. )
  977. (symbol "+BATT_0_1"
  978. (polyline
  979. (pts
  980. (xy -0.762 1.27)
  981. (xy 0 2.54)
  982. )
  983. (stroke (width 0) (type solid))
  984. (fill (type none))
  985. )
  986. (polyline
  987. (pts
  988. (xy 0 0)
  989. (xy 0 2.54)
  990. )
  991. (stroke (width 0) (type solid))
  992. (fill (type none))
  993. )
  994. (polyline
  995. (pts
  996. (xy 0 2.54)
  997. (xy 0.762 1.27)
  998. )
  999. (stroke (width 0) (type solid))
  1000. (fill (type none))
  1001. )
  1002. )
  1003. (symbol "+BATT_1_1"
  1004. (pin power_in line (at 0 0 90) (length 0) hide
  1005. (name "+BATT" (effects (font (size 1.27 1.27))))
  1006. (number "1" (effects (font (size 1.27 1.27))))
  1007. )
  1008. )
  1009. )
  1010. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1011. (property "Reference" "#PWR" (at 0 -6.35 0)
  1012. (effects (font (size 1.27 1.27)) hide)
  1013. )
  1014. (property "Value" "GND" (at 0 -3.81 0)
  1015. (effects (font (size 1.27 1.27)))
  1016. )
  1017. (property "Footprint" "" (at 0 0 0)
  1018. (effects (font (size 1.27 1.27)) hide)
  1019. )
  1020. (property "Datasheet" "" (at 0 0 0)
  1021. (effects (font (size 1.27 1.27)) hide)
  1022. )
  1023. (property "ki_keywords" "power-flag" (at 0 0 0)
  1024. (effects (font (size 1.27 1.27)) hide)
  1025. )
  1026. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
  1027. (effects (font (size 1.27 1.27)) hide)
  1028. )
  1029. (symbol "GND_0_1"
  1030. (polyline
  1031. (pts
  1032. (xy 0 0)
  1033. (xy 0 -1.27)
  1034. (xy 1.27 -1.27)
  1035. (xy 0 -2.54)
  1036. (xy -1.27 -1.27)
  1037. (xy 0 -1.27)
  1038. )
  1039. (stroke (width 0) (type solid))
  1040. (fill (type none))
  1041. )
  1042. )
  1043. (symbol "GND_1_1"
  1044. (pin power_in line (at 0 0 270) (length 0) hide
  1045. (name "GND" (effects (font (size 1.27 1.27))))
  1046. (number "1" (effects (font (size 1.27 1.27))))
  1047. )
  1048. )
  1049. )
  1050. )
  1051. (junction (at 247.65 82.55) (diameter 0) (color 0 0 0 0)
  1052. (uuid 0532d35c-d54a-45a5-886a-b549eadbf3f4)
  1053. )
  1054. (junction (at 27.94 114.3) (diameter 0) (color 0 0 0 0)
  1055. (uuid 0ffc34b5-7873-47ac-a0ad-6fb56d1bc750)
  1056. )
  1057. (junction (at 62.23 182.88) (diameter 0) (color 0 0 0 0)
  1058. (uuid 23bd548e-b2b3-4757-b89c-680b4c2b5191)
  1059. )
  1060. (junction (at 144.78 124.46) (diameter 0) (color 0 0 0 0)
  1061. (uuid 3306493f-5c21-4aa9-bb91-59ce29e3a0d9)
  1062. )
  1063. (junction (at 29.21 30.48) (diameter 0) (color 0 0 0 0)
  1064. (uuid 4e1d28da-52cb-4597-9e03-dcb3c46b77f4)
  1065. )
  1066. (junction (at 260.35 82.55) (diameter 0) (color 0 0 0 0)
  1067. (uuid 5078bf96-a4c5-4107-90b9-024a473ab0e5)
  1068. )
  1069. (junction (at 27.94 138.43) (diameter 0) (color 0 0 0 0)
  1070. (uuid 63d62df2-fec8-4981-89b4-23a40c860e75)
  1071. )
  1072. (junction (at 143.51 58.42) (diameter 0) (color 0 0 0 0)
  1073. (uuid 6890ed3a-005b-4db5-9e85-0963becd47b1)
  1074. )
  1075. (junction (at 27.94 127) (diameter 0) (color 0 0 0 0)
  1076. (uuid 69042b50-17d9-40a3-abf2-5477fa94892a)
  1077. )
  1078. (junction (at 52.07 182.88) (diameter 0) (color 0 0 0 0)
  1079. (uuid 6da3f92e-7b3f-449c-aaf1-2ca99438d981)
  1080. )
  1081. (junction (at 72.39 182.88) (diameter 0) (color 0 0 0 0)
  1082. (uuid c1f7f4b8-a52d-4067-a1f9-48d024c9d5df)
  1083. )
  1084. (junction (at 151.13 147.32) (diameter 0) (color 0 0 0 0)
  1085. (uuid c6844cfa-a8f0-40f4-93bd-0f963aea3d89)
  1086. )
  1087. (junction (at 27.94 182.88) (diameter 0) (color 0 0 0 0)
  1088. (uuid ce1128ca-dc06-4916-aa1a-98c7eb8bf407)
  1089. )
  1090. (junction (at 31.75 27.94) (diameter 0) (color 0 0 0 0)
  1091. (uuid da1e9bfe-771f-4fbc-a31a-06b73d79bf2f)
  1092. )
  1093. (wire (pts (xy 29.21 60.96) (xy 29.21 30.48))
  1094. (stroke (width 0) (type default))
  1095. (uuid 0298bcce-bd72-4bdf-abbc-b202152ddef6)
  1096. )
  1097. (wire (pts (xy 144.78 109.22) (xy 144.78 124.46))
  1098. (stroke (width 0) (type default))
  1099. (uuid 02be8cd2-19fb-4405-bd72-0bbe94e9d278)
  1100. )
  1101. (wire (pts (xy 204.47 83.82) (xy 201.93 83.82))
  1102. (stroke (width 0) (type default))
  1103. (uuid 0b1e1fab-5676-4474-91c5-7b344895b8f1)
  1104. )
  1105. (wire (pts (xy 165.1 83.82) (xy 162.56 83.82))
  1106. (stroke (width 0) (type default))
  1107. (uuid 0eb95f30-13f3-4f15-a009-7af7062cf2eb)
  1108. )
  1109. (wire (pts (xy 247.65 82.55) (xy 260.35 82.55))
  1110. (stroke (width 0) (type default))
  1111. (uuid 0f2d4f46-0b12-4736-bf4e-a163e2f51809)
  1112. )
  1113. (wire (pts (xy 260.35 82.55) (xy 264.16 82.55))
  1114. (stroke (width 0) (type default))
  1115. (uuid 0fb4ec2d-8cc6-4c40-91f3-ca7d4ee1ecd2)
  1116. )
  1117. (wire (pts (xy 30.48 127) (xy 27.94 127))
  1118. (stroke (width 0) (type default))
  1119. (uuid 119848d1-52f8-4e7c-9e64-5a7eff48e65f)
  1120. )
  1121. (wire (pts (xy 201.93 73.66) (xy 201.93 78.74))
  1122. (stroke (width 0) (type default))
  1123. (uuid 119bdc31-a2b6-4f1b-a106-55c94c6ca9c2)
  1124. )
  1125. (wire (pts (xy 52.07 149.86) (xy 74.93 149.86))
  1126. (stroke (width 0) (type default))
  1127. (uuid 130db2a9-e196-4c31-bf58-a24307d49a18)
  1128. )
  1129. (wire (pts (xy 148.59 38.1) (xy 270.51 38.1))
  1130. (stroke (width 0) (type default))
  1131. (uuid 1462f3cf-76cd-42c0-8cfe-814a1e325f45)
  1132. )
  1133. (wire (pts (xy 80.01 106.68) (xy 80.01 154.94))
  1134. (stroke (width 0) (type default))
  1135. (uuid 16181900-91f3-4998-ad02-f0b5a9cf7b1f)
  1136. )
  1137. (wire (pts (xy 187.96 43.18) (xy 187.96 73.66))
  1138. (stroke (width 0) (type default))
  1139. (uuid 1ab470e1-35d9-4c0b-a40f-33cd18364d70)
  1140. )
  1141. (wire (pts (xy 139.7 81.28) (xy 139.7 58.42))
  1142. (stroke (width 0) (type default))
  1143. (uuid 1ae91a0a-2815-4ba0-a75e-5dd75b6a0376)
  1144. )
  1145. (wire (pts (xy 157.48 124.46) (xy 160.02 124.46))
  1146. (stroke (width 0) (type default))
  1147. (uuid 1cadf9d5-f1fb-4d54-95fc-f6ad22b610bd)
  1148. )
  1149. (wire (pts (xy 27.94 182.88) (xy 27.94 185.42))
  1150. (stroke (width 0) (type default))
  1151. (uuid 20304bb0-8e73-4136-9301-3e2aace6466d)
  1152. )
  1153. (wire (pts (xy 40.64 138.43) (xy 67.31 138.43))
  1154. (stroke (width 0) (type default))
  1155. (uuid 2128ba13-c7c6-47a5-ab27-56f70e322581)
  1156. )
  1157. (wire (pts (xy 43.18 101.6) (xy 40.64 101.6))
  1158. (stroke (width 0) (type default))
  1159. (uuid 28c1d093-b3ee-4c2b-86e3-d66550fd6d86)
  1160. )
  1161. (wire (pts (xy 66.04 60.96) (xy 78.74 60.96))
  1162. (stroke (width 0) (type default))
  1163. (uuid 29295c7c-132d-402e-af24-469a01d6155d)
  1164. )
  1165. (wire (pts (xy 67.31 138.43) (xy 67.31 111.76))
  1166. (stroke (width 0) (type default))
  1167. (uuid 29c3a7cd-3aec-4780-af1b-c4f77b270f14)
  1168. )
  1169. (wire (pts (xy 153.67 43.18) (xy 187.96 43.18))
  1170. (stroke (width 0) (type default))
  1171. (uuid 2a2b7943-ba73-4eec-9045-d64e67436a5a)
  1172. )
  1173. (wire (pts (xy 81.28 68.58) (xy 90.17 68.58))
  1174. (stroke (width 0) (type default))
  1175. (uuid 35f7d663-5910-4ebf-a0e1-08f7034d6023)
  1176. )
  1177. (wire (pts (xy 30.48 101.6) (xy 27.94 101.6))
  1178. (stroke (width 0) (type default))
  1179. (uuid 37f06944-a369-4bf2-8dbe-a52b0e281c1e)
  1180. )
  1181. (wire (pts (xy 227.33 40.64) (xy 227.33 73.66))
  1182. (stroke (width 0) (type default))
  1183. (uuid 3af32720-ae9b-4abb-af9e-a5ce4de1f914)
  1184. )
  1185. (wire (pts (xy 62.23 152.4) (xy 62.23 161.29))
  1186. (stroke (width 0) (type default))
  1187. (uuid 41ae13f3-5e83-4258-94eb-0fc4a4be7f86)
  1188. )
  1189. (wire (pts (xy 148.59 86.36) (xy 148.59 38.1))
  1190. (stroke (width 0) (type default))
  1191. (uuid 426c7c27-c589-4b97-855e-ebc0f8bb74ee)
  1192. )
  1193. (wire (pts (xy 72.39 168.91) (xy 72.39 172.72))
  1194. (stroke (width 0) (type default))
  1195. (uuid 479decac-794b-4181-a1a2-9eb46ffec100)
  1196. )
  1197. (wire (pts (xy 157.48 129.54) (xy 161.29 129.54))
  1198. (stroke (width 0) (type default))
  1199. (uuid 4a4badf9-4fbb-4cb0-986c-9b119f13d6db)
  1200. )
  1201. (wire (pts (xy 153.67 93.98) (xy 153.67 43.18))
  1202. (stroke (width 0) (type default))
  1203. (uuid 4bd0302c-6d88-47d3-81fd-6db7712b6c3a)
  1204. )
  1205. (wire (pts (xy 162.56 127) (xy 162.56 111.76))
  1206. (stroke (width 0) (type default))
  1207. (uuid 4be4d549-dfbb-407c-bc44-136c145985d2)
  1208. )
  1209. (wire (pts (xy 78.74 60.96) (xy 78.74 57.15))
  1210. (stroke (width 0) (type default))
  1211. (uuid 4be8e6fc-4945-402b-950b-ec584df63d14)
  1212. )
  1213. (wire (pts (xy 151.13 88.9) (xy 125.73 88.9))
  1214. (stroke (width 0) (type default))
  1215. (uuid 4befa359-e1bf-4f14-9ddb-02906566b33d)
  1216. )
  1217. (wire (pts (xy 177.8 78.74) (xy 181.61 78.74))
  1218. (stroke (width 0) (type default))
  1219. (uuid 4cfaac48-4319-46c8-8d83-216240143289)
  1220. )
  1221. (wire (pts (xy 52.07 182.88) (xy 62.23 182.88))
  1222. (stroke (width 0) (type default))
  1223. (uuid 4cfd2875-f4e6-4e77-bbf6-0b178fe4b908)
  1224. )
  1225. (wire (pts (xy 82.55 168.91) (xy 82.55 172.72))
  1226. (stroke (width 0) (type default))
  1227. (uuid 4df5107c-b415-436a-8735-fa26fc2fe81b)
  1228. )
  1229. (wire (pts (xy 217.17 83.82) (xy 220.98 83.82))
  1230. (stroke (width 0) (type default))
  1231. (uuid 4e76d5e4-5abb-48fb-b612-a4c823dd01d7)
  1232. )
  1233. (wire (pts (xy 260.35 77.47) (xy 264.16 77.47))
  1234. (stroke (width 0) (type default))
  1235. (uuid 4f164e99-4f10-4661-80d9-067f36e3a236)
  1236. )
  1237. (wire (pts (xy 27.94 101.6) (xy 27.94 114.3))
  1238. (stroke (width 0) (type default))
  1239. (uuid 4fcfbe95-3f69-4434-a32c-9720eaaa806f)
  1240. )
  1241. (wire (pts (xy 245.11 77.47) (xy 247.65 77.47))
  1242. (stroke (width 0) (type default))
  1243. (uuid 5026050e-095c-4688-a6ba-b1e560c846c3)
  1244. )
  1245. (wire (pts (xy 165.1 106.68) (xy 165.1 132.08))
  1246. (stroke (width 0) (type default))
  1247. (uuid 508a8dbb-7b04-4160-8869-2095764fea25)
  1248. )
  1249. (wire (pts (xy 74.93 99.06) (xy 90.17 99.06))
  1250. (stroke (width 0) (type default))
  1251. (uuid 5978da11-6cbb-4a93-8369-ed52b5fdebcd)
  1252. )
  1253. (wire (pts (xy 151.13 40.64) (xy 151.13 88.9))
  1254. (stroke (width 0) (type default))
  1255. (uuid 5c0dff20-656a-4191-8bf9-5829bae90bb6)
  1256. )
  1257. (wire (pts (xy 52.07 182.88) (xy 52.07 180.34))
  1258. (stroke (width 0) (type default))
  1259. (uuid 5fb0c655-39af-4ce4-a4f6-abd4aaabc388)
  1260. )
  1261. (wire (pts (xy 82.55 182.88) (xy 82.55 180.34))
  1262. (stroke (width 0) (type default))
  1263. (uuid 6452835d-03a2-4415-83f4-e29d85ab406e)
  1264. )
  1265. (wire (pts (xy 125.73 81.28) (xy 139.7 81.28))
  1266. (stroke (width 0) (type default))
  1267. (uuid 65e768eb-dc31-4fce-a59c-fc0d0ecbcbe2)
  1268. )
  1269. (wire (pts (xy 62.23 168.91) (xy 62.23 172.72))
  1270. (stroke (width 0) (type default))
  1271. (uuid 6638ccd4-5e3a-429d-a800-399614bc7a2f)
  1272. )
  1273. (wire (pts (xy 45.72 30.48) (xy 45.72 36.83))
  1274. (stroke (width 0) (type default))
  1275. (uuid 69465f39-df03-4585-aa04-b8ea8107009f)
  1276. )
  1277. (wire (pts (xy 125.73 76.2) (xy 135.89 76.2))
  1278. (stroke (width 0) (type default))
  1279. (uuid 6ca708ec-20a6-49a3-ba37-265ca57df3ed)
  1280. )
  1281. (wire (pts (xy 27.94 114.3) (xy 30.48 114.3))
  1282. (stroke (width 0) (type default))
  1283. (uuid 71f92fb0-e9d8-4d0e-970e-e11a1021ca76)
  1284. )
  1285. (wire (pts (xy 27.94 114.3) (xy 27.94 127))
  1286. (stroke (width 0) (type default))
  1287. (uuid 779d292f-1306-4301-a9e6-af56b25c071f)
  1288. )
  1289. (wire (pts (xy 43.18 91.44) (xy 90.17 91.44))
  1290. (stroke (width 0) (type default))
  1291. (uuid 77c2b2c0-fd2b-4804-832b-aa68dd361891)
  1292. )
  1293. (wire (pts (xy 40.64 127) (xy 63.5 127))
  1294. (stroke (width 0) (type default))
  1295. (uuid 7c5d2dc4-9a01-4d42-ae9d-9c2a3ec3b463)
  1296. )
  1297. (wire (pts (xy 177.8 83.82) (xy 181.61 83.82))
  1298. (stroke (width 0) (type default))
  1299. (uuid 7daf281a-3c45-4660-8475-b857d62c732e)
  1300. )
  1301. (wire (pts (xy 129.54 68.58) (xy 129.54 58.42))
  1302. (stroke (width 0) (type default))
  1303. (uuid 7dddd38a-d451-4963-b446-be47020730a9)
  1304. )
  1305. (wire (pts (xy 72.39 154.94) (xy 80.01 154.94))
  1306. (stroke (width 0) (type default))
  1307. (uuid 82a64d70-871c-40a7-aea8-518a58f72eea)
  1308. )
  1309. (wire (pts (xy 83.82 66.04) (xy 90.17 66.04))
  1310. (stroke (width 0) (type default))
  1311. (uuid 8349b1b1-f9b9-4b73-8768-4409ac6a7ba0)
  1312. )
  1313. (wire (pts (xy 125.73 106.68) (xy 165.1 106.68))
  1314. (stroke (width 0) (type default))
  1315. (uuid 839577a9-517e-4d29-b306-fb0ee62bff6b)
  1316. )
  1317. (wire (pts (xy 90.17 104.14) (xy 63.5 104.14))
  1318. (stroke (width 0) (type default))
  1319. (uuid 8543476c-543e-4866-9d5e-87afdeffb181)
  1320. )
  1321. (wire (pts (xy 45.72 27.94) (xy 45.72 24.13))
  1322. (stroke (width 0) (type default))
  1323. (uuid 861812c5-99f1-48a1-a4d7-32ab586cabde)
  1324. )
  1325. (wire (pts (xy 77.47 152.4) (xy 62.23 152.4))
  1326. (stroke (width 0) (type default))
  1327. (uuid 865ab263-fea8-4df5-b4b3-5160bca029be)
  1328. )
  1329. (wire (pts (xy 160.02 114.3) (xy 125.73 114.3))
  1330. (stroke (width 0) (type default))
  1331. (uuid 8720fe43-7311-4301-8f99-546b7746a8de)
  1332. )
  1333. (wire (pts (xy 245.11 82.55) (xy 245.11 88.9))
  1334. (stroke (width 0) (type default))
  1335. (uuid 87ce4057-706e-4fb2-a4bb-91848197baf7)
  1336. )
  1337. (wire (pts (xy 161.29 129.54) (xy 161.29 147.32))
  1338. (stroke (width 0) (type default))
  1339. (uuid 89958150-fc2c-40c2-8e36-7e0a3fc8a704)
  1340. )
  1341. (wire (pts (xy 41.91 27.94) (xy 45.72 27.94))
  1342. (stroke (width 0) (type default))
  1343. (uuid 8a3e2d56-2587-4b00-9a29-6ecbc0a23c72)
  1344. )
  1345. (wire (pts (xy 26.67 30.48) (xy 29.21 30.48))
  1346. (stroke (width 0) (type default))
  1347. (uuid 8f442320-6572-47a0-a33c-9dfa7c41932d)
  1348. )
  1349. (wire (pts (xy 143.51 58.42) (xy 143.51 60.96))
  1350. (stroke (width 0) (type default))
  1351. (uuid 8f4482c5-4751-4c48-9cfc-6325ff4fd4d0)
  1352. )
  1353. (wire (pts (xy 67.31 111.76) (xy 90.17 111.76))
  1354. (stroke (width 0) (type default))
  1355. (uuid 93f28c77-80ff-4fa4-9399-22f363e654b3)
  1356. )
  1357. (wire (pts (xy 72.39 182.88) (xy 72.39 180.34))
  1358. (stroke (width 0) (type default))
  1359. (uuid 99b78b2b-871e-4dcb-a4e2-9d0a637dac6d)
  1360. )
  1361. (wire (pts (xy 80.01 106.68) (xy 90.17 106.68))
  1362. (stroke (width 0) (type default))
  1363. (uuid 9a302ca7-bde0-48c6-815b-6b1b07764e1e)
  1364. )
  1365. (wire (pts (xy 135.89 76.2) (xy 135.89 68.58))
  1366. (stroke (width 0) (type default))
  1367. (uuid 9b5d9afe-e12f-4635-a35e-c3e984cb918b)
  1368. )
  1369. (wire (pts (xy 74.93 149.86) (xy 74.93 99.06))
  1370. (stroke (width 0) (type default))
  1371. (uuid 9eee6d55-2724-43e2-bc6c-38b048dcf711)
  1372. )
  1373. (wire (pts (xy 29.21 60.96) (xy 31.75 60.96))
  1374. (stroke (width 0) (type default))
  1375. (uuid a2d859fc-51fc-41d9-bb2a-a8de33975605)
  1376. )
  1377. (wire (pts (xy 245.11 82.55) (xy 247.65 82.55))
  1378. (stroke (width 0) (type default))
  1379. (uuid a618424d-75af-4b8f-a555-1e2449eb820d)
  1380. )
  1381. (wire (pts (xy 143.51 55.88) (xy 143.51 58.42))
  1382. (stroke (width 0) (type default))
  1383. (uuid b04fba74-92c7-418f-a275-542bca4030cd)
  1384. )
  1385. (wire (pts (xy 52.07 161.29) (xy 52.07 149.86))
  1386. (stroke (width 0) (type default))
  1387. (uuid b10f71dc-c422-48f0-8faf-a993b20bf6ae)
  1388. )
  1389. (wire (pts (xy 144.78 124.46) (xy 144.78 147.32))
  1390. (stroke (width 0) (type default))
  1391. (uuid b4341e0f-2a64-478e-959c-5e0849520a7f)
  1392. )
  1393. (wire (pts (xy 125.73 68.58) (xy 129.54 68.58))
  1394. (stroke (width 0) (type default))
  1395. (uuid b4d9aedc-1d4a-4373-abcb-2ff3263ec6fc)
  1396. )
  1397. (wire (pts (xy 270.51 38.1) (xy 270.51 72.39))
  1398. (stroke (width 0) (type default))
  1399. (uuid b5ccea67-5323-4ae2-85e9-e1bb175416da)
  1400. )
  1401. (wire (pts (xy 139.7 58.42) (xy 143.51 58.42))
  1402. (stroke (width 0) (type default))
  1403. (uuid b5cff7e4-0635-4e8d-8aed-3375c0ef5237)
  1404. )
  1405. (wire (pts (xy 90.17 114.3) (xy 82.55 114.3))
  1406. (stroke (width 0) (type default))
  1407. (uuid b6708da1-7d59-4ecd-82e4-bd26a9cc3d97)
  1408. )
  1409. (wire (pts (xy 27.94 138.43) (xy 27.94 182.88))
  1410. (stroke (width 0) (type default))
  1411. (uuid b7762818-1382-4016-8d10-3e246acb696e)
  1412. )
  1413. (wire (pts (xy 217.17 78.74) (xy 220.98 78.74))
  1414. (stroke (width 0) (type default))
  1415. (uuid b894be67-f74d-47e7-9686-def76c60ee67)
  1416. )
  1417. (wire (pts (xy 165.1 132.08) (xy 157.48 132.08))
  1418. (stroke (width 0) (type default))
  1419. (uuid b8993c50-b3c7-440c-9055-33c2fe7d0400)
  1420. )
  1421. (wire (pts (xy 60.96 93.98) (xy 90.17 93.98))
  1422. (stroke (width 0) (type default))
  1423. (uuid b8cd8070-6df0-45c7-9b9c-1bcc29a2b871)
  1424. )
  1425. (wire (pts (xy 227.33 40.64) (xy 151.13 40.64))
  1426. (stroke (width 0) (type default))
  1427. (uuid b92cd23e-7173-44ae-bf16-fc30012d0a25)
  1428. )
  1429. (wire (pts (xy 40.64 114.3) (xy 60.96 114.3))
  1430. (stroke (width 0) (type default))
  1431. (uuid b93d1d35-97f2-432b-8f4e-ddf2572e7e9f)
  1432. )
  1433. (wire (pts (xy 43.18 91.44) (xy 43.18 101.6))
  1434. (stroke (width 0) (type default))
  1435. (uuid ba7d1279-6585-4a49-bc84-7958a2150ffd)
  1436. )
  1437. (wire (pts (xy 162.56 83.82) (xy 162.56 90.17))
  1438. (stroke (width 0) (type default))
  1439. (uuid bcd0f28a-1b17-45b7-b854-3011dbcfd77c)
  1440. )
  1441. (wire (pts (xy 72.39 182.88) (xy 82.55 182.88))
  1442. (stroke (width 0) (type default))
  1443. (uuid bd4b000e-6bd4-4190-862e-6f3e0be77f33)
  1444. )
  1445. (wire (pts (xy 76.2 57.15) (xy 76.2 96.52))
  1446. (stroke (width 0) (type default))
  1447. (uuid be71c5a3-7f53-4acb-bab5-24aad7842101)
  1448. )
  1449. (wire (pts (xy 201.93 78.74) (xy 204.47 78.74))
  1450. (stroke (width 0) (type default))
  1451. (uuid c6dca0e6-5f0b-4ea4-a3ba-ade84294a0a3)
  1452. )
  1453. (wire (pts (xy 77.47 101.6) (xy 77.47 152.4))
  1454. (stroke (width 0) (type default))
  1455. (uuid c7352df8-e12f-42ab-b72c-a5ef8d4bc332)
  1456. )
  1457. (wire (pts (xy 29.21 30.48) (xy 45.72 30.48))
  1458. (stroke (width 0) (type default))
  1459. (uuid c895ec26-ec70-44ed-838e-2e826d8e975f)
  1460. )
  1461. (wire (pts (xy 66.04 57.15) (xy 66.04 60.96))
  1462. (stroke (width 0) (type default))
  1463. (uuid c96f8ff8-8222-420c-a74d-f6bc5a3c9502)
  1464. )
  1465. (wire (pts (xy 60.96 114.3) (xy 60.96 93.98))
  1466. (stroke (width 0) (type default))
  1467. (uuid ca43ed88-f2f0-4a85-bc83-f044ac77135b)
  1468. )
  1469. (wire (pts (xy 82.55 114.3) (xy 82.55 161.29))
  1470. (stroke (width 0) (type default))
  1471. (uuid cb53fef6-23d3-4bd5-81bc-36901567bd74)
  1472. )
  1473. (wire (pts (xy 27.94 138.43) (xy 30.48 138.43))
  1474. (stroke (width 0) (type default))
  1475. (uuid ce3ef495-db74-4ffb-b3f8-67de4943fd73)
  1476. )
  1477. (wire (pts (xy 72.39 161.29) (xy 72.39 154.94))
  1478. (stroke (width 0) (type default))
  1479. (uuid cf5fde4d-9fbc-4983-aeab-da82a5d2e67c)
  1480. )
  1481. (wire (pts (xy 27.94 182.88) (xy 52.07 182.88))
  1482. (stroke (width 0) (type default))
  1483. (uuid d06d957e-dc5c-42e0-8ba0-ec4224b12d52)
  1484. )
  1485. (wire (pts (xy 76.2 96.52) (xy 90.17 96.52))
  1486. (stroke (width 0) (type default))
  1487. (uuid d7e0b817-e0ce-4b65-8303-412ccd5830b5)
  1488. )
  1489. (wire (pts (xy 162.56 73.66) (xy 162.56 78.74))
  1490. (stroke (width 0) (type default))
  1491. (uuid d81c8346-a738-4f54-89ba-6bc43d913396)
  1492. )
  1493. (wire (pts (xy 160.02 124.46) (xy 160.02 114.3))
  1494. (stroke (width 0) (type default))
  1495. (uuid d907a16d-17b7-4283-a55f-296dabe0e2b7)
  1496. )
  1497. (wire (pts (xy 162.56 111.76) (xy 125.73 111.76))
  1498. (stroke (width 0) (type default))
  1499. (uuid d9e65762-69ed-43b7-ac78-3db16d09dc2a)
  1500. )
  1501. (wire (pts (xy 143.51 68.58) (xy 143.51 71.12))
  1502. (stroke (width 0) (type default))
  1503. (uuid dee665e0-2d2e-42a9-a2b0-d88eac014d81)
  1504. )
  1505. (wire (pts (xy 157.48 127) (xy 162.56 127))
  1506. (stroke (width 0) (type default))
  1507. (uuid dfcd4520-133c-4413-85b2-6d3fca79b77f)
  1508. )
  1509. (wire (pts (xy 31.75 27.94) (xy 31.75 55.88))
  1510. (stroke (width 0) (type default))
  1511. (uuid e19d4bff-ae12-4ec7-8b8b-1a1c4e0f8309)
  1512. )
  1513. (wire (pts (xy 162.56 78.74) (xy 165.1 78.74))
  1514. (stroke (width 0) (type default))
  1515. (uuid e29b887a-a071-4e52-a9ae-ddf79d3ae708)
  1516. )
  1517. (wire (pts (xy 52.07 168.91) (xy 52.07 172.72))
  1518. (stroke (width 0) (type default))
  1519. (uuid e33669ec-d01f-415a-bfaa-531dc5bf9ca5)
  1520. )
  1521. (wire (pts (xy 27.94 127) (xy 27.94 138.43))
  1522. (stroke (width 0) (type default))
  1523. (uuid e4f02ae6-1cd4-46fb-a69f-f91ce9597b42)
  1524. )
  1525. (wire (pts (xy 62.23 182.88) (xy 62.23 180.34))
  1526. (stroke (width 0) (type default))
  1527. (uuid e4f12316-2e3b-4157-a5c3-a15156a844b8)
  1528. )
  1529. (wire (pts (xy 81.28 57.15) (xy 81.28 68.58))
  1530. (stroke (width 0) (type default))
  1531. (uuid e6d052b6-14d8-46ad-8484-0f1e36af1563)
  1532. )
  1533. (wire (pts (xy 63.5 104.14) (xy 63.5 127))
  1534. (stroke (width 0) (type default))
  1535. (uuid e895da20-9e7e-4572-a780-448dffd9df5d)
  1536. )
  1537. (wire (pts (xy 201.93 83.82) (xy 201.93 90.17))
  1538. (stroke (width 0) (type default))
  1539. (uuid eaae3dcd-2b4c-41ee-a974-1299f03fb1bb)
  1540. )
  1541. (wire (pts (xy 161.29 147.32) (xy 151.13 147.32))
  1542. (stroke (width 0) (type default))
  1543. (uuid ede3c101-2638-4ce6-bf23-3fa05d52ce44)
  1544. )
  1545. (wire (pts (xy 125.73 93.98) (xy 153.67 93.98))
  1546. (stroke (width 0) (type default))
  1547. (uuid ee8a1874-bf30-4801-911f-bcabe1797fa2)
  1548. )
  1549. (wire (pts (xy 62.23 182.88) (xy 72.39 182.88))
  1550. (stroke (width 0) (type default))
  1551. (uuid f1c4ace8-c0b9-4f68-aa9b-774c8293cd0d)
  1552. )
  1553. (wire (pts (xy 151.13 147.32) (xy 144.78 147.32))
  1554. (stroke (width 0) (type default))
  1555. (uuid f31ffa5e-38cd-41ac-bce5-c8ff6e9f2d6d)
  1556. )
  1557. (wire (pts (xy 125.73 109.22) (xy 144.78 109.22))
  1558. (stroke (width 0) (type default))
  1559. (uuid f35b3c24-7f5b-46f9-9221-062d6eb7369a)
  1560. )
  1561. (wire (pts (xy 125.73 86.36) (xy 148.59 86.36))
  1562. (stroke (width 0) (type default))
  1563. (uuid f3ddedd5-3286-4c7f-a88e-eb9719212294)
  1564. )
  1565. (wire (pts (xy 77.47 101.6) (xy 90.17 101.6))
  1566. (stroke (width 0) (type default))
  1567. (uuid f4cc5a6f-74bf-450f-8e80-3e2cc156a96c)
  1568. )
  1569. (wire (pts (xy 26.67 27.94) (xy 31.75 27.94))
  1570. (stroke (width 0) (type default))
  1571. (uuid f5da9026-3eee-416b-828d-4ea7e5552dc2)
  1572. )
  1573. (wire (pts (xy 83.82 57.15) (xy 83.82 66.04))
  1574. (stroke (width 0) (type default))
  1575. (uuid fc5c29cc-3de2-4c41-ade9-c52ed94985d1)
  1576. )
  1577. (wire (pts (xy 245.11 72.39) (xy 245.11 77.47))
  1578. (stroke (width 0) (type default))
  1579. (uuid fd028e89-4944-4c27-abd8-b451d1e862bf)
  1580. )
  1581. (wire (pts (xy 151.13 147.32) (xy 151.13 149.86))
  1582. (stroke (width 0) (type default))
  1583. (uuid fd136a68-1fb1-4cd0-89a6-875a225f18f9)
  1584. )
  1585. (symbol (lib_id "power:GND") (at 201.93 90.17 0) (unit 1)
  1586. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1587. (uuid 0ea73ea9-9c89-4067-bea7-ea7803560552)
  1588. (property "Reference" "#PWR09" (at 201.93 96.52 0)
  1589. (effects (font (size 1.27 1.27)) hide)
  1590. )
  1591. (property "Value" "GND" (at 201.93 95.25 0)
  1592. (effects (font (size 1.27 1.27)))
  1593. )
  1594. (property "Footprint" "" (at 201.93 90.17 0)
  1595. (effects (font (size 1.27 1.27)) hide)
  1596. )
  1597. (property "Datasheet" "" (at 201.93 90.17 0)
  1598. (effects (font (size 1.27 1.27)) hide)
  1599. )
  1600. (pin "1" (uuid 2461f0ba-e1c2-4516-83c0-a590d810fd0f))
  1601. (instances
  1602. (project "drumkit"
  1603. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1604. (reference "#PWR09") (unit 1)
  1605. )
  1606. )
  1607. )
  1608. )
  1609. (symbol (lib_id "power:+BATT") (at 45.72 24.13 0) (unit 1)
  1610. (in_bom yes) (on_board yes) (dnp no)
  1611. (uuid 0f79b718-efb3-45e3-8919-8bd370cde9a0)
  1612. (property "Reference" "#PWR06" (at 45.72 27.94 0)
  1613. (effects (font (size 1.27 1.27)) hide)
  1614. )
  1615. (property "Value" "+BATT" (at 45.72 19.05 0)
  1616. (effects (font (size 1.27 1.27)))
  1617. )
  1618. (property "Footprint" "" (at 45.72 24.13 0)
  1619. (effects (font (size 1.27 1.27)) hide)
  1620. )
  1621. (property "Datasheet" "" (at 45.72 24.13 0)
  1622. (effects (font (size 1.27 1.27)) hide)
  1623. )
  1624. (pin "1" (uuid 5e13b73e-cae3-48f3-9dca-5da2a517dde8))
  1625. (instances
  1626. (project "drumkit"
  1627. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1628. (reference "#PWR06") (unit 1)
  1629. )
  1630. )
  1631. )
  1632. )
  1633. (symbol (lib_id "Device:LED") (at 72.39 165.1 90) (unit 1)
  1634. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1635. (uuid 1becbc74-70ce-4c59-b986-469421a7b0cd)
  1636. (property "Reference" "D3" (at 76.2 166.0652 90)
  1637. (effects (font (size 1.27 1.27)) (justify right))
  1638. )
  1639. (property "Value" "LED3" (at 76.2 168.6052 90)
  1640. (effects (font (size 1.27 1.27)) (justify right))
  1641. )
  1642. (property "Footprint" "LED_THT:LED_D5.0mm" (at 72.39 165.1 0)
  1643. (effects (font (size 1.27 1.27)) hide)
  1644. )
  1645. (property "Datasheet" "~" (at 72.39 165.1 0)
  1646. (effects (font (size 1.27 1.27)) hide)
  1647. )
  1648. (pin "1" (uuid c1e82c60-6a7b-4bc7-987a-965fc57cc76c))
  1649. (pin "2" (uuid 3eb6d294-ff1b-48e3-b297-2d77432b219e))
  1650. (instances
  1651. (project "drumkit"
  1652. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1653. (reference "D3") (unit 1)
  1654. )
  1655. )
  1656. )
  1657. )
  1658. (symbol (lib_id "power:+BATT") (at 245.11 72.39 0) (unit 1)
  1659. (in_bom yes) (on_board yes) (dnp no)
  1660. (uuid 2874ea20-cde3-4cbd-a646-dc4ab1cbc281)
  1661. (property "Reference" "#PWR04" (at 245.11 76.2 0)
  1662. (effects (font (size 1.27 1.27)) hide)
  1663. )
  1664. (property "Value" "+BATT" (at 245.11 67.31 0)
  1665. (effects (font (size 1.27 1.27)))
  1666. )
  1667. (property "Footprint" "" (at 245.11 72.39 0)
  1668. (effects (font (size 1.27 1.27)) hide)
  1669. )
  1670. (property "Datasheet" "" (at 245.11 72.39 0)
  1671. (effects (font (size 1.27 1.27)) hide)
  1672. )
  1673. (pin "1" (uuid 3cd06233-1271-4863-9c86-559fadb01fd6))
  1674. (instances
  1675. (project "drumkit"
  1676. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1677. (reference "#PWR04") (unit 1)
  1678. )
  1679. )
  1680. )
  1681. )
  1682. (symbol (lib_id "Switch:SW_DPST_x2") (at 36.83 27.94 0) (unit 1)
  1683. (in_bom yes) (on_board yes) (dnp no)
  1684. (uuid 28951cf1-c440-45c2-9950-66244612f9f8)
  1685. (property "Reference" "SW5" (at 36.83 22.86 0)
  1686. (effects (font (size 1.27 1.27)))
  1687. )
  1688. (property "Value" "POWER_SW" (at 36.83 25.4 0)
  1689. (effects (font (size 1.27 1.27)))
  1690. )
  1691. (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 36.83 27.94 0)
  1692. (effects (font (size 1.27 1.27)) hide)
  1693. )
  1694. (property "Datasheet" "~" (at 36.83 27.94 0)
  1695. (effects (font (size 1.27 1.27)) hide)
  1696. )
  1697. (pin "1" (uuid 95918f6a-ed27-4831-8422-617f0a73e5b3))
  1698. (pin "2" (uuid ecaa19b7-37eb-4e7d-b81d-ed543f5c99e1))
  1699. (pin "3" (uuid 15166d96-f97d-43cb-b64e-fe45cf79ba5b))
  1700. (pin "4" (uuid 89b5acaf-9a82-4a46-8af8-0ae2ec07b4b6))
  1701. (instances
  1702. (project "drumkit"
  1703. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1704. (reference "SW5") (unit 1)
  1705. )
  1706. )
  1707. )
  1708. )
  1709. (symbol (lib_name "R_1") (lib_id "Device:R") (at 143.51 64.77 0) (unit 1)
  1710. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1711. (uuid 291bfd14-d578-42ac-97de-853c20eb5982)
  1712. (property "Reference" "R6" (at 146.05 63.5 0)
  1713. (effects (font (size 1.27 1.27)) (justify left))
  1714. )
  1715. (property "Value" "R" (at 146.05 66.04 0)
  1716. (effects (font (size 1.27 1.27)) (justify left))
  1717. )
  1718. (property "Footprint" "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (at 141.732 64.77 90)
  1719. (effects (font (size 1.27 1.27)) hide)
  1720. )
  1721. (property "Datasheet" "~" (at 143.51 64.77 0)
  1722. (effects (font (size 1.27 1.27)) hide)
  1723. )
  1724. (pin "1" (uuid e25eb58d-1d0a-4f33-803f-6f60fe6ae0fd))
  1725. (pin "2" (uuid 83110e1b-7909-43de-acee-e9c94d0fef98))
  1726. (instances
  1727. (project "drumkit"
  1728. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1729. (reference "R6") (unit 1)
  1730. )
  1731. )
  1732. )
  1733. )
  1734. (symbol (lib_id "chinese_modules:xy-mos") (at 187.96 81.28 0) (unit 1)
  1735. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1736. (uuid 2b57a300-3f72-4e49-b5fc-c2959d94a74f)
  1737. (property "Reference" "U8" (at 189.9159 74.93 0)
  1738. (effects (font (size 1.27 1.27)) (justify left))
  1739. )
  1740. (property "Value" "~" (at 187.96 81.28 0)
  1741. (effects (font (size 1.27 1.27)))
  1742. )
  1743. (property "Footprint" "chinese_modules:xy-mos" (at 187.96 81.28 0)
  1744. (effects (font (size 1.27 1.27)) hide)
  1745. )
  1746. (property "Datasheet" "" (at 187.96 81.28 0)
  1747. (effects (font (size 1.27 1.27)) hide)
  1748. )
  1749. (pin "1" (uuid 5f924406-fb25-461f-8967-344a2e19ec2a))
  1750. (pin "2" (uuid 71c54fdd-a35a-4d4e-be40-fd928fa56864))
  1751. (pin "3" (uuid 803633d6-1fe5-4787-8aa5-480883cfb380))
  1752. (pin "4" (uuid ac538778-8f8a-4f1b-88f7-8a6968ec0402))
  1753. (pin "5" (uuid 8cd52fa0-3d95-4cf1-8acc-b8de1e5fcdaa))
  1754. (pin "6" (uuid 510a4757-2bb4-435f-9b57-6e12f80329eb))
  1755. (instances
  1756. (project "drumkit"
  1757. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1758. (reference "U8") (unit 1)
  1759. )
  1760. )
  1761. )
  1762. )
  1763. (symbol (lib_id "Device:R") (at 82.55 176.53 0) (unit 1)
  1764. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1765. (uuid 3bb11ca3-2a02-4615-8dab-229ed0c84f8d)
  1766. (property "Reference" "R4" (at 85.09 175.895 0)
  1767. (effects (font (size 1.27 1.27)) (justify left))
  1768. )
  1769. (property "Value" "R" (at 85.09 178.435 0)
  1770. (effects (font (size 1.27 1.27)) (justify left))
  1771. )
  1772. (property "Footprint" "Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical" (at 80.772 176.53 90)
  1773. (effects (font (size 1.27 1.27)) hide)
  1774. )
  1775. (property "Datasheet" "~" (at 82.55 176.53 0)
  1776. (effects (font (size 1.27 1.27)) hide)
  1777. )
  1778. (pin "1" (uuid 1595aea0-3b4f-47b2-94b7-7bbb4d833bac))
  1779. (pin "2" (uuid 674f03bf-2631-4bb4-9fc8-6d4be95eb7cc))
  1780. (instances
  1781. (project "drumkit"
  1782. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1783. (reference "R4") (unit 1)
  1784. )
  1785. )
  1786. )
  1787. )
  1788. (symbol (lib_id "power:+3.3V") (at 135.89 68.58 0) (unit 1)
  1789. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1790. (uuid 437a39eb-9fca-4e23-ab6b-35086cb69dab)
  1791. (property "Reference" "#PWR07" (at 135.89 72.39 0)
  1792. (effects (font (size 1.27 1.27)) hide)
  1793. )
  1794. (property "Value" "+3.3V" (at 135.89 64.77 0)
  1795. (effects (font (size 1.27 1.27)))
  1796. )
  1797. (property "Footprint" "" (at 135.89 68.58 0)
  1798. (effects (font (size 1.27 1.27)) hide)
  1799. )
  1800. (property "Datasheet" "" (at 135.89 68.58 0)
  1801. (effects (font (size 1.27 1.27)) hide)
  1802. )
  1803. (pin "1" (uuid 04eb011e-f4fe-4594-a3b1-3c6db64183a4))
  1804. (instances
  1805. (project "drumkit"
  1806. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1807. (reference "#PWR07") (unit 1)
  1808. )
  1809. )
  1810. )
  1811. )
  1812. (symbol (lib_id "power:GND") (at 143.51 71.12 0) (unit 1)
  1813. (in_bom yes) (on_board yes) (dnp no)
  1814. (uuid 5790fbc5-1328-46eb-8b1d-87550a88c649)
  1815. (property "Reference" "#PWR011" (at 143.51 77.47 0)
  1816. (effects (font (size 1.27 1.27)) hide)
  1817. )
  1818. (property "Value" "GND" (at 143.51 76.2 0)
  1819. (effects (font (size 1.27 1.27)))
  1820. )
  1821. (property "Footprint" "" (at 143.51 71.12 0)
  1822. (effects (font (size 1.27 1.27)) hide)
  1823. )
  1824. (property "Datasheet" "" (at 143.51 71.12 0)
  1825. (effects (font (size 1.27 1.27)) hide)
  1826. )
  1827. (pin "1" (uuid ea59a1b5-90fc-407d-a88e-c9f2dbbd5f81))
  1828. (instances
  1829. (project "drumkit"
  1830. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1831. (reference "#PWR011") (unit 1)
  1832. )
  1833. )
  1834. )
  1835. )
  1836. (symbol (lib_id "power:+BATT") (at 143.51 48.26 0) (unit 1)
  1837. (in_bom yes) (on_board yes) (dnp no)
  1838. (uuid 582a6f70-fa82-4439-85e0-4f8d11af2afe)
  1839. (property "Reference" "#PWR05" (at 143.51 52.07 0)
  1840. (effects (font (size 1.27 1.27)) hide)
  1841. )
  1842. (property "Value" "+BATT" (at 143.51 43.18 0)
  1843. (effects (font (size 1.27 1.27)))
  1844. )
  1845. (property "Footprint" "" (at 143.51 48.26 0)
  1846. (effects (font (size 1.27 1.27)) hide)
  1847. )
  1848. (property "Datasheet" "" (at 143.51 48.26 0)
  1849. (effects (font (size 1.27 1.27)) hide)
  1850. )
  1851. (pin "1" (uuid d063f6a4-e49a-43b5-9b73-5876ff2def11))
  1852. (instances
  1853. (project "drumkit"
  1854. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1855. (reference "#PWR05") (unit 1)
  1856. )
  1857. )
  1858. )
  1859. )
  1860. (symbol (lib_id "Device:LED") (at 82.55 165.1 90) (unit 1)
  1861. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1862. (uuid 5bb5f30d-381b-4649-87ed-80378fb8b3d1)
  1863. (property "Reference" "D4" (at 86.36 166.0652 90)
  1864. (effects (font (size 1.27 1.27)) (justify right))
  1865. )
  1866. (property "Value" "LED4" (at 86.36 168.6052 90)
  1867. (effects (font (size 1.27 1.27)) (justify right))
  1868. )
  1869. (property "Footprint" "LED_THT:LED_D5.0mm" (at 82.55 165.1 0)
  1870. (effects (font (size 1.27 1.27)) hide)
  1871. )
  1872. (property "Datasheet" "~" (at 82.55 165.1 0)
  1873. (effects (font (size 1.27 1.27)) hide)
  1874. )
  1875. (pin "1" (uuid ebe0e885-5588-4ea7-b1a2-8ffc54934924))
  1876. (pin "2" (uuid be3c64d2-5fde-45e2-94b8-860c3165e1c5))
  1877. (instances
  1878. (project "drumkit"
  1879. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1880. (reference "D4") (unit 1)
  1881. )
  1882. )
  1883. )
  1884. )
  1885. (symbol (lib_id "chinese_modules:charger") (at 40.64 58.42 0) (unit 1)
  1886. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1887. (uuid 5ebd9238-18a6-49e6-8d94-ee3fa12ffb8d)
  1888. (property "Reference" "U2" (at 40.64 52.07 0)
  1889. (effects (font (size 1.27 1.27)))
  1890. )
  1891. (property "Value" "~" (at 40.64 58.42 0)
  1892. (effects (font (size 1.27 1.27)))
  1893. )
  1894. (property "Footprint" "chinese_modules:charger" (at 40.64 58.42 0)
  1895. (effects (font (size 1.27 1.27)) hide)
  1896. )
  1897. (property "Datasheet" "" (at 40.64 58.42 0)
  1898. (effects (font (size 1.27 1.27)) hide)
  1899. )
  1900. (pin "1" (uuid a5d4302d-9567-4c5e-acd4-57060fd60551))
  1901. (pin "2" (uuid 8ba5684e-04dd-4fe4-b623-4233f436670e))
  1902. (pin "3" (uuid bb4894d4-455d-4a05-a956-aa0ba49c895f))
  1903. (pin "4" (uuid 015797c3-40c8-4276-a273-4c2efc088cbc))
  1904. (instances
  1905. (project "drumkit"
  1906. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1907. (reference "U2") (unit 1)
  1908. )
  1909. )
  1910. )
  1911. )
  1912. (symbol (lib_id "chinese_modules:dc-dc") (at 210.82 81.28 0) (unit 1)
  1913. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1914. (uuid 5ee6339b-e8b6-45cb-991c-d17a454d7d38)
  1915. (property "Reference" "U5" (at 210.82 74.93 0)
  1916. (effects (font (size 1.27 1.27)))
  1917. )
  1918. (property "Value" "~" (at 210.82 81.28 0)
  1919. (effects (font (size 1.27 1.27)))
  1920. )
  1921. (property "Footprint" "chinese_modules:dc-dc module" (at 210.82 81.28 0)
  1922. (effects (font (size 1.27 1.27)) hide)
  1923. )
  1924. (property "Datasheet" "" (at 210.82 81.28 0)
  1925. (effects (font (size 1.27 1.27)) hide)
  1926. )
  1927. (pin "1" (uuid c9dde62a-dd2e-4a7c-97da-730535ee7185))
  1928. (pin "2" (uuid 6c90ac1a-d410-41ee-aa6d-31fe0604258a))
  1929. (pin "3" (uuid b654bbf4-ba01-4eff-8605-2f96639036ec))
  1930. (pin "4" (uuid 521bca73-422e-4ce7-a06f-3273b3e1bf5b))
  1931. (instances
  1932. (project "drumkit"
  1933. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1934. (reference "U5") (unit 1)
  1935. )
  1936. )
  1937. )
  1938. )
  1939. (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 21.59 27.94 0) (mirror y) (unit 1)
  1940. (in_bom yes) (on_board yes) (dnp no)
  1941. (uuid 6d607a13-bfd7-435c-b1e9-e96893dcd052)
  1942. (property "Reference" "J1" (at 21.59 35.56 0)
  1943. (effects (font (size 1.27 1.27)))
  1944. )
  1945. (property "Value" "BATTERY" (at 21.59 33.02 0)
  1946. (effects (font (size 1.27 1.27)))
  1947. )
  1948. (property "Footprint" "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" (at 21.59 27.94 0)
  1949. (effects (font (size 1.27 1.27)) hide)
  1950. )
  1951. (property "Datasheet" "~" (at 21.59 27.94 0)
  1952. (effects (font (size 1.27 1.27)) hide)
  1953. )
  1954. (pin "1" (uuid 1343440d-01b2-4a64-9eaa-f4e2de67c8bd))
  1955. (pin "2" (uuid 83e343e3-4a0f-427e-b978-29a79a2f4616))
  1956. (instances
  1957. (project "drumkit"
  1958. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1959. (reference "J1") (unit 1)
  1960. )
  1961. )
  1962. )
  1963. )
  1964. (symbol (lib_id "Switch:SW_Push") (at 35.56 101.6 0) (unit 1)
  1965. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1966. (uuid 727eac62-67d5-4200-ac8d-4c8ca03a5d6f)
  1967. (property "Reference" "SW1" (at 35.56 95.25 0)
  1968. (effects (font (size 1.27 1.27)))
  1969. )
  1970. (property "Value" "BUTTON1" (at 35.56 97.79 0)
  1971. (effects (font (size 1.27 1.27)))
  1972. )
  1973. (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 35.56 96.52 0)
  1974. (effects (font (size 1.27 1.27)) hide)
  1975. )
  1976. (property "Datasheet" "~" (at 35.56 96.52 0)
  1977. (effects (font (size 1.27 1.27)) hide)
  1978. )
  1979. (pin "1" (uuid 59b31214-00bc-4a58-9414-2afa6a5e6aa5))
  1980. (pin "2" (uuid 35b50add-0768-4e89-86c8-6673b06c24ec))
  1981. (instances
  1982. (project "drumkit"
  1983. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  1984. (reference "SW1") (unit 1)
  1985. )
  1986. )
  1987. )
  1988. )
  1989. (symbol (lib_id "Switch:SW_Push") (at 35.56 114.3 0) (unit 1)
  1990. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1991. (uuid 74100909-2805-4177-9ddc-10e31ed04d9c)
  1992. (property "Reference" "SW2" (at 35.56 107.95 0)
  1993. (effects (font (size 1.27 1.27)))
  1994. )
  1995. (property "Value" "BUTTON2" (at 35.56 110.49 0)
  1996. (effects (font (size 1.27 1.27)))
  1997. )
  1998. (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 35.56 109.22 0)
  1999. (effects (font (size 1.27 1.27)) hide)
  2000. )
  2001. (property "Datasheet" "~" (at 35.56 109.22 0)
  2002. (effects (font (size 1.27 1.27)) hide)
  2003. )
  2004. (pin "1" (uuid 25c55610-cf80-4b9c-8e31-49890adfc748))
  2005. (pin "2" (uuid c506e68d-93f4-4e52-b674-8ca6ae840aef))
  2006. (instances
  2007. (project "drumkit"
  2008. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2009. (reference "SW2") (unit 1)
  2010. )
  2011. )
  2012. )
  2013. )
  2014. (symbol (lib_id "chinese_modules:xy-mos") (at 227.33 81.28 0) (unit 1)
  2015. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2016. (uuid 7a8cc745-b78a-401b-af89-5ddba94d3f2d)
  2017. (property "Reference" "U6" (at 229.2859 74.93 0)
  2018. (effects (font (size 1.27 1.27)) (justify left))
  2019. )
  2020. (property "Value" "~" (at 227.33 81.28 0)
  2021. (effects (font (size 1.27 1.27)))
  2022. )
  2023. (property "Footprint" "chinese_modules:xy-mos" (at 227.33 81.28 0)
  2024. (effects (font (size 1.27 1.27)) hide)
  2025. )
  2026. (property "Datasheet" "" (at 227.33 81.28 0)
  2027. (effects (font (size 1.27 1.27)) hide)
  2028. )
  2029. (pin "1" (uuid 51e45cdc-78be-4e2a-a8ba-4b3ff269ad52))
  2030. (pin "2" (uuid 97e3dca4-bed5-43fe-8e15-dc0201ca80a4))
  2031. (pin "3" (uuid 996a0861-d4c2-4ed8-80a8-ca6e5a26460f))
  2032. (pin "4" (uuid d4a87fc5-5b53-4e30-905e-c70e1f038356))
  2033. (pin "5" (uuid da385ed8-fd6b-44d3-8d99-549b715d8e42))
  2034. (pin "6" (uuid e0f99754-92b2-4218-a1df-e435a44cd127))
  2035. (instances
  2036. (project "drumkit"
  2037. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2038. (reference "U6") (unit 1)
  2039. )
  2040. )
  2041. )
  2042. )
  2043. (symbol (lib_id "Switch:SW_Push") (at 35.56 127 0) (unit 1)
  2044. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2045. (uuid 81306a07-f5a0-49fc-8561-0919cfe16799)
  2046. (property "Reference" "SW3" (at 35.56 120.65 0)
  2047. (effects (font (size 1.27 1.27)))
  2048. )
  2049. (property "Value" "BUTTON3" (at 35.56 123.19 0)
  2050. (effects (font (size 1.27 1.27)))
  2051. )
  2052. (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 35.56 121.92 0)
  2053. (effects (font (size 1.27 1.27)) hide)
  2054. )
  2055. (property "Datasheet" "~" (at 35.56 121.92 0)
  2056. (effects (font (size 1.27 1.27)) hide)
  2057. )
  2058. (pin "1" (uuid 4f4b8260-b89c-43eb-940f-12bf7fcb5cb6))
  2059. (pin "2" (uuid b0816c83-9133-4c20-9852-17e5f8285cb0))
  2060. (instances
  2061. (project "drumkit"
  2062. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2063. (reference "SW3") (unit 1)
  2064. )
  2065. )
  2066. )
  2067. )
  2068. (symbol (lib_name "GND_1") (lib_id "power:GND") (at 245.11 88.9 0) (unit 1)
  2069. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2070. (uuid 94e4abe8-3ff0-4fda-87cf-7ac9a69c783b)
  2071. (property "Reference" "#PWR014" (at 245.11 95.25 0)
  2072. (effects (font (size 1.27 1.27)) hide)
  2073. )
  2074. (property "Value" "GND" (at 245.11 93.98 0)
  2075. (effects (font (size 1.27 1.27)))
  2076. )
  2077. (property "Footprint" "" (at 245.11 88.9 0)
  2078. (effects (font (size 1.27 1.27)) hide)
  2079. )
  2080. (property "Datasheet" "" (at 245.11 88.9 0)
  2081. (effects (font (size 1.27 1.27)) hide)
  2082. )
  2083. (pin "1" (uuid 85b81bd4-8e5d-48b6-b322-6cb1cf463946))
  2084. (instances
  2085. (project "drumkit"
  2086. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2087. (reference "#PWR014") (unit 1)
  2088. )
  2089. )
  2090. )
  2091. )
  2092. (symbol (lib_id "power:+BATT") (at 129.54 58.42 0) (unit 1)
  2093. (in_bom yes) (on_board yes) (dnp no)
  2094. (uuid 9aad85f4-69cb-4cff-9eeb-757904e4d093)
  2095. (property "Reference" "#PWR03" (at 129.54 62.23 0)
  2096. (effects (font (size 1.27 1.27)) hide)
  2097. )
  2098. (property "Value" "+BATT" (at 129.54 53.34 0)
  2099. (effects (font (size 1.27 1.27)))
  2100. )
  2101. (property "Footprint" "" (at 129.54 58.42 0)
  2102. (effects (font (size 1.27 1.27)) hide)
  2103. )
  2104. (property "Datasheet" "" (at 129.54 58.42 0)
  2105. (effects (font (size 1.27 1.27)) hide)
  2106. )
  2107. (pin "1" (uuid 72e07d73-ddf9-4bba-a1b6-abbf88e6d7ca))
  2108. (instances
  2109. (project "drumkit"
  2110. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2111. (reference "#PWR03") (unit 1)
  2112. )
  2113. )
  2114. )
  2115. )
  2116. (symbol (lib_id "Device:R") (at 62.23 176.53 0) (unit 1)
  2117. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2118. (uuid a1074ff5-a42b-4437-8c70-20694ada8fd8)
  2119. (property "Reference" "R2" (at 64.77 175.895 0)
  2120. (effects (font (size 1.27 1.27)) (justify left))
  2121. )
  2122. (property "Value" "R" (at 64.77 178.435 0)
  2123. (effects (font (size 1.27 1.27)) (justify left))
  2124. )
  2125. (property "Footprint" "Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical" (at 60.452 176.53 90)
  2126. (effects (font (size 1.27 1.27)) hide)
  2127. )
  2128. (property "Datasheet" "~" (at 62.23 176.53 0)
  2129. (effects (font (size 1.27 1.27)) hide)
  2130. )
  2131. (pin "1" (uuid ba0b1a94-5de8-4683-9b30-fa91c6009094))
  2132. (pin "2" (uuid 5789935d-0a58-4773-970a-444fb84b9898))
  2133. (instances
  2134. (project "drumkit"
  2135. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2136. (reference "R2") (unit 1)
  2137. )
  2138. )
  2139. )
  2140. )
  2141. (symbol (lib_id "chinese_modules:dc-dc") (at 254 80.01 0) (unit 1)
  2142. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2143. (uuid a4deb734-c35c-4975-9535-4e0bbaa6eeaf)
  2144. (property "Reference" "U3" (at 254 73.66 0)
  2145. (effects (font (size 1.27 1.27)))
  2146. )
  2147. (property "Value" "~" (at 254 80.01 0)
  2148. (effects (font (size 1.27 1.27)))
  2149. )
  2150. (property "Footprint" "chinese_modules:dc-dc module" (at 254 80.01 0)
  2151. (effects (font (size 1.27 1.27)) hide)
  2152. )
  2153. (property "Datasheet" "" (at 254 80.01 0)
  2154. (effects (font (size 1.27 1.27)) hide)
  2155. )
  2156. (pin "1" (uuid 3ef22c63-32af-45fb-82d7-0d273d01024d))
  2157. (pin "2" (uuid 7431b858-ef68-4679-b65f-76c5d4dab0be))
  2158. (pin "3" (uuid 92f191f6-d53e-4dcf-9765-8712b2846c77))
  2159. (pin "4" (uuid e2cb83f5-9981-4226-a9a9-b2b2a1bbac3f))
  2160. (instances
  2161. (project "drumkit"
  2162. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2163. (reference "U3") (unit 1)
  2164. )
  2165. )
  2166. )
  2167. )
  2168. (symbol (lib_id "chinese_modules:xy-mos") (at 270.51 80.01 0) (unit 1)
  2169. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2170. (uuid a613c9fc-fbce-434e-935c-7629469d1a12)
  2171. (property "Reference" "U4" (at 272.4659 73.66 0)
  2172. (effects (font (size 1.27 1.27)) (justify left))
  2173. )
  2174. (property "Value" "~" (at 270.51 80.01 0)
  2175. (effects (font (size 1.27 1.27)))
  2176. )
  2177. (property "Footprint" "chinese_modules:xy-mos" (at 270.51 80.01 0)
  2178. (effects (font (size 1.27 1.27)) hide)
  2179. )
  2180. (property "Datasheet" "" (at 270.51 80.01 0)
  2181. (effects (font (size 1.27 1.27)) hide)
  2182. )
  2183. (pin "1" (uuid 376660f0-d315-4500-818b-9e295ff15fe0))
  2184. (pin "2" (uuid 21a9b2db-a31b-4e6e-b091-c6b8aeea222e))
  2185. (pin "3" (uuid 3db81a8c-78f8-4fca-bcb6-221ab7ce4c4d))
  2186. (pin "4" (uuid f1d5a24d-ea6c-48ad-b0dd-aa7538c9e747))
  2187. (pin "5" (uuid a02da0a2-e44b-4f45-b887-5b5fb9253116))
  2188. (pin "6" (uuid 0e22fcb8-927a-4147-936f-5bfe18af0d2c))
  2189. (instances
  2190. (project "drumkit"
  2191. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2192. (reference "U4") (unit 1)
  2193. )
  2194. )
  2195. )
  2196. )
  2197. (symbol (lib_id "power:GND") (at 151.13 149.86 0) (unit 1)
  2198. (in_bom yes) (on_board yes) (dnp no)
  2199. (uuid ae9ca78d-0375-45f4-8e40-425ce5cd3d04)
  2200. (property "Reference" "#PWR015" (at 151.13 156.21 0)
  2201. (effects (font (size 1.27 1.27)) hide)
  2202. )
  2203. (property "Value" "GND" (at 151.13 154.94 0)
  2204. (effects (font (size 1.27 1.27)))
  2205. )
  2206. (property "Footprint" "" (at 151.13 149.86 0)
  2207. (effects (font (size 1.27 1.27)) hide)
  2208. )
  2209. (property "Datasheet" "" (at 151.13 149.86 0)
  2210. (effects (font (size 1.27 1.27)) hide)
  2211. )
  2212. (pin "1" (uuid 6ca16969-2375-4904-ada4-355202605239))
  2213. (instances
  2214. (project "drumkit"
  2215. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2216. (reference "#PWR015") (unit 1)
  2217. )
  2218. )
  2219. )
  2220. )
  2221. (symbol (lib_id "power:GND") (at 27.94 185.42 0) (unit 1)
  2222. (in_bom yes) (on_board yes) (dnp no)
  2223. (uuid af81895e-437d-43c8-a780-1736cb412e55)
  2224. (property "Reference" "#PWR01" (at 27.94 191.77 0)
  2225. (effects (font (size 1.27 1.27)) hide)
  2226. )
  2227. (property "Value" "GND" (at 27.94 190.5 0)
  2228. (effects (font (size 1.27 1.27)))
  2229. )
  2230. (property "Footprint" "" (at 27.94 185.42 0)
  2231. (effects (font (size 1.27 1.27)) hide)
  2232. )
  2233. (property "Datasheet" "" (at 27.94 185.42 0)
  2234. (effects (font (size 1.27 1.27)) hide)
  2235. )
  2236. (pin "1" (uuid 3209b29f-1b67-441f-bb5f-ac64ff0857cf))
  2237. (instances
  2238. (project "drumkit"
  2239. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2240. (reference "#PWR01") (unit 1)
  2241. )
  2242. )
  2243. )
  2244. )
  2245. (symbol (lib_id "Device:R") (at 52.07 176.53 0) (unit 1)
  2246. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2247. (uuid b4eb0df1-ddd8-4dd6-8c95-d2c9a327d547)
  2248. (property "Reference" "R1" (at 54.61 175.895 0)
  2249. (effects (font (size 1.27 1.27)) (justify left))
  2250. )
  2251. (property "Value" "R" (at 54.61 178.435 0)
  2252. (effects (font (size 1.27 1.27)) (justify left))
  2253. )
  2254. (property "Footprint" "Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical" (at 50.292 176.53 90)
  2255. (effects (font (size 1.27 1.27)) hide)
  2256. )
  2257. (property "Datasheet" "~" (at 52.07 176.53 0)
  2258. (effects (font (size 1.27 1.27)) hide)
  2259. )
  2260. (pin "1" (uuid 9fcadd8b-37e6-44e4-a795-f1096689ab0f))
  2261. (pin "2" (uuid 1622b567-e958-43dc-9f30-8e9e086ed729))
  2262. (instances
  2263. (project "drumkit"
  2264. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2265. (reference "R1") (unit 1)
  2266. )
  2267. )
  2268. )
  2269. )
  2270. (symbol (lib_id "Device:LED") (at 62.23 165.1 90) (unit 1)
  2271. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2272. (uuid b7340417-61ea-400f-88b5-3064de8c1dff)
  2273. (property "Reference" "D2" (at 66.04 166.0652 90)
  2274. (effects (font (size 1.27 1.27)) (justify right))
  2275. )
  2276. (property "Value" "LED2" (at 66.04 168.6052 90)
  2277. (effects (font (size 1.27 1.27)) (justify right))
  2278. )
  2279. (property "Footprint" "LED_THT:LED_D5.0mm" (at 62.23 165.1 0)
  2280. (effects (font (size 1.27 1.27)) hide)
  2281. )
  2282. (property "Datasheet" "~" (at 62.23 165.1 0)
  2283. (effects (font (size 1.27 1.27)) hide)
  2284. )
  2285. (pin "1" (uuid edb4a6b0-fbfb-4f93-92a2-c50148077628))
  2286. (pin "2" (uuid 3bf102ab-3439-4d7d-b4fb-68100a3095e0))
  2287. (instances
  2288. (project "drumkit"
  2289. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2290. (reference "D2") (unit 1)
  2291. )
  2292. )
  2293. )
  2294. )
  2295. (symbol (lib_id "power:GND") (at 45.72 36.83 0) (unit 1)
  2296. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2297. (uuid b8daaf2f-d6cd-47bd-8f44-742fdfc75b6a)
  2298. (property "Reference" "#PWR02" (at 45.72 43.18 0)
  2299. (effects (font (size 1.27 1.27)) hide)
  2300. )
  2301. (property "Value" "GND" (at 45.72 41.91 0)
  2302. (effects (font (size 1.27 1.27)))
  2303. )
  2304. (property "Footprint" "" (at 45.72 36.83 0)
  2305. (effects (font (size 1.27 1.27)) hide)
  2306. )
  2307. (property "Datasheet" "" (at 45.72 36.83 0)
  2308. (effects (font (size 1.27 1.27)) hide)
  2309. )
  2310. (pin "1" (uuid ea6c6e52-992a-46ef-9a9b-a127c6b98274))
  2311. (instances
  2312. (project "drumkit"
  2313. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2314. (reference "#PWR02") (unit 1)
  2315. )
  2316. )
  2317. )
  2318. )
  2319. (symbol (lib_id "power:+3.3V") (at 66.04 57.15 0) (unit 1)
  2320. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2321. (uuid ca91c08c-34e7-4e34-b9d6-aaad09ece6c3)
  2322. (property "Reference" "#PWR012" (at 66.04 60.96 0)
  2323. (effects (font (size 1.27 1.27)) hide)
  2324. )
  2325. (property "Value" "+3.3V" (at 66.04 53.34 0)
  2326. (effects (font (size 1.27 1.27)))
  2327. )
  2328. (property "Footprint" "" (at 66.04 57.15 0)
  2329. (effects (font (size 1.27 1.27)) hide)
  2330. )
  2331. (property "Datasheet" "" (at 66.04 57.15 0)
  2332. (effects (font (size 1.27 1.27)) hide)
  2333. )
  2334. (pin "1" (uuid 50aced68-5254-4326-a59e-11b9084459fe))
  2335. (instances
  2336. (project "drumkit"
  2337. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2338. (reference "#PWR012") (unit 1)
  2339. )
  2340. )
  2341. )
  2342. )
  2343. (symbol (lib_id "dk_Encoders:PEC11R-4215F-S0024") (at 149.86 127 0) (mirror y) (unit 1)
  2344. (in_bom yes) (on_board yes) (dnp no)
  2345. (uuid d055ceb9-d809-4631-92c1-18c54afd2dcd)
  2346. (property "Reference" "S1" (at 151.13 118.11 0)
  2347. (effects (font (size 1.524 1.524)))
  2348. )
  2349. (property "Value" "ENCODER" (at 151.13 120.65 0)
  2350. (effects (font (size 1.524 1.524)))
  2351. )
  2352. (property "Footprint" "digikey-footprints:Rotary_Encoder_Switched_PEC11R" (at 144.78 121.92 0)
  2353. (effects (font (size 1.524 1.524)) (justify left) hide)
  2354. )
  2355. (property "Datasheet" "https://www.bourns.com/docs/Product-Datasheets/PEC11R.pdf" (at 144.78 119.38 0)
  2356. (effects (font (size 1.524 1.524)) (justify left) hide)
  2357. )
  2358. (property "Digi-Key_PN" "PEC11R-4215F-S0024-ND" (at 144.78 116.84 0)
  2359. (effects (font (size 1.524 1.524)) (justify left) hide)
  2360. )
  2361. (property "MPN" "PEC11R-4215F-S0024" (at 144.78 114.3 0)
  2362. (effects (font (size 1.524 1.524)) (justify left) hide)
  2363. )
  2364. (property "Category" "Sensors, Transducers" (at 144.78 111.76 0)
  2365. (effects (font (size 1.524 1.524)) (justify left) hide)
  2366. )
  2367. (property "Family" "Encoders" (at 144.78 109.22 0)
  2368. (effects (font (size 1.524 1.524)) (justify left) hide)
  2369. )
  2370. (property "DK_Datasheet_Link" "https://www.bourns.com/docs/Product-Datasheets/PEC11R.pdf" (at 144.78 106.68 0)
  2371. (effects (font (size 1.524 1.524)) (justify left) hide)
  2372. )
  2373. (property "DK_Detail_Page" "/product-detail/en/bourns-inc/PEC11R-4215F-S0024/PEC11R-4215F-S0024-ND/4499665" (at 144.78 104.14 0)
  2374. (effects (font (size 1.524 1.524)) (justify left) hide)
  2375. )
  2376. (property "Description" "ROTARY ENCODER MECHANICAL 24PPR" (at 144.78 101.6 0)
  2377. (effects (font (size 1.524 1.524)) (justify left) hide)
  2378. )
  2379. (property "Manufacturer" "Bourns Inc." (at 144.78 99.06 0)
  2380. (effects (font (size 1.524 1.524)) (justify left) hide)
  2381. )
  2382. (property "Status" "Active" (at 144.78 96.52 0)
  2383. (effects (font (size 1.524 1.524)) (justify left) hide)
  2384. )
  2385. (pin "1" (uuid feb15aa2-52f3-4a8e-8615-116c8b65987d))
  2386. (pin "2" (uuid 063ed5bc-c129-4f79-9206-6fda5af416fa))
  2387. (pin "3" (uuid 19b3e3fa-e785-48f1-9514-08ce3963e474))
  2388. (pin "A" (uuid 6989b4ac-fa94-4143-b139-bfab0edb45b3))
  2389. (pin "B" (uuid f082f788-3087-49ad-9714-a2261f47bcaf))
  2390. (pin "C" (uuid fc757684-5f79-4fcc-af63-a98af7fa54fd))
  2391. (instances
  2392. (project "drumkit"
  2393. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2394. (reference "S1") (unit 1)
  2395. )
  2396. )
  2397. )
  2398. )
  2399. (symbol (lib_name "R_1") (lib_id "Device:R") (at 143.51 52.07 0) (unit 1)
  2400. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2401. (uuid d1f82fc6-6034-4a05-97b4-5000624e8cfb)
  2402. (property "Reference" "R5" (at 146.05 50.8 0)
  2403. (effects (font (size 1.27 1.27)) (justify left))
  2404. )
  2405. (property "Value" "R" (at 146.05 53.34 0)
  2406. (effects (font (size 1.27 1.27)) (justify left))
  2407. )
  2408. (property "Footprint" "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (at 141.732 52.07 90)
  2409. (effects (font (size 1.27 1.27)) hide)
  2410. )
  2411. (property "Datasheet" "~" (at 143.51 52.07 0)
  2412. (effects (font (size 1.27 1.27)) hide)
  2413. )
  2414. (pin "1" (uuid a02df809-5d53-428b-b6f6-0dd728054f23))
  2415. (pin "2" (uuid 5d8457fe-e1ba-412c-bb70-c09a29010ddc))
  2416. (instances
  2417. (project "drumkit"
  2418. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2419. (reference "R5") (unit 1)
  2420. )
  2421. )
  2422. )
  2423. )
  2424. (symbol (lib_id "chinese_modules:dc-dc") (at 171.45 81.28 0) (unit 1)
  2425. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2426. (uuid e0c3a93e-f737-4b5a-a1c2-b9f4ada6ca5c)
  2427. (property "Reference" "U7" (at 171.45 74.93 0)
  2428. (effects (font (size 1.27 1.27)))
  2429. )
  2430. (property "Value" "~" (at 171.45 81.28 0)
  2431. (effects (font (size 1.27 1.27)))
  2432. )
  2433. (property "Footprint" "chinese_modules:dc-dc module" (at 171.45 81.28 0)
  2434. (effects (font (size 1.27 1.27)) hide)
  2435. )
  2436. (property "Datasheet" "" (at 171.45 81.28 0)
  2437. (effects (font (size 1.27 1.27)) hide)
  2438. )
  2439. (pin "1" (uuid af561cc4-8474-498a-9ea7-9180e35c4507))
  2440. (pin "2" (uuid 5c2797ca-346e-4797-96bf-d600426dae1c))
  2441. (pin "3" (uuid 479781ab-8a6c-4bd0-9b59-13af3dab26ba))
  2442. (pin "4" (uuid 07e2735d-0d14-4424-8047-a30446b9d8cf))
  2443. (instances
  2444. (project "drumkit"
  2445. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2446. (reference "U7") (unit 1)
  2447. )
  2448. )
  2449. )
  2450. )
  2451. (symbol (lib_id "MCU_RaspberryPi_and_Boards:Pico") (at 107.95 90.17 0) (unit 1)
  2452. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2453. (uuid ed8e5ba1-6dc9-4326-8936-6e1df5b8bdf0)
  2454. (property "Reference" "U1" (at 107.95 59.69 0)
  2455. (effects (font (size 1.27 1.27)))
  2456. )
  2457. (property "Value" "Pico" (at 107.95 62.23 0)
  2458. (effects (font (size 1.27 1.27)))
  2459. )
  2460. (property "Footprint" "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH" (at 107.95 90.17 90)
  2461. (effects (font (size 1.27 1.27)) hide)
  2462. )
  2463. (property "Datasheet" "" (at 107.95 90.17 0)
  2464. (effects (font (size 1.27 1.27)) hide)
  2465. )
  2466. (pin "1" (uuid 60416bef-37d4-44fa-bb51-c3ce80d30b6a))
  2467. (pin "10" (uuid 0d40ebf6-03e8-4bae-8018-4c2e92b2c70b))
  2468. (pin "11" (uuid 812f662c-1241-4335-9d20-151419a4d112))
  2469. (pin "12" (uuid 0455f6b4-9d63-4d0d-b72a-d288782b860f))
  2470. (pin "13" (uuid bd835177-d0bd-43fa-a816-fca5f0eb03c7))
  2471. (pin "14" (uuid e6ca5712-5101-4ad1-a370-bf00e250b7d3))
  2472. (pin "15" (uuid 91db1e96-9d4e-4b4f-8711-805b09605b7c))
  2473. (pin "16" (uuid 2aa476d4-b6d0-4bdd-ab44-0c8205e3da7a))
  2474. (pin "17" (uuid 4f0b9856-3284-478a-8176-808a6994e269))
  2475. (pin "18" (uuid 52afd796-313a-4a8c-b58e-ef65ec608b60))
  2476. (pin "19" (uuid 6f653aa3-ab1d-440c-9583-d5e808bcff43))
  2477. (pin "2" (uuid 5e4178ba-11b5-4443-a6d0-99e88aa19bf7))
  2478. (pin "20" (uuid ce8a73f9-df33-4f7b-b2d2-46046d5169e9))
  2479. (pin "21" (uuid d6cd77fa-1588-4e3e-b3cc-234ab264e6ab))
  2480. (pin "22" (uuid 668b9adc-d62f-4f54-a384-d9dc83d52b9a))
  2481. (pin "23" (uuid be9cbd49-3682-444e-83ab-a69fc8bb6834))
  2482. (pin "24" (uuid ba81e62b-0507-4ff8-aa30-c11bc92b3a03))
  2483. (pin "25" (uuid 95a99804-1c85-4c1d-92fc-e634dfeb18ef))
  2484. (pin "26" (uuid 46b71d53-2526-4d15-90bc-8e873002bf66))
  2485. (pin "27" (uuid addf485a-6434-4dd3-8a5f-376cfa85ee85))
  2486. (pin "28" (uuid cfcbefd3-56ad-47e2-a7fd-e93c530408f1))
  2487. (pin "29" (uuid 9c3d2b87-96ef-4f90-a127-7ff26df024d6))
  2488. (pin "3" (uuid 0d476819-0910-41e8-b4d1-a4180123b969))
  2489. (pin "30" (uuid 16947e8b-7e0d-49b8-bcef-6139a5dd1edd))
  2490. (pin "31" (uuid ff0990ce-5c57-48b9-9acc-b6136ef203ac))
  2491. (pin "32" (uuid 4f32d522-c0a6-4445-a175-245028162dae))
  2492. (pin "33" (uuid 07c0ae61-b46f-4d4e-b632-721f872519b2))
  2493. (pin "34" (uuid 3f88431e-dbf4-480e-82ea-352ffac269db))
  2494. (pin "35" (uuid 34e540f6-e984-4958-9083-214b725d76cf))
  2495. (pin "36" (uuid 4c8376c3-2cd8-4443-bef0-99562c65b1fc))
  2496. (pin "37" (uuid c7e06263-2eb0-4b9f-9a86-74c551a7b167))
  2497. (pin "38" (uuid cb9f26af-8ba7-4745-9d83-bfc3f89ef949))
  2498. (pin "39" (uuid 24b9e8a2-18a5-490a-b5fb-6e3cd83b5689))
  2499. (pin "4" (uuid cf923210-a5d7-42ec-8393-611d1e0e19ca))
  2500. (pin "40" (uuid 1af0dffa-8e64-4f6f-9a09-4c7d15e483ab))
  2501. (pin "41" (uuid 10e9cf23-dd58-4859-871d-15d0cd1ed9c3))
  2502. (pin "42" (uuid ad158448-74af-405c-a605-7c7c0b0088a3))
  2503. (pin "43" (uuid 6adecfec-04c5-4d1f-8a22-591ed032d9d1))
  2504. (pin "5" (uuid 68052368-d6fb-443f-bfb1-3b429a936daa))
  2505. (pin "6" (uuid 62397d8c-46cc-4f6e-b90a-85bd4c472f67))
  2506. (pin "7" (uuid 8a344010-0722-42b1-8119-8340047ce504))
  2507. (pin "8" (uuid 9de62b55-6ae7-47dc-b312-35e9b3507932))
  2508. (pin "9" (uuid 972e394b-5aa4-450c-93e6-4b1b414d52a6))
  2509. (instances
  2510. (project "drumkit"
  2511. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2512. (reference "U1") (unit 1)
  2513. )
  2514. )
  2515. )
  2516. )
  2517. (symbol (lib_id "Switch:SW_Push") (at 35.56 138.43 0) (unit 1)
  2518. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2519. (uuid f0c7d0c6-7873-4280-a61a-5f3101b3bfea)
  2520. (property "Reference" "SW4" (at 35.56 132.08 0)
  2521. (effects (font (size 1.27 1.27)))
  2522. )
  2523. (property "Value" "BUTTON4" (at 35.56 134.62 0)
  2524. (effects (font (size 1.27 1.27)))
  2525. )
  2526. (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 35.56 133.35 0)
  2527. (effects (font (size 1.27 1.27)) hide)
  2528. )
  2529. (property "Datasheet" "~" (at 35.56 133.35 0)
  2530. (effects (font (size 1.27 1.27)) hide)
  2531. )
  2532. (pin "1" (uuid c51b4383-5295-4a16-8380-e3e1f2eb4ace))
  2533. (pin "2" (uuid 2511681f-9a3d-43b9-9f96-07b58ca1f723))
  2534. (instances
  2535. (project "drumkit"
  2536. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2537. (reference "SW4") (unit 1)
  2538. )
  2539. )
  2540. )
  2541. )
  2542. (symbol (lib_id "Connector:Conn_01x04_Female") (at 78.74 52.07 90) (unit 1)
  2543. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2544. (uuid f35a9b0c-a495-4129-95a7-c7ee962e2eb3)
  2545. (property "Reference" "J2" (at 80.01 48.26 90)
  2546. (effects (font (size 1.27 1.27)))
  2547. )
  2548. (property "Value" "Conn_01x04_Female" (at 80.01 50.8 90)
  2549. (effects (font (size 1.27 1.27)))
  2550. )
  2551. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (at 78.74 52.07 0)
  2552. (effects (font (size 1.27 1.27)) hide)
  2553. )
  2554. (property "Datasheet" "~" (at 78.74 52.07 0)
  2555. (effects (font (size 1.27 1.27)) hide)
  2556. )
  2557. (pin "1" (uuid 4d1675ca-83c3-47a1-aea1-d827d9d305bb))
  2558. (pin "2" (uuid 000b35d8-8b4f-4a3f-9c44-61946ec5aa01))
  2559. (pin "3" (uuid 93c424a2-89a4-478e-aaa9-5ff9b62a453d))
  2560. (pin "4" (uuid f14b62a8-0144-4579-9c15-28e9eb3cdad5))
  2561. (instances
  2562. (project "drumkit"
  2563. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2564. (reference "J2") (unit 1)
  2565. )
  2566. )
  2567. )
  2568. )
  2569. (symbol (lib_id "Device:R") (at 72.39 176.53 0) (unit 1)
  2570. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2571. (uuid f40e2108-4b7c-41fd-8481-87ba7c829f60)
  2572. (property "Reference" "R3" (at 74.93 175.895 0)
  2573. (effects (font (size 1.27 1.27)) (justify left))
  2574. )
  2575. (property "Value" "R" (at 74.93 178.435 0)
  2576. (effects (font (size 1.27 1.27)) (justify left))
  2577. )
  2578. (property "Footprint" "Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical" (at 70.612 176.53 90)
  2579. (effects (font (size 1.27 1.27)) hide)
  2580. )
  2581. (property "Datasheet" "~" (at 72.39 176.53 0)
  2582. (effects (font (size 1.27 1.27)) hide)
  2583. )
  2584. (pin "1" (uuid 902aecdc-b652-4e38-af99-111ab2962d93))
  2585. (pin "2" (uuid d0dc01e1-120a-413d-8878-8e55b1f839b5))
  2586. (instances
  2587. (project "drumkit"
  2588. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2589. (reference "R3") (unit 1)
  2590. )
  2591. )
  2592. )
  2593. )
  2594. (symbol (lib_id "Device:LED") (at 52.07 165.1 90) (unit 1)
  2595. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2596. (uuid f72dd769-b458-4e8f-9b15-07dd1c00512d)
  2597. (property "Reference" "D1" (at 55.88 166.0652 90)
  2598. (effects (font (size 1.27 1.27)) (justify right))
  2599. )
  2600. (property "Value" "LED1" (at 55.88 168.6052 90)
  2601. (effects (font (size 1.27 1.27)) (justify right))
  2602. )
  2603. (property "Footprint" "LED_THT:LED_D5.0mm" (at 52.07 165.1 0)
  2604. (effects (font (size 1.27 1.27)) hide)
  2605. )
  2606. (property "Datasheet" "~" (at 52.07 165.1 0)
  2607. (effects (font (size 1.27 1.27)) hide)
  2608. )
  2609. (pin "1" (uuid d8b88341-7cbf-4ec0-ac0e-6a23cbe14b12))
  2610. (pin "2" (uuid 5dde16fa-82f9-4827-ac40-705aa2eb9c09))
  2611. (instances
  2612. (project "drumkit"
  2613. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2614. (reference "D1") (unit 1)
  2615. )
  2616. )
  2617. )
  2618. )
  2619. (symbol (lib_id "power:+BATT") (at 162.56 73.66 0) (unit 1)
  2620. (in_bom yes) (on_board yes) (dnp no)
  2621. (uuid fc92545c-205d-4a84-b2fe-80373f190ff0)
  2622. (property "Reference" "#PWR010" (at 162.56 77.47 0)
  2623. (effects (font (size 1.27 1.27)) hide)
  2624. )
  2625. (property "Value" "+BATT" (at 162.56 68.58 0)
  2626. (effects (font (size 1.27 1.27)))
  2627. )
  2628. (property "Footprint" "" (at 162.56 73.66 0)
  2629. (effects (font (size 1.27 1.27)) hide)
  2630. )
  2631. (property "Datasheet" "" (at 162.56 73.66 0)
  2632. (effects (font (size 1.27 1.27)) hide)
  2633. )
  2634. (pin "1" (uuid 5fbdf28b-5597-4dbd-ab96-9f145373d318))
  2635. (instances
  2636. (project "drumkit"
  2637. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2638. (reference "#PWR010") (unit 1)
  2639. )
  2640. )
  2641. )
  2642. )
  2643. (symbol (lib_id "power:+BATT") (at 201.93 73.66 0) (unit 1)
  2644. (in_bom yes) (on_board yes) (dnp no)
  2645. (uuid fdc1e00b-8c5c-4dcc-b267-5adf76031d6a)
  2646. (property "Reference" "#PWR08" (at 201.93 77.47 0)
  2647. (effects (font (size 1.27 1.27)) hide)
  2648. )
  2649. (property "Value" "+BATT" (at 201.93 68.58 0)
  2650. (effects (font (size 1.27 1.27)))
  2651. )
  2652. (property "Footprint" "" (at 201.93 73.66 0)
  2653. (effects (font (size 1.27 1.27)) hide)
  2654. )
  2655. (property "Datasheet" "" (at 201.93 73.66 0)
  2656. (effects (font (size 1.27 1.27)) hide)
  2657. )
  2658. (pin "1" (uuid b4d57a95-925d-4b96-b4e9-c2f9a1d2251a))
  2659. (instances
  2660. (project "drumkit"
  2661. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2662. (reference "#PWR08") (unit 1)
  2663. )
  2664. )
  2665. )
  2666. )
  2667. (symbol (lib_id "power:GND") (at 162.56 90.17 0) (unit 1)
  2668. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2669. (uuid fddac022-907e-40de-bbe0-29d7186d7eb8)
  2670. (property "Reference" "#PWR013" (at 162.56 96.52 0)
  2671. (effects (font (size 1.27 1.27)) hide)
  2672. )
  2673. (property "Value" "GND" (at 162.56 95.25 0)
  2674. (effects (font (size 1.27 1.27)))
  2675. )
  2676. (property "Footprint" "" (at 162.56 90.17 0)
  2677. (effects (font (size 1.27 1.27)) hide)
  2678. )
  2679. (property "Datasheet" "" (at 162.56 90.17 0)
  2680. (effects (font (size 1.27 1.27)) hide)
  2681. )
  2682. (pin "1" (uuid 570341e8-4cb5-435e-ba26-b7b448239d59))
  2683. (instances
  2684. (project "drumkit"
  2685. (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
  2686. (reference "#PWR013") (unit 1)
  2687. )
  2688. )
  2689. )
  2690. )
  2691. (sheet_instances
  2692. (path "/" (page "1"))
  2693. )
  2694. )