keyboard.kicad_sch 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775
  1. (kicad_sch
  2. (version 20250114)
  3. (generator "eeschema")
  4. (generator_version "9.0")
  5. (uuid "0fcb8591-84ba-410e-8f15-e1153a834af1")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Device:C"
  9. (pin_numbers
  10. (hide yes)
  11. )
  12. (pin_names
  13. (offset 0.254)
  14. )
  15. (exclude_from_sim no)
  16. (in_bom yes)
  17. (on_board yes)
  18. (property "Reference" "C"
  19. (at 0.635 2.54 0)
  20. (effects
  21. (font
  22. (size 1.27 1.27)
  23. )
  24. (justify left)
  25. )
  26. )
  27. (property "Value" "C"
  28. (at 0.635 -2.54 0)
  29. (effects
  30. (font
  31. (size 1.27 1.27)
  32. )
  33. (justify left)
  34. )
  35. )
  36. (property "Footprint" ""
  37. (at 0.9652 -3.81 0)
  38. (effects
  39. (font
  40. (size 1.27 1.27)
  41. )
  42. (hide yes)
  43. )
  44. )
  45. (property "Datasheet" "~"
  46. (at 0 0 0)
  47. (effects
  48. (font
  49. (size 1.27 1.27)
  50. )
  51. (hide yes)
  52. )
  53. )
  54. (property "Description" "Unpolarized capacitor"
  55. (at 0 0 0)
  56. (effects
  57. (font
  58. (size 1.27 1.27)
  59. )
  60. (hide yes)
  61. )
  62. )
  63. (property "ki_keywords" "cap capacitor"
  64. (at 0 0 0)
  65. (effects
  66. (font
  67. (size 1.27 1.27)
  68. )
  69. (hide yes)
  70. )
  71. )
  72. (property "ki_fp_filters" "C_*"
  73. (at 0 0 0)
  74. (effects
  75. (font
  76. (size 1.27 1.27)
  77. )
  78. (hide yes)
  79. )
  80. )
  81. (symbol "C_0_1"
  82. (polyline
  83. (pts
  84. (xy -2.032 0.762) (xy 2.032 0.762)
  85. )
  86. (stroke
  87. (width 0.508)
  88. (type default)
  89. )
  90. (fill
  91. (type none)
  92. )
  93. )
  94. (polyline
  95. (pts
  96. (xy -2.032 -0.762) (xy 2.032 -0.762)
  97. )
  98. (stroke
  99. (width 0.508)
  100. (type default)
  101. )
  102. (fill
  103. (type none)
  104. )
  105. )
  106. )
  107. (symbol "C_1_1"
  108. (pin passive line
  109. (at 0 3.81 270)
  110. (length 2.794)
  111. (name "~"
  112. (effects
  113. (font
  114. (size 1.27 1.27)
  115. )
  116. )
  117. )
  118. (number "1"
  119. (effects
  120. (font
  121. (size 1.27 1.27)
  122. )
  123. )
  124. )
  125. )
  126. (pin passive line
  127. (at 0 -3.81 90)
  128. (length 2.794)
  129. (name "~"
  130. (effects
  131. (font
  132. (size 1.27 1.27)
  133. )
  134. )
  135. )
  136. (number "2"
  137. (effects
  138. (font
  139. (size 1.27 1.27)
  140. )
  141. )
  142. )
  143. )
  144. )
  145. (embedded_fonts no)
  146. )
  147. (symbol "Device:R"
  148. (pin_numbers
  149. (hide yes)
  150. )
  151. (pin_names
  152. (offset 0)
  153. )
  154. (exclude_from_sim no)
  155. (in_bom yes)
  156. (on_board yes)
  157. (property "Reference" "R"
  158. (at 2.032 0 90)
  159. (effects
  160. (font
  161. (size 1.27 1.27)
  162. )
  163. )
  164. )
  165. (property "Value" "R"
  166. (at 0 0 90)
  167. (effects
  168. (font
  169. (size 1.27 1.27)
  170. )
  171. )
  172. )
  173. (property "Footprint" ""
  174. (at -1.778 0 90)
  175. (effects
  176. (font
  177. (size 1.27 1.27)
  178. )
  179. (hide yes)
  180. )
  181. )
  182. (property "Datasheet" "~"
  183. (at 0 0 0)
  184. (effects
  185. (font
  186. (size 1.27 1.27)
  187. )
  188. (hide yes)
  189. )
  190. )
  191. (property "Description" "Resistor"
  192. (at 0 0 0)
  193. (effects
  194. (font
  195. (size 1.27 1.27)
  196. )
  197. (hide yes)
  198. )
  199. )
  200. (property "ki_keywords" "R res resistor"
  201. (at 0 0 0)
  202. (effects
  203. (font
  204. (size 1.27 1.27)
  205. )
  206. (hide yes)
  207. )
  208. )
  209. (property "ki_fp_filters" "R_*"
  210. (at 0 0 0)
  211. (effects
  212. (font
  213. (size 1.27 1.27)
  214. )
  215. (hide yes)
  216. )
  217. )
  218. (symbol "R_0_1"
  219. (rectangle
  220. (start -1.016 -2.54)
  221. (end 1.016 2.54)
  222. (stroke
  223. (width 0.254)
  224. (type default)
  225. )
  226. (fill
  227. (type none)
  228. )
  229. )
  230. )
  231. (symbol "R_1_1"
  232. (pin passive line
  233. (at 0 3.81 270)
  234. (length 1.27)
  235. (name "~"
  236. (effects
  237. (font
  238. (size 1.27 1.27)
  239. )
  240. )
  241. )
  242. (number "1"
  243. (effects
  244. (font
  245. (size 1.27 1.27)
  246. )
  247. )
  248. )
  249. )
  250. (pin passive line
  251. (at 0 -3.81 90)
  252. (length 1.27)
  253. (name "~"
  254. (effects
  255. (font
  256. (size 1.27 1.27)
  257. )
  258. )
  259. )
  260. (number "2"
  261. (effects
  262. (font
  263. (size 1.27 1.27)
  264. )
  265. )
  266. )
  267. )
  268. )
  269. (embedded_fonts no)
  270. )
  271. (symbol "MCU_WCH_CH32V0:CH32V003AxMx"
  272. (exclude_from_sim no)
  273. (in_bom yes)
  274. (on_board yes)
  275. (property "Reference" "U1"
  276. (at 2.1433 17.78 0)
  277. (effects
  278. (font
  279. (size 1.27 1.27)
  280. )
  281. (justify left)
  282. )
  283. )
  284. (property "Value" "CH32V003AxMx"
  285. (at 2.1433 15.24 0)
  286. (effects
  287. (font
  288. (size 1.27 1.27)
  289. )
  290. (justify left)
  291. )
  292. )
  293. (property "Footprint" "Package_SO:SOP-16_3.9x9.9mm_P1.27mm"
  294. (at -2.54 0 0)
  295. (effects
  296. (font
  297. (size 1.27 1.27)
  298. )
  299. (hide yes)
  300. )
  301. )
  302. (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
  303. (at -2.54 0 0)
  304. (effects
  305. (font
  306. (size 1.27 1.27)
  307. )
  308. (hide yes)
  309. )
  310. )
  311. (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."
  312. (at 0 0 0)
  313. (effects
  314. (font
  315. (size 1.27 1.27)
  316. )
  317. (hide yes)
  318. )
  319. )
  320. (property "ki_keywords" "RISC-V WCH MCU microcontroller"
  321. (at 0 0 0)
  322. (effects
  323. (font
  324. (size 1.27 1.27)
  325. )
  326. (hide yes)
  327. )
  328. )
  329. (property "ki_fp_filters" "SOP*3.9x9.9mm*P1.27mm*"
  330. (at 0 0 0)
  331. (effects
  332. (font
  333. (size 1.27 1.27)
  334. )
  335. (hide yes)
  336. )
  337. )
  338. (symbol "CH32V003AxMx_1_1"
  339. (rectangle
  340. (start -7.62 12.7)
  341. (end 7.62 -12.7)
  342. (stroke
  343. (width 0.254)
  344. (type default)
  345. )
  346. (fill
  347. (type background)
  348. )
  349. )
  350. (pin bidirectional line
  351. (at -10.16 10.16 0)
  352. (length 2.54)
  353. (name "PC0"
  354. (effects
  355. (font
  356. (size 1.27 1.27)
  357. )
  358. )
  359. )
  360. (number "16"
  361. (effects
  362. (font
  363. (size 1.27 1.27)
  364. )
  365. )
  366. )
  367. (alternate "NSS_1" bidirectional line)
  368. (alternate "T1CH3_1" bidirectional line)
  369. (alternate "T2CH3" bidirectional line)
  370. (alternate "T2CH3_2" bidirectional line)
  371. (alternate "UTX_3" bidirectional line)
  372. )
  373. (pin bidirectional line
  374. (at -10.16 7.62 0)
  375. (length 2.54)
  376. (name "PC1"
  377. (effects
  378. (font
  379. (size 1.27 1.27)
  380. )
  381. )
  382. )
  383. (number "1"
  384. (effects
  385. (font
  386. (size 1.27 1.27)
  387. )
  388. )
  389. )
  390. (alternate "NSS" bidirectional line)
  391. (alternate "SDA" bidirectional line)
  392. (alternate "T1BKIN_1" bidirectional line)
  393. (alternate "T1BKIN_3" bidirectional line)
  394. (alternate "T2CH1ETR_2" bidirectional line)
  395. (alternate "T2CH1ETR_3" bidirectional line)
  396. (alternate "T2CH4_1" bidirectional line)
  397. (alternate "URX_3" bidirectional line)
  398. )
  399. (pin bidirectional line
  400. (at -10.16 5.08 0)
  401. (length 2.54)
  402. (name "PC2"
  403. (effects
  404. (font
  405. (size 1.27 1.27)
  406. )
  407. )
  408. )
  409. (number "2"
  410. (effects
  411. (font
  412. (size 1.27 1.27)
  413. )
  414. )
  415. )
  416. (alternate "AETR_1" bidirectional line)
  417. (alternate "SCL" bidirectional line)
  418. (alternate "T1BKIN" bidirectional line)
  419. (alternate "T1BKIN_2" bidirectional line)
  420. (alternate "T1ETR_3" bidirectional line)
  421. (alternate "T2CH2_1" bidirectional line)
  422. (alternate "URTS" bidirectional line)
  423. (alternate "URTS_1" bidirectional line)
  424. )
  425. (pin bidirectional line
  426. (at -10.16 2.54 0)
  427. (length 2.54)
  428. (name "PC3"
  429. (effects
  430. (font
  431. (size 1.27 1.27)
  432. )
  433. )
  434. )
  435. (number "3"
  436. (effects
  437. (font
  438. (size 1.27 1.27)
  439. )
  440. )
  441. )
  442. (alternate "T1CH1N_1" bidirectional line)
  443. (alternate "T1CH1N_3" bidirectional line)
  444. (alternate "T1CH3" bidirectional line)
  445. (alternate "T1CH3_2" bidirectional line)
  446. (alternate "UCTS_1" bidirectional line)
  447. )
  448. (pin bidirectional line
  449. (at -10.16 0 0)
  450. (length 2.54)
  451. (name "PC4"
  452. (effects
  453. (font
  454. (size 1.27 1.27)
  455. )
  456. )
  457. )
  458. (number "4"
  459. (effects
  460. (font
  461. (size 1.27 1.27)
  462. )
  463. )
  464. )
  465. (alternate "A2" bidirectional line)
  466. (alternate "MCO" bidirectional line)
  467. (alternate "T1CH1_3" bidirectional line)
  468. (alternate "T1CH2N_1" bidirectional line)
  469. (alternate "T1CH4" bidirectional line)
  470. (alternate "T1CH4_2" bidirectional line)
  471. )
  472. (pin bidirectional line
  473. (at -10.16 -2.54 0)
  474. (length 2.54)
  475. (name "PC6"
  476. (effects
  477. (font
  478. (size 1.27 1.27)
  479. )
  480. )
  481. )
  482. (number "5"
  483. (effects
  484. (font
  485. (size 1.27 1.27)
  486. )
  487. )
  488. )
  489. (alternate "MOSI" bidirectional line)
  490. (alternate "MOSI_1" bidirectional line)
  491. (alternate "SDA_2" bidirectional line)
  492. (alternate "SDA_3" bidirectional line)
  493. (alternate "T1CH1_1" bidirectional line)
  494. (alternate "T1CH3N_3" bidirectional line)
  495. (alternate "UCTS_2" bidirectional line)
  496. (alternate "UCTS_3" bidirectional line)
  497. )
  498. (pin bidirectional line
  499. (at -10.16 -5.08 0)
  500. (length 2.54)
  501. (name "PC7"
  502. (effects
  503. (font
  504. (size 1.27 1.27)
  505. )
  506. )
  507. )
  508. (number "6"
  509. (effects
  510. (font
  511. (size 1.27 1.27)
  512. )
  513. )
  514. )
  515. (alternate "MISO" bidirectional line)
  516. (alternate "MISO_1" bidirectional line)
  517. (alternate "T1CH2_1" bidirectional line)
  518. (alternate "T1CH2_3" bidirectional line)
  519. (alternate "T2CH2_3" bidirectional line)
  520. (alternate "URTS_2" bidirectional line)
  521. (alternate "URTS_3" bidirectional line)
  522. )
  523. (pin power_in line
  524. (at 0 15.24 270)
  525. (length 2.54)
  526. (name "VDD"
  527. (effects
  528. (font
  529. (size 1.27 1.27)
  530. )
  531. )
  532. )
  533. (number "15"
  534. (effects
  535. (font
  536. (size 1.27 1.27)
  537. )
  538. )
  539. )
  540. )
  541. (pin power_in line
  542. (at 0 -15.24 90)
  543. (length 2.54)
  544. (name "VSS"
  545. (effects
  546. (font
  547. (size 1.27 1.27)
  548. )
  549. )
  550. )
  551. (number "14"
  552. (effects
  553. (font
  554. (size 1.27 1.27)
  555. )
  556. )
  557. )
  558. )
  559. (pin bidirectional line
  560. (at 10.16 10.16 180)
  561. (length 2.54)
  562. (name "PD1"
  563. (effects
  564. (font
  565. (size 1.27 1.27)
  566. )
  567. )
  568. )
  569. (number "7"
  570. (effects
  571. (font
  572. (size 1.27 1.27)
  573. )
  574. )
  575. )
  576. (alternate "AETR2" bidirectional line)
  577. (alternate "SCL_1" bidirectional line)
  578. (alternate "SWIO" bidirectional line)
  579. (alternate "T1CH3N" bidirectional line)
  580. (alternate "T1CH3N_1" bidirectional line)
  581. (alternate "T1CH3N_2" bidirectional line)
  582. (alternate "URX_1" bidirectional line)
  583. )
  584. (pin bidirectional line
  585. (at 10.16 7.62 180)
  586. (length 2.54)
  587. (name "PD4"
  588. (effects
  589. (font
  590. (size 1.27 1.27)
  591. )
  592. )
  593. )
  594. (number "8"
  595. (effects
  596. (font
  597. (size 1.27 1.27)
  598. )
  599. )
  600. )
  601. (alternate "A7" bidirectional line)
  602. (alternate "OPO" bidirectional line)
  603. (alternate "T1CH4_3" bidirectional line)
  604. (alternate "T2CH1ETR" bidirectional line)
  605. (alternate "TIETR_2" bidirectional line)
  606. (alternate "UCK" bidirectional line)
  607. )
  608. (pin bidirectional line
  609. (at 10.16 5.08 180)
  610. (length 2.54)
  611. (name "PD5"
  612. (effects
  613. (font
  614. (size 1.27 1.27)
  615. )
  616. )
  617. )
  618. (number "9"
  619. (effects
  620. (font
  621. (size 1.27 1.27)
  622. )
  623. )
  624. )
  625. (alternate "A5" bidirectional line)
  626. (alternate "T2CH4_3" bidirectional line)
  627. (alternate "URX_2" bidirectional line)
  628. (alternate "UTX" bidirectional line)
  629. )
  630. (pin bidirectional line
  631. (at 10.16 2.54 180)
  632. (length 2.54)
  633. (name "PD6"
  634. (effects
  635. (font
  636. (size 1.27 1.27)
  637. )
  638. )
  639. )
  640. (number "10"
  641. (effects
  642. (font
  643. (size 1.27 1.27)
  644. )
  645. )
  646. )
  647. (alternate "A6" bidirectional line)
  648. (alternate "T2CH3_3" bidirectional line)
  649. (alternate "URX" bidirectional line)
  650. (alternate "UTX_2" bidirectional line)
  651. )
  652. (pin bidirectional line
  653. (at 10.16 -5.08 180)
  654. (length 2.54)
  655. (name "PD7"
  656. (effects
  657. (font
  658. (size 1.27 1.27)
  659. )
  660. )
  661. )
  662. (number "11"
  663. (effects
  664. (font
  665. (size 1.27 1.27)
  666. )
  667. )
  668. )
  669. (alternate "NRST" bidirectional line)
  670. (alternate "OPP1" bidirectional line)
  671. (alternate "T2CH4" bidirectional line)
  672. (alternate "T2CH4_2" bidirectional line)
  673. (alternate "UCK_1" bidirectional line)
  674. (alternate "UCK_2" bidirectional line)
  675. )
  676. (pin bidirectional line
  677. (at 10.16 -7.62 180)
  678. (length 2.54)
  679. (name "PA1"
  680. (effects
  681. (font
  682. (size 1.27 1.27)
  683. )
  684. )
  685. )
  686. (number "12"
  687. (effects
  688. (font
  689. (size 1.27 1.27)
  690. )
  691. )
  692. )
  693. (alternate "A1" bidirectional line)
  694. (alternate "OPN0" bidirectional line)
  695. (alternate "OSCI" bidirectional line)
  696. (alternate "T1CH2" bidirectional line)
  697. (alternate "T1CH2_2" bidirectional line)
  698. )
  699. (pin bidirectional line
  700. (at 10.16 -10.16 180)
  701. (length 2.54)
  702. (name "PA2"
  703. (effects
  704. (font
  705. (size 1.27 1.27)
  706. )
  707. )
  708. )
  709. (number "13"
  710. (effects
  711. (font
  712. (size 1.27 1.27)
  713. )
  714. )
  715. )
  716. (alternate "A0" bidirectional line)
  717. (alternate "AETR2_1" bidirectional line)
  718. (alternate "OPP0" bidirectional line)
  719. (alternate "OSCO" bidirectional line)
  720. (alternate "TICH2N" bidirectional line)
  721. (alternate "TICH2N_2" bidirectional line)
  722. )
  723. )
  724. (embedded_fonts no)
  725. )
  726. (symbol "power:+3V3"
  727. (power)
  728. (pin_numbers
  729. (hide yes)
  730. )
  731. (pin_names
  732. (offset 0)
  733. (hide yes)
  734. )
  735. (exclude_from_sim no)
  736. (in_bom yes)
  737. (on_board yes)
  738. (property "Reference" "#PWR"
  739. (at 0 -3.81 0)
  740. (effects
  741. (font
  742. (size 1.27 1.27)
  743. )
  744. (hide yes)
  745. )
  746. )
  747. (property "Value" "+3V3"
  748. (at 0 3.556 0)
  749. (effects
  750. (font
  751. (size 1.27 1.27)
  752. )
  753. )
  754. )
  755. (property "Footprint" ""
  756. (at 0 0 0)
  757. (effects
  758. (font
  759. (size 1.27 1.27)
  760. )
  761. (hide yes)
  762. )
  763. )
  764. (property "Datasheet" ""
  765. (at 0 0 0)
  766. (effects
  767. (font
  768. (size 1.27 1.27)
  769. )
  770. (hide yes)
  771. )
  772. )
  773. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  774. (at 0 0 0)
  775. (effects
  776. (font
  777. (size 1.27 1.27)
  778. )
  779. (hide yes)
  780. )
  781. )
  782. (property "ki_keywords" "global power"
  783. (at 0 0 0)
  784. (effects
  785. (font
  786. (size 1.27 1.27)
  787. )
  788. (hide yes)
  789. )
  790. )
  791. (symbol "+3V3_0_1"
  792. (polyline
  793. (pts
  794. (xy -0.762 1.27) (xy 0 2.54)
  795. )
  796. (stroke
  797. (width 0)
  798. (type default)
  799. )
  800. (fill
  801. (type none)
  802. )
  803. )
  804. (polyline
  805. (pts
  806. (xy 0 2.54) (xy 0.762 1.27)
  807. )
  808. (stroke
  809. (width 0)
  810. (type default)
  811. )
  812. (fill
  813. (type none)
  814. )
  815. )
  816. (polyline
  817. (pts
  818. (xy 0 0) (xy 0 2.54)
  819. )
  820. (stroke
  821. (width 0)
  822. (type default)
  823. )
  824. (fill
  825. (type none)
  826. )
  827. )
  828. )
  829. (symbol "+3V3_1_1"
  830. (pin power_in line
  831. (at 0 0 90)
  832. (length 0)
  833. (name "~"
  834. (effects
  835. (font
  836. (size 1.27 1.27)
  837. )
  838. )
  839. )
  840. (number "1"
  841. (effects
  842. (font
  843. (size 1.27 1.27)
  844. )
  845. )
  846. )
  847. )
  848. )
  849. (embedded_fonts no)
  850. )
  851. (symbol "power:GND"
  852. (power)
  853. (pin_numbers
  854. (hide yes)
  855. )
  856. (pin_names
  857. (offset 0)
  858. (hide yes)
  859. )
  860. (exclude_from_sim no)
  861. (in_bom yes)
  862. (on_board yes)
  863. (property "Reference" "#PWR"
  864. (at 0 -6.35 0)
  865. (effects
  866. (font
  867. (size 1.27 1.27)
  868. )
  869. (hide yes)
  870. )
  871. )
  872. (property "Value" "GND"
  873. (at 0 -3.81 0)
  874. (effects
  875. (font
  876. (size 1.27 1.27)
  877. )
  878. )
  879. )
  880. (property "Footprint" ""
  881. (at 0 0 0)
  882. (effects
  883. (font
  884. (size 1.27 1.27)
  885. )
  886. (hide yes)
  887. )
  888. )
  889. (property "Datasheet" ""
  890. (at 0 0 0)
  891. (effects
  892. (font
  893. (size 1.27 1.27)
  894. )
  895. (hide yes)
  896. )
  897. )
  898. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  899. (at 0 0 0)
  900. (effects
  901. (font
  902. (size 1.27 1.27)
  903. )
  904. (hide yes)
  905. )
  906. )
  907. (property "ki_keywords" "global power"
  908. (at 0 0 0)
  909. (effects
  910. (font
  911. (size 1.27 1.27)
  912. )
  913. (hide yes)
  914. )
  915. )
  916. (symbol "GND_0_1"
  917. (polyline
  918. (pts
  919. (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)
  920. )
  921. (stroke
  922. (width 0)
  923. (type default)
  924. )
  925. (fill
  926. (type none)
  927. )
  928. )
  929. )
  930. (symbol "GND_1_1"
  931. (pin power_in line
  932. (at 0 0 270)
  933. (length 0)
  934. (name "~"
  935. (effects
  936. (font
  937. (size 1.27 1.27)
  938. )
  939. )
  940. )
  941. (number "1"
  942. (effects
  943. (font
  944. (size 1.27 1.27)
  945. )
  946. )
  947. )
  948. )
  949. )
  950. (embedded_fonts no)
  951. )
  952. )
  953. (junction
  954. (at 201.93 105.41)
  955. (diameter 0)
  956. (color 0 0 0 0)
  957. (uuid "0c989ce3-33cb-4458-9a82-ae7b8184bc91")
  958. )
  959. (junction
  960. (at 135.89 87.63)
  961. (diameter 0)
  962. (color 0 0 0 0)
  963. (uuid "0cc10d03-ee94-4786-b153-0f494ee09de5")
  964. )
  965. (junction
  966. (at 135.89 102.87)
  967. (diameter 0)
  968. (color 0 0 0 0)
  969. (uuid "0cd83916-f5ed-4c7e-882e-14c7449a3864")
  970. )
  971. (junction
  972. (at 173.99 100.33)
  973. (diameter 0)
  974. (color 0 0 0 0)
  975. (uuid "1d196f8a-ea96-4db0-9a73-ada883de6d8f")
  976. )
  977. (junction
  978. (at 153.67 107.95)
  979. (diameter 0)
  980. (color 0 0 0 0)
  981. (uuid "1f4dd3a6-3231-4f31-9a40-89c50e9ccd56")
  982. )
  983. (junction
  984. (at 106.68 74.93)
  985. (diameter 0)
  986. (color 0 0 0 0)
  987. (uuid "426296bd-1c24-4c64-a895-446e2c1d982d")
  988. )
  989. (junction
  990. (at 181.61 107.95)
  991. (diameter 0)
  992. (color 0 0 0 0)
  993. (uuid "448db68f-8070-4147-bcb2-eee119d4a8a0")
  994. )
  995. (junction
  996. (at 199.39 102.87)
  997. (diameter 0)
  998. (color 0 0 0 0)
  999. (uuid "4e75f89d-9b38-4c61-81c8-d44d5bb1a4e4")
  1000. )
  1001. (junction
  1002. (at 204.47 107.95)
  1003. (diameter 0)
  1004. (color 0 0 0 0)
  1005. (uuid "77714548-d6da-49d4-843e-2a5dd318a61e")
  1006. )
  1007. (junction
  1008. (at 196.85 100.33)
  1009. (diameter 0)
  1010. (color 0 0 0 0)
  1011. (uuid "87cb2039-454d-4bbd-b495-2bd051992ff7")
  1012. )
  1013. (junction
  1014. (at 127 87.63)
  1015. (diameter 0)
  1016. (color 0 0 0 0)
  1017. (uuid "a3c8260a-bb4c-4c22-9d26-167712e965cf")
  1018. )
  1019. (junction
  1020. (at 144.78 105.41)
  1021. (diameter 0)
  1022. (color 0 0 0 0)
  1023. (uuid "a926fb05-de90-4721-91e3-6e712960a28d")
  1024. )
  1025. (junction
  1026. (at 96.52 74.93)
  1027. (diameter 0)
  1028. (color 0 0 0 0)
  1029. (uuid "b681b7a6-49f5-40a0-9a84-ab347b68ab99")
  1030. )
  1031. (junction
  1032. (at 179.07 105.41)
  1033. (diameter 0)
  1034. (color 0 0 0 0)
  1035. (uuid "ba11c2ea-67d4-434c-a6a8-ebee70366432")
  1036. )
  1037. (junction
  1038. (at 127 100.33)
  1039. (diameter 0)
  1040. (color 0 0 0 0)
  1041. (uuid "d3dc2c1c-1b9f-459e-816c-af291c6bcd15")
  1042. )
  1043. (junction
  1044. (at 176.53 102.87)
  1045. (diameter 0)
  1046. (color 0 0 0 0)
  1047. (uuid "d569859b-3ca4-4bb5-be88-34bbe2f0b807")
  1048. )
  1049. (junction
  1050. (at 144.78 87.63)
  1051. (diameter 0)
  1052. (color 0 0 0 0)
  1053. (uuid "df8355c0-c405-404d-9538-3a161d280a66")
  1054. )
  1055. (wire
  1056. (pts
  1057. (xy 215.9 91.44) (xy 213.36 91.44)
  1058. )
  1059. (stroke
  1060. (width 0)
  1061. (type default)
  1062. )
  1063. (uuid "01824aee-a395-4180-9060-5017c751bf1f")
  1064. )
  1065. (wire
  1066. (pts
  1067. (xy 179.07 105.41) (xy 201.93 105.41)
  1068. )
  1069. (stroke
  1070. (width 0)
  1071. (type default)
  1072. )
  1073. (uuid "03c9c369-2688-46e7-8c46-ebed95bcafa0")
  1074. )
  1075. (wire
  1076. (pts
  1077. (xy 201.93 105.41) (xy 201.93 96.52)
  1078. )
  1079. (stroke
  1080. (width 0)
  1081. (type default)
  1082. )
  1083. (uuid "07f34906-1504-49c9-ad27-2daa949dac33")
  1084. )
  1085. (wire
  1086. (pts
  1087. (xy 127 87.63) (xy 127 90.17)
  1088. )
  1089. (stroke
  1090. (width 0)
  1091. (type default)
  1092. )
  1093. (uuid "0ccf610a-7b9f-4cd3-be8a-5cc1b6ba6085")
  1094. )
  1095. (wire
  1096. (pts
  1097. (xy 227.33 96.52) (xy 227.33 107.95)
  1098. )
  1099. (stroke
  1100. (width 0)
  1101. (type default)
  1102. )
  1103. (uuid "12ef300c-4cb3-4bb9-a9c9-4b70b5efe85f")
  1104. )
  1105. (wire
  1106. (pts
  1107. (xy 199.39 102.87) (xy 199.39 96.52)
  1108. )
  1109. (stroke
  1110. (width 0)
  1111. (type default)
  1112. )
  1113. (uuid "17549631-fac5-4aa4-8ed7-b130bf848d50")
  1114. )
  1115. (wire
  1116. (pts
  1117. (xy 170.18 91.44) (xy 167.64 91.44)
  1118. )
  1119. (stroke
  1120. (width 0)
  1121. (type default)
  1122. )
  1123. (uuid "1855df72-ce22-457e-b052-d1dd8c267069")
  1124. )
  1125. (wire
  1126. (pts
  1127. (xy 153.67 107.95) (xy 181.61 107.95)
  1128. )
  1129. (stroke
  1130. (width 0)
  1131. (type default)
  1132. )
  1133. (uuid "23e0002a-f9fe-464f-af9f-3ff9d5ea3f70")
  1134. )
  1135. (wire
  1136. (pts
  1137. (xy 213.36 91.44) (xy 213.36 120.65)
  1138. )
  1139. (stroke
  1140. (width 0)
  1141. (type default)
  1142. )
  1143. (uuid "2c2d07f6-be42-4a81-9d2a-33e5a4fb332a")
  1144. )
  1145. (wire
  1146. (pts
  1147. (xy 176.53 96.52) (xy 176.53 102.87)
  1148. )
  1149. (stroke
  1150. (width 0)
  1151. (type default)
  1152. )
  1153. (uuid "2df2c3c3-a506-4ed6-a2bc-b5e7d1e1fdf9")
  1154. )
  1155. (wire
  1156. (pts
  1157. (xy 135.89 87.63) (xy 135.89 90.17)
  1158. )
  1159. (stroke
  1160. (width 0)
  1161. (type default)
  1162. )
  1163. (uuid "3e9aeb0b-4ddf-4074-af21-85ee5588f3cb")
  1164. )
  1165. (wire
  1166. (pts
  1167. (xy 83.82 87.63) (xy 83.82 85.09)
  1168. )
  1169. (stroke
  1170. (width 0)
  1171. (type default)
  1172. )
  1173. (uuid "3f7d4de1-d1db-4a6f-9d1f-cde30b9f7ebe")
  1174. )
  1175. (wire
  1176. (pts
  1177. (xy 181.61 96.52) (xy 181.61 107.95)
  1178. )
  1179. (stroke
  1180. (width 0)
  1181. (type default)
  1182. )
  1183. (uuid "4077aaf9-f4dc-420b-9c9c-54b1b0516fc6")
  1184. )
  1185. (wire
  1186. (pts
  1187. (xy 96.52 74.93) (xy 96.52 77.47)
  1188. )
  1189. (stroke
  1190. (width 0)
  1191. (type default)
  1192. )
  1193. (uuid "413d6a23-0bb3-4c9c-8fff-7aec0ffa8344")
  1194. )
  1195. (wire
  1196. (pts
  1197. (xy 219.71 96.52) (xy 219.71 100.33)
  1198. )
  1199. (stroke
  1200. (width 0)
  1201. (type default)
  1202. )
  1203. (uuid "43706f54-8696-4622-9dea-63704c39c419")
  1204. )
  1205. (wire
  1206. (pts
  1207. (xy 190.5 118.11) (xy 116.84 118.11)
  1208. )
  1209. (stroke
  1210. (width 0)
  1211. (type default)
  1212. )
  1213. (uuid "43fd2f24-39f0-4b7b-b5bc-384acbc1a7f3")
  1214. )
  1215. (wire
  1216. (pts
  1217. (xy 204.47 107.95) (xy 204.47 96.52)
  1218. )
  1219. (stroke
  1220. (width 0)
  1221. (type default)
  1222. )
  1223. (uuid "451e2fee-756f-4ed4-9b47-4b384ec3a6a9")
  1224. )
  1225. (wire
  1226. (pts
  1227. (xy 96.52 87.63) (xy 96.52 85.09)
  1228. )
  1229. (stroke
  1230. (width 0)
  1231. (type default)
  1232. )
  1233. (uuid "45bc18de-bb5e-473b-94b8-105f6a590f4d")
  1234. )
  1235. (wire
  1236. (pts
  1237. (xy 127 87.63) (xy 135.89 87.63)
  1238. )
  1239. (stroke
  1240. (width 0)
  1241. (type default)
  1242. )
  1243. (uuid "469eb645-0243-43f5-af63-cc1ca8b88644")
  1244. )
  1245. (wire
  1246. (pts
  1247. (xy 167.64 91.44) (xy 167.64 115.57)
  1248. )
  1249. (stroke
  1250. (width 0)
  1251. (type default)
  1252. )
  1253. (uuid "492ba280-1d16-4c77-a5d0-8d455e73cecd")
  1254. )
  1255. (wire
  1256. (pts
  1257. (xy 222.25 102.87) (xy 199.39 102.87)
  1258. )
  1259. (stroke
  1260. (width 0)
  1261. (type default)
  1262. )
  1263. (uuid "4c3615d2-9d00-4bc9-bfa6-7a956dd6b481")
  1264. )
  1265. (wire
  1266. (pts
  1267. (xy 83.82 74.93) (xy 83.82 77.47)
  1268. )
  1269. (stroke
  1270. (width 0)
  1271. (type default)
  1272. )
  1273. (uuid "4c69fcac-8e8b-4ada-bffc-936957d8060f")
  1274. )
  1275. (wire
  1276. (pts
  1277. (xy 116.84 102.87) (xy 135.89 102.87)
  1278. )
  1279. (stroke
  1280. (width 0)
  1281. (type default)
  1282. )
  1283. (uuid "50d96200-e1d6-4ee8-b2a6-3a28460e1ee2")
  1284. )
  1285. (wire
  1286. (pts
  1287. (xy 173.99 96.52) (xy 173.99 100.33)
  1288. )
  1289. (stroke
  1290. (width 0)
  1291. (type default)
  1292. )
  1293. (uuid "546ddae8-7cd7-4d9a-9ffd-4d53b2d0b7e6")
  1294. )
  1295. (wire
  1296. (pts
  1297. (xy 144.78 87.63) (xy 153.67 87.63)
  1298. )
  1299. (stroke
  1300. (width 0)
  1301. (type default)
  1302. )
  1303. (uuid "5e2a2a3e-4a60-42b4-a5ee-93c9269d4e15")
  1304. )
  1305. (wire
  1306. (pts
  1307. (xy 135.89 102.87) (xy 176.53 102.87)
  1308. )
  1309. (stroke
  1310. (width 0)
  1311. (type default)
  1312. )
  1313. (uuid "61f2e11a-64ce-43e0-992d-dfedea4866cf")
  1314. )
  1315. (wire
  1316. (pts
  1317. (xy 224.79 96.52) (xy 224.79 105.41)
  1318. )
  1319. (stroke
  1320. (width 0)
  1321. (type default)
  1322. )
  1323. (uuid "620dd1f1-a7ca-4f99-8e95-c4611a5d801e")
  1324. )
  1325. (wire
  1326. (pts
  1327. (xy 167.64 115.57) (xy 116.84 115.57)
  1328. )
  1329. (stroke
  1330. (width 0)
  1331. (type default)
  1332. )
  1333. (uuid "62502327-2ed8-47ee-bfe2-d550b0ac9b51")
  1334. )
  1335. (wire
  1336. (pts
  1337. (xy 144.78 105.41) (xy 179.07 105.41)
  1338. )
  1339. (stroke
  1340. (width 0)
  1341. (type default)
  1342. )
  1343. (uuid "66699c83-3a93-436a-ac73-986b60ebc597")
  1344. )
  1345. (wire
  1346. (pts
  1347. (xy 96.52 74.93) (xy 106.68 74.93)
  1348. )
  1349. (stroke
  1350. (width 0)
  1351. (type default)
  1352. )
  1353. (uuid "7989cf91-cf4f-49f5-9ef0-c365c505f1e8")
  1354. )
  1355. (wire
  1356. (pts
  1357. (xy 224.79 105.41) (xy 201.93 105.41)
  1358. )
  1359. (stroke
  1360. (width 0)
  1361. (type default)
  1362. )
  1363. (uuid "7cb28dfe-ecc5-47b1-8a22-1b8ff23e58bc")
  1364. )
  1365. (wire
  1366. (pts
  1367. (xy 116.84 105.41) (xy 144.78 105.41)
  1368. )
  1369. (stroke
  1370. (width 0)
  1371. (type default)
  1372. )
  1373. (uuid "7e08049c-7c61-46f6-aca4-b8165f32a6ff")
  1374. )
  1375. (wire
  1376. (pts
  1377. (xy 135.89 87.63) (xy 144.78 87.63)
  1378. )
  1379. (stroke
  1380. (width 0)
  1381. (type default)
  1382. )
  1383. (uuid "8b2a7577-aefa-4841-b08c-42b9f0404a2f")
  1384. )
  1385. (wire
  1386. (pts
  1387. (xy 196.85 100.33) (xy 196.85 96.52)
  1388. )
  1389. (stroke
  1390. (width 0)
  1391. (type default)
  1392. )
  1393. (uuid "8f651dd6-5a2e-4dc6-8686-e8fb9b93a763")
  1394. )
  1395. (wire
  1396. (pts
  1397. (xy 181.61 107.95) (xy 204.47 107.95)
  1398. )
  1399. (stroke
  1400. (width 0)
  1401. (type default)
  1402. )
  1403. (uuid "a21821d4-85e3-494b-a45e-4143a94abb4c")
  1404. )
  1405. (wire
  1406. (pts
  1407. (xy 135.89 97.79) (xy 135.89 102.87)
  1408. )
  1409. (stroke
  1410. (width 0)
  1411. (type default)
  1412. )
  1413. (uuid "a5ddba49-e718-443c-9bbd-098eaa550ddc")
  1414. )
  1415. (wire
  1416. (pts
  1417. (xy 106.68 125.73) (xy 106.68 128.27)
  1418. )
  1419. (stroke
  1420. (width 0)
  1421. (type default)
  1422. )
  1423. (uuid "aaf8f6a9-b084-4bb7-86af-c2fcfa30cf07")
  1424. )
  1425. (wire
  1426. (pts
  1427. (xy 222.25 96.52) (xy 222.25 102.87)
  1428. )
  1429. (stroke
  1430. (width 0)
  1431. (type default)
  1432. )
  1433. (uuid "ac120a6a-db28-4491-9498-71c1567f41dd")
  1434. )
  1435. (wire
  1436. (pts
  1437. (xy 153.67 87.63) (xy 153.67 90.17)
  1438. )
  1439. (stroke
  1440. (width 0)
  1441. (type default)
  1442. )
  1443. (uuid "b3ec41f2-8d5c-4c8d-bfd7-4c9d3db9ec44")
  1444. )
  1445. (wire
  1446. (pts
  1447. (xy 83.82 74.93) (xy 96.52 74.93)
  1448. )
  1449. (stroke
  1450. (width 0)
  1451. (type default)
  1452. )
  1453. (uuid "b7621487-42ae-4fb5-94a5-677413a6d070")
  1454. )
  1455. (wire
  1456. (pts
  1457. (xy 127 97.79) (xy 127 100.33)
  1458. )
  1459. (stroke
  1460. (width 0)
  1461. (type default)
  1462. )
  1463. (uuid "bda8cf26-0a34-4965-9462-1145c1e7b790")
  1464. )
  1465. (wire
  1466. (pts
  1467. (xy 106.68 72.39) (xy 106.68 74.93)
  1468. )
  1469. (stroke
  1470. (width 0)
  1471. (type default)
  1472. )
  1473. (uuid "c3cdd572-110d-4ae4-8974-dc1e65a37b3e")
  1474. )
  1475. (wire
  1476. (pts
  1477. (xy 190.5 91.44) (xy 190.5 118.11)
  1478. )
  1479. (stroke
  1480. (width 0)
  1481. (type default)
  1482. )
  1483. (uuid "cdc87c7b-3b22-4643-a7ec-53b7b6dda4f3")
  1484. )
  1485. (wire
  1486. (pts
  1487. (xy 173.99 100.33) (xy 196.85 100.33)
  1488. )
  1489. (stroke
  1490. (width 0)
  1491. (type default)
  1492. )
  1493. (uuid "d261efe3-584c-496d-b6b8-e3067e672a49")
  1494. )
  1495. (wire
  1496. (pts
  1497. (xy 190.5 91.44) (xy 193.04 91.44)
  1498. )
  1499. (stroke
  1500. (width 0)
  1501. (type default)
  1502. )
  1503. (uuid "d2e66f49-0c08-4162-a017-ea63d20a2898")
  1504. )
  1505. (wire
  1506. (pts
  1507. (xy 144.78 97.79) (xy 144.78 105.41)
  1508. )
  1509. (stroke
  1510. (width 0)
  1511. (type default)
  1512. )
  1513. (uuid "d6a88a29-2aac-461a-9844-50557b7e11dc")
  1514. )
  1515. (wire
  1516. (pts
  1517. (xy 116.84 100.33) (xy 127 100.33)
  1518. )
  1519. (stroke
  1520. (width 0)
  1521. (type default)
  1522. )
  1523. (uuid "d7c48ad3-83ec-48d5-a312-c361b902f60b")
  1524. )
  1525. (wire
  1526. (pts
  1527. (xy 127 100.33) (xy 173.99 100.33)
  1528. )
  1529. (stroke
  1530. (width 0)
  1531. (type default)
  1532. )
  1533. (uuid "d92d2c4f-30c8-4b7f-a13c-3dd25338f2cf")
  1534. )
  1535. (wire
  1536. (pts
  1537. (xy 153.67 97.79) (xy 153.67 107.95)
  1538. )
  1539. (stroke
  1540. (width 0)
  1541. (type default)
  1542. )
  1543. (uuid "daa14eec-a0b5-40d1-a0bc-9ce2ed61193d")
  1544. )
  1545. (wire
  1546. (pts
  1547. (xy 227.33 107.95) (xy 204.47 107.95)
  1548. )
  1549. (stroke
  1550. (width 0)
  1551. (type default)
  1552. )
  1553. (uuid "e50306b9-6fd6-459a-8c2b-737ce39ed55f")
  1554. )
  1555. (wire
  1556. (pts
  1557. (xy 219.71 100.33) (xy 196.85 100.33)
  1558. )
  1559. (stroke
  1560. (width 0)
  1561. (type default)
  1562. )
  1563. (uuid "e75f9eaa-5ef4-4aa1-a12f-8156acda760b")
  1564. )
  1565. (wire
  1566. (pts
  1567. (xy 213.36 120.65) (xy 116.84 120.65)
  1568. )
  1569. (stroke
  1570. (width 0)
  1571. (type default)
  1572. )
  1573. (uuid "e76a8482-f422-40d9-beaa-4b2f92363c0d")
  1574. )
  1575. (wire
  1576. (pts
  1577. (xy 127 85.09) (xy 127 87.63)
  1578. )
  1579. (stroke
  1580. (width 0)
  1581. (type default)
  1582. )
  1583. (uuid "ea3873d2-cc12-46a7-a4dc-2cc2728cabdf")
  1584. )
  1585. (wire
  1586. (pts
  1587. (xy 106.68 74.93) (xy 106.68 95.25)
  1588. )
  1589. (stroke
  1590. (width 0)
  1591. (type default)
  1592. )
  1593. (uuid "ee0283cc-e936-45cd-894f-2bd256418e20")
  1594. )
  1595. (wire
  1596. (pts
  1597. (xy 144.78 87.63) (xy 144.78 90.17)
  1598. )
  1599. (stroke
  1600. (width 0)
  1601. (type default)
  1602. )
  1603. (uuid "f250a5b8-ea40-42e2-9303-d60bc11965b3")
  1604. )
  1605. (wire
  1606. (pts
  1607. (xy 176.53 102.87) (xy 199.39 102.87)
  1608. )
  1609. (stroke
  1610. (width 0)
  1611. (type default)
  1612. )
  1613. (uuid "f50120c8-0a6f-4096-99f6-ebd0f11f6e88")
  1614. )
  1615. (wire
  1616. (pts
  1617. (xy 116.84 107.95) (xy 153.67 107.95)
  1618. )
  1619. (stroke
  1620. (width 0)
  1621. (type default)
  1622. )
  1623. (uuid "fe693fa7-938c-4b72-b442-00da6ce78340")
  1624. )
  1625. (wire
  1626. (pts
  1627. (xy 179.07 96.52) (xy 179.07 105.41)
  1628. )
  1629. (stroke
  1630. (width 0)
  1631. (type default)
  1632. )
  1633. (uuid "ff993559-dda2-4c2a-a53e-e6632487105e")
  1634. )
  1635. (symbol
  1636. (lib_id "Device:R")
  1637. (at 153.67 93.98 0)
  1638. (unit 1)
  1639. (exclude_from_sim no)
  1640. (in_bom yes)
  1641. (on_board yes)
  1642. (dnp no)
  1643. (fields_autoplaced yes)
  1644. (uuid "1f714be3-df94-4f3a-85fc-021c983dde7b")
  1645. (property "Reference" "R8"
  1646. (at 156.21 92.7099 0)
  1647. (effects
  1648. (font
  1649. (size 1.27 1.27)
  1650. )
  1651. (justify left)
  1652. )
  1653. )
  1654. (property "Value" "5k1"
  1655. (at 156.21 95.2499 0)
  1656. (effects
  1657. (font
  1658. (size 1.27 1.27)
  1659. )
  1660. (justify left)
  1661. )
  1662. )
  1663. (property "Footprint" ""
  1664. (at 151.892 93.98 90)
  1665. (effects
  1666. (font
  1667. (size 1.27 1.27)
  1668. )
  1669. (hide yes)
  1670. )
  1671. )
  1672. (property "Datasheet" "~"
  1673. (at 153.67 93.98 0)
  1674. (effects
  1675. (font
  1676. (size 1.27 1.27)
  1677. )
  1678. (hide yes)
  1679. )
  1680. )
  1681. (property "Description" "Resistor"
  1682. (at 153.67 93.98 0)
  1683. (effects
  1684. (font
  1685. (size 1.27 1.27)
  1686. )
  1687. (hide yes)
  1688. )
  1689. )
  1690. (pin "2"
  1691. (uuid "f0f92d2d-64e6-4043-861e-ef756080bc7f")
  1692. )
  1693. (pin "1"
  1694. (uuid "88072b60-24cb-4cde-a2ae-2c018280bf23")
  1695. )
  1696. (instances
  1697. (project "cx-micro"
  1698. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  1699. (reference "R8")
  1700. (unit 1)
  1701. )
  1702. )
  1703. )
  1704. )
  1705. (symbol
  1706. (lib_id "MCU_WCH_CH32V0:CH32V003AxMx")
  1707. (at 106.68 110.49 0)
  1708. (unit 1)
  1709. (exclude_from_sim no)
  1710. (in_bom yes)
  1711. (on_board yes)
  1712. (dnp no)
  1713. (uuid "27af8307-4b77-41a0-8bd0-f5f34a042ede")
  1714. (property "Reference" "U1"
  1715. (at 108.8233 92.71 0)
  1716. (effects
  1717. (font
  1718. (size 1.27 1.27)
  1719. )
  1720. (justify left)
  1721. )
  1722. )
  1723. (property "Value" "CH32V003AxMx"
  1724. (at 108.8233 95.25 0)
  1725. (effects
  1726. (font
  1727. (size 1.27 1.27)
  1728. )
  1729. (justify left)
  1730. )
  1731. )
  1732. (property "Footprint" "Package_SO:SOP-16_3.9x9.9mm_P1.27mm"
  1733. (at 104.14 110.49 0)
  1734. (effects
  1735. (font
  1736. (size 1.27 1.27)
  1737. )
  1738. (hide yes)
  1739. )
  1740. )
  1741. (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
  1742. (at 104.14 110.49 0)
  1743. (effects
  1744. (font
  1745. (size 1.27 1.27)
  1746. )
  1747. (hide yes)
  1748. )
  1749. )
  1750. (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."
  1751. (at 106.68 110.49 0)
  1752. (effects
  1753. (font
  1754. (size 1.27 1.27)
  1755. )
  1756. (hide yes)
  1757. )
  1758. )
  1759. (pin "7"
  1760. (uuid "3bcfece6-48b0-4172-803f-5509f6217b41")
  1761. )
  1762. (pin "11"
  1763. (uuid "5c71b162-cf2f-4179-84ee-973e29249c55")
  1764. )
  1765. (pin "12"
  1766. (uuid "0dd3e95d-f02c-4093-a711-43d24dcbce03")
  1767. )
  1768. (pin "9"
  1769. (uuid "6b256c67-07fa-4a20-a2de-dd3a33a0f797")
  1770. )
  1771. (pin "15"
  1772. (uuid "6b294e5a-57eb-47b2-98eb-ccdfa1bd18a4")
  1773. )
  1774. (pin "8"
  1775. (uuid "09d4fb78-3073-400c-882c-a9bf71e44f8b")
  1776. )
  1777. (pin "16"
  1778. (uuid "ec447782-122f-47fa-80ac-d0f539687b68")
  1779. )
  1780. (pin "1"
  1781. (uuid "c7aaa31d-e755-43b3-839a-69438740efab")
  1782. )
  1783. (pin "10"
  1784. (uuid "2445bdf4-ede3-41cf-a2cc-a1cd310f5d10")
  1785. )
  1786. (pin "13"
  1787. (uuid "9e70af00-073b-49f6-a2fb-a280ecc251ac")
  1788. )
  1789. (pin "14"
  1790. (uuid "ae872abb-ac61-4fea-8adf-8a12364b96ac")
  1791. )
  1792. (pin "2"
  1793. (uuid "6e72f596-356b-4534-9a20-45dca0d21817")
  1794. )
  1795. (pin "3"
  1796. (uuid "6b64785d-8dac-4314-986a-51acebfef134")
  1797. )
  1798. (pin "4"
  1799. (uuid "c545694b-461b-45e9-8c28-430806a9d52d")
  1800. )
  1801. (pin "5"
  1802. (uuid "2ca01504-0a68-49ab-bbd8-76a0b11c6410")
  1803. )
  1804. (pin "6"
  1805. (uuid "84167ab5-ba2d-4b75-9885-d92099918116")
  1806. )
  1807. (instances
  1808. (project ""
  1809. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  1810. (reference "U1")
  1811. (unit 1)
  1812. )
  1813. )
  1814. )
  1815. )
  1816. (symbol
  1817. (lib_id "Device:C")
  1818. (at 83.82 81.28 0)
  1819. (unit 1)
  1820. (exclude_from_sim no)
  1821. (in_bom yes)
  1822. (on_board yes)
  1823. (dnp no)
  1824. (fields_autoplaced yes)
  1825. (uuid "5067087a-7fec-4bf0-9890-8c21ed31f75b")
  1826. (property "Reference" "C2"
  1827. (at 87.63 80.0099 0)
  1828. (effects
  1829. (font
  1830. (size 1.27 1.27)
  1831. )
  1832. (justify left)
  1833. )
  1834. )
  1835. (property "Value" "100n"
  1836. (at 87.63 82.5499 0)
  1837. (effects
  1838. (font
  1839. (size 1.27 1.27)
  1840. )
  1841. (justify left)
  1842. )
  1843. )
  1844. (property "Footprint" ""
  1845. (at 84.7852 85.09 0)
  1846. (effects
  1847. (font
  1848. (size 1.27 1.27)
  1849. )
  1850. (hide yes)
  1851. )
  1852. )
  1853. (property "Datasheet" "~"
  1854. (at 83.82 81.28 0)
  1855. (effects
  1856. (font
  1857. (size 1.27 1.27)
  1858. )
  1859. (hide yes)
  1860. )
  1861. )
  1862. (property "Description" "Unpolarized capacitor"
  1863. (at 83.82 81.28 0)
  1864. (effects
  1865. (font
  1866. (size 1.27 1.27)
  1867. )
  1868. (hide yes)
  1869. )
  1870. )
  1871. (pin "2"
  1872. (uuid "9fa42455-4f06-417a-aeac-ec8f80480603")
  1873. )
  1874. (pin "1"
  1875. (uuid "91826c80-6c03-4c77-a0a9-01ec605d38d4")
  1876. )
  1877. (instances
  1878. (project "cx-micro"
  1879. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  1880. (reference "C2")
  1881. (unit 1)
  1882. )
  1883. )
  1884. )
  1885. )
  1886. (symbol
  1887. (lib_id "Device:R")
  1888. (at 127 93.98 0)
  1889. (unit 1)
  1890. (exclude_from_sim no)
  1891. (in_bom yes)
  1892. (on_board yes)
  1893. (dnp no)
  1894. (fields_autoplaced yes)
  1895. (uuid "5b0ad2dc-56ad-4174-a053-bc0702d7159f")
  1896. (property "Reference" "R9"
  1897. (at 129.54 92.7099 0)
  1898. (effects
  1899. (font
  1900. (size 1.27 1.27)
  1901. )
  1902. (justify left)
  1903. )
  1904. )
  1905. (property "Value" "5k1"
  1906. (at 129.54 95.2499 0)
  1907. (effects
  1908. (font
  1909. (size 1.27 1.27)
  1910. )
  1911. (justify left)
  1912. )
  1913. )
  1914. (property "Footprint" ""
  1915. (at 125.222 93.98 90)
  1916. (effects
  1917. (font
  1918. (size 1.27 1.27)
  1919. )
  1920. (hide yes)
  1921. )
  1922. )
  1923. (property "Datasheet" "~"
  1924. (at 127 93.98 0)
  1925. (effects
  1926. (font
  1927. (size 1.27 1.27)
  1928. )
  1929. (hide yes)
  1930. )
  1931. )
  1932. (property "Description" "Resistor"
  1933. (at 127 93.98 0)
  1934. (effects
  1935. (font
  1936. (size 1.27 1.27)
  1937. )
  1938. (hide yes)
  1939. )
  1940. )
  1941. (pin "2"
  1942. (uuid "a1fae877-61fa-447f-81d8-a68e7bb780f0")
  1943. )
  1944. (pin "1"
  1945. (uuid "0d86ebe1-f627-40a9-aaa9-49a0bd5800f3")
  1946. )
  1947. (instances
  1948. (project "cx-micro"
  1949. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  1950. (reference "R9")
  1951. (unit 1)
  1952. )
  1953. )
  1954. )
  1955. )
  1956. (symbol
  1957. (lib_id "Device:R")
  1958. (at 144.78 93.98 0)
  1959. (unit 1)
  1960. (exclude_from_sim no)
  1961. (in_bom yes)
  1962. (on_board yes)
  1963. (dnp no)
  1964. (fields_autoplaced yes)
  1965. (uuid "5baf2d35-babf-4cee-9fc3-2866aa303550")
  1966. (property "Reference" "R7"
  1967. (at 147.32 92.7099 0)
  1968. (effects
  1969. (font
  1970. (size 1.27 1.27)
  1971. )
  1972. (justify left)
  1973. )
  1974. )
  1975. (property "Value" "5k1"
  1976. (at 147.32 95.2499 0)
  1977. (effects
  1978. (font
  1979. (size 1.27 1.27)
  1980. )
  1981. (justify left)
  1982. )
  1983. )
  1984. (property "Footprint" ""
  1985. (at 143.002 93.98 90)
  1986. (effects
  1987. (font
  1988. (size 1.27 1.27)
  1989. )
  1990. (hide yes)
  1991. )
  1992. )
  1993. (property "Datasheet" "~"
  1994. (at 144.78 93.98 0)
  1995. (effects
  1996. (font
  1997. (size 1.27 1.27)
  1998. )
  1999. (hide yes)
  2000. )
  2001. )
  2002. (property "Description" "Resistor"
  2003. (at 144.78 93.98 0)
  2004. (effects
  2005. (font
  2006. (size 1.27 1.27)
  2007. )
  2008. (hide yes)
  2009. )
  2010. )
  2011. (pin "2"
  2012. (uuid "f16aec34-0190-479a-9586-d82df2977ff5")
  2013. )
  2014. (pin "1"
  2015. (uuid "b759506c-8527-42c8-b1bf-d7a181de0d4d")
  2016. )
  2017. (instances
  2018. (project ""
  2019. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2020. (reference "R7")
  2021. (unit 1)
  2022. )
  2023. )
  2024. )
  2025. )
  2026. (symbol
  2027. (lib_id "power:GND")
  2028. (at 96.52 87.63 0)
  2029. (unit 1)
  2030. (exclude_from_sim no)
  2031. (in_bom yes)
  2032. (on_board yes)
  2033. (dnp no)
  2034. (fields_autoplaced yes)
  2035. (uuid "72393d13-a103-4688-ae97-a202fe3ab235")
  2036. (property "Reference" "#PWR07"
  2037. (at 96.52 93.98 0)
  2038. (effects
  2039. (font
  2040. (size 1.27 1.27)
  2041. )
  2042. (hide yes)
  2043. )
  2044. )
  2045. (property "Value" "GND"
  2046. (at 96.52 92.71 0)
  2047. (effects
  2048. (font
  2049. (size 1.27 1.27)
  2050. )
  2051. )
  2052. )
  2053. (property "Footprint" ""
  2054. (at 96.52 87.63 0)
  2055. (effects
  2056. (font
  2057. (size 1.27 1.27)
  2058. )
  2059. (hide yes)
  2060. )
  2061. )
  2062. (property "Datasheet" ""
  2063. (at 96.52 87.63 0)
  2064. (effects
  2065. (font
  2066. (size 1.27 1.27)
  2067. )
  2068. (hide yes)
  2069. )
  2070. )
  2071. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2072. (at 96.52 87.63 0)
  2073. (effects
  2074. (font
  2075. (size 1.27 1.27)
  2076. )
  2077. (hide yes)
  2078. )
  2079. )
  2080. (pin "1"
  2081. (uuid "e24413be-7637-4815-a221-eb3f531559e8")
  2082. )
  2083. (instances
  2084. (project "cx-micro"
  2085. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2086. (reference "#PWR07")
  2087. (unit 1)
  2088. )
  2089. )
  2090. )
  2091. )
  2092. (symbol
  2093. (lib_id "power:+3V3")
  2094. (at 106.68 72.39 0)
  2095. (unit 1)
  2096. (exclude_from_sim no)
  2097. (in_bom yes)
  2098. (on_board yes)
  2099. (dnp no)
  2100. (fields_autoplaced yes)
  2101. (uuid "78453e17-758d-425d-8fce-3fe959770331")
  2102. (property "Reference" "#PWR05"
  2103. (at 106.68 76.2 0)
  2104. (effects
  2105. (font
  2106. (size 1.27 1.27)
  2107. )
  2108. (hide yes)
  2109. )
  2110. )
  2111. (property "Value" "+3V3"
  2112. (at 106.68 67.31 0)
  2113. (effects
  2114. (font
  2115. (size 1.27 1.27)
  2116. )
  2117. )
  2118. )
  2119. (property "Footprint" ""
  2120. (at 106.68 72.39 0)
  2121. (effects
  2122. (font
  2123. (size 1.27 1.27)
  2124. )
  2125. (hide yes)
  2126. )
  2127. )
  2128. (property "Datasheet" ""
  2129. (at 106.68 72.39 0)
  2130. (effects
  2131. (font
  2132. (size 1.27 1.27)
  2133. )
  2134. (hide yes)
  2135. )
  2136. )
  2137. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2138. (at 106.68 72.39 0)
  2139. (effects
  2140. (font
  2141. (size 1.27 1.27)
  2142. )
  2143. (hide yes)
  2144. )
  2145. )
  2146. (pin "1"
  2147. (uuid "764e6618-b750-47b6-867b-266828e9b3b2")
  2148. )
  2149. (instances
  2150. (project "cx-micro"
  2151. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2152. (reference "#PWR05")
  2153. (unit 1)
  2154. )
  2155. )
  2156. )
  2157. )
  2158. (symbol
  2159. (lib_id "power:GND")
  2160. (at 106.68 128.27 0)
  2161. (unit 1)
  2162. (exclude_from_sim no)
  2163. (in_bom yes)
  2164. (on_board yes)
  2165. (dnp no)
  2166. (fields_autoplaced yes)
  2167. (uuid "7948240e-1835-4ee5-bb3b-fdd200044a92")
  2168. (property "Reference" "#PWR06"
  2169. (at 106.68 134.62 0)
  2170. (effects
  2171. (font
  2172. (size 1.27 1.27)
  2173. )
  2174. (hide yes)
  2175. )
  2176. )
  2177. (property "Value" "GND"
  2178. (at 106.68 133.35 0)
  2179. (effects
  2180. (font
  2181. (size 1.27 1.27)
  2182. )
  2183. )
  2184. )
  2185. (property "Footprint" ""
  2186. (at 106.68 128.27 0)
  2187. (effects
  2188. (font
  2189. (size 1.27 1.27)
  2190. )
  2191. (hide yes)
  2192. )
  2193. )
  2194. (property "Datasheet" ""
  2195. (at 106.68 128.27 0)
  2196. (effects
  2197. (font
  2198. (size 1.27 1.27)
  2199. )
  2200. (hide yes)
  2201. )
  2202. )
  2203. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2204. (at 106.68 128.27 0)
  2205. (effects
  2206. (font
  2207. (size 1.27 1.27)
  2208. )
  2209. (hide yes)
  2210. )
  2211. )
  2212. (pin "1"
  2213. (uuid "1f63b162-231c-45f2-9a90-93ec432d2c4d")
  2214. )
  2215. (instances
  2216. (project ""
  2217. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2218. (reference "#PWR06")
  2219. (unit 1)
  2220. )
  2221. )
  2222. )
  2223. )
  2224. (symbol
  2225. (lib_id "power:GND")
  2226. (at 83.82 87.63 0)
  2227. (unit 1)
  2228. (exclude_from_sim no)
  2229. (in_bom yes)
  2230. (on_board yes)
  2231. (dnp no)
  2232. (fields_autoplaced yes)
  2233. (uuid "80e83e2b-bddc-4df2-a671-c309962ab5c3")
  2234. (property "Reference" "#PWR08"
  2235. (at 83.82 93.98 0)
  2236. (effects
  2237. (font
  2238. (size 1.27 1.27)
  2239. )
  2240. (hide yes)
  2241. )
  2242. )
  2243. (property "Value" "GND"
  2244. (at 83.82 92.71 0)
  2245. (effects
  2246. (font
  2247. (size 1.27 1.27)
  2248. )
  2249. )
  2250. )
  2251. (property "Footprint" ""
  2252. (at 83.82 87.63 0)
  2253. (effects
  2254. (font
  2255. (size 1.27 1.27)
  2256. )
  2257. (hide yes)
  2258. )
  2259. )
  2260. (property "Datasheet" ""
  2261. (at 83.82 87.63 0)
  2262. (effects
  2263. (font
  2264. (size 1.27 1.27)
  2265. )
  2266. (hide yes)
  2267. )
  2268. )
  2269. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2270. (at 83.82 87.63 0)
  2271. (effects
  2272. (font
  2273. (size 1.27 1.27)
  2274. )
  2275. (hide yes)
  2276. )
  2277. )
  2278. (pin "1"
  2279. (uuid "f7e13473-3177-4757-a2dd-362e7038cefe")
  2280. )
  2281. (instances
  2282. (project "cx-micro"
  2283. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2284. (reference "#PWR08")
  2285. (unit 1)
  2286. )
  2287. )
  2288. )
  2289. )
  2290. (symbol
  2291. (lib_id "power:+3V3")
  2292. (at 127 85.09 0)
  2293. (unit 1)
  2294. (exclude_from_sim no)
  2295. (in_bom yes)
  2296. (on_board yes)
  2297. (dnp no)
  2298. (fields_autoplaced yes)
  2299. (uuid "ae6b1d30-4461-4b31-8d6c-9f39b9ac108f")
  2300. (property "Reference" "#PWR04"
  2301. (at 127 88.9 0)
  2302. (effects
  2303. (font
  2304. (size 1.27 1.27)
  2305. )
  2306. (hide yes)
  2307. )
  2308. )
  2309. (property "Value" "+3V3"
  2310. (at 127 80.01 0)
  2311. (effects
  2312. (font
  2313. (size 1.27 1.27)
  2314. )
  2315. )
  2316. )
  2317. (property "Footprint" ""
  2318. (at 127 85.09 0)
  2319. (effects
  2320. (font
  2321. (size 1.27 1.27)
  2322. )
  2323. (hide yes)
  2324. )
  2325. )
  2326. (property "Datasheet" ""
  2327. (at 127 85.09 0)
  2328. (effects
  2329. (font
  2330. (size 1.27 1.27)
  2331. )
  2332. (hide yes)
  2333. )
  2334. )
  2335. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2336. (at 127 85.09 0)
  2337. (effects
  2338. (font
  2339. (size 1.27 1.27)
  2340. )
  2341. (hide yes)
  2342. )
  2343. )
  2344. (pin "1"
  2345. (uuid "728da6f0-1fa6-4066-b1ee-c4f474d4f53c")
  2346. )
  2347. (instances
  2348. (project ""
  2349. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2350. (reference "#PWR04")
  2351. (unit 1)
  2352. )
  2353. )
  2354. )
  2355. )
  2356. (symbol
  2357. (lib_id "Device:C")
  2358. (at 96.52 81.28 0)
  2359. (unit 1)
  2360. (exclude_from_sim no)
  2361. (in_bom yes)
  2362. (on_board yes)
  2363. (dnp no)
  2364. (fields_autoplaced yes)
  2365. (uuid "c73488dc-9c04-4f4f-be3b-e0de7ed7c1c9")
  2366. (property "Reference" "C1"
  2367. (at 100.33 80.0099 0)
  2368. (effects
  2369. (font
  2370. (size 1.27 1.27)
  2371. )
  2372. (justify left)
  2373. )
  2374. )
  2375. (property "Value" "100n"
  2376. (at 100.33 82.5499 0)
  2377. (effects
  2378. (font
  2379. (size 1.27 1.27)
  2380. )
  2381. (justify left)
  2382. )
  2383. )
  2384. (property "Footprint" ""
  2385. (at 97.4852 85.09 0)
  2386. (effects
  2387. (font
  2388. (size 1.27 1.27)
  2389. )
  2390. (hide yes)
  2391. )
  2392. )
  2393. (property "Datasheet" "~"
  2394. (at 96.52 81.28 0)
  2395. (effects
  2396. (font
  2397. (size 1.27 1.27)
  2398. )
  2399. (hide yes)
  2400. )
  2401. )
  2402. (property "Description" "Unpolarized capacitor"
  2403. (at 96.52 81.28 0)
  2404. (effects
  2405. (font
  2406. (size 1.27 1.27)
  2407. )
  2408. (hide yes)
  2409. )
  2410. )
  2411. (pin "2"
  2412. (uuid "b850e1d0-4675-4026-9036-7e92520745e5")
  2413. )
  2414. (pin "1"
  2415. (uuid "57a79ef5-3282-4331-9941-7fbdd76a3d40")
  2416. )
  2417. (instances
  2418. (project ""
  2419. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2420. (reference "C1")
  2421. (unit 1)
  2422. )
  2423. )
  2424. )
  2425. )
  2426. (symbol
  2427. (lib_id "Device:R")
  2428. (at 135.89 93.98 0)
  2429. (unit 1)
  2430. (exclude_from_sim no)
  2431. (in_bom yes)
  2432. (on_board yes)
  2433. (dnp no)
  2434. (fields_autoplaced yes)
  2435. (uuid "f77fd619-6b5e-4a8d-b5a1-da765a4ceefe")
  2436. (property "Reference" "R10"
  2437. (at 138.43 92.7099 0)
  2438. (effects
  2439. (font
  2440. (size 1.27 1.27)
  2441. )
  2442. (justify left)
  2443. )
  2444. )
  2445. (property "Value" "5k1"
  2446. (at 138.43 95.2499 0)
  2447. (effects
  2448. (font
  2449. (size 1.27 1.27)
  2450. )
  2451. (justify left)
  2452. )
  2453. )
  2454. (property "Footprint" ""
  2455. (at 134.112 93.98 90)
  2456. (effects
  2457. (font
  2458. (size 1.27 1.27)
  2459. )
  2460. (hide yes)
  2461. )
  2462. )
  2463. (property "Datasheet" "~"
  2464. (at 135.89 93.98 0)
  2465. (effects
  2466. (font
  2467. (size 1.27 1.27)
  2468. )
  2469. (hide yes)
  2470. )
  2471. )
  2472. (property "Description" "Resistor"
  2473. (at 135.89 93.98 0)
  2474. (effects
  2475. (font
  2476. (size 1.27 1.27)
  2477. )
  2478. (hide yes)
  2479. )
  2480. )
  2481. (pin "2"
  2482. (uuid "7b258d6b-50e3-4cfb-95cf-7c08da379696")
  2483. )
  2484. (pin "1"
  2485. (uuid "6fb43b45-949b-45c8-922e-6e0be5b618eb")
  2486. )
  2487. (instances
  2488. (project "cx-micro"
  2489. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2490. (reference "R10")
  2491. (unit 1)
  2492. )
  2493. )
  2494. )
  2495. )
  2496. (sheet
  2497. (at 193.04 87.63)
  2498. (size 15.24 8.89)
  2499. (exclude_from_sim no)
  2500. (in_bom yes)
  2501. (on_board yes)
  2502. (dnp no)
  2503. (fields_autoplaced yes)
  2504. (stroke
  2505. (width 0.1524)
  2506. (type solid)
  2507. )
  2508. (fill
  2509. (color 0 0 0 0.0000)
  2510. )
  2511. (uuid "108b84b4-0a01-4e81-b374-cb69b0f69f5c")
  2512. (property "Sheetname" "Keyboard right"
  2513. (at 193.04 86.9184 0)
  2514. (effects
  2515. (font
  2516. (size 1.27 1.27)
  2517. )
  2518. (justify left bottom)
  2519. )
  2520. )
  2521. (property "Sheetfile" "keyboard_part.kicad_sch"
  2522. (at 193.04 97.1046 0)
  2523. (effects
  2524. (font
  2525. (size 1.27 1.27)
  2526. )
  2527. (justify left top)
  2528. (hide yes)
  2529. )
  2530. )
  2531. (pin "A" input
  2532. (at 196.85 96.52 270)
  2533. (uuid "1516fd66-a3a0-4cbb-9576-e6a3d5d57814")
  2534. (effects
  2535. (font
  2536. (size 1.27 1.27)
  2537. )
  2538. (justify left)
  2539. )
  2540. )
  2541. (pin "C" input
  2542. (at 201.93 96.52 270)
  2543. (uuid "65477774-71cf-4f4a-8865-b79531463537")
  2544. (effects
  2545. (font
  2546. (size 1.27 1.27)
  2547. )
  2548. (justify left)
  2549. )
  2550. )
  2551. (pin "D" input
  2552. (at 204.47 96.52 270)
  2553. (uuid "1ea31624-c4d5-4aff-b875-922bcb45001a")
  2554. (effects
  2555. (font
  2556. (size 1.27 1.27)
  2557. )
  2558. (justify left)
  2559. )
  2560. )
  2561. (pin "ENABLE" input
  2562. (at 193.04 91.44 180)
  2563. (uuid "f0941e47-b7dc-4ae7-b028-37c7943c180d")
  2564. (effects
  2565. (font
  2566. (size 1.27 1.27)
  2567. )
  2568. (justify left)
  2569. )
  2570. )
  2571. (pin "B" input
  2572. (at 199.39 96.52 270)
  2573. (uuid "2530a1d1-6ae0-4e72-b7cb-3a448ca7bd02")
  2574. (effects
  2575. (font
  2576. (size 1.27 1.27)
  2577. )
  2578. (justify left)
  2579. )
  2580. )
  2581. (instances
  2582. (project "cx-micro"
  2583. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2584. (page "4")
  2585. )
  2586. )
  2587. )
  2588. )
  2589. (sheet
  2590. (at 215.9 87.63)
  2591. (size 15.24 8.89)
  2592. (exclude_from_sim no)
  2593. (in_bom yes)
  2594. (on_board yes)
  2595. (dnp no)
  2596. (fields_autoplaced yes)
  2597. (stroke
  2598. (width 0.1524)
  2599. (type solid)
  2600. )
  2601. (fill
  2602. (color 0 0 0 0.0000)
  2603. )
  2604. (uuid "50dd0722-e8c6-4631-89da-cd2fce0f6fba")
  2605. (property "Sheetname" "Keyboard top"
  2606. (at 215.9 86.9184 0)
  2607. (effects
  2608. (font
  2609. (size 1.27 1.27)
  2610. )
  2611. (justify left bottom)
  2612. )
  2613. )
  2614. (property "Sheetfile" "keyboard_part.kicad_sch"
  2615. (at 215.9 97.1046 0)
  2616. (effects
  2617. (font
  2618. (size 1.27 1.27)
  2619. )
  2620. (justify left top)
  2621. (hide yes)
  2622. )
  2623. )
  2624. (pin "A" input
  2625. (at 219.71 96.52 270)
  2626. (uuid "33a9ae8c-6975-421b-898e-abe9c2b03940")
  2627. (effects
  2628. (font
  2629. (size 1.27 1.27)
  2630. )
  2631. (justify left)
  2632. )
  2633. )
  2634. (pin "C" input
  2635. (at 224.79 96.52 270)
  2636. (uuid "a05b0aa1-39f3-491b-be81-c3e8022e1603")
  2637. (effects
  2638. (font
  2639. (size 1.27 1.27)
  2640. )
  2641. (justify left)
  2642. )
  2643. )
  2644. (pin "D" input
  2645. (at 227.33 96.52 270)
  2646. (uuid "2b7036a1-6e40-43ec-9498-7fef3e492885")
  2647. (effects
  2648. (font
  2649. (size 1.27 1.27)
  2650. )
  2651. (justify left)
  2652. )
  2653. )
  2654. (pin "ENABLE" input
  2655. (at 215.9 91.44 180)
  2656. (uuid "7565c6bf-71fe-4826-9eb3-82490af8e785")
  2657. (effects
  2658. (font
  2659. (size 1.27 1.27)
  2660. )
  2661. (justify left)
  2662. )
  2663. )
  2664. (pin "B" input
  2665. (at 222.25 96.52 270)
  2666. (uuid "0aa006b0-a80e-4715-be05-9544af9961ad")
  2667. (effects
  2668. (font
  2669. (size 1.27 1.27)
  2670. )
  2671. (justify left)
  2672. )
  2673. )
  2674. (instances
  2675. (project "cx-micro"
  2676. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2677. (page "5")
  2678. )
  2679. )
  2680. )
  2681. )
  2682. (sheet
  2683. (at 170.18 87.63)
  2684. (size 15.24 8.89)
  2685. (exclude_from_sim no)
  2686. (in_bom yes)
  2687. (on_board yes)
  2688. (dnp no)
  2689. (fields_autoplaced yes)
  2690. (stroke
  2691. (width 0.1524)
  2692. (type solid)
  2693. )
  2694. (fill
  2695. (color 0 0 0 0.0000)
  2696. )
  2697. (uuid "c4ae203b-7f1c-48a7-9851-9a59485681d4")
  2698. (property "Sheetname" "Keyboard left"
  2699. (at 170.18 86.9184 0)
  2700. (effects
  2701. (font
  2702. (size 1.27 1.27)
  2703. )
  2704. (justify left bottom)
  2705. )
  2706. )
  2707. (property "Sheetfile" "keyboard_part.kicad_sch"
  2708. (at 170.18 97.1046 0)
  2709. (effects
  2710. (font
  2711. (size 1.27 1.27)
  2712. )
  2713. (justify left top)
  2714. (hide yes)
  2715. )
  2716. )
  2717. (pin "A" input
  2718. (at 173.99 96.52 270)
  2719. (uuid "ff507257-83c1-496e-af44-b3ca497076be")
  2720. (effects
  2721. (font
  2722. (size 1.27 1.27)
  2723. )
  2724. (justify left)
  2725. )
  2726. )
  2727. (pin "C" input
  2728. (at 179.07 96.52 270)
  2729. (uuid "ad2ea1e2-dcf9-42a9-b33b-c2658b3964d5")
  2730. (effects
  2731. (font
  2732. (size 1.27 1.27)
  2733. )
  2734. (justify left)
  2735. )
  2736. )
  2737. (pin "D" input
  2738. (at 181.61 96.52 270)
  2739. (uuid "8d3bdda4-07f5-47f7-a308-3ff0b5c21a76")
  2740. (effects
  2741. (font
  2742. (size 1.27 1.27)
  2743. )
  2744. (justify left)
  2745. )
  2746. )
  2747. (pin "ENABLE" input
  2748. (at 170.18 91.44 180)
  2749. (uuid "806c92fe-e3a1-4756-861c-e1df2d624c8f")
  2750. (effects
  2751. (font
  2752. (size 1.27 1.27)
  2753. )
  2754. (justify left)
  2755. )
  2756. )
  2757. (pin "B" input
  2758. (at 176.53 96.52 270)
  2759. (uuid "14e63b5b-6893-44e7-81c6-2c48d474b0b4")
  2760. (effects
  2761. (font
  2762. (size 1.27 1.27)
  2763. )
  2764. (justify left)
  2765. )
  2766. )
  2767. (instances
  2768. (project "cx-micro"
  2769. (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
  2770. (page "2")
  2771. )
  2772. )
  2773. )
  2774. )
  2775. )