Нема описа
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

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