Ei kuvausta
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.

dispensy.kicad_sch 80KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328
  1. (kicad_sch (version 20230121) (generator eeschema)
  2. (uuid a50b51f9-900f-4bbb-8934-4acbc429c37b)
  3. (paper "A4")
  4. (title_block
  5. (title "Dispensy Mainboard")
  6. (date "2024-01-28")
  7. (rev "0")
  8. (company "DrinkRobotics")
  9. (comment 1 "https://git.xythobuz.de/thomas/Dispensy")
  10. (comment 2 "Licensed under the CERN-OHL-S-2.0+")
  11. (comment 3 "PCB Thickness: 1mm")
  12. (comment 4 "Copyright (c) 2023 - 2024 Thomas Buck <thomas@xythobuz.de>")
  13. )
  14. (lib_symbols
  15. (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  16. (property "Reference" "H" (at 0 5.08 0)
  17. (effects (font (size 1.27 1.27)))
  18. )
  19. (property "Value" "MountingHole" (at 0 3.175 0)
  20. (effects (font (size 1.27 1.27)))
  21. )
  22. (property "Footprint" "" (at 0 0 0)
  23. (effects (font (size 1.27 1.27)) hide)
  24. )
  25. (property "Datasheet" "~" (at 0 0 0)
  26. (effects (font (size 1.27 1.27)) hide)
  27. )
  28. (property "ki_keywords" "mounting hole" (at 0 0 0)
  29. (effects (font (size 1.27 1.27)) hide)
  30. )
  31. (property "ki_description" "Mounting Hole without connection" (at 0 0 0)
  32. (effects (font (size 1.27 1.27)) hide)
  33. )
  34. (property "ki_fp_filters" "MountingHole*" (at 0 0 0)
  35. (effects (font (size 1.27 1.27)) hide)
  36. )
  37. (symbol "MountingHole_0_1"
  38. (circle (center 0 0) (radius 1.27)
  39. (stroke (width 1.27) (type default))
  40. (fill (type none))
  41. )
  42. )
  43. )
  44. (symbol "SSD1306:SSD1306" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  45. (property "Reference" "OLED" (at 0 5.08 0)
  46. (effects (font (size 1.27 1.27)))
  47. )
  48. (property "Value" "SSD1306" (at 0 -7.62 0)
  49. (effects (font (size 1.27 1.27)))
  50. )
  51. (property "Footprint" "extern:SSD1306_0.96_Oled" (at 0 7.62 0)
  52. (effects (font (size 1.27 1.27)) hide)
  53. )
  54. (property "Datasheet" "~" (at 0 0 0)
  55. (effects (font (size 1.27 1.27)) hide)
  56. )
  57. (property "ki_keywords" "oled" (at 0 0 0)
  58. (effects (font (size 1.27 1.27)) hide)
  59. )
  60. (property "ki_description" "OLED 0.96 128x64 I2C" (at 0 0 0)
  61. (effects (font (size 1.27 1.27)) hide)
  62. )
  63. (property "ki_fp_filters" "extern:SSD1306*" (at 0 0 0)
  64. (effects (font (size 1.27 1.27)) hide)
  65. )
  66. (symbol "SSD1306_1_1"
  67. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  68. (stroke (width 0.1524) (type default))
  69. (fill (type none))
  70. )
  71. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  72. (stroke (width 0.1524) (type default))
  73. (fill (type none))
  74. )
  75. (rectangle (start -1.27 0.127) (end 0 -0.127)
  76. (stroke (width 0.1524) (type default))
  77. (fill (type none))
  78. )
  79. (rectangle (start -1.27 2.667) (end 0 2.413)
  80. (stroke (width 0.1524) (type default))
  81. (fill (type none))
  82. )
  83. (rectangle (start -1.27 3.81) (end 3.81 -6.35)
  84. (stroke (width 0.254) (type default))
  85. (fill (type background))
  86. )
  87. (pin power_in line (at -5.08 0 0) (length 3.81)
  88. (name "GND" (effects (font (size 1.27 1.27))))
  89. (number "1" (effects (font (size 1.27 1.27))))
  90. )
  91. (pin power_in line (at -5.08 2.54 0) (length 3.81)
  92. (name "VCC" (effects (font (size 1.27 1.27))))
  93. (number "2" (effects (font (size 1.27 1.27))))
  94. )
  95. (pin input line (at -5.08 -5.08 0) (length 3.81)
  96. (name "SCL" (effects (font (size 1.27 1.27))))
  97. (number "3" (effects (font (size 1.27 1.27))))
  98. )
  99. (pin bidirectional line (at -5.08 -2.54 0) (length 3.81)
  100. (name "SDA" (effects (font (size 1.27 1.27))))
  101. (number "4" (effects (font (size 1.27 1.27))))
  102. )
  103. )
  104. )
  105. (symbol "jlc:AC0402FR-071ML" (pin_names hide) (in_bom yes) (on_board yes)
  106. (property "Reference" "R" (at 0 1.27 0)
  107. (effects (font (size 1.27 1.27)))
  108. )
  109. (property "Value" "AC0402FR-071ML" (at 0 -2.54 0)
  110. (effects (font (size 1.27 1.27)))
  111. )
  112. (property "Footprint" "jlc_footprints:R0402" (at 0 -10.16 0)
  113. (effects (font (size 1.27 1.27) italic) hide)
  114. )
  115. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at -2.286 0.127 0)
  116. (effects (font (size 1.27 1.27)) (justify left) hide)
  117. )
  118. (property "LCSC" "C144787" (at 0 0 0)
  119. (effects (font (size 1.27 1.27)) hide)
  120. )
  121. (property "Resistance" "1MΩ" (at 0 0 0)
  122. (effects (font (size 1.27 1.27)) hide)
  123. )
  124. (property "ki_keywords" "C144787" (at 0 0 0)
  125. (effects (font (size 1.27 1.27)) hide)
  126. )
  127. (symbol "AC0402FR-071ML_0_1"
  128. (rectangle (start -2.54 1.016) (end 2.54 -1.016)
  129. (stroke (width 0) (type default))
  130. (fill (type background))
  131. )
  132. (pin unspecified line (at -5.08 0 0) (length 2.54)
  133. (name "1" (effects (font (size 1 1))))
  134. (number "1" (effects (font (size 1 1))))
  135. )
  136. (pin unspecified line (at 5.08 0 180) (length 2.54)
  137. (name "2" (effects (font (size 1 1))))
  138. (number "2" (effects (font (size 1 1))))
  139. )
  140. )
  141. )
  142. (symbol "jlc:ASMD1812-350-16V" (pin_names hide) (in_bom yes) (on_board yes)
  143. (property "Reference" "F" (at 0 1.27 0)
  144. (effects (font (size 1.27 1.27)))
  145. )
  146. (property "Value" "ASMD1812-350-16V" (at 0 -2.54 0)
  147. (effects (font (size 1.27 1.27)))
  148. )
  149. (property "Footprint" "jlc_footprints:F1812" (at 0 -10.16 0)
  150. (effects (font (size 1.27 1.27) italic) hide)
  151. )
  152. (property "Datasheet" "https://item.szlcsc.com/343302.html" (at -2.286 0.127 0)
  153. (effects (font (size 1.27 1.27)) (justify left) hide)
  154. )
  155. (property "LCSC" "C2982285" (at 0 0 0)
  156. (effects (font (size 1.27 1.27)) hide)
  157. )
  158. (property "ki_keywords" "C2982285" (at 0 0 0)
  159. (effects (font (size 1.27 1.27)) hide)
  160. )
  161. (symbol "ASMD1812-350-16V_0_1"
  162. (rectangle (start -3.302 0.762) (end 3.302 -0.762)
  163. (stroke (width 0) (type default))
  164. (fill (type background))
  165. )
  166. (polyline
  167. (pts
  168. (xy -2.54 0)
  169. (xy 2.54 0)
  170. )
  171. (stroke (width 0) (type default))
  172. (fill (type none))
  173. )
  174. (pin unspecified line (at -5.08 0 0) (length 2.54)
  175. (name "1" (effects (font (size 1 1))))
  176. (number "1" (effects (font (size 1 1))))
  177. )
  178. (pin unspecified line (at 5.08 0 180) (length 2.54)
  179. (name "2" (effects (font (size 1 1))))
  180. (number "2" (effects (font (size 1 1))))
  181. )
  182. )
  183. )
  184. (symbol "jlc:CC0402KRX7R8BB104" (pin_names hide) (in_bom yes) (on_board yes)
  185. (property "Reference" "C" (at 0 1.27 0)
  186. (effects (font (size 1.27 1.27)))
  187. )
  188. (property "Value" "CC0402KRX7R8BB104" (at 0 -2.54 0)
  189. (effects (font (size 1.27 1.27)))
  190. )
  191. (property "Footprint" "jlc_footprints:C0402" (at 0 -10.16 0)
  192. (effects (font (size 1.27 1.27) italic) hide)
  193. )
  194. (property "Datasheet" "https://item.szlcsc.com/15869.html" (at -2.286 0.127 0)
  195. (effects (font (size 1.27 1.27)) (justify left) hide)
  196. )
  197. (property "LCSC" "C105883" (at 0 0 0)
  198. (effects (font (size 1.27 1.27)) hide)
  199. )
  200. (property "Capacitance" "100nF" (at 0 0 0)
  201. (effects (font (size 1.27 1.27)) hide)
  202. )
  203. (property "ki_keywords" "C105883" (at 0 0 0)
  204. (effects (font (size 1.27 1.27)) hide)
  205. )
  206. (symbol "CC0402KRX7R8BB104_0_1"
  207. (polyline
  208. (pts
  209. (xy -1.27 0)
  210. (xy -0.508 0)
  211. )
  212. (stroke (width 0) (type default))
  213. (fill (type none))
  214. )
  215. (polyline
  216. (pts
  217. (xy -0.508 2.032)
  218. (xy -0.508 -2.032)
  219. )
  220. (stroke (width 0) (type default))
  221. (fill (type none))
  222. )
  223. (polyline
  224. (pts
  225. (xy 0.508 0)
  226. (xy 1.27 0)
  227. )
  228. (stroke (width 0) (type default))
  229. (fill (type none))
  230. )
  231. (polyline
  232. (pts
  233. (xy 0.508 2.032)
  234. (xy 0.508 -2.032)
  235. )
  236. (stroke (width 0) (type default))
  237. (fill (type none))
  238. )
  239. (pin input line (at -3.81 0 0) (length 2.54)
  240. (name "1" (effects (font (size 1 1))))
  241. (number "1" (effects (font (size 1 1))))
  242. )
  243. (pin input line (at 3.81 0 180) (length 2.54)
  244. (name "2" (effects (font (size 1 1))))
  245. (number "2" (effects (font (size 1 1))))
  246. )
  247. )
  248. )
  249. (symbol "jlc:CR-02FL6----1K" (pin_names hide) (in_bom yes) (on_board yes)
  250. (property "Reference" "R" (at 0 1.27 0)
  251. (effects (font (size 1.27 1.27)))
  252. )
  253. (property "Value" "CR-02FL6----1K" (at 0 -2.54 0)
  254. (effects (font (size 1.27 1.27)))
  255. )
  256. (property "Footprint" "jlc_footprints:R0402" (at 0 -10.16 0)
  257. (effects (font (size 1.27 1.27) italic) hide)
  258. )
  259. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at -2.286 0.127 0)
  260. (effects (font (size 1.27 1.27)) (justify left) hide)
  261. )
  262. (property "LCSC" "C279981" (at 0 0 0)
  263. (effects (font (size 1.27 1.27)) hide)
  264. )
  265. (property "Resistance" "1kΩ" (at 0 0 0)
  266. (effects (font (size 1.27 1.27)) hide)
  267. )
  268. (property "ki_keywords" "C279981" (at 0 0 0)
  269. (effects (font (size 1.27 1.27)) hide)
  270. )
  271. (symbol "CR-02FL6----1K_0_1"
  272. (rectangle (start -2.54 1.016) (end 2.54 -1.016)
  273. (stroke (width 0) (type default))
  274. (fill (type background))
  275. )
  276. (pin unspecified line (at -5.08 0 0) (length 2.54)
  277. (name "1" (effects (font (size 1 1))))
  278. (number "1" (effects (font (size 1 1))))
  279. )
  280. (pin unspecified line (at 5.08 0 180) (length 2.54)
  281. (name "2" (effects (font (size 1 1))))
  282. (number "2" (effects (font (size 1 1))))
  283. )
  284. )
  285. )
  286. (symbol "jlc:CR-02FL6---10K" (pin_names hide) (in_bom yes) (on_board yes)
  287. (property "Reference" "R" (at 0 1.27 0)
  288. (effects (font (size 1.27 1.27)))
  289. )
  290. (property "Value" "CR-02FL6---10K" (at 0 -2.54 0)
  291. (effects (font (size 1.27 1.27)))
  292. )
  293. (property "Footprint" "jlc_footprints:R0402" (at 0 -10.16 0)
  294. (effects (font (size 1.27 1.27) italic) hide)
  295. )
  296. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at -2.286 0.127 0)
  297. (effects (font (size 1.27 1.27)) (justify left) hide)
  298. )
  299. (property "LCSC" "C406733" (at 0 0 0)
  300. (effects (font (size 1.27 1.27)) hide)
  301. )
  302. (property "Resistance" "10kΩ" (at 0 0 0)
  303. (effects (font (size 1.27 1.27)) hide)
  304. )
  305. (property "ki_keywords" "C406733" (at 0 0 0)
  306. (effects (font (size 1.27 1.27)) hide)
  307. )
  308. (symbol "CR-02FL6---10K_0_1"
  309. (rectangle (start -2.54 1.27) (end 2.54 -1.27)
  310. (stroke (width 0) (type default))
  311. (fill (type background))
  312. )
  313. (pin unspecified line (at -5.08 0 0) (length 2.54)
  314. (name "1" (effects (font (size 1 1))))
  315. (number "1" (effects (font (size 1 1))))
  316. )
  317. (pin unspecified line (at 5.08 0 180) (length 2.54)
  318. (name "2" (effects (font (size 1 1))))
  319. (number "2" (effects (font (size 1 1))))
  320. )
  321. )
  322. )
  323. (symbol "jlc:CR0402F147KQ10Z" (pin_names hide) (in_bom yes) (on_board yes)
  324. (property "Reference" "R" (at 0 1.27 0)
  325. (effects (font (size 1.27 1.27)))
  326. )
  327. (property "Value" "CR0402F147KQ10Z" (at 0 -2.54 0)
  328. (effects (font (size 1.27 1.27)))
  329. )
  330. (property "Footprint" "jlc_footprints:R0402" (at 0 -10.16 0)
  331. (effects (font (size 1.27 1.27) italic) hide)
  332. )
  333. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at -2.286 0.127 0)
  334. (effects (font (size 1.27 1.27)) (justify left) hide)
  335. )
  336. (property "LCSC" "C881044" (at 0 0 0)
  337. (effects (font (size 1.27 1.27)) hide)
  338. )
  339. (property "ki_keywords" "C881044" (at 0 0 0)
  340. (effects (font (size 1.27 1.27)) hide)
  341. )
  342. (symbol "CR0402F147KQ10Z_0_1"
  343. (rectangle (start -2.54 1.27) (end 2.54 -1.27)
  344. (stroke (width 0) (type default))
  345. (fill (type background))
  346. )
  347. (pin unspecified line (at -5.08 0 0) (length 2.54)
  348. (name "1" (effects (font (size 1 1))))
  349. (number "1" (effects (font (size 1 1))))
  350. )
  351. (pin unspecified line (at 5.08 0 180) (length 2.54)
  352. (name "2" (effects (font (size 1 1))))
  353. (number "2" (effects (font (size 1 1))))
  354. )
  355. )
  356. )
  357. (symbol "jlc:DBT50G-7_62-4P" (in_bom yes) (on_board yes)
  358. (property "Reference" "U" (at 0 1.27 0)
  359. (effects (font (size 1.27 1.27)))
  360. )
  361. (property "Value" "DBT50G-7_62-4P" (at 0 -2.54 0)
  362. (effects (font (size 1.27 1.27)))
  363. )
  364. (property "Footprint" "jlc_footprints:CONN-TH_4P-P7.62_L15.2-W31.7-EX4.2" (at 0 -10.16 0)
  365. (effects (font (size 1.27 1.27) italic) hide)
  366. )
  367. (property "Datasheet" "https://item.szlcsc.com/512151.html?ref=editor&logined=true" (at -2.286 0.127 0)
  368. (effects (font (size 1.27 1.27)) (justify left) hide)
  369. )
  370. (property "LCSC" "C496132" (at 0 0 0)
  371. (effects (font (size 1.27 1.27)) hide)
  372. )
  373. (property "ki_keywords" "C496132" (at 0 0 0)
  374. (effects (font (size 1.27 1.27)) hide)
  375. )
  376. (symbol "DBT50G-7_62-4P_0_1"
  377. (rectangle (start -2.54 6.35) (end 2.54 -6.35)
  378. (stroke (width 0) (type default))
  379. (fill (type background))
  380. )
  381. (circle (center -1.27 5.08) (radius 0.381)
  382. (stroke (width 0) (type default))
  383. (fill (type background))
  384. )
  385. (pin unspecified line (at -5.08 3.81 0) (length 2.54)
  386. (name "1" (effects (font (size 1 1))))
  387. (number "1" (effects (font (size 1 1))))
  388. )
  389. (pin unspecified line (at -5.08 1.27 0) (length 2.54)
  390. (name "2" (effects (font (size 1 1))))
  391. (number "2" (effects (font (size 1 1))))
  392. )
  393. (pin unspecified line (at -5.08 -1.27 0) (length 2.54)
  394. (name "3" (effects (font (size 1 1))))
  395. (number "3" (effects (font (size 1 1))))
  396. )
  397. (pin unspecified line (at -5.08 -3.81 0) (length 2.54)
  398. (name "4" (effects (font (size 1 1))))
  399. (number "4" (effects (font (size 1 1))))
  400. )
  401. )
  402. )
  403. (symbol "jlc:FC-D1608HGK-572C" (pin_names hide) (in_bom yes) (on_board yes)
  404. (property "Reference" "LED" (at 0 1.27 0)
  405. (effects (font (size 1.27 1.27)))
  406. )
  407. (property "Value" "FC-D1608HGK-572C" (at 0 -2.54 0)
  408. (effects (font (size 1.27 1.27)))
  409. )
  410. (property "Footprint" "jlc_footprints:LED0603-RD" (at 0 -10.16 0)
  411. (effects (font (size 1.27 1.27) italic) hide)
  412. )
  413. (property "Datasheet" "https://item.szlcsc.com/347874.html" (at -2.286 0.127 0)
  414. (effects (font (size 1.27 1.27)) (justify left) hide)
  415. )
  416. (property "LCSC" "C84264" (at 0 0 0)
  417. (effects (font (size 1.27 1.27)) hide)
  418. )
  419. (property "ki_keywords" "C84264" (at 0 0 0)
  420. (effects (font (size 1.27 1.27)) hide)
  421. )
  422. (symbol "FC-D1608HGK-572C_0_1"
  423. (polyline
  424. (pts
  425. (xy -1.27 1.524)
  426. (xy -1.27 -1.524)
  427. )
  428. (stroke (width 0) (type default))
  429. (fill (type none))
  430. )
  431. (polyline
  432. (pts
  433. (xy -0.508 2.032)
  434. (xy -2.286 3.81)
  435. )
  436. (stroke (width 0) (type default))
  437. (fill (type none))
  438. )
  439. (polyline
  440. (pts
  441. (xy 0.508 3.048)
  442. (xy -1.27 4.826)
  443. )
  444. (stroke (width 0) (type default))
  445. (fill (type none))
  446. )
  447. (polyline
  448. (pts
  449. (xy -2.286 3.81)
  450. (xy -1.27 3.302)
  451. (xy -1.778 2.794)
  452. (xy -2.286 3.81)
  453. )
  454. (stroke (width 0) (type default))
  455. (fill (type background))
  456. )
  457. (polyline
  458. (pts
  459. (xy -1.27 4.826)
  460. (xy -0.254 4.318)
  461. (xy -0.762 3.81)
  462. (xy -1.27 4.826)
  463. )
  464. (stroke (width 0) (type default))
  465. (fill (type background))
  466. )
  467. (polyline
  468. (pts
  469. (xy 1.27 -1.524)
  470. (xy -1.27 0)
  471. (xy 1.27 1.524)
  472. (xy 1.27 -1.524)
  473. )
  474. (stroke (width 0) (type default))
  475. (fill (type background))
  476. )
  477. (pin input line (at -5.08 0 0) (length 3.81)
  478. (name "-" (effects (font (size 1 1))))
  479. (number "1" (effects (font (size 1 1))))
  480. )
  481. (pin input line (at 5.08 0 180) (length 3.81)
  482. (name "+" (effects (font (size 1 1))))
  483. (number "2" (effects (font (size 1 1))))
  484. )
  485. )
  486. )
  487. (symbol "jlc:TS-1092U-B3D2" (pin_names hide) (in_bom yes) (on_board yes)
  488. (property "Reference" "SW" (at 0 1.27 0)
  489. (effects (font (size 1.27 1.27)))
  490. )
  491. (property "Value" "TS-1092U-B3D2" (at 0 -2.54 0)
  492. (effects (font (size 1.27 1.27)))
  493. )
  494. (property "Footprint" "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (at 0 -10.16 0)
  495. (effects (font (size 1.27 1.27) italic) hide)
  496. )
  497. (property "Datasheet" "https://item.szlcsc.com/537807.html" (at -2.286 0.127 0)
  498. (effects (font (size 1.27 1.27)) (justify left) hide)
  499. )
  500. (property "LCSC" "C520861" (at 0 0 0)
  501. (effects (font (size 1.27 1.27)) hide)
  502. )
  503. (property "ki_keywords" "C520861" (at 0 0 0)
  504. (effects (font (size 1.27 1.27)) hide)
  505. )
  506. (symbol "TS-1092U-B3D2_0_1"
  507. (circle (center -2.032 0) (radius 0.508)
  508. (stroke (width 0) (type default))
  509. (fill (type background))
  510. )
  511. (polyline
  512. (pts
  513. (xy 2.032 1.524)
  514. (xy -2.032 0.508)
  515. )
  516. (stroke (width 0) (type default))
  517. (fill (type none))
  518. )
  519. (circle (center 2.032 0) (radius 0.508)
  520. (stroke (width 0) (type default))
  521. (fill (type background))
  522. )
  523. (pin unspecified line (at -5.08 0 0) (length 2.54)
  524. (name "1" (effects (font (size 1 1))))
  525. (number "1" (effects (font (size 1 1))))
  526. )
  527. (pin unspecified line (at 5.08 0 180) (length 2.54)
  528. (name "2" (effects (font (size 1 1))))
  529. (number "2" (effects (font (size 1 1))))
  530. )
  531. )
  532. )
  533. (symbol "jlc:U-USBAR04P-F000" (in_bom yes) (on_board yes)
  534. (property "Reference" "U" (at 0 1.27 0)
  535. (effects (font (size 1.27 1.27)))
  536. )
  537. (property "Value" "U-USBAR04P-F000" (at 0 -2.54 0)
  538. (effects (font (size 1.27 1.27)))
  539. )
  540. (property "Footprint" "jlc_footprints:USB-A-TH_USB-302-T" (at 0 -10.16 0)
  541. (effects (font (size 1.27 1.27) italic) hide)
  542. )
  543. (property "Datasheet" "https://item.szlcsc.com/113689.html" (at -2.286 0.127 0)
  544. (effects (font (size 1.27 1.27)) (justify left) hide)
  545. )
  546. (property "LCSC" "C386740" (at 0 0 0)
  547. (effects (font (size 1.27 1.27)) hide)
  548. )
  549. (property "ki_keywords" "C386740" (at 0 0 0)
  550. (effects (font (size 1.27 1.27)) hide)
  551. )
  552. (symbol "U-USBAR04P-F000_0_1"
  553. (rectangle (start -2.54 10.16) (end 7.62 -7.62)
  554. (stroke (width 0) (type default))
  555. (fill (type background))
  556. )
  557. (pin unspecified line (at -7.62 7.62 0) (length 5.08)
  558. (name "VCC" (effects (font (size 1 1))))
  559. (number "1" (effects (font (size 1 1))))
  560. )
  561. (pin unspecified line (at -7.62 5.08 0) (length 5.08)
  562. (name "D-" (effects (font (size 1 1))))
  563. (number "2" (effects (font (size 1 1))))
  564. )
  565. (pin unspecified line (at -7.62 2.54 0) (length 5.08)
  566. (name "D+" (effects (font (size 1 1))))
  567. (number "3" (effects (font (size 1 1))))
  568. )
  569. (pin unspecified line (at -7.62 0 0) (length 5.08)
  570. (name "GND" (effects (font (size 1 1))))
  571. (number "4" (effects (font (size 1 1))))
  572. )
  573. (pin unspecified line (at -7.62 -2.54 0) (length 5.08)
  574. (name "SH1" (effects (font (size 1 1))))
  575. (number "5" (effects (font (size 1 1))))
  576. )
  577. (pin unspecified line (at -7.62 -5.08 0) (length 5.08)
  578. (name "SH2" (effects (font (size 1 1))))
  579. (number "6" (effects (font (size 1 1))))
  580. )
  581. )
  582. )
  583. (symbol "jlc:XY300V-A-5_0-2P" (in_bom yes) (on_board yes)
  584. (property "Reference" "U" (at 0 1.27 0)
  585. (effects (font (size 1.27 1.27)))
  586. )
  587. (property "Value" "XY300V-A-5_0-2P" (at 0 -2.54 0)
  588. (effects (font (size 1.27 1.27)))
  589. )
  590. (property "Footprint" "jlc_footprints:CONN-TH_XY300V-A-5.0-2P" (at 0 -10.16 0)
  591. (effects (font (size 1.27 1.27) italic) hide)
  592. )
  593. (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200527/C557648_4A2FA4132AA24EE423B62B1474E9B5BB.pdf" (at -2.286 0.127 0)
  594. (effects (font (size 1.27 1.27)) (justify left) hide)
  595. )
  596. (property "LCSC" "C557648" (at 0 0 0)
  597. (effects (font (size 1.27 1.27)) hide)
  598. )
  599. (property "ki_keywords" "C557648" (at 0 0 0)
  600. (effects (font (size 1.27 1.27)) hide)
  601. )
  602. (symbol "XY300V-A-5_0-2P_0_1"
  603. (rectangle (start -2.54 3.81) (end 2.54 -3.81)
  604. (stroke (width 0) (type default))
  605. (fill (type background))
  606. )
  607. (circle (center -1.27 2.54) (radius 0.381)
  608. (stroke (width 0) (type default))
  609. (fill (type background))
  610. )
  611. (pin unspecified line (at -5.08 1.27 0) (length 2.54)
  612. (name "1" (effects (font (size 1 1))))
  613. (number "1" (effects (font (size 1 1))))
  614. )
  615. (pin unspecified line (at -5.08 -1.27 0) (length 2.54)
  616. (name "2" (effects (font (size 1 1))))
  617. (number "2" (effects (font (size 1 1))))
  618. )
  619. )
  620. )
  621. (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  622. (property "Reference" "#PWR" (at 0 -3.81 0)
  623. (effects (font (size 1.27 1.27)) hide)
  624. )
  625. (property "Value" "+3.3V" (at 0 3.556 0)
  626. (effects (font (size 1.27 1.27)))
  627. )
  628. (property "Footprint" "" (at 0 0 0)
  629. (effects (font (size 1.27 1.27)) hide)
  630. )
  631. (property "Datasheet" "" (at 0 0 0)
  632. (effects (font (size 1.27 1.27)) hide)
  633. )
  634. (property "ki_keywords" "global power" (at 0 0 0)
  635. (effects (font (size 1.27 1.27)) hide)
  636. )
  637. (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
  638. (effects (font (size 1.27 1.27)) hide)
  639. )
  640. (symbol "+3.3V_0_1"
  641. (polyline
  642. (pts
  643. (xy -0.762 1.27)
  644. (xy 0 2.54)
  645. )
  646. (stroke (width 0) (type default))
  647. (fill (type none))
  648. )
  649. (polyline
  650. (pts
  651. (xy 0 0)
  652. (xy 0 2.54)
  653. )
  654. (stroke (width 0) (type default))
  655. (fill (type none))
  656. )
  657. (polyline
  658. (pts
  659. (xy 0 2.54)
  660. (xy 0.762 1.27)
  661. )
  662. (stroke (width 0) (type default))
  663. (fill (type none))
  664. )
  665. )
  666. (symbol "+3.3V_1_1"
  667. (pin power_in line (at 0 0 90) (length 0) hide
  668. (name "+3.3V" (effects (font (size 1.27 1.27))))
  669. (number "1" (effects (font (size 1.27 1.27))))
  670. )
  671. )
  672. )
  673. (symbol "power:+VDC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  674. (property "Reference" "#PWR" (at 0 -2.54 0)
  675. (effects (font (size 1.27 1.27)) hide)
  676. )
  677. (property "Value" "+VDC" (at 0 6.35 0)
  678. (effects (font (size 1.27 1.27)))
  679. )
  680. (property "Footprint" "" (at 0 0 0)
  681. (effects (font (size 1.27 1.27)) hide)
  682. )
  683. (property "Datasheet" "" (at 0 0 0)
  684. (effects (font (size 1.27 1.27)) hide)
  685. )
  686. (property "ki_keywords" "global power" (at 0 0 0)
  687. (effects (font (size 1.27 1.27)) hide)
  688. )
  689. (property "ki_description" "Power symbol creates a global label with name \"+VDC\"" (at 0 0 0)
  690. (effects (font (size 1.27 1.27)) hide)
  691. )
  692. (symbol "+VDC_0_1"
  693. (polyline
  694. (pts
  695. (xy -1.143 3.175)
  696. (xy 1.143 3.175)
  697. )
  698. (stroke (width 0.508) (type default))
  699. (fill (type none))
  700. )
  701. (polyline
  702. (pts
  703. (xy 0 0)
  704. (xy 0 1.27)
  705. )
  706. (stroke (width 0) (type default))
  707. (fill (type none))
  708. )
  709. (polyline
  710. (pts
  711. (xy 0 2.032)
  712. (xy 0 4.318)
  713. )
  714. (stroke (width 0.508) (type default))
  715. (fill (type none))
  716. )
  717. (circle (center 0 3.175) (radius 1.905)
  718. (stroke (width 0.254) (type default))
  719. (fill (type none))
  720. )
  721. )
  722. (symbol "+VDC_1_1"
  723. (pin power_in line (at 0 0 90) (length 0) hide
  724. (name "+VDC" (effects (font (size 1.27 1.27))))
  725. (number "1" (effects (font (size 1.27 1.27))))
  726. )
  727. )
  728. )
  729. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  730. (property "Reference" "#PWR" (at 0 -6.35 0)
  731. (effects (font (size 1.27 1.27)) hide)
  732. )
  733. (property "Value" "GND" (at 0 -3.81 0)
  734. (effects (font (size 1.27 1.27)))
  735. )
  736. (property "Footprint" "" (at 0 0 0)
  737. (effects (font (size 1.27 1.27)) hide)
  738. )
  739. (property "Datasheet" "" (at 0 0 0)
  740. (effects (font (size 1.27 1.27)) hide)
  741. )
  742. (property "ki_keywords" "global power" (at 0 0 0)
  743. (effects (font (size 1.27 1.27)) hide)
  744. )
  745. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
  746. (effects (font (size 1.27 1.27)) hide)
  747. )
  748. (symbol "GND_0_1"
  749. (polyline
  750. (pts
  751. (xy 0 0)
  752. (xy 0 -1.27)
  753. (xy 1.27 -1.27)
  754. (xy 0 -2.54)
  755. (xy -1.27 -1.27)
  756. (xy 0 -1.27)
  757. )
  758. (stroke (width 0) (type default))
  759. (fill (type none))
  760. )
  761. )
  762. (symbol "GND_1_1"
  763. (pin power_in line (at 0 0 270) (length 0) hide
  764. (name "GND" (effects (font (size 1.27 1.27))))
  765. (number "1" (effects (font (size 1.27 1.27))))
  766. )
  767. )
  768. )
  769. )
  770. (junction (at 71.12 106.68) (diameter 0) (color 0 0 0 0)
  771. (uuid 30ee1ecc-cd27-4605-82ce-0595cefb9661)
  772. )
  773. (junction (at 82.55 167.64) (diameter 0) (color 0 0 0 0)
  774. (uuid 4d8ba4b0-ac76-430c-a40f-23aa8d7ad825)
  775. )
  776. (junction (at 95.25 102.87) (diameter 0) (color 0 0 0 0)
  777. (uuid 6530d47c-ab44-46a4-b945-902286143bef)
  778. )
  779. (junction (at 81.28 66.04) (diameter 0) (color 0 0 0 0)
  780. (uuid 9b4af328-43fe-47dd-88f4-a65f4bbb731f)
  781. )
  782. (junction (at 195.58 120.65) (diameter 0) (color 0 0 0 0)
  783. (uuid b7606c25-b49d-4e92-9cf3-174804a62ab5)
  784. )
  785. (junction (at 82.55 175.26) (diameter 0) (color 0 0 0 0)
  786. (uuid bbc9ecfe-c2db-4603-bb0f-3a77cb1bddf2)
  787. )
  788. (junction (at 220.98 125.73) (diameter 0) (color 0 0 0 0)
  789. (uuid c6c3f67c-0f17-4f98-8453-4aea06ad7113)
  790. )
  791. (junction (at 68.58 99.06) (diameter 0) (color 0 0 0 0)
  792. (uuid c7470263-11cd-4431-b05b-5562d9113d2b)
  793. )
  794. (junction (at 107.95 24.13) (diameter 0) (color 0 0 0 0)
  795. (uuid e2a95db3-eb6a-41fc-9b07-a7aabe3c4d81)
  796. )
  797. (junction (at 107.95 26.67) (diameter 0) (color 0 0 0 0)
  798. (uuid e3a1475a-5a96-4674-9c6b-a1b52d6e2386)
  799. )
  800. (junction (at 73.66 130.81) (diameter 0) (color 0 0 0 0)
  801. (uuid f16de227-377a-4e4f-8c40-3ed64e83b487)
  802. )
  803. (junction (at 83.82 130.81) (diameter 0) (color 0 0 0 0)
  804. (uuid f49916fe-eaa8-4442-af3c-aec96cdae0ae)
  805. )
  806. (junction (at 107.95 21.59) (diameter 0) (color 0 0 0 0)
  807. (uuid f9ccfe5c-056c-4847-a3a1-4580069df360)
  808. )
  809. (junction (at 220.98 113.03) (diameter 0) (color 0 0 0 0)
  810. (uuid fd381a87-36ac-401c-a0ba-481c9584cace)
  811. )
  812. (wire (pts (xy 181.61 124.46) (xy 189.23 124.46))
  813. (stroke (width 0) (type default))
  814. (uuid 00e6506f-17b8-4c24-961d-48a63484945f)
  815. )
  816. (wire (pts (xy 210.82 116.84) (xy 220.98 116.84))
  817. (stroke (width 0) (type default))
  818. (uuid 01e6ea71-25a1-4b0f-b6f8-a59931b2f381)
  819. )
  820. (wire (pts (xy 220.98 125.73) (xy 217.17 125.73))
  821. (stroke (width 0) (type default))
  822. (uuid 041f987d-cc46-4039-8428-0ed5f9e0cfca)
  823. )
  824. (wire (pts (xy 222.25 115.57) (xy 223.52 115.57))
  825. (stroke (width 0) (type default))
  826. (uuid 048e722e-fd14-4a01-b338-a3b87c9e3441)
  827. )
  828. (wire (pts (xy 106.68 21.59) (xy 107.95 21.59))
  829. (stroke (width 0) (type default))
  830. (uuid 04df78e2-bc0a-45dd-95f6-16578c866e5a)
  831. )
  832. (wire (pts (xy 81.28 64.77) (xy 81.28 66.04))
  833. (stroke (width 0) (type default))
  834. (uuid 04f8f19f-c82d-48cf-bd9b-cbf6fc382bb8)
  835. )
  836. (wire (pts (xy 129.54 54.61) (xy 168.91 54.61))
  837. (stroke (width 0) (type default))
  838. (uuid 058a9a4c-e0f3-42a0-b164-dfe0f6583820)
  839. )
  840. (wire (pts (xy 129.54 57.15) (xy 158.75 57.15))
  841. (stroke (width 0) (type default))
  842. (uuid 069ca55f-e9e6-410b-a4d7-e94416ca4800)
  843. )
  844. (wire (pts (xy 83.82 133.35) (xy 83.82 130.81))
  845. (stroke (width 0) (type default))
  846. (uuid 0be3ba36-3101-4452-b140-bee3e7cd6208)
  847. )
  848. (wire (pts (xy 76.2 134.62) (xy 76.2 133.35))
  849. (stroke (width 0) (type default))
  850. (uuid 0c7c8d94-24a4-42bc-bd40-6217c0cfea77)
  851. )
  852. (wire (pts (xy 73.66 130.81) (xy 73.66 134.62))
  853. (stroke (width 0) (type default))
  854. (uuid 0f701120-4db1-4e83-88b5-22a31f6bdacd)
  855. )
  856. (wire (pts (xy 82.55 172.72) (xy 82.55 175.26))
  857. (stroke (width 0) (type default))
  858. (uuid 0fd72819-551e-4929-92eb-549b84c53808)
  859. )
  860. (wire (pts (xy 85.09 172.72) (xy 82.55 172.72))
  861. (stroke (width 0) (type default))
  862. (uuid 1b5bfb5e-742c-4e7b-b7a6-cd2c77932f9b)
  863. )
  864. (wire (pts (xy 71.12 36.83) (xy 109.22 36.83))
  865. (stroke (width 0) (type default))
  866. (uuid 1d951967-582b-4159-a260-f58a39bd3a63)
  867. )
  868. (wire (pts (xy 93.98 106.68) (xy 95.25 106.68))
  869. (stroke (width 0) (type default))
  870. (uuid 2412cbbf-b2d4-490f-8efc-2fa4d69c05a8)
  871. )
  872. (wire (pts (xy 210.82 120.65) (xy 210.82 116.84))
  873. (stroke (width 0) (type default))
  874. (uuid 26240e01-c6d6-46b6-810f-49a44f79a7ff)
  875. )
  876. (wire (pts (xy 71.12 106.68) (xy 83.82 106.68))
  877. (stroke (width 0) (type default))
  878. (uuid 31f06fed-d9ca-47dc-a48e-36c0eab88d9c)
  879. )
  880. (wire (pts (xy 228.6 135.89) (xy 231.14 135.89))
  881. (stroke (width 0) (type default))
  882. (uuid 32165112-9167-4b8b-b702-34226f10d33f)
  883. )
  884. (wire (pts (xy 95.25 102.87) (xy 96.52 102.87))
  885. (stroke (width 0) (type default))
  886. (uuid 3910efcf-91a2-4b32-a517-bad244e3087c)
  887. )
  888. (wire (pts (xy 195.58 120.65) (xy 210.82 120.65))
  889. (stroke (width 0) (type default))
  890. (uuid 39552c20-bb8e-4835-b999-f3242ca1f161)
  891. )
  892. (wire (pts (xy 73.66 124.46) (xy 73.66 130.81))
  893. (stroke (width 0) (type default))
  894. (uuid 3c4bc65f-b535-4a06-810b-864db89b3c74)
  895. )
  896. (wire (pts (xy 222.25 120.65) (xy 223.52 120.65))
  897. (stroke (width 0) (type default))
  898. (uuid 3deb7791-4eba-4cb6-8995-d479c23efad2)
  899. )
  900. (wire (pts (xy 109.22 29.21) (xy 107.95 29.21))
  901. (stroke (width 0) (type default))
  902. (uuid 3e7ee793-8e19-4375-a1f6-9cd2921a2edf)
  903. )
  904. (wire (pts (xy 107.95 29.21) (xy 107.95 26.67))
  905. (stroke (width 0) (type default))
  906. (uuid 3f1444fd-d30b-4757-bc11-5f4a8ebec8f4)
  907. )
  908. (wire (pts (xy 82.55 170.18) (xy 82.55 167.64))
  909. (stroke (width 0) (type default))
  910. (uuid 4931ef4c-40e0-4756-aac9-9e7b172e498b)
  911. )
  912. (wire (pts (xy 158.75 72.39) (xy 158.75 73.66))
  913. (stroke (width 0) (type default))
  914. (uuid 4d969fdf-a342-4275-8a8f-1bd9721f6179)
  915. )
  916. (wire (pts (xy 195.58 135.89) (xy 195.58 120.65))
  917. (stroke (width 0) (type default))
  918. (uuid 4e6c77c6-6b78-4c34-85ae-910a1c240dcb)
  919. )
  920. (wire (pts (xy 189.23 120.65) (xy 195.58 120.65))
  921. (stroke (width 0) (type default))
  922. (uuid 533e6a99-02b7-4815-a0d6-de01990603df)
  923. )
  924. (wire (pts (xy 68.58 34.29) (xy 109.22 34.29))
  925. (stroke (width 0) (type default))
  926. (uuid 56b6ba50-c6cd-4b08-8ad6-38b89069035b)
  927. )
  928. (wire (pts (xy 78.74 175.26) (xy 82.55 175.26))
  929. (stroke (width 0) (type default))
  930. (uuid 582eaa00-be58-42e8-8ee0-e029a5ae5c12)
  931. )
  932. (wire (pts (xy 205.74 125.73) (xy 207.01 125.73))
  933. (stroke (width 0) (type default))
  934. (uuid 59dc8b76-fd12-4614-af08-2f3908ac53cb)
  935. )
  936. (wire (pts (xy 181.61 127) (xy 184.15 127))
  937. (stroke (width 0) (type default))
  938. (uuid 5b9dcbd7-201c-4336-9b00-a750c74f8760)
  939. )
  940. (wire (pts (xy 82.55 130.81) (xy 83.82 130.81))
  941. (stroke (width 0) (type default))
  942. (uuid 5bb89b07-73f8-42ae-8f92-b197a3a28aa6)
  943. )
  944. (wire (pts (xy 90.17 41.91) (xy 90.17 66.04))
  945. (stroke (width 0) (type default))
  946. (uuid 5d4d92e3-d681-4b21-83ab-62ba442cebd9)
  947. )
  948. (wire (pts (xy 82.55 167.64) (xy 85.09 167.64))
  949. (stroke (width 0) (type default))
  950. (uuid 5f1de49b-373a-43ab-a30e-0f6d7c967d92)
  951. )
  952. (wire (pts (xy 219.71 113.03) (xy 220.98 113.03))
  953. (stroke (width 0) (type default))
  954. (uuid 608a9c42-d76f-4cfa-9013-4efbf80cd2a6)
  955. )
  956. (wire (pts (xy 220.98 113.03) (xy 223.52 113.03))
  957. (stroke (width 0) (type default))
  958. (uuid 6f178d67-5ba1-4ec4-a369-3ceadc96b256)
  959. )
  960. (wire (pts (xy 68.58 134.62) (xy 68.58 99.06))
  961. (stroke (width 0) (type default))
  962. (uuid 6f90c58e-d88c-4efe-ad64-f1a1f73e01ff)
  963. )
  964. (wire (pts (xy 148.59 59.69) (xy 148.59 62.23))
  965. (stroke (width 0) (type default))
  966. (uuid 77dc2f81-7857-4138-a8e6-f9d83bb4b25f)
  967. )
  968. (wire (pts (xy 223.52 118.11) (xy 222.25 118.11))
  969. (stroke (width 0) (type default))
  970. (uuid 79f32846-be37-4f8c-bfb1-c23396c4b516)
  971. )
  972. (wire (pts (xy 95.25 106.68) (xy 95.25 102.87))
  973. (stroke (width 0) (type default))
  974. (uuid 7e06f7ea-bc4e-4767-b37d-6d5de44af013)
  975. )
  976. (wire (pts (xy 71.12 134.62) (xy 71.12 106.68))
  977. (stroke (width 0) (type default))
  978. (uuid 7e7de0b8-2dcc-4f84-97ee-e552f96144be)
  979. )
  980. (wire (pts (xy 81.28 53.34) (xy 81.28 54.61))
  981. (stroke (width 0) (type default))
  982. (uuid 8330573b-1789-4470-b02d-feee70af3094)
  983. )
  984. (wire (pts (xy 107.95 26.67) (xy 107.95 24.13))
  985. (stroke (width 0) (type default))
  986. (uuid 87d02a58-268d-4003-b808-a0ee13efb7d1)
  987. )
  988. (wire (pts (xy 168.91 54.61) (xy 168.91 62.23))
  989. (stroke (width 0) (type default))
  990. (uuid 87e1f5d8-cd41-49f9-97b3-6daa9293f429)
  991. )
  992. (wire (pts (xy 220.98 123.19) (xy 220.98 125.73))
  993. (stroke (width 0) (type default))
  994. (uuid 89cc8c6f-6eb2-4d8b-a9b3-c3dd69cac2ef)
  995. )
  996. (wire (pts (xy 177.8 113.03) (xy 180.34 113.03))
  997. (stroke (width 0) (type default))
  998. (uuid 8b3eb9be-cd34-465b-baf2-e3d29eaf4df4)
  999. )
  1000. (wire (pts (xy 90.17 66.04) (xy 81.28 66.04))
  1001. (stroke (width 0) (type default))
  1002. (uuid 8e77a1cd-9478-4a2c-aa5d-9625f2196769)
  1003. )
  1004. (wire (pts (xy 168.91 72.39) (xy 168.91 73.66))
  1005. (stroke (width 0) (type default))
  1006. (uuid 9dc4447e-cfbd-469f-a0c4-0dc00456b67c)
  1007. )
  1008. (wire (pts (xy 208.28 113.03) (xy 209.55 113.03))
  1009. (stroke (width 0) (type default))
  1010. (uuid a65b0584-a8da-4182-a510-617451968770)
  1011. )
  1012. (wire (pts (xy 73.66 130.81) (xy 74.93 130.81))
  1013. (stroke (width 0) (type default))
  1014. (uuid ab59feee-3d4f-4d41-a073-17de829409b6)
  1015. )
  1016. (wire (pts (xy 109.22 24.13) (xy 107.95 24.13))
  1017. (stroke (width 0) (type default))
  1018. (uuid afddf146-ec92-4e0a-9d3b-68ac40051350)
  1019. )
  1020. (wire (pts (xy 223.52 123.19) (xy 220.98 123.19))
  1021. (stroke (width 0) (type default))
  1022. (uuid affe7ced-7db1-45e1-8d9b-0aeef329a820)
  1023. )
  1024. (wire (pts (xy 148.59 72.39) (xy 148.59 73.66))
  1025. (stroke (width 0) (type default))
  1026. (uuid b3e91ba0-4a83-4846-a50c-7aafcda90fac)
  1027. )
  1028. (wire (pts (xy 78.74 167.64) (xy 82.55 167.64))
  1029. (stroke (width 0) (type default))
  1030. (uuid ba05472a-b5de-4394-8bbb-ca3e4d63ac76)
  1031. )
  1032. (wire (pts (xy 85.09 170.18) (xy 82.55 170.18))
  1033. (stroke (width 0) (type default))
  1034. (uuid bd7c0247-bcb6-4dd5-8c09-71e8057ee655)
  1035. )
  1036. (wire (pts (xy 158.75 57.15) (xy 158.75 62.23))
  1037. (stroke (width 0) (type default))
  1038. (uuid bdca73a0-6837-41cb-a189-18a988ea1371)
  1039. )
  1040. (wire (pts (xy 220.98 116.84) (xy 220.98 113.03))
  1041. (stroke (width 0) (type default))
  1042. (uuid be619e84-891a-4f18-bc3e-e1bf2bbc2eda)
  1043. )
  1044. (wire (pts (xy 95.25 99.06) (xy 95.25 102.87))
  1045. (stroke (width 0) (type default))
  1046. (uuid bf8c1662-1dda-41e0-9139-3c33963fa0c6)
  1047. )
  1048. (wire (pts (xy 107.95 24.13) (xy 107.95 21.59))
  1049. (stroke (width 0) (type default))
  1050. (uuid c1cc71ea-3cbe-4c5c-a822-9a6df78c0a68)
  1051. )
  1052. (wire (pts (xy 71.12 36.83) (xy 71.12 106.68))
  1053. (stroke (width 0) (type default))
  1054. (uuid c3344221-6f24-441c-b886-1c8e01755eee)
  1055. )
  1056. (wire (pts (xy 82.55 175.26) (xy 85.09 175.26))
  1057. (stroke (width 0) (type default))
  1058. (uuid c93d0cfc-5ffe-4220-ad87-15db2d53ac93)
  1059. )
  1060. (wire (pts (xy 68.58 99.06) (xy 83.82 99.06))
  1061. (stroke (width 0) (type default))
  1062. (uuid c9876900-89f1-41a6-970a-8ddb31d89de6)
  1063. )
  1064. (wire (pts (xy 129.54 59.69) (xy 148.59 59.69))
  1065. (stroke (width 0) (type default))
  1066. (uuid caa09903-9eb1-46f1-8840-4a1a651d05e7)
  1067. )
  1068. (wire (pts (xy 93.98 99.06) (xy 95.25 99.06))
  1069. (stroke (width 0) (type default))
  1070. (uuid d1a41c08-0f89-4459-b4f0-b65960429248)
  1071. )
  1072. (wire (pts (xy 83.82 130.81) (xy 85.09 130.81))
  1073. (stroke (width 0) (type default))
  1074. (uuid d3ecb738-a271-4bc0-8af4-dd186b6110f3)
  1075. )
  1076. (wire (pts (xy 107.95 21.59) (xy 109.22 21.59))
  1077. (stroke (width 0) (type default))
  1078. (uuid d3f5a9ab-6a59-4763-a3c1-b257c7da0e23)
  1079. )
  1080. (wire (pts (xy 81.28 66.04) (xy 81.28 67.31))
  1081. (stroke (width 0) (type default))
  1082. (uuid d42420fa-dad2-483a-9416-ff9537c61c5c)
  1083. )
  1084. (wire (pts (xy 215.9 135.89) (xy 218.44 135.89))
  1085. (stroke (width 0) (type default))
  1086. (uuid dae8994a-2967-4bb6-bd6d-aea661d297f0)
  1087. )
  1088. (wire (pts (xy 81.28 77.47) (xy 81.28 78.74))
  1089. (stroke (width 0) (type default))
  1090. (uuid e5f90796-5f24-4dfc-b5d1-3df36942bcbc)
  1091. )
  1092. (wire (pts (xy 107.95 26.67) (xy 109.22 26.67))
  1093. (stroke (width 0) (type default))
  1094. (uuid ea6426e0-b23f-410a-b0c0-41ba8c270431)
  1095. )
  1096. (wire (pts (xy 189.23 124.46) (xy 189.23 120.65))
  1097. (stroke (width 0) (type default))
  1098. (uuid efec10f3-2d2c-48d1-9d00-df3cb20aa201)
  1099. )
  1100. (wire (pts (xy 68.58 34.29) (xy 68.58 99.06))
  1101. (stroke (width 0) (type default))
  1102. (uuid f01f4285-6ff6-45cb-97c0-ae7fad0776e0)
  1103. )
  1104. (wire (pts (xy 220.98 125.73) (xy 223.52 125.73))
  1105. (stroke (width 0) (type default))
  1106. (uuid f23cd734-f245-4be6-80cf-35fcd379b40d)
  1107. )
  1108. (wire (pts (xy 90.17 41.91) (xy 109.22 41.91))
  1109. (stroke (width 0) (type default))
  1110. (uuid f4ee9f6e-9f31-4c89-b5ab-992336634daf)
  1111. )
  1112. (wire (pts (xy 205.74 135.89) (xy 195.58 135.89))
  1113. (stroke (width 0) (type default))
  1114. (uuid f807a349-a372-43f5-a694-d8f1e47060d4)
  1115. )
  1116. (wire (pts (xy 76.2 133.35) (xy 83.82 133.35))
  1117. (stroke (width 0) (type default))
  1118. (uuid fccecaea-f9b5-406e-8e88-5b1098b63c09)
  1119. )
  1120. (wire (pts (xy 222.25 118.11) (xy 222.25 115.57))
  1121. (stroke (width 0) (type default))
  1122. (uuid fd465c18-8a24-4ebc-8dad-128428b528e4)
  1123. )
  1124. (rectangle (start 166.37 102.87) (end 246.38 146.05)
  1125. (stroke (width 0) (type default))
  1126. (fill (type none))
  1127. (uuid ab8773b4-4476-4f3e-93ed-e3c212951b5b)
  1128. )
  1129. (text_box "Hardware ID:\n0000 = Mainboard"
  1130. (at 85.09 24.13 0) (size 20.32 5.08)
  1131. (stroke (width 0) (type default))
  1132. (fill (type none))
  1133. (effects (font (size 1.27 1.27)) (justify left top))
  1134. (uuid 283bb816-b914-46c8-9e92-8d16e6f63539)
  1135. )
  1136. (text_box "DC ADC\nMax. 50V"
  1137. (at 73.66 39.37 0) (size 21.59 45.72)
  1138. (stroke (width 0) (type default))
  1139. (fill (type none))
  1140. (effects (font (size 1.27 1.27)) (justify left top))
  1141. (uuid 2cf03278-a334-44dc-8c7d-a7a10a3619bc)
  1142. )
  1143. (text_box "DC Power Connector"
  1144. (at 63.5 160.02 0) (size 49.53 21.59)
  1145. (stroke (width 0) (type default))
  1146. (fill (type none))
  1147. (effects (font (size 1.27 1.27)) (justify left top))
  1148. (uuid 38bbb3e9-47a4-4488-8404-a19765dcb423)
  1149. )
  1150. (text_box "UI Buttons"
  1151. (at 142.24 50.8 0) (size 35.56 29.21)
  1152. (stroke (width 0) (type default))
  1153. (fill (type none))
  1154. (effects (font (size 1.27 1.27)) (justify left top))
  1155. (uuid 8fc4ad5e-33f4-446b-a09b-9c7557a69cf8)
  1156. )
  1157. (text_box "I2C Pull-Up Resistors"
  1158. (at 81.28 91.44 0) (size 25.4 17.78)
  1159. (stroke (width 0) (type default))
  1160. (fill (type none))
  1161. (effects (font (size 1.27 1.27)) (justify left top))
  1162. (uuid 956bfb89-59a2-413b-b5af-a383b5caded5)
  1163. )
  1164. (text_box "Display"
  1165. (at 58.42 118.11 0) (size 36.83 26.67)
  1166. (stroke (width 0) (type default))
  1167. (fill (type none))
  1168. (effects (font (size 1.27 1.27)) (justify left top))
  1169. (uuid d036e742-cd76-4c49-a34c-827de52262db)
  1170. )
  1171. (text_box "Mechanical"
  1172. (at 19.05 17.78 0) (size 20.32 24.13)
  1173. (stroke (width 0) (type default))
  1174. (fill (type none))
  1175. (effects (font (size 1.27 1.27)) (justify left top))
  1176. (uuid d894969c-1d2d-4584-b2c1-9197467360e1)
  1177. )
  1178. (text "Dedicated Charging Port (DCP)" (at 215.9 105.41 0)
  1179. (effects (font (size 1.27 1.27)) (justify left bottom) (href "https://electronics.stackexchange.com/a/200581"))
  1180. (uuid 265049e8-2545-49f9-9a36-dd3d784c41cc)
  1181. )
  1182. (text "External Raspberry Pi Power Supply" (at 167.64 105.41 0)
  1183. (effects (font (size 1.27 1.27)) (justify left bottom))
  1184. (uuid 8fa74168-1d20-4eee-9f9f-a9468c23b852)
  1185. )
  1186. (symbol (lib_id "Mechanical:MountingHole") (at 21.59 22.86 0) (unit 1)
  1187. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1188. (uuid 00bf0cda-b8c6-4bc8-971a-693844a1e1d3)
  1189. (property "Reference" "H11" (at 24.13 21.6479 0)
  1190. (effects (font (size 1.27 1.27)) (justify left))
  1191. )
  1192. (property "Value" "MountingHole" (at 24.13 24.0721 0)
  1193. (effects (font (size 1.27 1.27)) (justify left))
  1194. )
  1195. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (at 21.59 22.86 0)
  1196. (effects (font (size 1.27 1.27)) hide)
  1197. )
  1198. (property "Datasheet" "~" (at 21.59 22.86 0)
  1199. (effects (font (size 1.27 1.27)) hide)
  1200. )
  1201. (instances
  1202. (project "dispensy"
  1203. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1204. (reference "H11") (unit 1)
  1205. )
  1206. )
  1207. )
  1208. )
  1209. (symbol (lib_id "power:GND") (at 81.28 78.74 0) (mirror y) (unit 1)
  1210. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1211. (uuid 107f1c98-ced2-44fe-8d5e-2a45af532af5)
  1212. (property "Reference" "#PWR079" (at 81.28 85.09 0)
  1213. (effects (font (size 1.27 1.27)) hide)
  1214. )
  1215. (property "Value" "GND" (at 81.28 82.8731 0)
  1216. (effects (font (size 1.27 1.27)))
  1217. )
  1218. (property "Footprint" "" (at 81.28 78.74 0)
  1219. (effects (font (size 1.27 1.27)) hide)
  1220. )
  1221. (property "Datasheet" "" (at 81.28 78.74 0)
  1222. (effects (font (size 1.27 1.27)) hide)
  1223. )
  1224. (pin "1" (uuid c9da4bed-4f24-4bfb-99c4-6d6f703c23cf))
  1225. (instances
  1226. (project "dispensy"
  1227. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1228. (reference "#PWR079") (unit 1)
  1229. )
  1230. )
  1231. )
  1232. )
  1233. (symbol (lib_id "jlc:CR0402F147KQ10Z") (at 81.28 59.69 270) (unit 1)
  1234. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1235. (uuid 157b3fba-278d-424d-bf2e-c52a91f7837f)
  1236. (property "Reference" "R24" (at 83.82 58.42 90)
  1237. (effects (font (size 1.27 1.27)) (justify left))
  1238. )
  1239. (property "Value" "147K" (at 83.82 60.96 90)
  1240. (effects (font (size 1.27 1.27)) (justify left))
  1241. )
  1242. (property "Footprint" "jlc_footprints:R0402" (at 71.12 59.69 0)
  1243. (effects (font (size 1.27 1.27) italic) hide)
  1244. )
  1245. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 81.407 57.404 0)
  1246. (effects (font (size 1.27 1.27)) (justify left) hide)
  1247. )
  1248. (property "LCSC" "C881044" (at 81.28 59.69 0)
  1249. (effects (font (size 1.27 1.27)) hide)
  1250. )
  1251. (pin "1" (uuid c804ffc5-6cf3-494b-acae-d0d2729e0e70))
  1252. (pin "2" (uuid c414fc8a-3743-4f99-a300-de1453ae0f5b))
  1253. (instances
  1254. (project "dispensy"
  1255. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1256. (reference "R24") (unit 1)
  1257. )
  1258. )
  1259. )
  1260. )
  1261. (symbol (lib_id "jlc:CC0402KRX7R8BB104") (at 78.74 130.81 180) (unit 1)
  1262. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1263. (uuid 18c5a7a0-1e43-49d0-8208-bfef0e4fd32a)
  1264. (property "Reference" "C1" (at 78.74 124.7607 0)
  1265. (effects (font (size 1.27 1.27)))
  1266. )
  1267. (property "Value" "100nF" (at 78.74 127.1849 0)
  1268. (effects (font (size 1.27 1.27)))
  1269. )
  1270. (property "Footprint" "jlc_footprints:C0402" (at 78.74 120.65 0)
  1271. (effects (font (size 1.27 1.27) italic) hide)
  1272. )
  1273. (property "Datasheet" "https://item.szlcsc.com/15869.html" (at 81.026 130.937 0)
  1274. (effects (font (size 1.27 1.27)) (justify left) hide)
  1275. )
  1276. (property "LCSC" "C105883" (at 78.74 130.81 0)
  1277. (effects (font (size 1.27 1.27)) hide)
  1278. )
  1279. (property "Capacitance" "100nF" (at 78.74 130.81 0)
  1280. (effects (font (size 1.27 1.27)) hide)
  1281. )
  1282. (pin "1" (uuid 4519e6a6-6421-4733-9f19-a73eacdfcad1))
  1283. (pin "2" (uuid c329bfae-36e5-4a11-98ed-7fd60deee189))
  1284. (instances
  1285. (project "dispensy"
  1286. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1287. (reference "C1") (unit 1)
  1288. )
  1289. )
  1290. )
  1291. )
  1292. (symbol (lib_id "jlc:CR-02FL6----1K") (at 210.82 135.89 0) (unit 1)
  1293. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1294. (uuid 2125afab-f43b-48e4-97d7-9740dc2764b6)
  1295. (property "Reference" "R23" (at 210.82 129.54 0)
  1296. (effects (font (size 1.27 1.27)))
  1297. )
  1298. (property "Value" "1K" (at 210.82 132.08 0)
  1299. (effects (font (size 1.27 1.27)))
  1300. )
  1301. (property "Footprint" "jlc_footprints:R0402" (at 210.82 146.05 0)
  1302. (effects (font (size 1.27 1.27) italic) hide)
  1303. )
  1304. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 208.534 135.763 0)
  1305. (effects (font (size 1.27 1.27)) (justify left) hide)
  1306. )
  1307. (property "LCSC" "C279981" (at 210.82 135.89 0)
  1308. (effects (font (size 1.27 1.27)) hide)
  1309. )
  1310. (property "Resistance" "1kΩ" (at 210.82 135.89 0)
  1311. (effects (font (size 1.27 1.27)) hide)
  1312. )
  1313. (pin "1" (uuid 509e6b4a-5247-4530-abd9-9fbbc6f49eb4))
  1314. (pin "2" (uuid 0392e2d0-dfae-4268-abf9-f00c5f7b90d1))
  1315. (instances
  1316. (project "dispensy"
  1317. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1318. (reference "R23") (unit 1)
  1319. )
  1320. )
  1321. )
  1322. )
  1323. (symbol (lib_id "SSD1306:SSD1306") (at 73.66 139.7 270) (unit 1)
  1324. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1325. (uuid 2ae5702b-de7e-4727-aba1-09aa8e03487a)
  1326. (property "Reference" "OLED1" (at 78.232 139.7579 90)
  1327. (effects (font (size 1.27 1.27)) (justify left))
  1328. )
  1329. (property "Value" "SSD1306" (at 78.232 142.1821 90)
  1330. (effects (font (size 1.27 1.27)) (justify left))
  1331. )
  1332. (property "Footprint" "extern:SSD1306_0.96_Oled" (at 81.28 139.7 0)
  1333. (effects (font (size 1.27 1.27)) hide)
  1334. )
  1335. (property "Datasheet" "~" (at 73.66 139.7 0)
  1336. (effects (font (size 1.27 1.27)) hide)
  1337. )
  1338. (pin "3" (uuid 390aa87c-25cc-40b7-88c3-0b502d49c8c0))
  1339. (pin "4" (uuid 30d14770-3bec-4ea0-aeec-bad029a6b42e))
  1340. (pin "1" (uuid 772b7a6b-d149-462a-b38f-df0fb2029376))
  1341. (pin "2" (uuid c70010f8-4bf7-4789-8b7d-64079364d813))
  1342. (instances
  1343. (project "dispensy"
  1344. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1345. (reference "OLED1") (unit 1)
  1346. )
  1347. )
  1348. )
  1349. )
  1350. (symbol (lib_id "power:GND") (at 73.66 124.46 180) (unit 1)
  1351. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1352. (uuid 2dfb0e28-5fa1-410a-bbdc-6f2a596f23af)
  1353. (property "Reference" "#PWR03" (at 73.66 118.11 0)
  1354. (effects (font (size 1.27 1.27)) hide)
  1355. )
  1356. (property "Value" "GND" (at 73.66 120.3269 0)
  1357. (effects (font (size 1.27 1.27)))
  1358. )
  1359. (property "Footprint" "" (at 73.66 124.46 0)
  1360. (effects (font (size 1.27 1.27)) hide)
  1361. )
  1362. (property "Datasheet" "" (at 73.66 124.46 0)
  1363. (effects (font (size 1.27 1.27)) hide)
  1364. )
  1365. (pin "1" (uuid f36aec8f-0f63-4a7d-b3ed-2dec5ffd5d94))
  1366. (instances
  1367. (project "dispensy"
  1368. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1369. (reference "#PWR03") (unit 1)
  1370. )
  1371. )
  1372. )
  1373. )
  1374. (symbol (lib_id "power:GND") (at 222.25 120.65 270) (unit 1)
  1375. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1376. (uuid 3913378d-f654-4db0-99cc-e1f4f508c072)
  1377. (property "Reference" "#PWR011" (at 215.9 120.65 0)
  1378. (effects (font (size 1.27 1.27)) hide)
  1379. )
  1380. (property "Value" "GND" (at 219.0751 120.9668 90)
  1381. (effects (font (size 1.27 1.27)) (justify right))
  1382. )
  1383. (property "Footprint" "" (at 222.25 120.65 0)
  1384. (effects (font (size 1.27 1.27)) hide)
  1385. )
  1386. (property "Datasheet" "" (at 222.25 120.65 0)
  1387. (effects (font (size 1.27 1.27)) hide)
  1388. )
  1389. (pin "1" (uuid 609116c2-8c75-48d1-83fb-3995382ef914))
  1390. (instances
  1391. (project "dispensy"
  1392. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1393. (reference "#PWR011") (unit 1)
  1394. )
  1395. )
  1396. )
  1397. )
  1398. (symbol (lib_id "Mechanical:MountingHole") (at 21.59 33.02 0) (unit 1)
  1399. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1400. (uuid 482ef8f8-535d-4e59-9160-1934137298b2)
  1401. (property "Reference" "H13" (at 24.13 31.8079 0)
  1402. (effects (font (size 1.27 1.27)) (justify left))
  1403. )
  1404. (property "Value" "MountingHole" (at 24.13 34.2321 0)
  1405. (effects (font (size 1.27 1.27)) (justify left))
  1406. )
  1407. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (at 21.59 33.02 0)
  1408. (effects (font (size 1.27 1.27)) hide)
  1409. )
  1410. (property "Datasheet" "~" (at 21.59 33.02 0)
  1411. (effects (font (size 1.27 1.27)) hide)
  1412. )
  1413. (instances
  1414. (project "dispensy"
  1415. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1416. (reference "H13") (unit 1)
  1417. )
  1418. )
  1419. )
  1420. )
  1421. (symbol (lib_id "jlc:U-USBAR04P-F000") (at 231.14 120.65 0) (unit 1)
  1422. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1423. (uuid 52a21062-c4e0-4e3b-95dd-576fd2e0785a)
  1424. (property "Reference" "U2" (at 239.395 118.7363 0)
  1425. (effects (font (size 1.27 1.27)) (justify left))
  1426. )
  1427. (property "Value" "USB-A" (at 239.395 120.6573 0)
  1428. (effects (font (size 1.27 1.27)) (justify left))
  1429. )
  1430. (property "Footprint" "jlc_footprints:USB-A-TH_USB-302-T" (at 231.14 130.81 0)
  1431. (effects (font (size 1.27 1.27) italic) hide)
  1432. )
  1433. (property "Datasheet" "https://item.szlcsc.com/113689.html" (at 228.854 120.523 0)
  1434. (effects (font (size 1.27 1.27)) (justify left) hide)
  1435. )
  1436. (property "LCSC" "C386740" (at 231.14 120.65 0)
  1437. (effects (font (size 1.27 1.27)) hide)
  1438. )
  1439. (pin "1" (uuid 28b5af7a-04a1-466f-ae71-5834ce8ddd55))
  1440. (pin "2" (uuid 9b04a85c-5e70-433b-94b2-3ff630318ac2))
  1441. (pin "3" (uuid 3889f638-2dd6-4f23-9c26-9de476aa47ab))
  1442. (pin "4" (uuid 0f1126f2-c6cb-4568-86d6-6f9054a1460d))
  1443. (pin "5" (uuid 310d49d2-b019-4972-81cf-6b321e3faf28))
  1444. (pin "6" (uuid 787b7d61-3353-49f7-82ad-6c727ed6424e))
  1445. (instances
  1446. (project "dispensy"
  1447. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1448. (reference "U2") (unit 1)
  1449. )
  1450. )
  1451. )
  1452. )
  1453. (symbol (lib_id "jlc:XY300V-A-5_0-2P") (at 176.53 125.73 180) (unit 1)
  1454. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1455. (uuid 5d77193b-eb49-4e71-a8a5-7fe6d08c238e)
  1456. (property "Reference" "U18" (at 176.53 117.9027 0)
  1457. (effects (font (size 1.27 1.27)))
  1458. )
  1459. (property "Value" "XY300V-A-5_0-2P" (at 176.53 120.3269 0)
  1460. (effects (font (size 1.27 1.27)))
  1461. )
  1462. (property "Footprint" "jlc_footprints:CONN-TH_XY300V-A-5.0-2P" (at 176.53 115.57 0)
  1463. (effects (font (size 1.27 1.27) italic) hide)
  1464. )
  1465. (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200527/C557648_4A2FA4132AA24EE423B62B1474E9B5BB.pdf" (at 178.816 125.857 0)
  1466. (effects (font (size 1.27 1.27)) (justify left) hide)
  1467. )
  1468. (property "LCSC" "C557648" (at 176.53 125.73 0)
  1469. (effects (font (size 1.27 1.27)) hide)
  1470. )
  1471. (pin "2" (uuid c5422714-d619-41ca-9145-82b6b4d46931))
  1472. (pin "1" (uuid 39682e73-6b61-4916-8a3c-95ed7b288ca7))
  1473. (instances
  1474. (project "dispensy"
  1475. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1476. (reference "U18") (unit 1)
  1477. )
  1478. )
  1479. )
  1480. )
  1481. (symbol (lib_id "jlc:CR-02FL6---10K") (at 88.9 106.68 0) (unit 1)
  1482. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1483. (uuid 62175efd-56d0-4f3f-bf21-32d55d3238a3)
  1484. (property "Reference" "R2" (at 88.9 102.5271 0)
  1485. (effects (font (size 1.27 1.27)))
  1486. )
  1487. (property "Value" "10K" (at 88.9 104.4481 0)
  1488. (effects (font (size 1.27 1.27)))
  1489. )
  1490. (property "Footprint" "jlc_footprints:R0402" (at 88.9 116.84 0)
  1491. (effects (font (size 1.27 1.27) italic) hide)
  1492. )
  1493. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 86.614 106.553 0)
  1494. (effects (font (size 1.27 1.27)) (justify left) hide)
  1495. )
  1496. (property "LCSC" "C406733" (at 88.9 106.68 0)
  1497. (effects (font (size 1.27 1.27)) hide)
  1498. )
  1499. (property "Resistance" "10kΩ" (at 88.9 106.68 0)
  1500. (effects (font (size 1.27 1.27)) hide)
  1501. )
  1502. (pin "1" (uuid 459b472f-a33c-4a76-96ec-37bb09bee2e4))
  1503. (pin "2" (uuid d3b7bba7-4aae-4596-a8ef-3fac9de8b21b))
  1504. (instances
  1505. (project "dispensy"
  1506. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1507. (reference "R2") (unit 1)
  1508. )
  1509. )
  1510. )
  1511. )
  1512. (symbol (lib_id "power:+3.3V") (at 96.52 102.87 270) (unit 1)
  1513. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1514. (uuid 753e1b9b-9ea2-474d-9422-64515bdb8006)
  1515. (property "Reference" "#PWR08" (at 92.71 102.87 0)
  1516. (effects (font (size 1.27 1.27)) hide)
  1517. )
  1518. (property "Value" "+3.3V" (at 99.695 102.87 90)
  1519. (effects (font (size 1.27 1.27)) (justify left))
  1520. )
  1521. (property "Footprint" "" (at 96.52 102.87 0)
  1522. (effects (font (size 1.27 1.27)) hide)
  1523. )
  1524. (property "Datasheet" "" (at 96.52 102.87 0)
  1525. (effects (font (size 1.27 1.27)) hide)
  1526. )
  1527. (pin "1" (uuid b4dcd44a-b352-484e-8591-78670d0a079a))
  1528. (instances
  1529. (project "dispensy"
  1530. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1531. (reference "#PWR08") (unit 1)
  1532. )
  1533. )
  1534. )
  1535. )
  1536. (symbol (lib_id "jlc:ASMD1812-350-16V") (at 214.63 113.03 0) (unit 1)
  1537. (in_bom yes) (on_board yes) (dnp no)
  1538. (uuid 75c590aa-dd6e-4017-ad6b-301f87d648a8)
  1539. (property "Reference" "F1" (at 214.63 115.57 0)
  1540. (effects (font (size 1.27 1.27)))
  1541. )
  1542. (property "Value" "ASMD1812-350-16V" (at 214.63 110.49 0)
  1543. (effects (font (size 1.27 1.27)))
  1544. )
  1545. (property "Footprint" "jlc_footprints:F1812" (at 214.63 123.19 0)
  1546. (effects (font (size 1.27 1.27) italic) hide)
  1547. )
  1548. (property "Datasheet" "https://item.szlcsc.com/343302.html" (at 212.344 112.903 0)
  1549. (effects (font (size 1.27 1.27)) (justify left) hide)
  1550. )
  1551. (property "LCSC" "C2982285" (at 214.63 113.03 0)
  1552. (effects (font (size 1.27 1.27)) hide)
  1553. )
  1554. (pin "1" (uuid 13735ee4-6626-4812-9227-7be5a22d6d77))
  1555. (pin "2" (uuid 0ac833a9-6cd5-40d7-b3f3-5a00700dd68e))
  1556. (instances
  1557. (project "dispensy"
  1558. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1559. (reference "F1") (unit 1)
  1560. )
  1561. )
  1562. )
  1563. )
  1564. (symbol (lib_id "power:GND") (at 205.74 125.73 270) (unit 1)
  1565. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1566. (uuid 77a230ca-7c55-4a43-9794-11fb3ed8c805)
  1567. (property "Reference" "#PWR010" (at 199.39 125.73 0)
  1568. (effects (font (size 1.27 1.27)) hide)
  1569. )
  1570. (property "Value" "GND" (at 202.5651 126.0468 90)
  1571. (effects (font (size 1.27 1.27)) (justify right))
  1572. )
  1573. (property "Footprint" "" (at 205.74 125.73 0)
  1574. (effects (font (size 1.27 1.27)) hide)
  1575. )
  1576. (property "Datasheet" "" (at 205.74 125.73 0)
  1577. (effects (font (size 1.27 1.27)) hide)
  1578. )
  1579. (pin "1" (uuid fd24f219-fe9a-492f-9bb1-bed339160cb5))
  1580. (instances
  1581. (project "dispensy"
  1582. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1583. (reference "#PWR010") (unit 1)
  1584. )
  1585. )
  1586. )
  1587. )
  1588. (symbol (lib_id "power:+VDC") (at 78.74 167.64 90) (unit 1)
  1589. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1590. (uuid 7c0ad552-339d-4bc0-933b-701025fd4c2b)
  1591. (property "Reference" "#PWR01" (at 81.28 167.64 0)
  1592. (effects (font (size 1.27 1.27)) hide)
  1593. )
  1594. (property "Value" "+VDC" (at 72.898 167.64 90)
  1595. (effects (font (size 1.27 1.27)) (justify left))
  1596. )
  1597. (property "Footprint" "" (at 78.74 167.64 0)
  1598. (effects (font (size 1.27 1.27)) hide)
  1599. )
  1600. (property "Datasheet" "" (at 78.74 167.64 0)
  1601. (effects (font (size 1.27 1.27)) hide)
  1602. )
  1603. (pin "1" (uuid fc070359-f01d-40c1-a201-6f81e64e2dca))
  1604. (instances
  1605. (project "dispensy"
  1606. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1607. (reference "#PWR01") (unit 1)
  1608. )
  1609. )
  1610. )
  1611. )
  1612. (symbol (lib_id "power:GND") (at 184.15 127 90) (unit 1)
  1613. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1614. (uuid 7d40ef7f-4046-478a-8202-835e982a50d1)
  1615. (property "Reference" "#PWR073" (at 190.5 127 0)
  1616. (effects (font (size 1.27 1.27)) hide)
  1617. )
  1618. (property "Value" "GND" (at 187.325 127 90)
  1619. (effects (font (size 1.27 1.27)) (justify right))
  1620. )
  1621. (property "Footprint" "" (at 184.15 127 0)
  1622. (effects (font (size 1.27 1.27)) hide)
  1623. )
  1624. (property "Datasheet" "" (at 184.15 127 0)
  1625. (effects (font (size 1.27 1.27)) hide)
  1626. )
  1627. (pin "1" (uuid 6a73e148-839b-4b7f-a556-5ccab0d327f6))
  1628. (instances
  1629. (project "dispensy"
  1630. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1631. (reference "#PWR073") (unit 1)
  1632. )
  1633. )
  1634. )
  1635. )
  1636. (symbol (lib_id "Mechanical:MountingHole") (at 21.59 27.94 0) (unit 1)
  1637. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1638. (uuid 8245835b-6904-4b68-a5aa-8efe32ec8b78)
  1639. (property "Reference" "H12" (at 24.13 26.7279 0)
  1640. (effects (font (size 1.27 1.27)) (justify left))
  1641. )
  1642. (property "Value" "MountingHole" (at 24.13 29.1521 0)
  1643. (effects (font (size 1.27 1.27)) (justify left))
  1644. )
  1645. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (at 21.59 27.94 0)
  1646. (effects (font (size 1.27 1.27)) hide)
  1647. )
  1648. (property "Datasheet" "~" (at 21.59 27.94 0)
  1649. (effects (font (size 1.27 1.27)) hide)
  1650. )
  1651. (instances
  1652. (project "dispensy"
  1653. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1654. (reference "H12") (unit 1)
  1655. )
  1656. )
  1657. )
  1658. )
  1659. (symbol (lib_id "jlc:FC-D1608HGK-572C") (at 223.52 135.89 180) (unit 1)
  1660. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1661. (uuid 836d4190-18b0-44cf-ba93-d64b9192ea73)
  1662. (property "Reference" "LED3" (at 224.028 129.54 0)
  1663. (effects (font (size 1.27 1.27)))
  1664. )
  1665. (property "Value" "FC-D1608HGK-572C" (at 224.028 132.08 0)
  1666. (effects (font (size 1.27 1.27)))
  1667. )
  1668. (property "Footprint" "jlc_footprints:LED0603-RD" (at 223.52 125.73 0)
  1669. (effects (font (size 1.27 1.27) italic) hide)
  1670. )
  1671. (property "Datasheet" "https://item.szlcsc.com/347874.html" (at 225.806 136.017 0)
  1672. (effects (font (size 1.27 1.27)) (justify left) hide)
  1673. )
  1674. (property "LCSC" "C84264" (at 223.52 135.89 0)
  1675. (effects (font (size 1.27 1.27)) hide)
  1676. )
  1677. (pin "1" (uuid 09682898-801d-4e31-998c-0775538d5790))
  1678. (pin "2" (uuid c5177f63-d369-4b82-814c-bd916a2cfdb1))
  1679. (instances
  1680. (project "dispensy"
  1681. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1682. (reference "LED3") (unit 1)
  1683. )
  1684. )
  1685. )
  1686. )
  1687. (symbol (lib_id "power:GND") (at 168.91 73.66 0) (mirror y) (unit 1)
  1688. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1689. (uuid 84fb55ee-25fc-4448-a279-029835f46ea0)
  1690. (property "Reference" "#PWR012" (at 168.91 80.01 0)
  1691. (effects (font (size 1.27 1.27)) hide)
  1692. )
  1693. (property "Value" "GND" (at 168.91 77.7931 0)
  1694. (effects (font (size 1.27 1.27)))
  1695. )
  1696. (property "Footprint" "" (at 168.91 73.66 0)
  1697. (effects (font (size 1.27 1.27)) hide)
  1698. )
  1699. (property "Datasheet" "" (at 168.91 73.66 0)
  1700. (effects (font (size 1.27 1.27)) hide)
  1701. )
  1702. (pin "1" (uuid 12d8c673-0783-4c3b-8b4b-b2a980bee1c9))
  1703. (instances
  1704. (project "dispensy"
  1705. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1706. (reference "#PWR012") (unit 1)
  1707. )
  1708. )
  1709. )
  1710. )
  1711. (symbol (lib_id "jlc:DBT50G-7_62-4P") (at 90.17 171.45 0) (unit 1)
  1712. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1713. (uuid 880f7d7b-3223-4c1a-81a0-36f9513bf6e4)
  1714. (property "Reference" "U1" (at 93.345 170.2379 0)
  1715. (effects (font (size 1.27 1.27)) (justify left))
  1716. )
  1717. (property "Value" "DBT50G-7_62-4P" (at 93.345 172.6621 0)
  1718. (effects (font (size 1.27 1.27)) (justify left))
  1719. )
  1720. (property "Footprint" "jlc_footprints:CONN-TH_4P-P7.62_L15.2-W31.7-EX4.2" (at 90.17 181.61 0)
  1721. (effects (font (size 1.27 1.27) italic) hide)
  1722. )
  1723. (property "Datasheet" "https://item.szlcsc.com/512151.html?ref=editor&logined=true" (at 87.884 171.323 0)
  1724. (effects (font (size 1.27 1.27)) (justify left) hide)
  1725. )
  1726. (property "LCSC" "C496132" (at 90.17 171.45 0)
  1727. (effects (font (size 1.27 1.27)) hide)
  1728. )
  1729. (pin "4" (uuid 19a29d22-4843-4c26-b213-280fb7e172d2))
  1730. (pin "3" (uuid 5629ed67-f702-4567-a2a6-a9179053adb6))
  1731. (pin "1" (uuid ac4f7972-f789-4615-9833-bab764a3f68d))
  1732. (pin "2" (uuid 3b8e5ce3-f516-4905-a39b-84bd1b9aa27d))
  1733. (instances
  1734. (project "dispensy"
  1735. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1736. (reference "U1") (unit 1)
  1737. )
  1738. )
  1739. )
  1740. )
  1741. (symbol (lib_id "power:GND") (at 231.14 135.89 90) (unit 1)
  1742. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1743. (uuid 88b02c20-bd92-4721-b1fe-bbfc7fd3eb09)
  1744. (property "Reference" "#PWR078" (at 237.49 135.89 0)
  1745. (effects (font (size 1.27 1.27)) hide)
  1746. )
  1747. (property "Value" "GND" (at 234.95 135.89 90)
  1748. (effects (font (size 1.27 1.27)) (justify right))
  1749. )
  1750. (property "Footprint" "" (at 231.14 135.89 0)
  1751. (effects (font (size 1.27 1.27)) hide)
  1752. )
  1753. (property "Datasheet" "" (at 231.14 135.89 0)
  1754. (effects (font (size 1.27 1.27)) hide)
  1755. )
  1756. (pin "1" (uuid a844a8d0-234d-4814-a56c-078320a171b7))
  1757. (instances
  1758. (project "dispensy"
  1759. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1760. (reference "#PWR078") (unit 1)
  1761. )
  1762. )
  1763. )
  1764. )
  1765. (symbol (lib_id "jlc:AC0402FR-071ML") (at 212.09 125.73 0) (unit 1)
  1766. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1767. (uuid 8d059a53-268e-4310-b02c-e3cea10095ff)
  1768. (property "Reference" "R3" (at 212.09 121.8311 0)
  1769. (effects (font (size 1.27 1.27)))
  1770. )
  1771. (property "Value" "1M" (at 212.09 123.7521 0)
  1772. (effects (font (size 1.27 1.27)))
  1773. )
  1774. (property "Footprint" "jlc_footprints:R0402" (at 212.09 135.89 0)
  1775. (effects (font (size 1.27 1.27) italic) hide)
  1776. )
  1777. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 209.804 125.603 0)
  1778. (effects (font (size 1.27 1.27)) (justify left) hide)
  1779. )
  1780. (property "LCSC" "C144787" (at 212.09 125.73 0)
  1781. (effects (font (size 1.27 1.27)) hide)
  1782. )
  1783. (property "Resistance" "1MΩ" (at 212.09 125.73 0)
  1784. (effects (font (size 1.27 1.27)) hide)
  1785. )
  1786. (pin "1" (uuid d18295a8-41fd-4c5e-ac8f-dbbb230847b9))
  1787. (pin "2" (uuid 9630c0dd-bd18-4281-bc9b-9038f39cdad3))
  1788. (instances
  1789. (project "dispensy"
  1790. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1791. (reference "R3") (unit 1)
  1792. )
  1793. )
  1794. )
  1795. )
  1796. (symbol (lib_id "power:GND") (at 106.68 21.59 270) (unit 1)
  1797. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1798. (uuid 8f1379fc-ca1f-4712-afab-92fbeb3f4306)
  1799. (property "Reference" "#PWR09" (at 100.33 21.59 0)
  1800. (effects (font (size 1.27 1.27)) hide)
  1801. )
  1802. (property "Value" "GND" (at 103.5051 21.9068 90)
  1803. (effects (font (size 1.27 1.27)) (justify right))
  1804. )
  1805. (property "Footprint" "" (at 106.68 21.59 0)
  1806. (effects (font (size 1.27 1.27)) hide)
  1807. )
  1808. (property "Datasheet" "" (at 106.68 21.59 0)
  1809. (effects (font (size 1.27 1.27)) hide)
  1810. )
  1811. (pin "1" (uuid 28967d3e-5e67-4364-9b47-b14cd439121f))
  1812. (instances
  1813. (project "dispensy"
  1814. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1815. (reference "#PWR09") (unit 1)
  1816. )
  1817. )
  1818. )
  1819. )
  1820. (symbol (lib_id "power:+VDC") (at 177.8 113.03 90) (unit 1)
  1821. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1822. (uuid 98599bfe-3469-4819-a370-e23c95cb33cc)
  1823. (property "Reference" "#PWR07" (at 180.34 113.03 0)
  1824. (effects (font (size 1.27 1.27)) hide)
  1825. )
  1826. (property "Value" "+VDC" (at 171.958 113.3468 90)
  1827. (effects (font (size 1.27 1.27)) (justify left))
  1828. )
  1829. (property "Footprint" "" (at 177.8 113.03 0)
  1830. (effects (font (size 1.27 1.27)) hide)
  1831. )
  1832. (property "Datasheet" "" (at 177.8 113.03 0)
  1833. (effects (font (size 1.27 1.27)) hide)
  1834. )
  1835. (pin "1" (uuid 1716baff-d4e7-49a3-8d58-2164eba45025))
  1836. (instances
  1837. (project "dispensy"
  1838. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1839. (reference "#PWR07") (unit 1)
  1840. )
  1841. )
  1842. )
  1843. )
  1844. (symbol (lib_id "power:GND") (at 158.75 73.66 0) (mirror y) (unit 1)
  1845. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1846. (uuid 9e29583a-dca5-44a8-81fa-3d046bb8cfb4)
  1847. (property "Reference" "#PWR05" (at 158.75 80.01 0)
  1848. (effects (font (size 1.27 1.27)) hide)
  1849. )
  1850. (property "Value" "GND" (at 158.75 77.7931 0)
  1851. (effects (font (size 1.27 1.27)))
  1852. )
  1853. (property "Footprint" "" (at 158.75 73.66 0)
  1854. (effects (font (size 1.27 1.27)) hide)
  1855. )
  1856. (property "Datasheet" "" (at 158.75 73.66 0)
  1857. (effects (font (size 1.27 1.27)) hide)
  1858. )
  1859. (pin "1" (uuid fe940557-f885-4e54-8204-97f89cf67291))
  1860. (instances
  1861. (project "dispensy"
  1862. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1863. (reference "#PWR05") (unit 1)
  1864. )
  1865. )
  1866. )
  1867. )
  1868. (symbol (lib_id "power:GND") (at 78.74 175.26 270) (unit 1)
  1869. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1870. (uuid c9ca4f29-b9c5-47c9-95e5-b96c1034994b)
  1871. (property "Reference" "#PWR02" (at 72.39 175.26 0)
  1872. (effects (font (size 1.27 1.27)) hide)
  1873. )
  1874. (property "Value" "GND" (at 75.5651 175.26 90)
  1875. (effects (font (size 1.27 1.27)) (justify right))
  1876. )
  1877. (property "Footprint" "" (at 78.74 175.26 0)
  1878. (effects (font (size 1.27 1.27)) hide)
  1879. )
  1880. (property "Datasheet" "" (at 78.74 175.26 0)
  1881. (effects (font (size 1.27 1.27)) hide)
  1882. )
  1883. (pin "1" (uuid 1d53759f-5d1f-4005-b2d7-7e731c7712ab))
  1884. (instances
  1885. (project "dispensy"
  1886. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1887. (reference "#PWR02") (unit 1)
  1888. )
  1889. )
  1890. )
  1891. )
  1892. (symbol (lib_id "jlc:CR-02FL6---10K") (at 81.28 72.39 270) (unit 1)
  1893. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1894. (uuid cb95cb63-388e-4891-966b-4853519c292a)
  1895. (property "Reference" "R25" (at 83.82 71.12 90)
  1896. (effects (font (size 1.27 1.27)) (justify left))
  1897. )
  1898. (property "Value" "10K" (at 83.82 73.66 90)
  1899. (effects (font (size 1.27 1.27)) (justify left))
  1900. )
  1901. (property "Footprint" "jlc_footprints:R0402" (at 71.12 72.39 0)
  1902. (effects (font (size 1.27 1.27) italic) hide)
  1903. )
  1904. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 81.407 70.104 0)
  1905. (effects (font (size 1.27 1.27)) (justify left) hide)
  1906. )
  1907. (property "LCSC" "C406733" (at 81.28 72.39 0)
  1908. (effects (font (size 1.27 1.27)) hide)
  1909. )
  1910. (property "Resistance" "10kΩ" (at 81.28 72.39 0)
  1911. (effects (font (size 1.27 1.27)) hide)
  1912. )
  1913. (pin "1" (uuid 72cdde18-55b2-472e-a36b-00c28ca76c8f))
  1914. (pin "2" (uuid d16f0f55-5e1c-4f13-bf26-b3fbb392c95f))
  1915. (instances
  1916. (project "dispensy"
  1917. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1918. (reference "R25") (unit 1)
  1919. )
  1920. )
  1921. )
  1922. )
  1923. (symbol (lib_id "power:GND") (at 148.59 73.66 0) (mirror y) (unit 1)
  1924. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1925. (uuid cd87114f-6e25-4bab-bc10-08b88b29d2c8)
  1926. (property "Reference" "#PWR04" (at 148.59 80.01 0)
  1927. (effects (font (size 1.27 1.27)) hide)
  1928. )
  1929. (property "Value" "GND" (at 148.59 77.7931 0)
  1930. (effects (font (size 1.27 1.27)))
  1931. )
  1932. (property "Footprint" "" (at 148.59 73.66 0)
  1933. (effects (font (size 1.27 1.27)) hide)
  1934. )
  1935. (property "Datasheet" "" (at 148.59 73.66 0)
  1936. (effects (font (size 1.27 1.27)) hide)
  1937. )
  1938. (pin "1" (uuid 2b6e8a77-077b-48f3-9685-7f564d6ab473))
  1939. (instances
  1940. (project "dispensy"
  1941. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1942. (reference "#PWR04") (unit 1)
  1943. )
  1944. )
  1945. )
  1946. )
  1947. (symbol (lib_id "jlc:TS-1092U-B3D2") (at 168.91 67.31 270) (mirror x) (unit 1)
  1948. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1949. (uuid db345434-e2dc-4dda-8f97-2cbd41b974fe)
  1950. (property "Reference" "SW5" (at 171.45 66.04 90)
  1951. (effects (font (size 1.27 1.27)) (justify left))
  1952. )
  1953. (property "Value" "DOWN" (at 171.45 68.58 90)
  1954. (effects (font (size 1.27 1.27)) (justify left))
  1955. )
  1956. (property "Footprint" "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (at 158.75 67.31 0)
  1957. (effects (font (size 1.27 1.27) italic) hide)
  1958. )
  1959. (property "Datasheet" "https://item.szlcsc.com/537807.html" (at 169.037 69.596 0)
  1960. (effects (font (size 1.27 1.27)) (justify left) hide)
  1961. )
  1962. (property "LCSC" "C520861" (at 168.91 67.31 0)
  1963. (effects (font (size 1.27 1.27)) hide)
  1964. )
  1965. (pin "1" (uuid 282b6da3-2c6a-4bed-9126-3813a450b27f))
  1966. (pin "2" (uuid a1bb8c36-5884-4657-a3af-b89cab51ad68))
  1967. (instances
  1968. (project "dispensy"
  1969. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1970. (reference "SW5") (unit 1)
  1971. )
  1972. )
  1973. )
  1974. )
  1975. (symbol (lib_id "power:+3.3V") (at 85.09 130.81 270) (unit 1)
  1976. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  1977. (uuid e31607e6-f6d1-4211-84be-02a2dd41973e)
  1978. (property "Reference" "#PWR06" (at 81.28 130.81 0)
  1979. (effects (font (size 1.27 1.27)) hide)
  1980. )
  1981. (property "Value" "+3.3V" (at 88.265 130.81 90)
  1982. (effects (font (size 1.27 1.27)) (justify left))
  1983. )
  1984. (property "Footprint" "" (at 85.09 130.81 0)
  1985. (effects (font (size 1.27 1.27)) hide)
  1986. )
  1987. (property "Datasheet" "" (at 85.09 130.81 0)
  1988. (effects (font (size 1.27 1.27)) hide)
  1989. )
  1990. (pin "1" (uuid ccb9e7e4-1b8e-4f83-85a2-49f187849443))
  1991. (instances
  1992. (project "dispensy"
  1993. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  1994. (reference "#PWR06") (unit 1)
  1995. )
  1996. )
  1997. )
  1998. )
  1999. (symbol (lib_id "jlc:TS-1092U-B3D2") (at 148.59 67.31 270) (mirror x) (unit 1)
  2000. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2001. (uuid eb60f3c1-d222-4fde-88b7-33c747d7332b)
  2002. (property "Reference" "SW3" (at 151.13 66.04 90)
  2003. (effects (font (size 1.27 1.27)) (justify left))
  2004. )
  2005. (property "Value" "UP" (at 151.13 68.58 90)
  2006. (effects (font (size 1.27 1.27)) (justify left))
  2007. )
  2008. (property "Footprint" "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (at 138.43 67.31 0)
  2009. (effects (font (size 1.27 1.27) italic) hide)
  2010. )
  2011. (property "Datasheet" "https://item.szlcsc.com/537807.html" (at 148.717 69.596 0)
  2012. (effects (font (size 1.27 1.27)) (justify left) hide)
  2013. )
  2014. (property "LCSC" "C520861" (at 148.59 67.31 0)
  2015. (effects (font (size 1.27 1.27)) hide)
  2016. )
  2017. (pin "1" (uuid 8a828a22-6fce-4eed-a132-8945c112f261))
  2018. (pin "2" (uuid 5c2ea286-a839-4b15-b886-1f54f0f573d3))
  2019. (instances
  2020. (project "dispensy"
  2021. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  2022. (reference "SW3") (unit 1)
  2023. )
  2024. )
  2025. )
  2026. )
  2027. (symbol (lib_id "power:+VDC") (at 81.28 53.34 0) (unit 1)
  2028. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2029. (uuid f295e63b-8dee-49ce-91e5-5bcd9ed83326)
  2030. (property "Reference" "#PWR080" (at 81.28 55.88 0)
  2031. (effects (font (size 1.27 1.27)) hide)
  2032. )
  2033. (property "Value" "+VDC" (at 81.28 45.72 0)
  2034. (effects (font (size 1.27 1.27)))
  2035. )
  2036. (property "Footprint" "" (at 81.28 53.34 0)
  2037. (effects (font (size 1.27 1.27)) hide)
  2038. )
  2039. (property "Datasheet" "" (at 81.28 53.34 0)
  2040. (effects (font (size 1.27 1.27)) hide)
  2041. )
  2042. (pin "1" (uuid 2331965e-616f-4a48-bbdd-ba4d11dd43a9))
  2043. (instances
  2044. (project "dispensy"
  2045. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  2046. (reference "#PWR080") (unit 1)
  2047. )
  2048. )
  2049. )
  2050. )
  2051. (symbol (lib_id "jlc:CR-02FL6---10K") (at 88.9 99.06 0) (unit 1)
  2052. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2053. (uuid f2d2013e-631b-4cf6-93b6-f0431ef0af50)
  2054. (property "Reference" "R1" (at 88.9 94.9071 0)
  2055. (effects (font (size 1.27 1.27)))
  2056. )
  2057. (property "Value" "10K" (at 88.9 96.8281 0)
  2058. (effects (font (size 1.27 1.27)))
  2059. )
  2060. (property "Footprint" "jlc_footprints:R0402" (at 88.9 109.22 0)
  2061. (effects (font (size 1.27 1.27) italic) hide)
  2062. )
  2063. (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 86.614 98.933 0)
  2064. (effects (font (size 1.27 1.27)) (justify left) hide)
  2065. )
  2066. (property "LCSC" "C406733" (at 88.9 99.06 0)
  2067. (effects (font (size 1.27 1.27)) hide)
  2068. )
  2069. (property "Resistance" "10kΩ" (at 88.9 99.06 0)
  2070. (effects (font (size 1.27 1.27)) hide)
  2071. )
  2072. (pin "1" (uuid 703ea756-0de0-4269-9fe8-44f086bf9f1b))
  2073. (pin "2" (uuid 6ce3d95e-f4b3-4e09-95cb-7d320cb16be2))
  2074. (instances
  2075. (project "dispensy"
  2076. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  2077. (reference "R1") (unit 1)
  2078. )
  2079. )
  2080. )
  2081. )
  2082. (symbol (lib_id "Mechanical:MountingHole") (at 21.59 38.1 0) (unit 1)
  2083. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2084. (uuid fcc00026-dae3-4fe3-818b-ea9f4ed733a4)
  2085. (property "Reference" "H14" (at 24.13 36.8879 0)
  2086. (effects (font (size 1.27 1.27)) (justify left))
  2087. )
  2088. (property "Value" "MountingHole" (at 24.13 39.3121 0)
  2089. (effects (font (size 1.27 1.27)) (justify left))
  2090. )
  2091. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (at 21.59 38.1 0)
  2092. (effects (font (size 1.27 1.27)) hide)
  2093. )
  2094. (property "Datasheet" "~" (at 21.59 38.1 0)
  2095. (effects (font (size 1.27 1.27)) hide)
  2096. )
  2097. (instances
  2098. (project "dispensy"
  2099. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  2100. (reference "H14") (unit 1)
  2101. )
  2102. )
  2103. )
  2104. )
  2105. (symbol (lib_id "jlc:TS-1092U-B3D2") (at 158.75 67.31 270) (mirror x) (unit 1)
  2106. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2107. (uuid ff8b9055-a146-47bb-8d3b-5261a1d01b0e)
  2108. (property "Reference" "SW4" (at 161.29 66.04 90)
  2109. (effects (font (size 1.27 1.27)) (justify left))
  2110. )
  2111. (property "Value" "MENU" (at 161.29 68.58 90)
  2112. (effects (font (size 1.27 1.27)) (justify left))
  2113. )
  2114. (property "Footprint" "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (at 148.59 67.31 0)
  2115. (effects (font (size 1.27 1.27) italic) hide)
  2116. )
  2117. (property "Datasheet" "https://item.szlcsc.com/537807.html" (at 158.877 69.596 0)
  2118. (effects (font (size 1.27 1.27)) (justify left) hide)
  2119. )
  2120. (property "LCSC" "C520861" (at 158.75 67.31 0)
  2121. (effects (font (size 1.27 1.27)) hide)
  2122. )
  2123. (pin "1" (uuid f596023a-073c-4ac4-a93f-0e439a01e78c))
  2124. (pin "2" (uuid 7c8fc5e2-c7da-48bf-b3d9-a67ecd97f01f))
  2125. (instances
  2126. (project "dispensy"
  2127. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
  2128. (reference "SW4") (unit 1)
  2129. )
  2130. )
  2131. )
  2132. )
  2133. (sheet (at 180.34 110.49) (size 27.94 5.08) (fields_autoplaced)
  2134. (stroke (width 0.1524) (type solid))
  2135. (fill (color 0 0 0 0.0000))
  2136. (uuid 635c7f01-c861-45f9-bb15-e53673572e1d)
  2137. (property "Sheetname" "EXT_PSU" (at 180.34 109.7784 0)
  2138. (effects (font (size 1.27 1.27)) (justify left bottom))
  2139. )
  2140. (property "Sheetfile" "psu_lm2576.kicad_sch" (at 180.34 116.1546 0)
  2141. (effects (font (size 1.27 1.27)) (justify left top))
  2142. )
  2143. (pin "Vout" input (at 208.28 113.03 0)
  2144. (effects (font (size 1.27 1.27)) (justify right))
  2145. (uuid 49eeb541-c632-4ff0-a694-09491809ff11)
  2146. )
  2147. (pin "Vin" input (at 180.34 113.03 180)
  2148. (effects (font (size 1.27 1.27)) (justify left))
  2149. (uuid 73b3f677-8bd5-4dfa-987a-f7def7bf3fc5)
  2150. )
  2151. (instances
  2152. (project "dispensy"
  2153. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b" (page "2"))
  2154. )
  2155. )
  2156. )
  2157. (sheet (at 109.22 20.32) (size 20.32 40.64) (fields_autoplaced)
  2158. (stroke (width 0.1524) (type solid))
  2159. (fill (color 0 0 0 0.0000))
  2160. (uuid f8ce2893-59d6-4502-b3c7-412c7467c1ef)
  2161. (property "Sheetname" "PI" (at 109.22 19.6084 0)
  2162. (effects (font (size 1.27 1.27)) (justify left bottom))
  2163. )
  2164. (property "Sheetfile" "pi.kicad_sch" (at 109.22 61.5446 0)
  2165. (effects (font (size 1.27 1.27)) (justify left top))
  2166. )
  2167. (pin "IO8" bidirectional (at 129.54 41.91 0)
  2168. (effects (font (size 1.27 1.27)) (justify right))
  2169. (uuid a4983b1c-c7a2-4e00-b97b-3203acb03e53)
  2170. )
  2171. (pin "IO9" bidirectional (at 129.54 44.45 0)
  2172. (effects (font (size 1.27 1.27)) (justify right))
  2173. (uuid 5379e861-0c6f-4c7b-8253-9807a73bba50)
  2174. )
  2175. (pin "IO5" bidirectional (at 129.54 34.29 0)
  2176. (effects (font (size 1.27 1.27)) (justify right))
  2177. (uuid aabc04bc-65cc-43cb-af17-e40e4fc9bc58)
  2178. )
  2179. (pin "IO6" bidirectional (at 129.54 36.83 0)
  2180. (effects (font (size 1.27 1.27)) (justify right))
  2181. (uuid e6848a64-2cf9-423b-8438-c28614fe2c3d)
  2182. )
  2183. (pin "IO7" bidirectional (at 129.54 39.37 0)
  2184. (effects (font (size 1.27 1.27)) (justify right))
  2185. (uuid 3c1dee77-8b69-4001-970e-d51217c38fab)
  2186. )
  2187. (pin "IO4" bidirectional (at 129.54 31.75 0)
  2188. (effects (font (size 1.27 1.27)) (justify right))
  2189. (uuid fbbf8f2f-d5d7-49a5-9910-b2c0de36b1a0)
  2190. )
  2191. (pin "IO3" bidirectional (at 129.54 29.21 0)
  2192. (effects (font (size 1.27 1.27)) (justify right))
  2193. (uuid ae65f902-74c4-4963-ac6d-50be9b7d110f)
  2194. )
  2195. (pin "IO2" bidirectional (at 129.54 26.67 0)
  2196. (effects (font (size 1.27 1.27)) (justify right))
  2197. (uuid 00ab7294-3bf2-4bb3-850a-053b3d81ef0b)
  2198. )
  2199. (pin "IO1" bidirectional (at 129.54 24.13 0)
  2200. (effects (font (size 1.27 1.27)) (justify right))
  2201. (uuid 45c2b1e4-7bd9-479c-9fd5-94d795168a08)
  2202. )
  2203. (pin "IO0" bidirectional (at 129.54 21.59 0)
  2204. (effects (font (size 1.27 1.27)) (justify right))
  2205. (uuid d194f5a4-a98f-4c4c-b9b7-716d34d1ee7b)
  2206. )
  2207. (pin "IO15" bidirectional (at 129.54 59.69 0)
  2208. (effects (font (size 1.27 1.27)) (justify right))
  2209. (uuid 6dd1fc9d-556f-4756-8350-96319d2d65a1)
  2210. )
  2211. (pin "IO14" bidirectional (at 129.54 57.15 0)
  2212. (effects (font (size 1.27 1.27)) (justify right))
  2213. (uuid 22759f89-321f-4300-bfc0-5fb353370583)
  2214. )
  2215. (pin "ADC1" bidirectional (at 109.22 44.45 180)
  2216. (effects (font (size 1.27 1.27)) (justify left))
  2217. (uuid 08531663-26a4-460b-8e6d-a32e0911e89d)
  2218. )
  2219. (pin "ADC2" bidirectional (at 109.22 46.99 180)
  2220. (effects (font (size 1.27 1.27)) (justify left))
  2221. (uuid 3879e06c-039b-4de7-bdf0-13b83112636e)
  2222. )
  2223. (pin "ADC3" bidirectional (at 109.22 49.53 180)
  2224. (effects (font (size 1.27 1.27)) (justify left))
  2225. (uuid c8fa8f0c-ae31-4906-a56a-aa6ef7f4672b)
  2226. )
  2227. (pin "ADC0" bidirectional (at 109.22 41.91 180)
  2228. (effects (font (size 1.27 1.27)) (justify left))
  2229. (uuid 14255837-7ea6-42d2-9e24-d8625fd85f6f)
  2230. )
  2231. (pin "IO12" bidirectional (at 129.54 52.07 0)
  2232. (effects (font (size 1.27 1.27)) (justify right))
  2233. (uuid 0c111304-deaa-4060-8d8d-023e0e71ef29)
  2234. )
  2235. (pin "I2C_SDA" bidirectional (at 109.22 36.83 180)
  2236. (effects (font (size 1.27 1.27)) (justify left))
  2237. (uuid f21496d8-1080-40a3-88d4-b42abf4a1a5e)
  2238. )
  2239. (pin "IO13" bidirectional (at 129.54 54.61 0)
  2240. (effects (font (size 1.27 1.27)) (justify right))
  2241. (uuid 1cf80fc1-b6e5-4f0d-a1aa-d665e7d77a42)
  2242. )
  2243. (pin "IO10" bidirectional (at 129.54 46.99 0)
  2244. (effects (font (size 1.27 1.27)) (justify right))
  2245. (uuid 936d5974-d57e-4d55-8575-85e3f9dda271)
  2246. )
  2247. (pin "IO11" bidirectional (at 129.54 49.53 0)
  2248. (effects (font (size 1.27 1.27)) (justify right))
  2249. (uuid 04a6f633-c41f-434e-a108-31037821aca6)
  2250. )
  2251. (pin "I2C_SCL" bidirectional (at 109.22 34.29 180)
  2252. (effects (font (size 1.27 1.27)) (justify left))
  2253. (uuid 0dd52a52-9265-439f-b4f8-ae26f9df79e9)
  2254. )
  2255. (pin "HWID2" input (at 109.22 26.67 180)
  2256. (effects (font (size 1.27 1.27)) (justify left))
  2257. (uuid 5ec3a00b-bc96-494b-9daa-3a5e40ee9a2e)
  2258. )
  2259. (pin "HWID3" input (at 109.22 29.21 180)
  2260. (effects (font (size 1.27 1.27)) (justify left))
  2261. (uuid de20a885-350c-4940-9f0c-847587d21e83)
  2262. )
  2263. (pin "HWID0" input (at 109.22 21.59 180)
  2264. (effects (font (size 1.27 1.27)) (justify left))
  2265. (uuid 1717ee0f-71c6-4381-be8b-2f11c00f565a)
  2266. )
  2267. (pin "HWID1" input (at 109.22 24.13 180)
  2268. (effects (font (size 1.27 1.27)) (justify left))
  2269. (uuid 9de7cfb3-c69d-4558-ba52-9186d265ad0b)
  2270. )
  2271. (instances
  2272. (project "dispensy"
  2273. (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b" (page "3"))
  2274. )
  2275. )
  2276. )
  2277. (sheet_instances
  2278. (path "/" (page "1"))
  2279. )
  2280. )