cx-light.kicad_sch 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "e33c5541-4177-4fec-9d3f-c8377967de24")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Connector:Barrel_Jack_MountingPin"
  9. (pin_names hide)
  10. (exclude_from_sim no)
  11. (in_bom yes)
  12. (on_board yes)
  13. (property "Reference" "J"
  14. (at 0 5.334 0)
  15. (effects
  16. (font
  17. (size 1.27 1.27)
  18. )
  19. )
  20. )
  21. (property "Value" "Barrel_Jack_MountingPin"
  22. (at 1.27 -6.35 0)
  23. (effects
  24. (font
  25. (size 1.27 1.27)
  26. )
  27. (justify left)
  28. )
  29. )
  30. (property "Footprint" ""
  31. (at 1.27 -1.016 0)
  32. (effects
  33. (font
  34. (size 1.27 1.27)
  35. )
  36. (hide yes)
  37. )
  38. )
  39. (property "Datasheet" "~"
  40. (at 1.27 -1.016 0)
  41. (effects
  42. (font
  43. (size 1.27 1.27)
  44. )
  45. (hide yes)
  46. )
  47. )
  48. (property "Description" "DC Barrel Jack with a mounting pin"
  49. (at 0 0 0)
  50. (effects
  51. (font
  52. (size 1.27 1.27)
  53. )
  54. (hide yes)
  55. )
  56. )
  57. (property "ki_keywords" "DC power barrel jack connector"
  58. (at 0 0 0)
  59. (effects
  60. (font
  61. (size 1.27 1.27)
  62. )
  63. (hide yes)
  64. )
  65. )
  66. (property "ki_fp_filters" "BarrelJack*"
  67. (at 0 0 0)
  68. (effects
  69. (font
  70. (size 1.27 1.27)
  71. )
  72. (hide yes)
  73. )
  74. )
  75. (symbol "Barrel_Jack_MountingPin_0_1"
  76. (rectangle
  77. (start -5.08 3.81)
  78. (end 5.08 -3.81)
  79. (stroke
  80. (width 0.254)
  81. (type default)
  82. )
  83. (fill
  84. (type background)
  85. )
  86. )
  87. (arc
  88. (start -3.302 3.175)
  89. (mid -3.9343 2.54)
  90. (end -3.302 1.905)
  91. (stroke
  92. (width 0.254)
  93. (type default)
  94. )
  95. (fill
  96. (type none)
  97. )
  98. )
  99. (arc
  100. (start -3.302 3.175)
  101. (mid -3.9343 2.54)
  102. (end -3.302 1.905)
  103. (stroke
  104. (width 0.254)
  105. (type default)
  106. )
  107. (fill
  108. (type outline)
  109. )
  110. )
  111. (polyline
  112. (pts
  113. (xy 5.08 2.54) (xy 3.81 2.54)
  114. )
  115. (stroke
  116. (width 0.254)
  117. (type default)
  118. )
  119. (fill
  120. (type none)
  121. )
  122. )
  123. (polyline
  124. (pts
  125. (xy -3.81 -2.54) (xy -2.54 -2.54) (xy -1.27 -1.27) (xy 0 -2.54) (xy 2.54 -2.54) (xy 5.08 -2.54)
  126. )
  127. (stroke
  128. (width 0.254)
  129. (type default)
  130. )
  131. (fill
  132. (type none)
  133. )
  134. )
  135. (rectangle
  136. (start 3.683 3.175)
  137. (end -3.302 1.905)
  138. (stroke
  139. (width 0.254)
  140. (type default)
  141. )
  142. (fill
  143. (type outline)
  144. )
  145. )
  146. )
  147. (symbol "Barrel_Jack_MountingPin_1_1"
  148. (polyline
  149. (pts
  150. (xy -1.016 -4.572) (xy 1.016 -4.572)
  151. )
  152. (stroke
  153. (width 0.1524)
  154. (type default)
  155. )
  156. (fill
  157. (type none)
  158. )
  159. )
  160. (text "Mounting"
  161. (at 0 -4.191 0)
  162. (effects
  163. (font
  164. (size 0.381 0.381)
  165. )
  166. )
  167. )
  168. (pin passive line
  169. (at 7.62 2.54 180)
  170. (length 2.54)
  171. (name "~"
  172. (effects
  173. (font
  174. (size 1.27 1.27)
  175. )
  176. )
  177. )
  178. (number "1"
  179. (effects
  180. (font
  181. (size 1.27 1.27)
  182. )
  183. )
  184. )
  185. )
  186. (pin passive line
  187. (at 7.62 -2.54 180)
  188. (length 2.54)
  189. (name "~"
  190. (effects
  191. (font
  192. (size 1.27 1.27)
  193. )
  194. )
  195. )
  196. (number "2"
  197. (effects
  198. (font
  199. (size 1.27 1.27)
  200. )
  201. )
  202. )
  203. )
  204. (pin passive line
  205. (at 0 -7.62 90)
  206. (length 3.048)
  207. (name "MountPin"
  208. (effects
  209. (font
  210. (size 1.27 1.27)
  211. )
  212. )
  213. )
  214. (number "MP"
  215. (effects
  216. (font
  217. (size 1.27 1.27)
  218. )
  219. )
  220. )
  221. )
  222. )
  223. )
  224. (symbol "Device:C"
  225. (pin_numbers hide)
  226. (pin_names
  227. (offset 0.254)
  228. )
  229. (exclude_from_sim no)
  230. (in_bom yes)
  231. (on_board yes)
  232. (property "Reference" "C"
  233. (at 0.635 2.54 0)
  234. (effects
  235. (font
  236. (size 1.27 1.27)
  237. )
  238. (justify left)
  239. )
  240. )
  241. (property "Value" "C"
  242. (at 0.635 -2.54 0)
  243. (effects
  244. (font
  245. (size 1.27 1.27)
  246. )
  247. (justify left)
  248. )
  249. )
  250. (property "Footprint" ""
  251. (at 0.9652 -3.81 0)
  252. (effects
  253. (font
  254. (size 1.27 1.27)
  255. )
  256. (hide yes)
  257. )
  258. )
  259. (property "Datasheet" "~"
  260. (at 0 0 0)
  261. (effects
  262. (font
  263. (size 1.27 1.27)
  264. )
  265. (hide yes)
  266. )
  267. )
  268. (property "Description" "Unpolarized capacitor"
  269. (at 0 0 0)
  270. (effects
  271. (font
  272. (size 1.27 1.27)
  273. )
  274. (hide yes)
  275. )
  276. )
  277. (property "ki_keywords" "cap capacitor"
  278. (at 0 0 0)
  279. (effects
  280. (font
  281. (size 1.27 1.27)
  282. )
  283. (hide yes)
  284. )
  285. )
  286. (property "ki_fp_filters" "C_*"
  287. (at 0 0 0)
  288. (effects
  289. (font
  290. (size 1.27 1.27)
  291. )
  292. (hide yes)
  293. )
  294. )
  295. (symbol "C_0_1"
  296. (polyline
  297. (pts
  298. (xy -2.032 -0.762) (xy 2.032 -0.762)
  299. )
  300. (stroke
  301. (width 0.508)
  302. (type default)
  303. )
  304. (fill
  305. (type none)
  306. )
  307. )
  308. (polyline
  309. (pts
  310. (xy -2.032 0.762) (xy 2.032 0.762)
  311. )
  312. (stroke
  313. (width 0.508)
  314. (type default)
  315. )
  316. (fill
  317. (type none)
  318. )
  319. )
  320. )
  321. (symbol "C_1_1"
  322. (pin passive line
  323. (at 0 3.81 270)
  324. (length 2.794)
  325. (name "~"
  326. (effects
  327. (font
  328. (size 1.27 1.27)
  329. )
  330. )
  331. )
  332. (number "1"
  333. (effects
  334. (font
  335. (size 1.27 1.27)
  336. )
  337. )
  338. )
  339. )
  340. (pin passive line
  341. (at 0 -3.81 90)
  342. (length 2.794)
  343. (name "~"
  344. (effects
  345. (font
  346. (size 1.27 1.27)
  347. )
  348. )
  349. )
  350. (number "2"
  351. (effects
  352. (font
  353. (size 1.27 1.27)
  354. )
  355. )
  356. )
  357. )
  358. )
  359. )
  360. (symbol "Device:C_Polarized"
  361. (pin_numbers hide)
  362. (pin_names
  363. (offset 0.254)
  364. )
  365. (exclude_from_sim no)
  366. (in_bom yes)
  367. (on_board yes)
  368. (property "Reference" "C"
  369. (at 0.635 2.54 0)
  370. (effects
  371. (font
  372. (size 1.27 1.27)
  373. )
  374. (justify left)
  375. )
  376. )
  377. (property "Value" "C_Polarized"
  378. (at 0.635 -2.54 0)
  379. (effects
  380. (font
  381. (size 1.27 1.27)
  382. )
  383. (justify left)
  384. )
  385. )
  386. (property "Footprint" ""
  387. (at 0.9652 -3.81 0)
  388. (effects
  389. (font
  390. (size 1.27 1.27)
  391. )
  392. (hide yes)
  393. )
  394. )
  395. (property "Datasheet" "~"
  396. (at 0 0 0)
  397. (effects
  398. (font
  399. (size 1.27 1.27)
  400. )
  401. (hide yes)
  402. )
  403. )
  404. (property "Description" "Polarized capacitor"
  405. (at 0 0 0)
  406. (effects
  407. (font
  408. (size 1.27 1.27)
  409. )
  410. (hide yes)
  411. )
  412. )
  413. (property "ki_keywords" "cap capacitor"
  414. (at 0 0 0)
  415. (effects
  416. (font
  417. (size 1.27 1.27)
  418. )
  419. (hide yes)
  420. )
  421. )
  422. (property "ki_fp_filters" "CP_*"
  423. (at 0 0 0)
  424. (effects
  425. (font
  426. (size 1.27 1.27)
  427. )
  428. (hide yes)
  429. )
  430. )
  431. (symbol "C_Polarized_0_1"
  432. (rectangle
  433. (start -2.286 0.508)
  434. (end 2.286 1.016)
  435. (stroke
  436. (width 0)
  437. (type default)
  438. )
  439. (fill
  440. (type none)
  441. )
  442. )
  443. (polyline
  444. (pts
  445. (xy -1.778 2.286) (xy -0.762 2.286)
  446. )
  447. (stroke
  448. (width 0)
  449. (type default)
  450. )
  451. (fill
  452. (type none)
  453. )
  454. )
  455. (polyline
  456. (pts
  457. (xy -1.27 2.794) (xy -1.27 1.778)
  458. )
  459. (stroke
  460. (width 0)
  461. (type default)
  462. )
  463. (fill
  464. (type none)
  465. )
  466. )
  467. (rectangle
  468. (start 2.286 -0.508)
  469. (end -2.286 -1.016)
  470. (stroke
  471. (width 0)
  472. (type default)
  473. )
  474. (fill
  475. (type outline)
  476. )
  477. )
  478. )
  479. (symbol "C_Polarized_1_1"
  480. (pin passive line
  481. (at 0 3.81 270)
  482. (length 2.794)
  483. (name "~"
  484. (effects
  485. (font
  486. (size 1.27 1.27)
  487. )
  488. )
  489. )
  490. (number "1"
  491. (effects
  492. (font
  493. (size 1.27 1.27)
  494. )
  495. )
  496. )
  497. )
  498. (pin passive line
  499. (at 0 -3.81 90)
  500. (length 2.794)
  501. (name "~"
  502. (effects
  503. (font
  504. (size 1.27 1.27)
  505. )
  506. )
  507. )
  508. (number "2"
  509. (effects
  510. (font
  511. (size 1.27 1.27)
  512. )
  513. )
  514. )
  515. )
  516. )
  517. )
  518. (symbol "Device:D"
  519. (pin_numbers hide)
  520. (pin_names
  521. (offset 1.016) hide)
  522. (exclude_from_sim no)
  523. (in_bom yes)
  524. (on_board yes)
  525. (property "Reference" "D"
  526. (at 0 2.54 0)
  527. (effects
  528. (font
  529. (size 1.27 1.27)
  530. )
  531. )
  532. )
  533. (property "Value" "D"
  534. (at 0 -2.54 0)
  535. (effects
  536. (font
  537. (size 1.27 1.27)
  538. )
  539. )
  540. )
  541. (property "Footprint" ""
  542. (at 0 0 0)
  543. (effects
  544. (font
  545. (size 1.27 1.27)
  546. )
  547. (hide yes)
  548. )
  549. )
  550. (property "Datasheet" "~"
  551. (at 0 0 0)
  552. (effects
  553. (font
  554. (size 1.27 1.27)
  555. )
  556. (hide yes)
  557. )
  558. )
  559. (property "Description" "Diode"
  560. (at 0 0 0)
  561. (effects
  562. (font
  563. (size 1.27 1.27)
  564. )
  565. (hide yes)
  566. )
  567. )
  568. (property "Sim.Device" "D"
  569. (at 0 0 0)
  570. (effects
  571. (font
  572. (size 1.27 1.27)
  573. )
  574. (hide yes)
  575. )
  576. )
  577. (property "Sim.Pins" "1=K 2=A"
  578. (at 0 0 0)
  579. (effects
  580. (font
  581. (size 1.27 1.27)
  582. )
  583. (hide yes)
  584. )
  585. )
  586. (property "ki_keywords" "diode"
  587. (at 0 0 0)
  588. (effects
  589. (font
  590. (size 1.27 1.27)
  591. )
  592. (hide yes)
  593. )
  594. )
  595. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*"
  596. (at 0 0 0)
  597. (effects
  598. (font
  599. (size 1.27 1.27)
  600. )
  601. (hide yes)
  602. )
  603. )
  604. (symbol "D_0_1"
  605. (polyline
  606. (pts
  607. (xy -1.27 1.27) (xy -1.27 -1.27)
  608. )
  609. (stroke
  610. (width 0.254)
  611. (type default)
  612. )
  613. (fill
  614. (type none)
  615. )
  616. )
  617. (polyline
  618. (pts
  619. (xy 1.27 0) (xy -1.27 0)
  620. )
  621. (stroke
  622. (width 0)
  623. (type default)
  624. )
  625. (fill
  626. (type none)
  627. )
  628. )
  629. (polyline
  630. (pts
  631. (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
  632. )
  633. (stroke
  634. (width 0.254)
  635. (type default)
  636. )
  637. (fill
  638. (type none)
  639. )
  640. )
  641. )
  642. (symbol "D_1_1"
  643. (pin passive line
  644. (at -3.81 0 0)
  645. (length 2.54)
  646. (name "K"
  647. (effects
  648. (font
  649. (size 1.27 1.27)
  650. )
  651. )
  652. )
  653. (number "1"
  654. (effects
  655. (font
  656. (size 1.27 1.27)
  657. )
  658. )
  659. )
  660. )
  661. (pin passive line
  662. (at 3.81 0 180)
  663. (length 2.54)
  664. (name "A"
  665. (effects
  666. (font
  667. (size 1.27 1.27)
  668. )
  669. )
  670. )
  671. (number "2"
  672. (effects
  673. (font
  674. (size 1.27 1.27)
  675. )
  676. )
  677. )
  678. )
  679. )
  680. )
  681. (symbol "MCU_WCH_CH32V0:CH32V003JxMx"
  682. (exclude_from_sim no)
  683. (in_bom yes)
  684. (on_board yes)
  685. (property "Reference" "U"
  686. (at -15.24 7.62 0)
  687. (effects
  688. (font
  689. (size 1.27 1.27)
  690. )
  691. )
  692. )
  693. (property "Value" "CH32V003JxMx"
  694. (at 15.24 7.62 0)
  695. (effects
  696. (font
  697. (size 1.27 1.27)
  698. )
  699. )
  700. )
  701. (property "Footprint" "Package_SO:SOP-8_3.9x4.9mm_P1.27mm"
  702. (at 0 0 0)
  703. (effects
  704. (font
  705. (size 1.27 1.27)
  706. )
  707. (hide yes)
  708. )
  709. )
  710. (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
  711. (at 0 0 0)
  712. (effects
  713. (font
  714. (size 1.27 1.27)
  715. )
  716. (hide yes)
  717. )
  718. )
  719. (property "Description" "CH32V003 series are industrial-grade general-purpose microcontrollers designed based on 32-bit RISC-V instruction set and architecture. It adopts QingKe V2A core, RV32EC instruction set, and supports 2 levels of interrupt nesting. The series are mounted with rich peripheral interfaces and function modules. Its internal organizational structure meets the low-cost and low-power embedded application scenarios."
  720. (at 0 0 0)
  721. (effects
  722. (font
  723. (size 1.27 1.27)
  724. )
  725. (hide yes)
  726. )
  727. )
  728. (property "ki_keywords" "microcontroller wch RISC-V"
  729. (at 0 0 0)
  730. (effects
  731. (font
  732. (size 1.27 1.27)
  733. )
  734. (hide yes)
  735. )
  736. )
  737. (property "ki_fp_filters" "SOP*3.9x4.9mm*P1.27mm*"
  738. (at 0 0 0)
  739. (effects
  740. (font
  741. (size 1.27 1.27)
  742. )
  743. (hide yes)
  744. )
  745. )
  746. (symbol "CH32V003JxMx_1_1"
  747. (rectangle
  748. (start -15.24 5.08)
  749. (end 15.24 -5.08)
  750. (stroke
  751. (width 0.254)
  752. (type default)
  753. )
  754. (fill
  755. (type background)
  756. )
  757. )
  758. (pin bidirectional line
  759. (at 17.78 0 180)
  760. (length 2.54)
  761. (name "PD6/PA1"
  762. (effects
  763. (font
  764. (size 1.27 1.27)
  765. )
  766. )
  767. )
  768. (number "1"
  769. (effects
  770. (font
  771. (size 1.27 1.27)
  772. )
  773. )
  774. )
  775. (alternate "A1" bidirectional line)
  776. (alternate "A6" bidirectional line)
  777. (alternate "OPN0" bidirectional line)
  778. (alternate "OSCI" bidirectional line)
  779. (alternate "T1CH2" bidirectional line)
  780. (alternate "T1CH2_2" bidirectional line)
  781. (alternate "T2CH3_3" bidirectional line)
  782. (alternate "URX" bidirectional line)
  783. (alternate "UTX_2" bidirectional line)
  784. )
  785. (pin power_in line
  786. (at 0 -7.62 90)
  787. (length 2.54)
  788. (name "VSS"
  789. (effects
  790. (font
  791. (size 1.27 1.27)
  792. )
  793. )
  794. )
  795. (number "2"
  796. (effects
  797. (font
  798. (size 1.27 1.27)
  799. )
  800. )
  801. )
  802. )
  803. (pin bidirectional line
  804. (at 17.78 -2.54 180)
  805. (length 2.54)
  806. (name "PA2"
  807. (effects
  808. (font
  809. (size 1.27 1.27)
  810. )
  811. )
  812. )
  813. (number "3"
  814. (effects
  815. (font
  816. (size 1.27 1.27)
  817. )
  818. )
  819. )
  820. (alternate "A0" bidirectional line)
  821. (alternate "AETR2_1" bidirectional line)
  822. (alternate "OPP0" bidirectional line)
  823. (alternate "OSCO" bidirectional line)
  824. (alternate "TICH2N" bidirectional line)
  825. (alternate "TICH2N_2" bidirectional line)
  826. )
  827. (pin power_in line
  828. (at 0 7.62 270)
  829. (length 2.54)
  830. (name "VDD"
  831. (effects
  832. (font
  833. (size 1.27 1.27)
  834. )
  835. )
  836. )
  837. (number "4"
  838. (effects
  839. (font
  840. (size 1.27 1.27)
  841. )
  842. )
  843. )
  844. )
  845. (pin bidirectional line
  846. (at -17.78 2.54 0)
  847. (length 2.54)
  848. (name "PC1"
  849. (effects
  850. (font
  851. (size 1.27 1.27)
  852. )
  853. )
  854. )
  855. (number "5"
  856. (effects
  857. (font
  858. (size 1.27 1.27)
  859. )
  860. )
  861. )
  862. (alternate "NSS" bidirectional line)
  863. (alternate "SDA" bidirectional line)
  864. (alternate "T1BKIN_1" bidirectional line)
  865. (alternate "T1BKIN_3" bidirectional line)
  866. (alternate "T2CH1ETR_2" bidirectional line)
  867. (alternate "T2CH1ETR_3" bidirectional line)
  868. (alternate "T2CH4_1" bidirectional line)
  869. (alternate "URX_3" bidirectional line)
  870. )
  871. (pin bidirectional line
  872. (at -17.78 0 0)
  873. (length 2.54)
  874. (name "PC2"
  875. (effects
  876. (font
  877. (size 1.27 1.27)
  878. )
  879. )
  880. )
  881. (number "6"
  882. (effects
  883. (font
  884. (size 1.27 1.27)
  885. )
  886. )
  887. )
  888. (alternate "AETR_1" bidirectional line)
  889. (alternate "SCL" bidirectional line)
  890. (alternate "T1BKIN" bidirectional line)
  891. (alternate "T1BKIN_2" bidirectional line)
  892. (alternate "T1ETR_3" bidirectional line)
  893. (alternate "T2CH2_1" bidirectional line)
  894. (alternate "URTS" bidirectional line)
  895. (alternate "URTS_1" bidirectional line)
  896. )
  897. (pin bidirectional line
  898. (at -17.78 -2.54 0)
  899. (length 2.54)
  900. (name "PC4"
  901. (effects
  902. (font
  903. (size 1.27 1.27)
  904. )
  905. )
  906. )
  907. (number "7"
  908. (effects
  909. (font
  910. (size 1.27 1.27)
  911. )
  912. )
  913. )
  914. (alternate "A2" bidirectional line)
  915. (alternate "MCO" bidirectional line)
  916. (alternate "T1CH1_3" bidirectional line)
  917. (alternate "T1CH2N_1" bidirectional line)
  918. (alternate "T1CH4" bidirectional line)
  919. (alternate "T1CH4_2" bidirectional line)
  920. )
  921. (pin bidirectional line
  922. (at 17.78 2.54 180)
  923. (length 2.54)
  924. (name "PD1/PD4/PD5"
  925. (effects
  926. (font
  927. (size 1.27 1.27)
  928. )
  929. )
  930. )
  931. (number "8"
  932. (effects
  933. (font
  934. (size 1.27 1.27)
  935. )
  936. )
  937. )
  938. (alternate "A5" bidirectional line)
  939. (alternate "A7" bidirectional line)
  940. (alternate "AETR2" bidirectional line)
  941. (alternate "OPO" bidirectional line)
  942. (alternate "SCL_1" bidirectional line)
  943. (alternate "SWIO" bidirectional line)
  944. (alternate "T1CH3N" bidirectional line)
  945. (alternate "T1CH3N_1" bidirectional line)
  946. (alternate "T1CH3N_2" bidirectional line)
  947. (alternate "T1CH4_3" bidirectional line)
  948. (alternate "T2CH1ETR" bidirectional line)
  949. (alternate "T2CH4_3" bidirectional line)
  950. (alternate "TIETR_2" bidirectional line)
  951. (alternate "UCK" bidirectional line)
  952. (alternate "URX_1" bidirectional line)
  953. (alternate "URX_2" bidirectional line)
  954. (alternate "UTX" bidirectional line)
  955. )
  956. )
  957. )
  958. (symbol "Regulator_Linear:LM1117MP-3.3"
  959. (exclude_from_sim no)
  960. (in_bom yes)
  961. (on_board yes)
  962. (property "Reference" "U"
  963. (at -3.81 3.175 0)
  964. (effects
  965. (font
  966. (size 1.27 1.27)
  967. )
  968. )
  969. )
  970. (property "Value" "LM1117MP-3.3"
  971. (at 0 3.175 0)
  972. (effects
  973. (font
  974. (size 1.27 1.27)
  975. )
  976. (justify left)
  977. )
  978. )
  979. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
  980. (at 0 0 0)
  981. (effects
  982. (font
  983. (size 1.27 1.27)
  984. )
  985. (hide yes)
  986. )
  987. )
  988. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  989. (at 0 0 0)
  990. (effects
  991. (font
  992. (size 1.27 1.27)
  993. )
  994. (hide yes)
  995. )
  996. )
  997. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
  998. (at 0 0 0)
  999. (effects
  1000. (font
  1001. (size 1.27 1.27)
  1002. )
  1003. (hide yes)
  1004. )
  1005. )
  1006. (property "ki_keywords" "linear regulator ldo fixed positive"
  1007. (at 0 0 0)
  1008. (effects
  1009. (font
  1010. (size 1.27 1.27)
  1011. )
  1012. (hide yes)
  1013. )
  1014. )
  1015. (property "ki_fp_filters" "SOT?223*"
  1016. (at 0 0 0)
  1017. (effects
  1018. (font
  1019. (size 1.27 1.27)
  1020. )
  1021. (hide yes)
  1022. )
  1023. )
  1024. (symbol "LM1117MP-3.3_0_1"
  1025. (rectangle
  1026. (start -5.08 -5.08)
  1027. (end 5.08 1.905)
  1028. (stroke
  1029. (width 0.254)
  1030. (type default)
  1031. )
  1032. (fill
  1033. (type background)
  1034. )
  1035. )
  1036. )
  1037. (symbol "LM1117MP-3.3_1_1"
  1038. (pin power_in line
  1039. (at 0 -7.62 90)
  1040. (length 2.54)
  1041. (name "GND"
  1042. (effects
  1043. (font
  1044. (size 1.27 1.27)
  1045. )
  1046. )
  1047. )
  1048. (number "1"
  1049. (effects
  1050. (font
  1051. (size 1.27 1.27)
  1052. )
  1053. )
  1054. )
  1055. )
  1056. (pin power_out line
  1057. (at 7.62 0 180)
  1058. (length 2.54)
  1059. (name "VO"
  1060. (effects
  1061. (font
  1062. (size 1.27 1.27)
  1063. )
  1064. )
  1065. )
  1066. (number "2"
  1067. (effects
  1068. (font
  1069. (size 1.27 1.27)
  1070. )
  1071. )
  1072. )
  1073. )
  1074. (pin power_in line
  1075. (at -7.62 0 0)
  1076. (length 2.54)
  1077. (name "VI"
  1078. (effects
  1079. (font
  1080. (size 1.27 1.27)
  1081. )
  1082. )
  1083. )
  1084. (number "3"
  1085. (effects
  1086. (font
  1087. (size 1.27 1.27)
  1088. )
  1089. )
  1090. )
  1091. )
  1092. )
  1093. )
  1094. (symbol "power:+3V3"
  1095. (power)
  1096. (pin_numbers hide)
  1097. (pin_names
  1098. (offset 0) hide)
  1099. (exclude_from_sim no)
  1100. (in_bom yes)
  1101. (on_board yes)
  1102. (property "Reference" "#PWR"
  1103. (at 0 -3.81 0)
  1104. (effects
  1105. (font
  1106. (size 1.27 1.27)
  1107. )
  1108. (hide yes)
  1109. )
  1110. )
  1111. (property "Value" "+3V3"
  1112. (at 0 3.556 0)
  1113. (effects
  1114. (font
  1115. (size 1.27 1.27)
  1116. )
  1117. )
  1118. )
  1119. (property "Footprint" ""
  1120. (at 0 0 0)
  1121. (effects
  1122. (font
  1123. (size 1.27 1.27)
  1124. )
  1125. (hide yes)
  1126. )
  1127. )
  1128. (property "Datasheet" ""
  1129. (at 0 0 0)
  1130. (effects
  1131. (font
  1132. (size 1.27 1.27)
  1133. )
  1134. (hide yes)
  1135. )
  1136. )
  1137. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1138. (at 0 0 0)
  1139. (effects
  1140. (font
  1141. (size 1.27 1.27)
  1142. )
  1143. (hide yes)
  1144. )
  1145. )
  1146. (property "ki_keywords" "global power"
  1147. (at 0 0 0)
  1148. (effects
  1149. (font
  1150. (size 1.27 1.27)
  1151. )
  1152. (hide yes)
  1153. )
  1154. )
  1155. (symbol "+3V3_0_1"
  1156. (polyline
  1157. (pts
  1158. (xy -0.762 1.27) (xy 0 2.54)
  1159. )
  1160. (stroke
  1161. (width 0)
  1162. (type default)
  1163. )
  1164. (fill
  1165. (type none)
  1166. )
  1167. )
  1168. (polyline
  1169. (pts
  1170. (xy 0 0) (xy 0 2.54)
  1171. )
  1172. (stroke
  1173. (width 0)
  1174. (type default)
  1175. )
  1176. (fill
  1177. (type none)
  1178. )
  1179. )
  1180. (polyline
  1181. (pts
  1182. (xy 0 2.54) (xy 0.762 1.27)
  1183. )
  1184. (stroke
  1185. (width 0)
  1186. (type default)
  1187. )
  1188. (fill
  1189. (type none)
  1190. )
  1191. )
  1192. )
  1193. (symbol "+3V3_1_1"
  1194. (pin power_in line
  1195. (at 0 0 90)
  1196. (length 0)
  1197. (name "~"
  1198. (effects
  1199. (font
  1200. (size 1.27 1.27)
  1201. )
  1202. )
  1203. )
  1204. (number "1"
  1205. (effects
  1206. (font
  1207. (size 1.27 1.27)
  1208. )
  1209. )
  1210. )
  1211. )
  1212. )
  1213. )
  1214. (symbol "power:+5V"
  1215. (power)
  1216. (pin_numbers hide)
  1217. (pin_names
  1218. (offset 0) hide)
  1219. (exclude_from_sim no)
  1220. (in_bom yes)
  1221. (on_board yes)
  1222. (property "Reference" "#PWR"
  1223. (at 0 -3.81 0)
  1224. (effects
  1225. (font
  1226. (size 1.27 1.27)
  1227. )
  1228. (hide yes)
  1229. )
  1230. )
  1231. (property "Value" "+5V"
  1232. (at 0 3.556 0)
  1233. (effects
  1234. (font
  1235. (size 1.27 1.27)
  1236. )
  1237. )
  1238. )
  1239. (property "Footprint" ""
  1240. (at 0 0 0)
  1241. (effects
  1242. (font
  1243. (size 1.27 1.27)
  1244. )
  1245. (hide yes)
  1246. )
  1247. )
  1248. (property "Datasheet" ""
  1249. (at 0 0 0)
  1250. (effects
  1251. (font
  1252. (size 1.27 1.27)
  1253. )
  1254. (hide yes)
  1255. )
  1256. )
  1257. (property "Description" "Power symbol creates a global label with name \"+5V\""
  1258. (at 0 0 0)
  1259. (effects
  1260. (font
  1261. (size 1.27 1.27)
  1262. )
  1263. (hide yes)
  1264. )
  1265. )
  1266. (property "ki_keywords" "global power"
  1267. (at 0 0 0)
  1268. (effects
  1269. (font
  1270. (size 1.27 1.27)
  1271. )
  1272. (hide yes)
  1273. )
  1274. )
  1275. (symbol "+5V_0_1"
  1276. (polyline
  1277. (pts
  1278. (xy -0.762 1.27) (xy 0 2.54)
  1279. )
  1280. (stroke
  1281. (width 0)
  1282. (type default)
  1283. )
  1284. (fill
  1285. (type none)
  1286. )
  1287. )
  1288. (polyline
  1289. (pts
  1290. (xy 0 0) (xy 0 2.54)
  1291. )
  1292. (stroke
  1293. (width 0)
  1294. (type default)
  1295. )
  1296. (fill
  1297. (type none)
  1298. )
  1299. )
  1300. (polyline
  1301. (pts
  1302. (xy 0 2.54) (xy 0.762 1.27)
  1303. )
  1304. (stroke
  1305. (width 0)
  1306. (type default)
  1307. )
  1308. (fill
  1309. (type none)
  1310. )
  1311. )
  1312. )
  1313. (symbol "+5V_1_1"
  1314. (pin power_in line
  1315. (at 0 0 90)
  1316. (length 0)
  1317. (name "~"
  1318. (effects
  1319. (font
  1320. (size 1.27 1.27)
  1321. )
  1322. )
  1323. )
  1324. (number "1"
  1325. (effects
  1326. (font
  1327. (size 1.27 1.27)
  1328. )
  1329. )
  1330. )
  1331. )
  1332. )
  1333. )
  1334. (symbol "power:GND"
  1335. (power)
  1336. (pin_numbers hide)
  1337. (pin_names
  1338. (offset 0) hide)
  1339. (exclude_from_sim no)
  1340. (in_bom yes)
  1341. (on_board yes)
  1342. (property "Reference" "#PWR"
  1343. (at 0 -6.35 0)
  1344. (effects
  1345. (font
  1346. (size 1.27 1.27)
  1347. )
  1348. (hide yes)
  1349. )
  1350. )
  1351. (property "Value" "GND"
  1352. (at 0 -3.81 0)
  1353. (effects
  1354. (font
  1355. (size 1.27 1.27)
  1356. )
  1357. )
  1358. )
  1359. (property "Footprint" ""
  1360. (at 0 0 0)
  1361. (effects
  1362. (font
  1363. (size 1.27 1.27)
  1364. )
  1365. (hide yes)
  1366. )
  1367. )
  1368. (property "Datasheet" ""
  1369. (at 0 0 0)
  1370. (effects
  1371. (font
  1372. (size 1.27 1.27)
  1373. )
  1374. (hide yes)
  1375. )
  1376. )
  1377. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1378. (at 0 0 0)
  1379. (effects
  1380. (font
  1381. (size 1.27 1.27)
  1382. )
  1383. (hide yes)
  1384. )
  1385. )
  1386. (property "ki_keywords" "global power"
  1387. (at 0 0 0)
  1388. (effects
  1389. (font
  1390. (size 1.27 1.27)
  1391. )
  1392. (hide yes)
  1393. )
  1394. )
  1395. (symbol "GND_0_1"
  1396. (polyline
  1397. (pts
  1398. (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
  1399. )
  1400. (stroke
  1401. (width 0)
  1402. (type default)
  1403. )
  1404. (fill
  1405. (type none)
  1406. )
  1407. )
  1408. )
  1409. (symbol "GND_1_1"
  1410. (pin power_in line
  1411. (at 0 0 270)
  1412. (length 0)
  1413. (name "~"
  1414. (effects
  1415. (font
  1416. (size 1.27 1.27)
  1417. )
  1418. )
  1419. )
  1420. (number "1"
  1421. (effects
  1422. (font
  1423. (size 1.27 1.27)
  1424. )
  1425. )
  1426. )
  1427. )
  1428. )
  1429. )
  1430. )
  1431. (junction
  1432. (at 82.55 44.45)
  1433. (diameter 0)
  1434. (color 0 0 0 0)
  1435. (uuid "04a26f2f-da39-4d5b-8215-24f7f06b8261")
  1436. )
  1437. (junction
  1438. (at 86.36 44.45)
  1439. (diameter 0)
  1440. (color 0 0 0 0)
  1441. (uuid "1ca09380-bbf7-492b-ade1-c4c937432239")
  1442. )
  1443. (junction
  1444. (at 123.19 44.45)
  1445. (diameter 0)
  1446. (color 0 0 0 0)
  1447. (uuid "2ab59171-1572-4565-8593-46b8eaad48a1")
  1448. )
  1449. (junction
  1450. (at 139.7 88.9)
  1451. (diameter 0)
  1452. (color 0 0 0 0)
  1453. (uuid "317cca94-80fd-4775-ac2a-d5280efe6004")
  1454. )
  1455. (junction
  1456. (at 36.83 35.56)
  1457. (diameter 0)
  1458. (color 0 0 0 0)
  1459. (uuid "865e1424-55c5-4fad-bb9f-04624d05a0c2")
  1460. )
  1461. (junction
  1462. (at 110.49 44.45)
  1463. (diameter 0)
  1464. (color 0 0 0 0)
  1465. (uuid "897353f3-41b3-4ece-9853-4fa3dd9f18eb")
  1466. )
  1467. (junction
  1468. (at 146.05 101.6)
  1469. (diameter 0)
  1470. (color 0 0 0 0)
  1471. (uuid "ad218807-557a-4d9f-b983-c9521571317a")
  1472. )
  1473. (junction
  1474. (at 76.2 57.15)
  1475. (diameter 0)
  1476. (color 0 0 0 0)
  1477. (uuid "b52faf30-9000-49ce-b92c-9caabdc4654b")
  1478. )
  1479. (junction
  1480. (at 116.84 57.15)
  1481. (diameter 0)
  1482. (color 0 0 0 0)
  1483. (uuid "dead67fd-1619-4772-96c9-3c8f196e885d")
  1484. )
  1485. (junction
  1486. (at 134.62 88.9)
  1487. (diameter 0)
  1488. (color 0 0 0 0)
  1489. (uuid "e586ffb1-7d4d-4eab-bfe0-e752061288f9")
  1490. )
  1491. (junction
  1492. (at 106.68 44.45)
  1493. (diameter 0)
  1494. (color 0 0 0 0)
  1495. (uuid "ea37b41c-93f3-4be6-b123-d8f243fcb0d9")
  1496. )
  1497. (junction
  1498. (at 69.85 44.45)
  1499. (diameter 0)
  1500. (color 0 0 0 0)
  1501. (uuid "ebbeee00-26e7-4b38-8559-9c269a8d2964")
  1502. )
  1503. (junction
  1504. (at 36.83 45.72)
  1505. (diameter 0)
  1506. (color 0 0 0 0)
  1507. (uuid "f280fd66-6076-4c72-848c-603fdd5488d0")
  1508. )
  1509. (wire
  1510. (pts
  1511. (xy 44.45 38.1) (xy 44.45 35.56)
  1512. )
  1513. (stroke
  1514. (width 0)
  1515. (type default)
  1516. )
  1517. (uuid "0a47da48-f958-4b89-8511-c8904959ba2a")
  1518. )
  1519. (wire
  1520. (pts
  1521. (xy 152.4 101.6) (xy 152.4 99.06)
  1522. )
  1523. (stroke
  1524. (width 0)
  1525. (type default)
  1526. )
  1527. (uuid "0ad78ee8-652a-4ed5-97f4-feaca49db5fc")
  1528. )
  1529. (wire
  1530. (pts
  1531. (xy 139.7 91.44) (xy 139.7 88.9)
  1532. )
  1533. (stroke
  1534. (width 0)
  1535. (type default)
  1536. )
  1537. (uuid "1132e00c-9ea4-4e6d-be33-20faae2a68da")
  1538. )
  1539. (wire
  1540. (pts
  1541. (xy 116.84 59.69) (xy 116.84 57.15)
  1542. )
  1543. (stroke
  1544. (width 0)
  1545. (type default)
  1546. )
  1547. (uuid "13144b3f-ffab-445c-bfc0-632de4be89f1")
  1548. )
  1549. (wire
  1550. (pts
  1551. (xy 69.85 46.99) (xy 69.85 44.45)
  1552. )
  1553. (stroke
  1554. (width 0)
  1555. (type default)
  1556. )
  1557. (uuid "14bc30b4-b8f7-4259-b000-21656da2ff16")
  1558. )
  1559. (wire
  1560. (pts
  1561. (xy 123.19 46.99) (xy 123.19 44.45)
  1562. )
  1563. (stroke
  1564. (width 0)
  1565. (type default)
  1566. )
  1567. (uuid "15deccac-4236-47a4-8d81-dca74b3492fc")
  1568. )
  1569. (wire
  1570. (pts
  1571. (xy 152.4 88.9) (xy 139.7 88.9)
  1572. )
  1573. (stroke
  1574. (width 0)
  1575. (type default)
  1576. )
  1577. (uuid "1e812fdd-0357-49f3-bedd-e1a452d56e67")
  1578. )
  1579. (wire
  1580. (pts
  1581. (xy 44.45 35.56) (xy 36.83 35.56)
  1582. )
  1583. (stroke
  1584. (width 0)
  1585. (type default)
  1586. )
  1587. (uuid "1f7e6d88-8fbc-4825-9a94-b0f9fd274f86")
  1588. )
  1589. (wire
  1590. (pts
  1591. (xy 139.7 101.6) (xy 139.7 99.06)
  1592. )
  1593. (stroke
  1594. (width 0)
  1595. (type default)
  1596. )
  1597. (uuid "27688a41-c749-45d0-b5b0-38402457c514")
  1598. )
  1599. (wire
  1600. (pts
  1601. (xy 139.7 101.6) (xy 146.05 101.6)
  1602. )
  1603. (stroke
  1604. (width 0)
  1605. (type default)
  1606. )
  1607. (uuid "2c925174-15c3-4340-a3c7-feeca375373a")
  1608. )
  1609. (wire
  1610. (pts
  1611. (xy 82.55 46.99) (xy 82.55 44.45)
  1612. )
  1613. (stroke
  1614. (width 0)
  1615. (type default)
  1616. )
  1617. (uuid "2eb8aebb-608e-48f4-9046-611e1536ada6")
  1618. )
  1619. (wire
  1620. (pts
  1621. (xy 82.55 54.61) (xy 82.55 57.15)
  1622. )
  1623. (stroke
  1624. (width 0)
  1625. (type default)
  1626. )
  1627. (uuid "30a283a2-562d-47f3-9b8a-e8745f4635be")
  1628. )
  1629. (wire
  1630. (pts
  1631. (xy 36.83 33.02) (xy 36.83 35.56)
  1632. )
  1633. (stroke
  1634. (width 0)
  1635. (type default)
  1636. )
  1637. (uuid "34b65585-4624-49e5-978e-8488f06cb95c")
  1638. )
  1639. (wire
  1640. (pts
  1641. (xy 69.85 44.45) (xy 82.55 44.45)
  1642. )
  1643. (stroke
  1644. (width 0)
  1645. (type default)
  1646. )
  1647. (uuid "3da44ad5-e97d-4f8d-adf9-75666b6dbba0")
  1648. )
  1649. (wire
  1650. (pts
  1651. (xy 86.36 31.75) (xy 92.71 31.75)
  1652. )
  1653. (stroke
  1654. (width 0)
  1655. (type default)
  1656. )
  1657. (uuid "3f12d84d-71d8-46b6-aa0f-d863f6bf00a0")
  1658. )
  1659. (wire
  1660. (pts
  1661. (xy 96.52 54.61) (xy 96.52 52.07)
  1662. )
  1663. (stroke
  1664. (width 0)
  1665. (type default)
  1666. )
  1667. (uuid "425ee1cd-a807-4d98-8c10-c9eaee1204ad")
  1668. )
  1669. (wire
  1670. (pts
  1671. (xy 146.05 101.6) (xy 152.4 101.6)
  1672. )
  1673. (stroke
  1674. (width 0)
  1675. (type default)
  1676. )
  1677. (uuid "4cabcb61-faca-4fb3-8e1f-5ba8543efc14")
  1678. )
  1679. (wire
  1680. (pts
  1681. (xy 123.19 44.45) (xy 110.49 44.45)
  1682. )
  1683. (stroke
  1684. (width 0)
  1685. (type default)
  1686. )
  1687. (uuid "4e4f450e-2666-4cae-9266-893124a0c016")
  1688. )
  1689. (wire
  1690. (pts
  1691. (xy 110.49 46.99) (xy 110.49 44.45)
  1692. )
  1693. (stroke
  1694. (width 0)
  1695. (type default)
  1696. )
  1697. (uuid "4e7c022e-71e8-41b7-bf6c-303d8b9b4afd")
  1698. )
  1699. (wire
  1700. (pts
  1701. (xy 88.9 44.45) (xy 86.36 44.45)
  1702. )
  1703. (stroke
  1704. (width 0)
  1705. (type default)
  1706. )
  1707. (uuid "66274450-d9ad-4077-a27b-8a4148208910")
  1708. )
  1709. (wire
  1710. (pts
  1711. (xy 36.83 45.72) (xy 36.83 40.64)
  1712. )
  1713. (stroke
  1714. (width 0)
  1715. (type default)
  1716. )
  1717. (uuid "66518aab-8597-4230-9851-5b86eb684fac")
  1718. )
  1719. (wire
  1720. (pts
  1721. (xy 152.4 91.44) (xy 152.4 88.9)
  1722. )
  1723. (stroke
  1724. (width 0)
  1725. (type default)
  1726. )
  1727. (uuid "667eb242-e8c5-49b2-9568-d8d711b964e6")
  1728. )
  1729. (wire
  1730. (pts
  1731. (xy 106.68 44.45) (xy 104.14 44.45)
  1732. )
  1733. (stroke
  1734. (width 0)
  1735. (type default)
  1736. )
  1737. (uuid "6890d598-fae5-46e8-91bb-e546b113232c")
  1738. )
  1739. (wire
  1740. (pts
  1741. (xy 116.84 57.15) (xy 110.49 57.15)
  1742. )
  1743. (stroke
  1744. (width 0)
  1745. (type default)
  1746. )
  1747. (uuid "71045a41-1044-4963-a08d-5fbaeb4f6cd9")
  1748. )
  1749. (wire
  1750. (pts
  1751. (xy 76.2 57.15) (xy 69.85 57.15)
  1752. )
  1753. (stroke
  1754. (width 0)
  1755. (type default)
  1756. )
  1757. (uuid "71a81fcf-9cdf-4022-9e57-a467bf10e402")
  1758. )
  1759. (wire
  1760. (pts
  1761. (xy 110.49 57.15) (xy 110.49 54.61)
  1762. )
  1763. (stroke
  1764. (width 0)
  1765. (type default)
  1766. )
  1767. (uuid "71d5f0ac-e7c9-4e83-9e7d-459543931b91")
  1768. )
  1769. (wire
  1770. (pts
  1771. (xy 100.33 31.75) (xy 106.68 31.75)
  1772. )
  1773. (stroke
  1774. (width 0)
  1775. (type default)
  1776. )
  1777. (uuid "7514e5cb-b1a1-47a9-9083-4cda6f2f4561")
  1778. )
  1779. (wire
  1780. (pts
  1781. (xy 134.62 88.9) (xy 134.62 111.76)
  1782. )
  1783. (stroke
  1784. (width 0)
  1785. (type default)
  1786. )
  1787. (uuid "79befc90-57be-488a-a547-d55e81ad277d")
  1788. )
  1789. (wire
  1790. (pts
  1791. (xy 123.19 57.15) (xy 116.84 57.15)
  1792. )
  1793. (stroke
  1794. (width 0)
  1795. (type default)
  1796. )
  1797. (uuid "8432dda4-a796-4e41-a3bb-7f46da4840e2")
  1798. )
  1799. (wire
  1800. (pts
  1801. (xy 134.62 85.09) (xy 134.62 88.9)
  1802. )
  1803. (stroke
  1804. (width 0)
  1805. (type default)
  1806. )
  1807. (uuid "889a3c59-3085-4626-b2ac-111221fa448b")
  1808. )
  1809. (wire
  1810. (pts
  1811. (xy 44.45 48.26) (xy 44.45 45.72)
  1812. )
  1813. (stroke
  1814. (width 0)
  1815. (type default)
  1816. )
  1817. (uuid "8991ed84-6f4d-4be0-a7f8-2d9bb4bcae3f")
  1818. )
  1819. (wire
  1820. (pts
  1821. (xy 36.83 48.26) (xy 36.83 45.72)
  1822. )
  1823. (stroke
  1824. (width 0)
  1825. (type default)
  1826. )
  1827. (uuid "8b231ef8-2d5d-4ff3-8f2f-f5fc741c96c1")
  1828. )
  1829. (wire
  1830. (pts
  1831. (xy 69.85 41.91) (xy 69.85 44.45)
  1832. )
  1833. (stroke
  1834. (width 0)
  1835. (type default)
  1836. )
  1837. (uuid "8f3b5265-01d5-47bf-8e5c-d6ef2e527955")
  1838. )
  1839. (wire
  1840. (pts
  1841. (xy 36.83 45.72) (xy 29.21 45.72)
  1842. )
  1843. (stroke
  1844. (width 0)
  1845. (type default)
  1846. )
  1847. (uuid "9298f94e-20f3-498a-95ff-684b2452b10c")
  1848. )
  1849. (wire
  1850. (pts
  1851. (xy 106.68 44.45) (xy 110.49 44.45)
  1852. )
  1853. (stroke
  1854. (width 0)
  1855. (type default)
  1856. )
  1857. (uuid "9c1f5684-8e10-4806-a32b-7018022ca931")
  1858. )
  1859. (wire
  1860. (pts
  1861. (xy 106.68 31.75) (xy 106.68 44.45)
  1862. )
  1863. (stroke
  1864. (width 0)
  1865. (type default)
  1866. )
  1867. (uuid "a2ba6e99-b428-4b2a-8342-852c6a2f4b6d")
  1868. )
  1869. (wire
  1870. (pts
  1871. (xy 69.85 57.15) (xy 69.85 54.61)
  1872. )
  1873. (stroke
  1874. (width 0)
  1875. (type default)
  1876. )
  1877. (uuid "a3768444-6a9c-4739-9921-f1aa006be1a3")
  1878. )
  1879. (wire
  1880. (pts
  1881. (xy 123.19 54.61) (xy 123.19 57.15)
  1882. )
  1883. (stroke
  1884. (width 0)
  1885. (type default)
  1886. )
  1887. (uuid "a804ab1e-a2ba-4b47-8496-ad71400f8f2a")
  1888. )
  1889. (wire
  1890. (pts
  1891. (xy 134.62 127) (xy 134.62 129.54)
  1892. )
  1893. (stroke
  1894. (width 0)
  1895. (type default)
  1896. )
  1897. (uuid "acab27a7-5c7c-4262-8095-4ffb776086a2")
  1898. )
  1899. (wire
  1900. (pts
  1901. (xy 134.62 88.9) (xy 139.7 88.9)
  1902. )
  1903. (stroke
  1904. (width 0)
  1905. (type default)
  1906. )
  1907. (uuid "b5a1ae7f-5634-419c-b473-3c038c33bafc")
  1908. )
  1909. (wire
  1910. (pts
  1911. (xy 86.36 44.45) (xy 86.36 31.75)
  1912. )
  1913. (stroke
  1914. (width 0)
  1915. (type default)
  1916. )
  1917. (uuid "c952b910-8131-439b-b2fe-ab18a305625e")
  1918. )
  1919. (wire
  1920. (pts
  1921. (xy 146.05 104.14) (xy 146.05 101.6)
  1922. )
  1923. (stroke
  1924. (width 0)
  1925. (type default)
  1926. )
  1927. (uuid "d2a4c796-1f69-446e-8650-57b48dc340e2")
  1928. )
  1929. (wire
  1930. (pts
  1931. (xy 123.19 41.91) (xy 123.19 44.45)
  1932. )
  1933. (stroke
  1934. (width 0)
  1935. (type default)
  1936. )
  1937. (uuid "e64daccc-2a6c-4540-9e9a-aea7e74494ab")
  1938. )
  1939. (wire
  1940. (pts
  1941. (xy 82.55 44.45) (xy 86.36 44.45)
  1942. )
  1943. (stroke
  1944. (width 0)
  1945. (type default)
  1946. )
  1947. (uuid "eeafd5c8-3a17-41c4-80ac-557eb0395e52")
  1948. )
  1949. (wire
  1950. (pts
  1951. (xy 82.55 57.15) (xy 76.2 57.15)
  1952. )
  1953. (stroke
  1954. (width 0)
  1955. (type default)
  1956. )
  1957. (uuid "f13519d9-4983-424d-92a7-ad9de3d5c8f5")
  1958. )
  1959. (wire
  1960. (pts
  1961. (xy 76.2 59.69) (xy 76.2 57.15)
  1962. )
  1963. (stroke
  1964. (width 0)
  1965. (type default)
  1966. )
  1967. (uuid "fe7efc60-21f0-47a6-bcf6-ba3529162e2c")
  1968. )
  1969. (rectangle
  1970. (start 62.23 17.78)
  1971. (end 134.62 72.39)
  1972. (stroke
  1973. (width 0)
  1974. (type default)
  1975. )
  1976. (fill
  1977. (type none)
  1978. )
  1979. (uuid 0ba6b499-0575-4ec4-a883-4b9c06960515)
  1980. )
  1981. (rectangle
  1982. (start 16.51 17.78)
  1983. (end 55.88 60.96)
  1984. (stroke
  1985. (width 0)
  1986. (type default)
  1987. )
  1988. (fill
  1989. (type none)
  1990. )
  1991. (uuid 68dd31cc-9394-40ce-9365-4b72cc51c9d4)
  1992. )
  1993. (text "Logic power section\n"
  1994. (exclude_from_sim no)
  1995. (at 72.39 19.812 0)
  1996. (effects
  1997. (font
  1998. (size 1.27 1.27)
  1999. )
  2000. )
  2001. (uuid "6093193c-5a35-4ac1-af77-ef0b20b24815")
  2002. )
  2003. (text "Power input section\n"
  2004. (exclude_from_sim no)
  2005. (at 27.178 20.066 0)
  2006. (effects
  2007. (font
  2008. (size 1.27 1.27)
  2009. )
  2010. )
  2011. (uuid "8834cd3d-9a52-4ab4-a037-3eb6121ac67e")
  2012. )
  2013. (hierarchical_label "LED_WARM"
  2014. (shape output)
  2015. (at 152.4 119.38 0)
  2016. (effects
  2017. (font
  2018. (size 1.27 1.27)
  2019. )
  2020. (justify left)
  2021. )
  2022. (uuid "308a00df-b4b2-4115-a250-feac505dc373")
  2023. )
  2024. (hierarchical_label "SWIO"
  2025. (shape bidirectional)
  2026. (at 152.4 116.84 0)
  2027. (effects
  2028. (font
  2029. (size 1.27 1.27)
  2030. )
  2031. (justify left)
  2032. )
  2033. (uuid "57f30c66-271d-4905-89c3-d6ed06ac43dd")
  2034. )
  2035. (hierarchical_label "LED_COLD"
  2036. (shape output)
  2037. (at 152.4 121.92 0)
  2038. (effects
  2039. (font
  2040. (size 1.27 1.27)
  2041. )
  2042. (justify left)
  2043. )
  2044. (uuid "5cf3604f-7770-441d-a60f-0c2335936838")
  2045. )
  2046. (symbol
  2047. (lib_id "power:GND")
  2048. (at 76.2 59.69 0)
  2049. (unit 1)
  2050. (exclude_from_sim no)
  2051. (in_bom yes)
  2052. (on_board yes)
  2053. (dnp no)
  2054. (fields_autoplaced yes)
  2055. (uuid "12ecf349-f3ce-46d4-99d3-36940bc39b4c")
  2056. (property "Reference" "#PWR02"
  2057. (at 76.2 66.04 0)
  2058. (effects
  2059. (font
  2060. (size 1.27 1.27)
  2061. )
  2062. (hide yes)
  2063. )
  2064. )
  2065. (property "Value" "GND"
  2066. (at 76.2 64.77 0)
  2067. (effects
  2068. (font
  2069. (size 1.27 1.27)
  2070. )
  2071. )
  2072. )
  2073. (property "Footprint" ""
  2074. (at 76.2 59.69 0)
  2075. (effects
  2076. (font
  2077. (size 1.27 1.27)
  2078. )
  2079. (hide yes)
  2080. )
  2081. )
  2082. (property "Datasheet" ""
  2083. (at 76.2 59.69 0)
  2084. (effects
  2085. (font
  2086. (size 1.27 1.27)
  2087. )
  2088. (hide yes)
  2089. )
  2090. )
  2091. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2092. (at 76.2 59.69 0)
  2093. (effects
  2094. (font
  2095. (size 1.27 1.27)
  2096. )
  2097. (hide yes)
  2098. )
  2099. )
  2100. (pin "1"
  2101. (uuid "6ec07465-a497-4f1c-a96a-f1362b7fb60e")
  2102. )
  2103. (instances
  2104. (project "cx-light"
  2105. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2106. (reference "#PWR02")
  2107. (unit 1)
  2108. )
  2109. )
  2110. )
  2111. )
  2112. (symbol
  2113. (lib_id "power:+3V3")
  2114. (at 134.62 85.09 0)
  2115. (unit 1)
  2116. (exclude_from_sim no)
  2117. (in_bom yes)
  2118. (on_board yes)
  2119. (dnp no)
  2120. (fields_autoplaced yes)
  2121. (uuid "1e0412b3-1935-4f29-a2b1-1d8816fdc2c5")
  2122. (property "Reference" "#PWR010"
  2123. (at 134.62 88.9 0)
  2124. (effects
  2125. (font
  2126. (size 1.27 1.27)
  2127. )
  2128. (hide yes)
  2129. )
  2130. )
  2131. (property "Value" "+3V3"
  2132. (at 134.62 80.01 0)
  2133. (effects
  2134. (font
  2135. (size 1.27 1.27)
  2136. )
  2137. )
  2138. )
  2139. (property "Footprint" ""
  2140. (at 134.62 85.09 0)
  2141. (effects
  2142. (font
  2143. (size 1.27 1.27)
  2144. )
  2145. (hide yes)
  2146. )
  2147. )
  2148. (property "Datasheet" ""
  2149. (at 134.62 85.09 0)
  2150. (effects
  2151. (font
  2152. (size 1.27 1.27)
  2153. )
  2154. (hide yes)
  2155. )
  2156. )
  2157. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2158. (at 134.62 85.09 0)
  2159. (effects
  2160. (font
  2161. (size 1.27 1.27)
  2162. )
  2163. (hide yes)
  2164. )
  2165. )
  2166. (pin "1"
  2167. (uuid "ebabc3a0-cdc3-44b6-9b2c-f0e049a56852")
  2168. )
  2169. (instances
  2170. (project "cx-light"
  2171. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2172. (reference "#PWR010")
  2173. (unit 1)
  2174. )
  2175. )
  2176. )
  2177. )
  2178. (symbol
  2179. (lib_id "power:GND")
  2180. (at 36.83 48.26 0)
  2181. (unit 1)
  2182. (exclude_from_sim no)
  2183. (in_bom yes)
  2184. (on_board yes)
  2185. (dnp no)
  2186. (fields_autoplaced yes)
  2187. (uuid "26c75e34-65b6-4de2-97a0-aa23abe6f7bd")
  2188. (property "Reference" "#PWR06"
  2189. (at 36.83 54.61 0)
  2190. (effects
  2191. (font
  2192. (size 1.27 1.27)
  2193. )
  2194. (hide yes)
  2195. )
  2196. )
  2197. (property "Value" "GND"
  2198. (at 36.83 53.34 0)
  2199. (effects
  2200. (font
  2201. (size 1.27 1.27)
  2202. )
  2203. )
  2204. )
  2205. (property "Footprint" ""
  2206. (at 36.83 48.26 0)
  2207. (effects
  2208. (font
  2209. (size 1.27 1.27)
  2210. )
  2211. (hide yes)
  2212. )
  2213. )
  2214. (property "Datasheet" ""
  2215. (at 36.83 48.26 0)
  2216. (effects
  2217. (font
  2218. (size 1.27 1.27)
  2219. )
  2220. (hide yes)
  2221. )
  2222. )
  2223. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2224. (at 36.83 48.26 0)
  2225. (effects
  2226. (font
  2227. (size 1.27 1.27)
  2228. )
  2229. (hide yes)
  2230. )
  2231. )
  2232. (pin "1"
  2233. (uuid "54cba4d2-bfe5-43a2-9d1e-0443e2dfb4bc")
  2234. )
  2235. (instances
  2236. (project "cx-light"
  2237. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2238. (reference "#PWR06")
  2239. (unit 1)
  2240. )
  2241. )
  2242. )
  2243. )
  2244. (symbol
  2245. (lib_id "Connector:Barrel_Jack_MountingPin")
  2246. (at 29.21 38.1 0)
  2247. (unit 1)
  2248. (exclude_from_sim no)
  2249. (in_bom yes)
  2250. (on_board yes)
  2251. (dnp no)
  2252. (fields_autoplaced yes)
  2253. (uuid "271b55f7-9589-4c02-aa90-c5783aa4367d")
  2254. (property "Reference" "J1"
  2255. (at 29.21 29.21 0)
  2256. (effects
  2257. (font
  2258. (size 1.27 1.27)
  2259. )
  2260. )
  2261. )
  2262. (property "Value" "Power"
  2263. (at 29.21 31.75 0)
  2264. (effects
  2265. (font
  2266. (size 1.27 1.27)
  2267. )
  2268. )
  2269. )
  2270. (property "Footprint" "Connector_BarrelJack:BarrelJack_Horizontal"
  2271. (at 30.48 39.116 0)
  2272. (effects
  2273. (font
  2274. (size 1.27 1.27)
  2275. )
  2276. (hide yes)
  2277. )
  2278. )
  2279. (property "Datasheet" "~"
  2280. (at 30.48 39.116 0)
  2281. (effects
  2282. (font
  2283. (size 1.27 1.27)
  2284. )
  2285. (hide yes)
  2286. )
  2287. )
  2288. (property "Description" "DC Barrel Jack with a mounting pin"
  2289. (at 29.21 38.1 0)
  2290. (effects
  2291. (font
  2292. (size 1.27 1.27)
  2293. )
  2294. (hide yes)
  2295. )
  2296. )
  2297. (pin "1"
  2298. (uuid "790ad78c-ce69-494e-b4ef-02f4f403e04b")
  2299. )
  2300. (pin "MP"
  2301. (uuid "b379af25-be30-4c0d-8585-5f73920f23ee")
  2302. )
  2303. (pin "2"
  2304. (uuid "21af0653-e040-4399-91c0-2cc8dca03b10")
  2305. )
  2306. (instances
  2307. (project ""
  2308. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2309. (reference "J1")
  2310. (unit 1)
  2311. )
  2312. )
  2313. )
  2314. )
  2315. (symbol
  2316. (lib_id "Device:C")
  2317. (at 152.4 95.25 0)
  2318. (unit 1)
  2319. (exclude_from_sim no)
  2320. (in_bom yes)
  2321. (on_board yes)
  2322. (dnp no)
  2323. (fields_autoplaced yes)
  2324. (uuid "30cd13c9-20af-4525-88dc-9d15a23f7c05")
  2325. (property "Reference" "C7"
  2326. (at 156.21 93.9799 0)
  2327. (effects
  2328. (font
  2329. (size 1.27 1.27)
  2330. )
  2331. (justify left)
  2332. )
  2333. )
  2334. (property "Value" "100n"
  2335. (at 156.21 96.5199 0)
  2336. (effects
  2337. (font
  2338. (size 1.27 1.27)
  2339. )
  2340. (justify left)
  2341. )
  2342. )
  2343. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  2344. (at 153.3652 99.06 0)
  2345. (effects
  2346. (font
  2347. (size 1.27 1.27)
  2348. )
  2349. (hide yes)
  2350. )
  2351. )
  2352. (property "Datasheet" "~"
  2353. (at 152.4 95.25 0)
  2354. (effects
  2355. (font
  2356. (size 1.27 1.27)
  2357. )
  2358. (hide yes)
  2359. )
  2360. )
  2361. (property "Description" "Unpolarized capacitor"
  2362. (at 152.4 95.25 0)
  2363. (effects
  2364. (font
  2365. (size 1.27 1.27)
  2366. )
  2367. (hide yes)
  2368. )
  2369. )
  2370. (pin "2"
  2371. (uuid "0ebaf6f6-d1d0-4953-8a48-dcf5159d6ca9")
  2372. )
  2373. (pin "1"
  2374. (uuid "a434ba1e-0712-47f4-b4c1-cbdbdac7be37")
  2375. )
  2376. (instances
  2377. (project "cx-light"
  2378. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2379. (reference "C7")
  2380. (unit 1)
  2381. )
  2382. )
  2383. )
  2384. )
  2385. (symbol
  2386. (lib_id "Device:C")
  2387. (at 110.49 50.8 0)
  2388. (unit 1)
  2389. (exclude_from_sim no)
  2390. (in_bom yes)
  2391. (on_board yes)
  2392. (dnp no)
  2393. (fields_autoplaced yes)
  2394. (uuid "50192688-c583-4317-85a1-a8e3fb995636")
  2395. (property "Reference" "C3"
  2396. (at 114.3 49.5299 0)
  2397. (effects
  2398. (font
  2399. (size 1.27 1.27)
  2400. )
  2401. (justify left)
  2402. )
  2403. )
  2404. (property "Value" "100n"
  2405. (at 114.3 52.0699 0)
  2406. (effects
  2407. (font
  2408. (size 1.27 1.27)
  2409. )
  2410. (justify left)
  2411. )
  2412. )
  2413. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  2414. (at 111.4552 54.61 0)
  2415. (effects
  2416. (font
  2417. (size 1.27 1.27)
  2418. )
  2419. (hide yes)
  2420. )
  2421. )
  2422. (property "Datasheet" "~"
  2423. (at 110.49 50.8 0)
  2424. (effects
  2425. (font
  2426. (size 1.27 1.27)
  2427. )
  2428. (hide yes)
  2429. )
  2430. )
  2431. (property "Description" "Unpolarized capacitor"
  2432. (at 110.49 50.8 0)
  2433. (effects
  2434. (font
  2435. (size 1.27 1.27)
  2436. )
  2437. (hide yes)
  2438. )
  2439. )
  2440. (pin "2"
  2441. (uuid "80feffca-9272-4469-93fe-0dc58eb02d45")
  2442. )
  2443. (pin "1"
  2444. (uuid "60b125ab-77f5-4c40-83b0-cea3fa6785d5")
  2445. )
  2446. (instances
  2447. (project "cx-light"
  2448. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2449. (reference "C3")
  2450. (unit 1)
  2451. )
  2452. )
  2453. )
  2454. )
  2455. (symbol
  2456. (lib_id "power:GND")
  2457. (at 146.05 104.14 0)
  2458. (unit 1)
  2459. (exclude_from_sim no)
  2460. (in_bom yes)
  2461. (on_board yes)
  2462. (dnp no)
  2463. (fields_autoplaced yes)
  2464. (uuid "538f3308-36b6-48cd-ae91-92345b028e4c")
  2465. (property "Reference" "#PWR011"
  2466. (at 146.05 110.49 0)
  2467. (effects
  2468. (font
  2469. (size 1.27 1.27)
  2470. )
  2471. (hide yes)
  2472. )
  2473. )
  2474. (property "Value" "GND"
  2475. (at 146.05 109.22 0)
  2476. (effects
  2477. (font
  2478. (size 1.27 1.27)
  2479. )
  2480. )
  2481. )
  2482. (property "Footprint" ""
  2483. (at 146.05 104.14 0)
  2484. (effects
  2485. (font
  2486. (size 1.27 1.27)
  2487. )
  2488. (hide yes)
  2489. )
  2490. )
  2491. (property "Datasheet" ""
  2492. (at 146.05 104.14 0)
  2493. (effects
  2494. (font
  2495. (size 1.27 1.27)
  2496. )
  2497. (hide yes)
  2498. )
  2499. )
  2500. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2501. (at 146.05 104.14 0)
  2502. (effects
  2503. (font
  2504. (size 1.27 1.27)
  2505. )
  2506. (hide yes)
  2507. )
  2508. )
  2509. (pin "1"
  2510. (uuid "a5d74e7f-5eb3-471b-a1ac-8d3e298af188")
  2511. )
  2512. (instances
  2513. (project "cx-light"
  2514. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2515. (reference "#PWR011")
  2516. (unit 1)
  2517. )
  2518. )
  2519. )
  2520. )
  2521. (symbol
  2522. (lib_id "Device:C_Polarized")
  2523. (at 44.45 41.91 0)
  2524. (unit 1)
  2525. (exclude_from_sim no)
  2526. (in_bom yes)
  2527. (on_board yes)
  2528. (dnp no)
  2529. (fields_autoplaced yes)
  2530. (uuid "5dfae0fa-598e-42e5-b61e-09b4db7cdffc")
  2531. (property "Reference" "C5"
  2532. (at 48.26 39.7509 0)
  2533. (effects
  2534. (font
  2535. (size 1.27 1.27)
  2536. )
  2537. (justify left)
  2538. )
  2539. )
  2540. (property "Value" "470u"
  2541. (at 48.26 42.2909 0)
  2542. (effects
  2543. (font
  2544. (size 1.27 1.27)
  2545. )
  2546. (justify left)
  2547. )
  2548. )
  2549. (property "Footprint" "Capacitor_SMD:CP_Elec_5x3.9"
  2550. (at 45.4152 45.72 0)
  2551. (effects
  2552. (font
  2553. (size 1.27 1.27)
  2554. )
  2555. (hide yes)
  2556. )
  2557. )
  2558. (property "Datasheet" "~"
  2559. (at 44.45 41.91 0)
  2560. (effects
  2561. (font
  2562. (size 1.27 1.27)
  2563. )
  2564. (hide yes)
  2565. )
  2566. )
  2567. (property "Description" "Polarized capacitor"
  2568. (at 44.45 41.91 0)
  2569. (effects
  2570. (font
  2571. (size 1.27 1.27)
  2572. )
  2573. (hide yes)
  2574. )
  2575. )
  2576. (pin "2"
  2577. (uuid "4aca8c5f-9b6b-4d7f-9825-3372dfc61d17")
  2578. )
  2579. (pin "1"
  2580. (uuid "13b4119b-e906-4250-8a3a-2febb67d7b2b")
  2581. )
  2582. (instances
  2583. (project "cx-light"
  2584. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2585. (reference "C5")
  2586. (unit 1)
  2587. )
  2588. )
  2589. )
  2590. )
  2591. (symbol
  2592. (lib_id "Regulator_Linear:LM1117MP-3.3")
  2593. (at 96.52 44.45 0)
  2594. (unit 1)
  2595. (exclude_from_sim no)
  2596. (in_bom yes)
  2597. (on_board yes)
  2598. (dnp no)
  2599. (fields_autoplaced yes)
  2600. (uuid "5ea9d699-f4aa-4322-85c7-b7f6b3241d5f")
  2601. (property "Reference" "U1"
  2602. (at 96.52 38.1 0)
  2603. (effects
  2604. (font
  2605. (size 1.27 1.27)
  2606. )
  2607. )
  2608. )
  2609. (property "Value" "LM1117MP-3.3"
  2610. (at 96.52 40.64 0)
  2611. (effects
  2612. (font
  2613. (size 1.27 1.27)
  2614. )
  2615. )
  2616. )
  2617. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
  2618. (at 96.52 44.45 0)
  2619. (effects
  2620. (font
  2621. (size 1.27 1.27)
  2622. )
  2623. (hide yes)
  2624. )
  2625. )
  2626. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  2627. (at 96.52 44.45 0)
  2628. (effects
  2629. (font
  2630. (size 1.27 1.27)
  2631. )
  2632. (hide yes)
  2633. )
  2634. )
  2635. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
  2636. (at 96.52 44.45 0)
  2637. (effects
  2638. (font
  2639. (size 1.27 1.27)
  2640. )
  2641. (hide yes)
  2642. )
  2643. )
  2644. (pin "1"
  2645. (uuid "edf8a18c-55a4-445f-9e0f-87df3e5ee97d")
  2646. )
  2647. (pin "2"
  2648. (uuid "e9766a53-0d51-43ab-aee1-8905be1e84e2")
  2649. )
  2650. (pin "3"
  2651. (uuid "fc293e61-7be4-4b9d-b70d-1b1d0a127fb3")
  2652. )
  2653. (instances
  2654. (project ""
  2655. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2656. (reference "U1")
  2657. (unit 1)
  2658. )
  2659. )
  2660. )
  2661. )
  2662. (symbol
  2663. (lib_id "Device:C")
  2664. (at 139.7 95.25 0)
  2665. (unit 1)
  2666. (exclude_from_sim no)
  2667. (in_bom yes)
  2668. (on_board yes)
  2669. (dnp no)
  2670. (fields_autoplaced yes)
  2671. (uuid "6486ff5d-317c-4bbf-b3c3-88ffa0fb8f95")
  2672. (property "Reference" "C6"
  2673. (at 143.51 93.9799 0)
  2674. (effects
  2675. (font
  2676. (size 1.27 1.27)
  2677. )
  2678. (justify left)
  2679. )
  2680. )
  2681. (property "Value" "100n"
  2682. (at 143.51 96.5199 0)
  2683. (effects
  2684. (font
  2685. (size 1.27 1.27)
  2686. )
  2687. (justify left)
  2688. )
  2689. )
  2690. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  2691. (at 140.6652 99.06 0)
  2692. (effects
  2693. (font
  2694. (size 1.27 1.27)
  2695. )
  2696. (hide yes)
  2697. )
  2698. )
  2699. (property "Datasheet" "~"
  2700. (at 139.7 95.25 0)
  2701. (effects
  2702. (font
  2703. (size 1.27 1.27)
  2704. )
  2705. (hide yes)
  2706. )
  2707. )
  2708. (property "Description" "Unpolarized capacitor"
  2709. (at 139.7 95.25 0)
  2710. (effects
  2711. (font
  2712. (size 1.27 1.27)
  2713. )
  2714. (hide yes)
  2715. )
  2716. )
  2717. (pin "2"
  2718. (uuid "48a5e2b4-a1ad-47b2-8792-fb898a3abd1a")
  2719. )
  2720. (pin "1"
  2721. (uuid "da5f99e6-d45a-4f9b-a5c1-346897a2b224")
  2722. )
  2723. (instances
  2724. (project "cx-light"
  2725. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2726. (reference "C6")
  2727. (unit 1)
  2728. )
  2729. )
  2730. )
  2731. )
  2732. (symbol
  2733. (lib_id "Device:C")
  2734. (at 82.55 50.8 0)
  2735. (unit 1)
  2736. (exclude_from_sim no)
  2737. (in_bom yes)
  2738. (on_board yes)
  2739. (dnp no)
  2740. (fields_autoplaced yes)
  2741. (uuid "7119a8d5-b26f-445f-b5e9-409997a94908")
  2742. (property "Reference" "C1"
  2743. (at 86.36 49.5299 0)
  2744. (effects
  2745. (font
  2746. (size 1.27 1.27)
  2747. )
  2748. (justify left)
  2749. )
  2750. )
  2751. (property "Value" "100n"
  2752. (at 86.36 52.0699 0)
  2753. (effects
  2754. (font
  2755. (size 1.27 1.27)
  2756. )
  2757. (justify left)
  2758. )
  2759. )
  2760. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  2761. (at 83.5152 54.61 0)
  2762. (effects
  2763. (font
  2764. (size 1.27 1.27)
  2765. )
  2766. (hide yes)
  2767. )
  2768. )
  2769. (property "Datasheet" "~"
  2770. (at 82.55 50.8 0)
  2771. (effects
  2772. (font
  2773. (size 1.27 1.27)
  2774. )
  2775. (hide yes)
  2776. )
  2777. )
  2778. (property "Description" "Unpolarized capacitor"
  2779. (at 82.55 50.8 0)
  2780. (effects
  2781. (font
  2782. (size 1.27 1.27)
  2783. )
  2784. (hide yes)
  2785. )
  2786. )
  2787. (pin "2"
  2788. (uuid "073e1dc7-529f-474e-9dad-0f940a3c41de")
  2789. )
  2790. (pin "1"
  2791. (uuid "b7bff0a3-857b-4636-b4a4-10a6653bd0ae")
  2792. )
  2793. (instances
  2794. (project ""
  2795. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2796. (reference "C1")
  2797. (unit 1)
  2798. )
  2799. )
  2800. )
  2801. )
  2802. (symbol
  2803. (lib_id "power:GND")
  2804. (at 134.62 129.54 0)
  2805. (unit 1)
  2806. (exclude_from_sim no)
  2807. (in_bom yes)
  2808. (on_board yes)
  2809. (dnp no)
  2810. (fields_autoplaced yes)
  2811. (uuid "7671b330-83fe-43eb-9d13-970fe0d179ab")
  2812. (property "Reference" "#PWR09"
  2813. (at 134.62 135.89 0)
  2814. (effects
  2815. (font
  2816. (size 1.27 1.27)
  2817. )
  2818. (hide yes)
  2819. )
  2820. )
  2821. (property "Value" "GND"
  2822. (at 134.62 134.62 0)
  2823. (effects
  2824. (font
  2825. (size 1.27 1.27)
  2826. )
  2827. )
  2828. )
  2829. (property "Footprint" ""
  2830. (at 134.62 129.54 0)
  2831. (effects
  2832. (font
  2833. (size 1.27 1.27)
  2834. )
  2835. (hide yes)
  2836. )
  2837. )
  2838. (property "Datasheet" ""
  2839. (at 134.62 129.54 0)
  2840. (effects
  2841. (font
  2842. (size 1.27 1.27)
  2843. )
  2844. (hide yes)
  2845. )
  2846. )
  2847. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2848. (at 134.62 129.54 0)
  2849. (effects
  2850. (font
  2851. (size 1.27 1.27)
  2852. )
  2853. (hide yes)
  2854. )
  2855. )
  2856. (pin "1"
  2857. (uuid "de98936a-7cfb-4202-8826-276d199eb454")
  2858. )
  2859. (instances
  2860. (project "cx-light"
  2861. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2862. (reference "#PWR09")
  2863. (unit 1)
  2864. )
  2865. )
  2866. )
  2867. )
  2868. (symbol
  2869. (lib_id "power:GND")
  2870. (at 116.84 59.69 0)
  2871. (unit 1)
  2872. (exclude_from_sim no)
  2873. (in_bom yes)
  2874. (on_board yes)
  2875. (dnp no)
  2876. (fields_autoplaced yes)
  2877. (uuid "9812c00d-377d-45aa-a650-0ddd5650ebc5")
  2878. (property "Reference" "#PWR03"
  2879. (at 116.84 66.04 0)
  2880. (effects
  2881. (font
  2882. (size 1.27 1.27)
  2883. )
  2884. (hide yes)
  2885. )
  2886. )
  2887. (property "Value" "GND"
  2888. (at 116.84 64.77 0)
  2889. (effects
  2890. (font
  2891. (size 1.27 1.27)
  2892. )
  2893. )
  2894. )
  2895. (property "Footprint" ""
  2896. (at 116.84 59.69 0)
  2897. (effects
  2898. (font
  2899. (size 1.27 1.27)
  2900. )
  2901. (hide yes)
  2902. )
  2903. )
  2904. (property "Datasheet" ""
  2905. (at 116.84 59.69 0)
  2906. (effects
  2907. (font
  2908. (size 1.27 1.27)
  2909. )
  2910. (hide yes)
  2911. )
  2912. )
  2913. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2914. (at 116.84 59.69 0)
  2915. (effects
  2916. (font
  2917. (size 1.27 1.27)
  2918. )
  2919. (hide yes)
  2920. )
  2921. )
  2922. (pin "1"
  2923. (uuid "c0718c8c-b95c-4545-b4e1-4320de035f4c")
  2924. )
  2925. (instances
  2926. (project "cx-light"
  2927. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2928. (reference "#PWR03")
  2929. (unit 1)
  2930. )
  2931. )
  2932. )
  2933. )
  2934. (symbol
  2935. (lib_id "power:GND")
  2936. (at 44.45 48.26 0)
  2937. (unit 1)
  2938. (exclude_from_sim no)
  2939. (in_bom yes)
  2940. (on_board yes)
  2941. (dnp no)
  2942. (fields_autoplaced yes)
  2943. (uuid "9cc3f895-6d8b-4edf-8897-c1845474901f")
  2944. (property "Reference" "#PWR08"
  2945. (at 44.45 54.61 0)
  2946. (effects
  2947. (font
  2948. (size 1.27 1.27)
  2949. )
  2950. (hide yes)
  2951. )
  2952. )
  2953. (property "Value" "GND"
  2954. (at 44.45 53.34 0)
  2955. (effects
  2956. (font
  2957. (size 1.27 1.27)
  2958. )
  2959. )
  2960. )
  2961. (property "Footprint" ""
  2962. (at 44.45 48.26 0)
  2963. (effects
  2964. (font
  2965. (size 1.27 1.27)
  2966. )
  2967. (hide yes)
  2968. )
  2969. )
  2970. (property "Datasheet" ""
  2971. (at 44.45 48.26 0)
  2972. (effects
  2973. (font
  2974. (size 1.27 1.27)
  2975. )
  2976. (hide yes)
  2977. )
  2978. )
  2979. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2980. (at 44.45 48.26 0)
  2981. (effects
  2982. (font
  2983. (size 1.27 1.27)
  2984. )
  2985. (hide yes)
  2986. )
  2987. )
  2988. (pin "1"
  2989. (uuid "6e347e5e-784e-4c3a-a6c0-9405e3ab460f")
  2990. )
  2991. (instances
  2992. (project "cx-light"
  2993. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  2994. (reference "#PWR08")
  2995. (unit 1)
  2996. )
  2997. )
  2998. )
  2999. )
  3000. (symbol
  3001. (lib_id "power:+5V")
  3002. (at 36.83 33.02 0)
  3003. (unit 1)
  3004. (exclude_from_sim no)
  3005. (in_bom yes)
  3006. (on_board yes)
  3007. (dnp no)
  3008. (fields_autoplaced yes)
  3009. (uuid "a876cbfd-447e-49d8-984d-43bca39b8e8a")
  3010. (property "Reference" "#PWR07"
  3011. (at 36.83 36.83 0)
  3012. (effects
  3013. (font
  3014. (size 1.27 1.27)
  3015. )
  3016. (hide yes)
  3017. )
  3018. )
  3019. (property "Value" "+5V"
  3020. (at 36.83 27.94 0)
  3021. (effects
  3022. (font
  3023. (size 1.27 1.27)
  3024. )
  3025. )
  3026. )
  3027. (property "Footprint" ""
  3028. (at 36.83 33.02 0)
  3029. (effects
  3030. (font
  3031. (size 1.27 1.27)
  3032. )
  3033. (hide yes)
  3034. )
  3035. )
  3036. (property "Datasheet" ""
  3037. (at 36.83 33.02 0)
  3038. (effects
  3039. (font
  3040. (size 1.27 1.27)
  3041. )
  3042. (hide yes)
  3043. )
  3044. )
  3045. (property "Description" "Power symbol creates a global label with name \"+5V\""
  3046. (at 36.83 33.02 0)
  3047. (effects
  3048. (font
  3049. (size 1.27 1.27)
  3050. )
  3051. (hide yes)
  3052. )
  3053. )
  3054. (pin "1"
  3055. (uuid "4d8b5686-d31a-4bb3-84fa-dfc4e832224b")
  3056. )
  3057. (instances
  3058. (project "cx-light"
  3059. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  3060. (reference "#PWR07")
  3061. (unit 1)
  3062. )
  3063. )
  3064. )
  3065. )
  3066. (symbol
  3067. (lib_id "Device:C_Polarized")
  3068. (at 123.19 50.8 0)
  3069. (unit 1)
  3070. (exclude_from_sim no)
  3071. (in_bom yes)
  3072. (on_board yes)
  3073. (dnp no)
  3074. (fields_autoplaced yes)
  3075. (uuid "acecdb8c-132b-4662-a61b-7795e8f90683")
  3076. (property "Reference" "C4"
  3077. (at 127 48.6409 0)
  3078. (effects
  3079. (font
  3080. (size 1.27 1.27)
  3081. )
  3082. (justify left)
  3083. )
  3084. )
  3085. (property "Value" "100u"
  3086. (at 127 51.1809 0)
  3087. (effects
  3088. (font
  3089. (size 1.27 1.27)
  3090. )
  3091. (justify left)
  3092. )
  3093. )
  3094. (property "Footprint" "Capacitor_SMD:CP_Elec_5x3.9"
  3095. (at 124.1552 54.61 0)
  3096. (effects
  3097. (font
  3098. (size 1.27 1.27)
  3099. )
  3100. (hide yes)
  3101. )
  3102. )
  3103. (property "Datasheet" "~"
  3104. (at 123.19 50.8 0)
  3105. (effects
  3106. (font
  3107. (size 1.27 1.27)
  3108. )
  3109. (hide yes)
  3110. )
  3111. )
  3112. (property "Description" "Polarized capacitor"
  3113. (at 123.19 50.8 0)
  3114. (effects
  3115. (font
  3116. (size 1.27 1.27)
  3117. )
  3118. (hide yes)
  3119. )
  3120. )
  3121. (pin "2"
  3122. (uuid "bd387c84-c544-4d67-868c-2acce8553bc0")
  3123. )
  3124. (pin "1"
  3125. (uuid "64f00bc6-08cc-495a-9887-dbab93684fa9")
  3126. )
  3127. (instances
  3128. (project "cx-light"
  3129. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  3130. (reference "C4")
  3131. (unit 1)
  3132. )
  3133. )
  3134. )
  3135. )
  3136. (symbol
  3137. (lib_id "power:+5V")
  3138. (at 69.85 41.91 0)
  3139. (unit 1)
  3140. (exclude_from_sim no)
  3141. (in_bom yes)
  3142. (on_board yes)
  3143. (dnp no)
  3144. (fields_autoplaced yes)
  3145. (uuid "b86ddf95-9e33-4008-851b-a3a02051959d")
  3146. (property "Reference" "#PWR05"
  3147. (at 69.85 45.72 0)
  3148. (effects
  3149. (font
  3150. (size 1.27 1.27)
  3151. )
  3152. (hide yes)
  3153. )
  3154. )
  3155. (property "Value" "+5V"
  3156. (at 69.85 36.83 0)
  3157. (effects
  3158. (font
  3159. (size 1.27 1.27)
  3160. )
  3161. )
  3162. )
  3163. (property "Footprint" ""
  3164. (at 69.85 41.91 0)
  3165. (effects
  3166. (font
  3167. (size 1.27 1.27)
  3168. )
  3169. (hide yes)
  3170. )
  3171. )
  3172. (property "Datasheet" ""
  3173. (at 69.85 41.91 0)
  3174. (effects
  3175. (font
  3176. (size 1.27 1.27)
  3177. )
  3178. (hide yes)
  3179. )
  3180. )
  3181. (property "Description" "Power symbol creates a global label with name \"+5V\""
  3182. (at 69.85 41.91 0)
  3183. (effects
  3184. (font
  3185. (size 1.27 1.27)
  3186. )
  3187. (hide yes)
  3188. )
  3189. )
  3190. (pin "1"
  3191. (uuid "dc03b4dd-0e25-4b8f-929e-edfcc4a22d2e")
  3192. )
  3193. (instances
  3194. (project ""
  3195. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  3196. (reference "#PWR05")
  3197. (unit 1)
  3198. )
  3199. )
  3200. )
  3201. )
  3202. (symbol
  3203. (lib_id "Device:D")
  3204. (at 96.52 31.75 0)
  3205. (unit 1)
  3206. (exclude_from_sim no)
  3207. (in_bom yes)
  3208. (on_board yes)
  3209. (dnp no)
  3210. (fields_autoplaced yes)
  3211. (uuid "c2db3462-fb56-4b08-8a14-4f7daa4c5554")
  3212. (property "Reference" "D1"
  3213. (at 96.52 25.4 0)
  3214. (effects
  3215. (font
  3216. (size 1.27 1.27)
  3217. )
  3218. )
  3219. )
  3220. (property "Value" "1n4004FL"
  3221. (at 96.52 27.94 0)
  3222. (effects
  3223. (font
  3224. (size 1.27 1.27)
  3225. )
  3226. )
  3227. )
  3228. (property "Footprint" "Diode_SMD:D_SOD-123F"
  3229. (at 96.52 31.75 0)
  3230. (effects
  3231. (font
  3232. (size 1.27 1.27)
  3233. )
  3234. (hide yes)
  3235. )
  3236. )
  3237. (property "Datasheet" "~"
  3238. (at 96.52 31.75 0)
  3239. (effects
  3240. (font
  3241. (size 1.27 1.27)
  3242. )
  3243. (hide yes)
  3244. )
  3245. )
  3246. (property "Description" "Diode"
  3247. (at 96.52 31.75 0)
  3248. (effects
  3249. (font
  3250. (size 1.27 1.27)
  3251. )
  3252. (hide yes)
  3253. )
  3254. )
  3255. (property "Sim.Device" "D"
  3256. (at 96.52 31.75 0)
  3257. (effects
  3258. (font
  3259. (size 1.27 1.27)
  3260. )
  3261. (hide yes)
  3262. )
  3263. )
  3264. (property "Sim.Pins" "1=K 2=A"
  3265. (at 96.52 31.75 0)
  3266. (effects
  3267. (font
  3268. (size 1.27 1.27)
  3269. )
  3270. (hide yes)
  3271. )
  3272. )
  3273. (pin "1"
  3274. (uuid "1de8804f-71d3-4d69-9ccd-fa5a8e4ce990")
  3275. )
  3276. (pin "2"
  3277. (uuid "7a331f46-bf27-45cb-b292-6a9c74fda731")
  3278. )
  3279. (instances
  3280. (project ""
  3281. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  3282. (reference "D1")
  3283. (unit 1)
  3284. )
  3285. )
  3286. )
  3287. )
  3288. (symbol
  3289. (lib_id "Device:C_Polarized")
  3290. (at 69.85 50.8 0)
  3291. (unit 1)
  3292. (exclude_from_sim no)
  3293. (in_bom yes)
  3294. (on_board yes)
  3295. (dnp no)
  3296. (fields_autoplaced yes)
  3297. (uuid "dd17d59c-a16a-43ea-a258-dfdc982b3946")
  3298. (property "Reference" "C2"
  3299. (at 73.66 48.6409 0)
  3300. (effects
  3301. (font
  3302. (size 1.27 1.27)
  3303. )
  3304. (justify left)
  3305. )
  3306. )
  3307. (property "Value" "10u"
  3308. (at 73.66 51.1809 0)
  3309. (effects
  3310. (font
  3311. (size 1.27 1.27)
  3312. )
  3313. (justify left)
  3314. )
  3315. )
  3316. (property "Footprint" "Capacitor_SMD:CP_Elec_5x3.9"
  3317. (at 70.8152 54.61 0)
  3318. (effects
  3319. (font
  3320. (size 1.27 1.27)
  3321. )
  3322. (hide yes)
  3323. )
  3324. )
  3325. (property "Datasheet" "~"
  3326. (at 69.85 50.8 0)
  3327. (effects
  3328. (font
  3329. (size 1.27 1.27)
  3330. )
  3331. (hide yes)
  3332. )
  3333. )
  3334. (property "Description" "Polarized capacitor"
  3335. (at 69.85 50.8 0)
  3336. (effects
  3337. (font
  3338. (size 1.27 1.27)
  3339. )
  3340. (hide yes)
  3341. )
  3342. )
  3343. (pin "2"
  3344. (uuid "70536d83-9ca9-4357-a1b6-9db4c5390de4")
  3345. )
  3346. (pin "1"
  3347. (uuid "de67a0f5-ff62-456e-b5ba-314cb493441b")
  3348. )
  3349. (instances
  3350. (project ""
  3351. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  3352. (reference "C2")
  3353. (unit 1)
  3354. )
  3355. )
  3356. )
  3357. )
  3358. (symbol
  3359. (lib_id "power:GND")
  3360. (at 96.52 54.61 0)
  3361. (unit 1)
  3362. (exclude_from_sim no)
  3363. (in_bom yes)
  3364. (on_board yes)
  3365. (dnp no)
  3366. (fields_autoplaced yes)
  3367. (uuid "e349a6c6-f4d2-43fe-bd1c-5e9074460aeb")
  3368. (property "Reference" "#PWR01"
  3369. (at 96.52 60.96 0)
  3370. (effects
  3371. (font
  3372. (size 1.27 1.27)
  3373. )
  3374. (hide yes)
  3375. )
  3376. )
  3377. (property "Value" "GND"
  3378. (at 96.52 59.69 0)
  3379. (effects
  3380. (font
  3381. (size 1.27 1.27)
  3382. )
  3383. )
  3384. )
  3385. (property "Footprint" ""
  3386. (at 96.52 54.61 0)
  3387. (effects
  3388. (font
  3389. (size 1.27 1.27)
  3390. )
  3391. (hide yes)
  3392. )
  3393. )
  3394. (property "Datasheet" ""
  3395. (at 96.52 54.61 0)
  3396. (effects
  3397. (font
  3398. (size 1.27 1.27)
  3399. )
  3400. (hide yes)
  3401. )
  3402. )
  3403. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3404. (at 96.52 54.61 0)
  3405. (effects
  3406. (font
  3407. (size 1.27 1.27)
  3408. )
  3409. (hide yes)
  3410. )
  3411. )
  3412. (pin "1"
  3413. (uuid "87a4b4fe-b95f-4f7f-b656-29a327211e01")
  3414. )
  3415. (instances
  3416. (project ""
  3417. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  3418. (reference "#PWR01")
  3419. (unit 1)
  3420. )
  3421. )
  3422. )
  3423. )
  3424. (symbol
  3425. (lib_id "MCU_WCH_CH32V0:CH32V003JxMx")
  3426. (at 134.62 119.38 0)
  3427. (unit 1)
  3428. (exclude_from_sim no)
  3429. (in_bom yes)
  3430. (on_board yes)
  3431. (dnp no)
  3432. (uuid "ed5318f2-4497-45a5-b79b-ae68d635e9fb")
  3433. (property "Reference" "U2"
  3434. (at 135.636 112.776 0)
  3435. (effects
  3436. (font
  3437. (size 1.27 1.27)
  3438. )
  3439. (justify left)
  3440. )
  3441. )
  3442. (property "Value" "CH32V003"
  3443. (at 119.38 112.776 0)
  3444. (effects
  3445. (font
  3446. (size 1.27 1.27)
  3447. )
  3448. (justify left)
  3449. )
  3450. )
  3451. (property "Footprint" "Package_SO:SOP-8_3.9x4.9mm_P1.27mm"
  3452. (at 134.62 119.38 0)
  3453. (effects
  3454. (font
  3455. (size 1.27 1.27)
  3456. )
  3457. (hide yes)
  3458. )
  3459. )
  3460. (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
  3461. (at 134.62 119.38 0)
  3462. (effects
  3463. (font
  3464. (size 1.27 1.27)
  3465. )
  3466. (hide yes)
  3467. )
  3468. )
  3469. (property "Description" "CH32V003 series are industrial-grade general-purpose microcontrollers designed based on 32-bit RISC-V instruction set and architecture. It adopts QingKe V2A core, RV32EC instruction set, and supports 2 levels of interrupt nesting. The series are mounted with rich peripheral interfaces and function modules. Its internal organizational structure meets the low-cost and low-power embedded application scenarios."
  3470. (at 134.62 119.38 0)
  3471. (effects
  3472. (font
  3473. (size 1.27 1.27)
  3474. )
  3475. (hide yes)
  3476. )
  3477. )
  3478. (pin "1"
  3479. (uuid "c14138b6-0da4-497b-b742-81c2dd35e939")
  3480. )
  3481. (pin "4"
  3482. (uuid "fe516015-269f-4b32-bc33-fe86403d361c")
  3483. )
  3484. (pin "6"
  3485. (uuid "63097911-8ac9-4c23-b4f1-9c4d097d4466")
  3486. )
  3487. (pin "5"
  3488. (uuid "4c94fc19-53fa-4ace-9eb1-d089233083be")
  3489. )
  3490. (pin "2"
  3491. (uuid "a297e6c5-c959-47f6-ad53-6b35f95374e0")
  3492. )
  3493. (pin "7"
  3494. (uuid "4407e496-1565-4b5b-bbfe-cde8d4b815f7")
  3495. )
  3496. (pin "8"
  3497. (uuid "2a1f1318-a8aa-40bb-b7a2-92833c161a6b")
  3498. )
  3499. (pin "3"
  3500. (uuid "0c5e1766-cbf7-4f34-89de-cbfa21cf4fd4")
  3501. )
  3502. (instances
  3503. (project ""
  3504. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  3505. (reference "U2")
  3506. (unit 1)
  3507. )
  3508. )
  3509. )
  3510. )
  3511. (symbol
  3512. (lib_id "power:+3V3")
  3513. (at 123.19 41.91 0)
  3514. (unit 1)
  3515. (exclude_from_sim no)
  3516. (in_bom yes)
  3517. (on_board yes)
  3518. (dnp no)
  3519. (fields_autoplaced yes)
  3520. (uuid "fbfacf89-8f81-4a31-b116-5bdb6af0e7f9")
  3521. (property "Reference" "#PWR04"
  3522. (at 123.19 45.72 0)
  3523. (effects
  3524. (font
  3525. (size 1.27 1.27)
  3526. )
  3527. (hide yes)
  3528. )
  3529. )
  3530. (property "Value" "+3V3"
  3531. (at 123.19 36.83 0)
  3532. (effects
  3533. (font
  3534. (size 1.27 1.27)
  3535. )
  3536. )
  3537. )
  3538. (property "Footprint" ""
  3539. (at 123.19 41.91 0)
  3540. (effects
  3541. (font
  3542. (size 1.27 1.27)
  3543. )
  3544. (hide yes)
  3545. )
  3546. )
  3547. (property "Datasheet" ""
  3548. (at 123.19 41.91 0)
  3549. (effects
  3550. (font
  3551. (size 1.27 1.27)
  3552. )
  3553. (hide yes)
  3554. )
  3555. )
  3556. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  3557. (at 123.19 41.91 0)
  3558. (effects
  3559. (font
  3560. (size 1.27 1.27)
  3561. )
  3562. (hide yes)
  3563. )
  3564. )
  3565. (pin "1"
  3566. (uuid "2eb6ee7d-b565-4a88-8eb7-7ff6ecb3344e")
  3567. )
  3568. (instances
  3569. (project ""
  3570. (path "/e33c5541-4177-4fec-9d3f-c8377967de24"
  3571. (reference "#PWR04")
  3572. (unit 1)
  3573. )
  3574. )
  3575. )
  3576. )
  3577. (sheet_instances
  3578. (path "/"
  3579. (page "1")
  3580. )
  3581. )
  3582. )