control_section.kicad_sch 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "2c9f3f89-493c-4a39-beb8-9360fb49beb4")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Connector_Generic:Conn_02x05_Counter_Clockwise"
  9. (pin_names
  10. (offset 1.016) hide)
  11. (exclude_from_sim no)
  12. (in_bom yes)
  13. (on_board yes)
  14. (property "Reference" "J"
  15. (at 1.27 7.62 0)
  16. (effects
  17. (font
  18. (size 1.27 1.27)
  19. )
  20. )
  21. )
  22. (property "Value" "Conn_02x05_Counter_Clockwise"
  23. (at 1.27 -7.62 0)
  24. (effects
  25. (font
  26. (size 1.27 1.27)
  27. )
  28. )
  29. )
  30. (property "Footprint" ""
  31. (at 0 0 0)
  32. (effects
  33. (font
  34. (size 1.27 1.27)
  35. )
  36. (hide yes)
  37. )
  38. )
  39. (property "Datasheet" "~"
  40. (at 0 0 0)
  41. (effects
  42. (font
  43. (size 1.27 1.27)
  44. )
  45. (hide yes)
  46. )
  47. )
  48. (property "Description" "Generic connector, double row, 02x05, counter clockwise pin numbering scheme (similar to DIP package numbering), script generated (kicad-library-utils/schlib/autogen/connector/)"
  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" "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" "Connector*:*_2x??_*"
  67. (at 0 0 0)
  68. (effects
  69. (font
  70. (size 1.27 1.27)
  71. )
  72. (hide yes)
  73. )
  74. )
  75. (symbol "Conn_02x05_Counter_Clockwise_1_1"
  76. (rectangle
  77. (start -1.27 -4.953)
  78. (end 0 -5.207)
  79. (stroke
  80. (width 0.1524)
  81. (type default)
  82. )
  83. (fill
  84. (type none)
  85. )
  86. )
  87. (rectangle
  88. (start -1.27 -2.413)
  89. (end 0 -2.667)
  90. (stroke
  91. (width 0.1524)
  92. (type default)
  93. )
  94. (fill
  95. (type none)
  96. )
  97. )
  98. (rectangle
  99. (start -1.27 0.127)
  100. (end 0 -0.127)
  101. (stroke
  102. (width 0.1524)
  103. (type default)
  104. )
  105. (fill
  106. (type none)
  107. )
  108. )
  109. (rectangle
  110. (start -1.27 2.667)
  111. (end 0 2.413)
  112. (stroke
  113. (width 0.1524)
  114. (type default)
  115. )
  116. (fill
  117. (type none)
  118. )
  119. )
  120. (rectangle
  121. (start -1.27 5.207)
  122. (end 0 4.953)
  123. (stroke
  124. (width 0.1524)
  125. (type default)
  126. )
  127. (fill
  128. (type none)
  129. )
  130. )
  131. (rectangle
  132. (start -1.27 6.35)
  133. (end 3.81 -6.35)
  134. (stroke
  135. (width 0.254)
  136. (type default)
  137. )
  138. (fill
  139. (type background)
  140. )
  141. )
  142. (rectangle
  143. (start 3.81 -4.953)
  144. (end 2.54 -5.207)
  145. (stroke
  146. (width 0.1524)
  147. (type default)
  148. )
  149. (fill
  150. (type none)
  151. )
  152. )
  153. (rectangle
  154. (start 3.81 -2.413)
  155. (end 2.54 -2.667)
  156. (stroke
  157. (width 0.1524)
  158. (type default)
  159. )
  160. (fill
  161. (type none)
  162. )
  163. )
  164. (rectangle
  165. (start 3.81 0.127)
  166. (end 2.54 -0.127)
  167. (stroke
  168. (width 0.1524)
  169. (type default)
  170. )
  171. (fill
  172. (type none)
  173. )
  174. )
  175. (rectangle
  176. (start 3.81 2.667)
  177. (end 2.54 2.413)
  178. (stroke
  179. (width 0.1524)
  180. (type default)
  181. )
  182. (fill
  183. (type none)
  184. )
  185. )
  186. (rectangle
  187. (start 3.81 5.207)
  188. (end 2.54 4.953)
  189. (stroke
  190. (width 0.1524)
  191. (type default)
  192. )
  193. (fill
  194. (type none)
  195. )
  196. )
  197. (pin passive line
  198. (at -5.08 5.08 0)
  199. (length 3.81)
  200. (name "Pin_1"
  201. (effects
  202. (font
  203. (size 1.27 1.27)
  204. )
  205. )
  206. )
  207. (number "1"
  208. (effects
  209. (font
  210. (size 1.27 1.27)
  211. )
  212. )
  213. )
  214. )
  215. (pin passive line
  216. (at 7.62 5.08 180)
  217. (length 3.81)
  218. (name "Pin_10"
  219. (effects
  220. (font
  221. (size 1.27 1.27)
  222. )
  223. )
  224. )
  225. (number "10"
  226. (effects
  227. (font
  228. (size 1.27 1.27)
  229. )
  230. )
  231. )
  232. )
  233. (pin passive line
  234. (at -5.08 2.54 0)
  235. (length 3.81)
  236. (name "Pin_2"
  237. (effects
  238. (font
  239. (size 1.27 1.27)
  240. )
  241. )
  242. )
  243. (number "2"
  244. (effects
  245. (font
  246. (size 1.27 1.27)
  247. )
  248. )
  249. )
  250. )
  251. (pin passive line
  252. (at -5.08 0 0)
  253. (length 3.81)
  254. (name "Pin_3"
  255. (effects
  256. (font
  257. (size 1.27 1.27)
  258. )
  259. )
  260. )
  261. (number "3"
  262. (effects
  263. (font
  264. (size 1.27 1.27)
  265. )
  266. )
  267. )
  268. )
  269. (pin passive line
  270. (at -5.08 -2.54 0)
  271. (length 3.81)
  272. (name "Pin_4"
  273. (effects
  274. (font
  275. (size 1.27 1.27)
  276. )
  277. )
  278. )
  279. (number "4"
  280. (effects
  281. (font
  282. (size 1.27 1.27)
  283. )
  284. )
  285. )
  286. )
  287. (pin passive line
  288. (at -5.08 -5.08 0)
  289. (length 3.81)
  290. (name "Pin_5"
  291. (effects
  292. (font
  293. (size 1.27 1.27)
  294. )
  295. )
  296. )
  297. (number "5"
  298. (effects
  299. (font
  300. (size 1.27 1.27)
  301. )
  302. )
  303. )
  304. )
  305. (pin passive line
  306. (at 7.62 -5.08 180)
  307. (length 3.81)
  308. (name "Pin_6"
  309. (effects
  310. (font
  311. (size 1.27 1.27)
  312. )
  313. )
  314. )
  315. (number "6"
  316. (effects
  317. (font
  318. (size 1.27 1.27)
  319. )
  320. )
  321. )
  322. )
  323. (pin passive line
  324. (at 7.62 -2.54 180)
  325. (length 3.81)
  326. (name "Pin_7"
  327. (effects
  328. (font
  329. (size 1.27 1.27)
  330. )
  331. )
  332. )
  333. (number "7"
  334. (effects
  335. (font
  336. (size 1.27 1.27)
  337. )
  338. )
  339. )
  340. )
  341. (pin passive line
  342. (at 7.62 0 180)
  343. (length 3.81)
  344. (name "Pin_8"
  345. (effects
  346. (font
  347. (size 1.27 1.27)
  348. )
  349. )
  350. )
  351. (number "8"
  352. (effects
  353. (font
  354. (size 1.27 1.27)
  355. )
  356. )
  357. )
  358. )
  359. (pin passive line
  360. (at 7.62 2.54 180)
  361. (length 3.81)
  362. (name "Pin_9"
  363. (effects
  364. (font
  365. (size 1.27 1.27)
  366. )
  367. )
  368. )
  369. (number "9"
  370. (effects
  371. (font
  372. (size 1.27 1.27)
  373. )
  374. )
  375. )
  376. )
  377. )
  378. )
  379. (symbol "Device:C"
  380. (pin_numbers hide)
  381. (pin_names
  382. (offset 0.254)
  383. )
  384. (exclude_from_sim no)
  385. (in_bom yes)
  386. (on_board yes)
  387. (property "Reference" "C"
  388. (at 0.635 2.54 0)
  389. (effects
  390. (font
  391. (size 1.27 1.27)
  392. )
  393. (justify left)
  394. )
  395. )
  396. (property "Value" "C"
  397. (at 0.635 -2.54 0)
  398. (effects
  399. (font
  400. (size 1.27 1.27)
  401. )
  402. (justify left)
  403. )
  404. )
  405. (property "Footprint" ""
  406. (at 0.9652 -3.81 0)
  407. (effects
  408. (font
  409. (size 1.27 1.27)
  410. )
  411. (hide yes)
  412. )
  413. )
  414. (property "Datasheet" "~"
  415. (at 0 0 0)
  416. (effects
  417. (font
  418. (size 1.27 1.27)
  419. )
  420. (hide yes)
  421. )
  422. )
  423. (property "Description" "Unpolarized capacitor"
  424. (at 0 0 0)
  425. (effects
  426. (font
  427. (size 1.27 1.27)
  428. )
  429. (hide yes)
  430. )
  431. )
  432. (property "ki_keywords" "cap capacitor"
  433. (at 0 0 0)
  434. (effects
  435. (font
  436. (size 1.27 1.27)
  437. )
  438. (hide yes)
  439. )
  440. )
  441. (property "ki_fp_filters" "C_*"
  442. (at 0 0 0)
  443. (effects
  444. (font
  445. (size 1.27 1.27)
  446. )
  447. (hide yes)
  448. )
  449. )
  450. (symbol "C_0_1"
  451. (polyline
  452. (pts
  453. (xy -2.032 -0.762) (xy 2.032 -0.762)
  454. )
  455. (stroke
  456. (width 0.508)
  457. (type default)
  458. )
  459. (fill
  460. (type none)
  461. )
  462. )
  463. (polyline
  464. (pts
  465. (xy -2.032 0.762) (xy 2.032 0.762)
  466. )
  467. (stroke
  468. (width 0.508)
  469. (type default)
  470. )
  471. (fill
  472. (type none)
  473. )
  474. )
  475. )
  476. (symbol "C_1_1"
  477. (pin passive line
  478. (at 0 3.81 270)
  479. (length 2.794)
  480. (name "~"
  481. (effects
  482. (font
  483. (size 1.27 1.27)
  484. )
  485. )
  486. )
  487. (number "1"
  488. (effects
  489. (font
  490. (size 1.27 1.27)
  491. )
  492. )
  493. )
  494. )
  495. (pin passive line
  496. (at 0 -3.81 90)
  497. (length 2.794)
  498. (name "~"
  499. (effects
  500. (font
  501. (size 1.27 1.27)
  502. )
  503. )
  504. )
  505. (number "2"
  506. (effects
  507. (font
  508. (size 1.27 1.27)
  509. )
  510. )
  511. )
  512. )
  513. )
  514. )
  515. (symbol "Device:R"
  516. (pin_numbers hide)
  517. (pin_names
  518. (offset 0)
  519. )
  520. (exclude_from_sim no)
  521. (in_bom yes)
  522. (on_board yes)
  523. (property "Reference" "R"
  524. (at 2.032 0 90)
  525. (effects
  526. (font
  527. (size 1.27 1.27)
  528. )
  529. )
  530. )
  531. (property "Value" "R"
  532. (at 0 0 90)
  533. (effects
  534. (font
  535. (size 1.27 1.27)
  536. )
  537. )
  538. )
  539. (property "Footprint" ""
  540. (at -1.778 0 90)
  541. (effects
  542. (font
  543. (size 1.27 1.27)
  544. )
  545. (hide yes)
  546. )
  547. )
  548. (property "Datasheet" "~"
  549. (at 0 0 0)
  550. (effects
  551. (font
  552. (size 1.27 1.27)
  553. )
  554. (hide yes)
  555. )
  556. )
  557. (property "Description" "Resistor"
  558. (at 0 0 0)
  559. (effects
  560. (font
  561. (size 1.27 1.27)
  562. )
  563. (hide yes)
  564. )
  565. )
  566. (property "ki_keywords" "R res resistor"
  567. (at 0 0 0)
  568. (effects
  569. (font
  570. (size 1.27 1.27)
  571. )
  572. (hide yes)
  573. )
  574. )
  575. (property "ki_fp_filters" "R_*"
  576. (at 0 0 0)
  577. (effects
  578. (font
  579. (size 1.27 1.27)
  580. )
  581. (hide yes)
  582. )
  583. )
  584. (symbol "R_0_1"
  585. (rectangle
  586. (start -1.016 -2.54)
  587. (end 1.016 2.54)
  588. (stroke
  589. (width 0.254)
  590. (type default)
  591. )
  592. (fill
  593. (type none)
  594. )
  595. )
  596. )
  597. (symbol "R_1_1"
  598. (pin passive line
  599. (at 0 3.81 270)
  600. (length 1.27)
  601. (name "~"
  602. (effects
  603. (font
  604. (size 1.27 1.27)
  605. )
  606. )
  607. )
  608. (number "1"
  609. (effects
  610. (font
  611. (size 1.27 1.27)
  612. )
  613. )
  614. )
  615. )
  616. (pin passive line
  617. (at 0 -3.81 90)
  618. (length 1.27)
  619. (name "~"
  620. (effects
  621. (font
  622. (size 1.27 1.27)
  623. )
  624. )
  625. )
  626. (number "2"
  627. (effects
  628. (font
  629. (size 1.27 1.27)
  630. )
  631. )
  632. )
  633. )
  634. )
  635. )
  636. (symbol "MCU_Microchip_ATtiny:ATtiny1604-SS"
  637. (exclude_from_sim no)
  638. (in_bom yes)
  639. (on_board yes)
  640. (property "Reference" "U2"
  641. (at 2.1941 20.32 0)
  642. (effects
  643. (font
  644. (size 1.27 1.27)
  645. )
  646. (justify left)
  647. )
  648. )
  649. (property "Value" "ATtiny1604-SS"
  650. (at 2.1941 17.78 0)
  651. (effects
  652. (font
  653. (size 1.27 1.27)
  654. )
  655. (justify left)
  656. )
  657. )
  658. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm"
  659. (at 0 0 0)
  660. (effects
  661. (font
  662. (size 1.27 1.27)
  663. (italic yes)
  664. )
  665. (hide yes)
  666. )
  667. )
  668. (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/ATtiny804_1604-Data-Sheet-40002028A.pdf"
  669. (at 0 0 0)
  670. (effects
  671. (font
  672. (size 1.27 1.27)
  673. )
  674. (hide yes)
  675. )
  676. )
  677. (property "Description" "20MHz, 16kB Flash, 1kB SRAM, 256B EEPROM, SOIC-14"
  678. (at 0 0 0)
  679. (effects
  680. (font
  681. (size 1.27 1.27)
  682. )
  683. (hide yes)
  684. )
  685. )
  686. (property "ki_keywords" "AVR 8bit Microcontroller tinyAVR"
  687. (at 0 0 0)
  688. (effects
  689. (font
  690. (size 1.27 1.27)
  691. )
  692. (hide yes)
  693. )
  694. )
  695. (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm*"
  696. (at 0 0 0)
  697. (effects
  698. (font
  699. (size 1.27 1.27)
  700. )
  701. (hide yes)
  702. )
  703. )
  704. (symbol "ATtiny1604-SS_0_1"
  705. (rectangle
  706. (start -12.7 -15.24)
  707. (end 12.7 15.24)
  708. (stroke
  709. (width 0.254)
  710. (type default)
  711. )
  712. (fill
  713. (type background)
  714. )
  715. )
  716. )
  717. (symbol "ATtiny1604-SS_1_1"
  718. (pin power_in line
  719. (at 0 17.78 270)
  720. (length 2.54)
  721. (name "VCC"
  722. (effects
  723. (font
  724. (size 1.27 1.27)
  725. )
  726. )
  727. )
  728. (number "1"
  729. (effects
  730. (font
  731. (size 1.27 1.27)
  732. )
  733. )
  734. )
  735. )
  736. (pin bidirectional line
  737. (at -15.24 7.62 0)
  738. (length 2.54)
  739. (name "~{RESET}/PA0"
  740. (effects
  741. (font
  742. (size 1.27 1.27)
  743. )
  744. )
  745. )
  746. (number "10"
  747. (effects
  748. (font
  749. (size 1.27 1.27)
  750. )
  751. )
  752. )
  753. )
  754. (pin bidirectional line
  755. (at 15.24 7.62 180)
  756. (length 2.54)
  757. (name "PA1"
  758. (effects
  759. (font
  760. (size 1.27 1.27)
  761. )
  762. )
  763. )
  764. (number "11"
  765. (effects
  766. (font
  767. (size 1.27 1.27)
  768. )
  769. )
  770. )
  771. )
  772. (pin bidirectional line
  773. (at 15.24 5.08 180)
  774. (length 2.54)
  775. (name "PA2"
  776. (effects
  777. (font
  778. (size 1.27 1.27)
  779. )
  780. )
  781. )
  782. (number "12"
  783. (effects
  784. (font
  785. (size 1.27 1.27)
  786. )
  787. )
  788. )
  789. )
  790. (pin bidirectional line
  791. (at 15.24 2.54 180)
  792. (length 2.54)
  793. (name "PA3"
  794. (effects
  795. (font
  796. (size 1.27 1.27)
  797. )
  798. )
  799. )
  800. (number "13"
  801. (effects
  802. (font
  803. (size 1.27 1.27)
  804. )
  805. )
  806. )
  807. )
  808. (pin power_in line
  809. (at 0 -17.78 90)
  810. (length 2.54)
  811. (name "GND"
  812. (effects
  813. (font
  814. (size 1.27 1.27)
  815. )
  816. )
  817. )
  818. (number "14"
  819. (effects
  820. (font
  821. (size 1.27 1.27)
  822. )
  823. )
  824. )
  825. )
  826. (pin bidirectional line
  827. (at 15.24 0 180)
  828. (length 2.54)
  829. (name "PA4"
  830. (effects
  831. (font
  832. (size 1.27 1.27)
  833. )
  834. )
  835. )
  836. (number "2"
  837. (effects
  838. (font
  839. (size 1.27 1.27)
  840. )
  841. )
  842. )
  843. )
  844. (pin bidirectional line
  845. (at 15.24 -2.54 180)
  846. (length 2.54)
  847. (name "PA5"
  848. (effects
  849. (font
  850. (size 1.27 1.27)
  851. )
  852. )
  853. )
  854. (number "3"
  855. (effects
  856. (font
  857. (size 1.27 1.27)
  858. )
  859. )
  860. )
  861. )
  862. (pin bidirectional line
  863. (at 15.24 -5.08 180)
  864. (length 2.54)
  865. (name "PA6"
  866. (effects
  867. (font
  868. (size 1.27 1.27)
  869. )
  870. )
  871. )
  872. (number "4"
  873. (effects
  874. (font
  875. (size 1.27 1.27)
  876. )
  877. )
  878. )
  879. )
  880. (pin bidirectional line
  881. (at 15.24 -7.62 180)
  882. (length 2.54)
  883. (name "PA7"
  884. (effects
  885. (font
  886. (size 1.27 1.27)
  887. )
  888. )
  889. )
  890. (number "5"
  891. (effects
  892. (font
  893. (size 1.27 1.27)
  894. )
  895. )
  896. )
  897. )
  898. (pin bidirectional line
  899. (at -15.24 -2.54 0)
  900. (length 2.54)
  901. (name "PB3"
  902. (effects
  903. (font
  904. (size 1.27 1.27)
  905. )
  906. )
  907. )
  908. (number "6"
  909. (effects
  910. (font
  911. (size 1.27 1.27)
  912. )
  913. )
  914. )
  915. )
  916. (pin bidirectional line
  917. (at -15.24 0 0)
  918. (length 2.54)
  919. (name "PB2"
  920. (effects
  921. (font
  922. (size 1.27 1.27)
  923. )
  924. )
  925. )
  926. (number "7"
  927. (effects
  928. (font
  929. (size 1.27 1.27)
  930. )
  931. )
  932. )
  933. )
  934. (pin bidirectional line
  935. (at -15.24 2.54 0)
  936. (length 2.54)
  937. (name "PB1"
  938. (effects
  939. (font
  940. (size 1.27 1.27)
  941. )
  942. )
  943. )
  944. (number "8"
  945. (effects
  946. (font
  947. (size 1.27 1.27)
  948. )
  949. )
  950. )
  951. )
  952. (pin bidirectional line
  953. (at -15.24 5.08 0)
  954. (length 2.54)
  955. (name "PB0"
  956. (effects
  957. (font
  958. (size 1.27 1.27)
  959. )
  960. )
  961. )
  962. (number "9"
  963. (effects
  964. (font
  965. (size 1.27 1.27)
  966. )
  967. )
  968. )
  969. )
  970. )
  971. )
  972. (symbol "power:+3V3"
  973. (power)
  974. (pin_numbers hide)
  975. (pin_names
  976. (offset 0) hide)
  977. (exclude_from_sim no)
  978. (in_bom yes)
  979. (on_board yes)
  980. (property "Reference" "#PWR"
  981. (at 0 -3.81 0)
  982. (effects
  983. (font
  984. (size 1.27 1.27)
  985. )
  986. (hide yes)
  987. )
  988. )
  989. (property "Value" "+3V3"
  990. (at 0 3.556 0)
  991. (effects
  992. (font
  993. (size 1.27 1.27)
  994. )
  995. )
  996. )
  997. (property "Footprint" ""
  998. (at 0 0 0)
  999. (effects
  1000. (font
  1001. (size 1.27 1.27)
  1002. )
  1003. (hide yes)
  1004. )
  1005. )
  1006. (property "Datasheet" ""
  1007. (at 0 0 0)
  1008. (effects
  1009. (font
  1010. (size 1.27 1.27)
  1011. )
  1012. (hide yes)
  1013. )
  1014. )
  1015. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1016. (at 0 0 0)
  1017. (effects
  1018. (font
  1019. (size 1.27 1.27)
  1020. )
  1021. (hide yes)
  1022. )
  1023. )
  1024. (property "ki_keywords" "global power"
  1025. (at 0 0 0)
  1026. (effects
  1027. (font
  1028. (size 1.27 1.27)
  1029. )
  1030. (hide yes)
  1031. )
  1032. )
  1033. (symbol "+3V3_0_1"
  1034. (polyline
  1035. (pts
  1036. (xy -0.762 1.27) (xy 0 2.54)
  1037. )
  1038. (stroke
  1039. (width 0)
  1040. (type default)
  1041. )
  1042. (fill
  1043. (type none)
  1044. )
  1045. )
  1046. (polyline
  1047. (pts
  1048. (xy 0 0) (xy 0 2.54)
  1049. )
  1050. (stroke
  1051. (width 0)
  1052. (type default)
  1053. )
  1054. (fill
  1055. (type none)
  1056. )
  1057. )
  1058. (polyline
  1059. (pts
  1060. (xy 0 2.54) (xy 0.762 1.27)
  1061. )
  1062. (stroke
  1063. (width 0)
  1064. (type default)
  1065. )
  1066. (fill
  1067. (type none)
  1068. )
  1069. )
  1070. )
  1071. (symbol "+3V3_1_1"
  1072. (pin power_in line
  1073. (at 0 0 90)
  1074. (length 0)
  1075. (name "~"
  1076. (effects
  1077. (font
  1078. (size 1.27 1.27)
  1079. )
  1080. )
  1081. )
  1082. (number "1"
  1083. (effects
  1084. (font
  1085. (size 1.27 1.27)
  1086. )
  1087. )
  1088. )
  1089. )
  1090. )
  1091. )
  1092. (symbol "power:GND"
  1093. (power)
  1094. (pin_numbers hide)
  1095. (pin_names
  1096. (offset 0) hide)
  1097. (exclude_from_sim no)
  1098. (in_bom yes)
  1099. (on_board yes)
  1100. (property "Reference" "#PWR"
  1101. (at 0 -6.35 0)
  1102. (effects
  1103. (font
  1104. (size 1.27 1.27)
  1105. )
  1106. (hide yes)
  1107. )
  1108. )
  1109. (property "Value" "GND"
  1110. (at 0 -3.81 0)
  1111. (effects
  1112. (font
  1113. (size 1.27 1.27)
  1114. )
  1115. )
  1116. )
  1117. (property "Footprint" ""
  1118. (at 0 0 0)
  1119. (effects
  1120. (font
  1121. (size 1.27 1.27)
  1122. )
  1123. (hide yes)
  1124. )
  1125. )
  1126. (property "Datasheet" ""
  1127. (at 0 0 0)
  1128. (effects
  1129. (font
  1130. (size 1.27 1.27)
  1131. )
  1132. (hide yes)
  1133. )
  1134. )
  1135. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1136. (at 0 0 0)
  1137. (effects
  1138. (font
  1139. (size 1.27 1.27)
  1140. )
  1141. (hide yes)
  1142. )
  1143. )
  1144. (property "ki_keywords" "global power"
  1145. (at 0 0 0)
  1146. (effects
  1147. (font
  1148. (size 1.27 1.27)
  1149. )
  1150. (hide yes)
  1151. )
  1152. )
  1153. (symbol "GND_0_1"
  1154. (polyline
  1155. (pts
  1156. (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)
  1157. )
  1158. (stroke
  1159. (width 0)
  1160. (type default)
  1161. )
  1162. (fill
  1163. (type none)
  1164. )
  1165. )
  1166. )
  1167. (symbol "GND_1_1"
  1168. (pin power_in line
  1169. (at 0 0 270)
  1170. (length 0)
  1171. (name "~"
  1172. (effects
  1173. (font
  1174. (size 1.27 1.27)
  1175. )
  1176. )
  1177. )
  1178. (number "1"
  1179. (effects
  1180. (font
  1181. (size 1.27 1.27)
  1182. )
  1183. )
  1184. )
  1185. )
  1186. )
  1187. )
  1188. )
  1189. (junction
  1190. (at 137.16 44.45)
  1191. (diameter 0)
  1192. (color 0 0 0 0)
  1193. (uuid "029d9cb7-77be-417a-84a5-a09c76019feb")
  1194. )
  1195. (junction
  1196. (at 114.3 81.28)
  1197. (diameter 0)
  1198. (color 0 0 0 0)
  1199. (uuid "2ad5ee36-46e1-4ff8-ad43-ca84b79e66d9")
  1200. )
  1201. (junction
  1202. (at 149.86 44.45)
  1203. (diameter 0)
  1204. (color 0 0 0 0)
  1205. (uuid "2ceb854c-1a66-42f6-b226-cdeebd3c49cf")
  1206. )
  1207. (wire
  1208. (pts
  1209. (xy 36.83 46.99) (xy 36.83 49.53)
  1210. )
  1211. (stroke
  1212. (width 0)
  1213. (type default)
  1214. )
  1215. (uuid "01f9cfb7-8b29-422f-8230-7d4b36388818")
  1216. )
  1217. (wire
  1218. (pts
  1219. (xy 149.86 44.45) (xy 137.16 44.45)
  1220. )
  1221. (stroke
  1222. (width 0)
  1223. (type default)
  1224. )
  1225. (uuid "0ce9c298-55fa-460d-86bd-dd4e5d352306")
  1226. )
  1227. (wire
  1228. (pts
  1229. (xy 166.37 58.42) (xy 166.37 55.88)
  1230. )
  1231. (stroke
  1232. (width 0)
  1233. (type default)
  1234. )
  1235. (uuid "158ee31c-a165-477e-bc23-4f303ed8d4cd")
  1236. )
  1237. (wire
  1238. (pts
  1239. (xy 36.83 59.69) (xy 38.1 59.69)
  1240. )
  1241. (stroke
  1242. (width 0)
  1243. (type default)
  1244. )
  1245. (uuid "20e22674-1eb2-4c59-8e50-16959209ba2b")
  1246. )
  1247. (wire
  1248. (pts
  1249. (xy 53.34 49.53) (xy 50.8 49.53)
  1250. )
  1251. (stroke
  1252. (width 0)
  1253. (type default)
  1254. )
  1255. (uuid "21d65d1d-d63d-4410-b627-ce3b2bb30a55")
  1256. )
  1257. (wire
  1258. (pts
  1259. (xy 53.34 52.07) (xy 50.8 52.07)
  1260. )
  1261. (stroke
  1262. (width 0)
  1263. (type default)
  1264. )
  1265. (uuid "23b00cc3-b212-4f47-b043-0a8ae2f07a9b")
  1266. )
  1267. (wire
  1268. (pts
  1269. (xy 149.86 58.42) (xy 149.86 55.88)
  1270. )
  1271. (stroke
  1272. (width 0)
  1273. (type default)
  1274. )
  1275. (uuid "29c16c9d-6c55-4edd-a0df-25a0589497f9")
  1276. )
  1277. (wire
  1278. (pts
  1279. (xy 107.95 83.82) (xy 121.92 83.82)
  1280. )
  1281. (stroke
  1282. (width 0)
  1283. (type default)
  1284. )
  1285. (uuid "2bf99694-9cd8-4e1a-a7e1-73ced7e59150")
  1286. )
  1287. (wire
  1288. (pts
  1289. (xy 114.3 81.28) (xy 121.92 81.28)
  1290. )
  1291. (stroke
  1292. (width 0)
  1293. (type default)
  1294. )
  1295. (uuid "30fe0a29-d3d9-4336-9681-de56f2ef9529")
  1296. )
  1297. (wire
  1298. (pts
  1299. (xy 53.34 54.61) (xy 50.8 54.61)
  1300. )
  1301. (stroke
  1302. (width 0)
  1303. (type default)
  1304. )
  1305. (uuid "369203a7-f938-46b3-b2af-5e4b57cbbfba")
  1306. )
  1307. (wire
  1308. (pts
  1309. (xy 107.95 81.28) (xy 114.3 81.28)
  1310. )
  1311. (stroke
  1312. (width 0)
  1313. (type default)
  1314. )
  1315. (uuid "3dff2159-1b37-4b2f-97c5-4a5e3e355339")
  1316. )
  1317. (wire
  1318. (pts
  1319. (xy 36.83 49.53) (xy 38.1 49.53)
  1320. )
  1321. (stroke
  1322. (width 0)
  1323. (type default)
  1324. )
  1325. (uuid "5c12d9cc-3eab-4059-838d-34925bc315de")
  1326. )
  1327. (wire
  1328. (pts
  1329. (xy 114.3 68.58) (xy 114.3 71.12)
  1330. )
  1331. (stroke
  1332. (width 0)
  1333. (type default)
  1334. )
  1335. (uuid "60f2d24f-fe0d-48e2-8999-2b95377ab656")
  1336. )
  1337. (wire
  1338. (pts
  1339. (xy 107.95 91.44) (xy 121.92 91.44)
  1340. )
  1341. (stroke
  1342. (width 0)
  1343. (type default)
  1344. )
  1345. (uuid "6fcdb853-ce92-41dc-975a-7de90225e1bb")
  1346. )
  1347. (wire
  1348. (pts
  1349. (xy 166.37 44.45) (xy 149.86 44.45)
  1350. )
  1351. (stroke
  1352. (width 0)
  1353. (type default)
  1354. )
  1355. (uuid "9215c4fe-bddc-4594-b4a5-c90b3a1ca806")
  1356. )
  1357. (wire
  1358. (pts
  1359. (xy 36.83 62.23) (xy 36.83 59.69)
  1360. )
  1361. (stroke
  1362. (width 0)
  1363. (type default)
  1364. )
  1365. (uuid "93f6aa6d-d932-4fa8-8849-820fb290f741")
  1366. )
  1367. (wire
  1368. (pts
  1369. (xy 166.37 48.26) (xy 166.37 44.45)
  1370. )
  1371. (stroke
  1372. (width 0)
  1373. (type default)
  1374. )
  1375. (uuid "97888fd9-fba5-427f-8c0b-fecdbccdf2ab")
  1376. )
  1377. (wire
  1378. (pts
  1379. (xy 137.16 44.45) (xy 137.16 71.12)
  1380. )
  1381. (stroke
  1382. (width 0)
  1383. (type default)
  1384. )
  1385. (uuid "aa67d98c-3846-4ad4-879d-d2476c6e0100")
  1386. )
  1387. (wire
  1388. (pts
  1389. (xy 149.86 48.26) (xy 149.86 44.45)
  1390. )
  1391. (stroke
  1392. (width 0)
  1393. (type default)
  1394. )
  1395. (uuid "aa6a93fa-51c0-48f9-8bba-1dcd325c11f8")
  1396. )
  1397. (wire
  1398. (pts
  1399. (xy 137.16 38.1) (xy 137.16 44.45)
  1400. )
  1401. (stroke
  1402. (width 0)
  1403. (type default)
  1404. )
  1405. (uuid "b59f9297-1464-4397-8554-1d21a54de066")
  1406. )
  1407. (wire
  1408. (pts
  1409. (xy 107.95 88.9) (xy 121.92 88.9)
  1410. )
  1411. (stroke
  1412. (width 0)
  1413. (type default)
  1414. )
  1415. (uuid "c120f50e-3155-4899-a093-e922dbd703f2")
  1416. )
  1417. (wire
  1418. (pts
  1419. (xy 107.95 86.36) (xy 121.92 86.36)
  1420. )
  1421. (stroke
  1422. (width 0)
  1423. (type default)
  1424. )
  1425. (uuid "c665cfcc-b960-46ed-91b1-aaa305fea723")
  1426. )
  1427. (wire
  1428. (pts
  1429. (xy 53.34 59.69) (xy 50.8 59.69)
  1430. )
  1431. (stroke
  1432. (width 0)
  1433. (type default)
  1434. )
  1435. (uuid "c9be49f6-be91-4ad3-b362-433c9fb3ed82")
  1436. )
  1437. (wire
  1438. (pts
  1439. (xy 53.34 57.15) (xy 50.8 57.15)
  1440. )
  1441. (stroke
  1442. (width 0)
  1443. (type default)
  1444. )
  1445. (uuid "e87758de-d60b-40d8-b927-e391aae91518")
  1446. )
  1447. (wire
  1448. (pts
  1449. (xy 114.3 81.28) (xy 114.3 78.74)
  1450. )
  1451. (stroke
  1452. (width 0)
  1453. (type default)
  1454. )
  1455. (uuid "f77ee0bf-49b0-4579-a7f0-51e36c1f05c2")
  1456. )
  1457. (netclass_flag ""
  1458. (length 2.54)
  1459. (shape round)
  1460. (at 107.95 86.36 90)
  1461. (effects
  1462. (font
  1463. (size 1.27 1.27)
  1464. )
  1465. (justify left bottom)
  1466. )
  1467. (uuid "248d1e04-618d-41dc-8439-a6195ca4e3bd")
  1468. (property "Netclass" "SDA"
  1469. (at 100.076 86.36 0)
  1470. (effects
  1471. (font
  1472. (size 1.27 1.27)
  1473. (italic yes)
  1474. )
  1475. (justify left)
  1476. )
  1477. )
  1478. )
  1479. (netclass_flag ""
  1480. (length 2.54)
  1481. (shape round)
  1482. (at 53.34 54.61 270)
  1483. (effects
  1484. (font
  1485. (size 1.27 1.27)
  1486. )
  1487. (justify right bottom)
  1488. )
  1489. (uuid "555de3fd-daf5-4959-9d7d-8fcd3a8b6450")
  1490. (property "Netclass" "SDA"
  1491. (at 61.214 54.61 0)
  1492. (effects
  1493. (font
  1494. (size 1.27 1.27)
  1495. (italic yes)
  1496. )
  1497. (justify right)
  1498. )
  1499. )
  1500. )
  1501. (netclass_flag ""
  1502. (length 2.54)
  1503. (shape round)
  1504. (at 53.34 49.53 270)
  1505. (effects
  1506. (font
  1507. (size 1.27 1.27)
  1508. )
  1509. (justify right bottom)
  1510. )
  1511. (uuid "5d2c4d29-839c-47ed-ac3b-8567957d756c")
  1512. (property "Netclass" "AVR_RX"
  1513. (at 64.516 49.53 0)
  1514. (effects
  1515. (font
  1516. (size 1.27 1.27)
  1517. (italic yes)
  1518. )
  1519. (justify right)
  1520. )
  1521. )
  1522. )
  1523. (netclass_flag ""
  1524. (length 2.54)
  1525. (shape round)
  1526. (at 53.34 59.69 270)
  1527. (effects
  1528. (font
  1529. (size 1.27 1.27)
  1530. )
  1531. (justify right bottom)
  1532. )
  1533. (uuid "64d8790f-6c22-4b9d-b02f-458518aff03c")
  1534. (property "Netclass" "UPDI"
  1535. (at 62.23 59.69 0)
  1536. (effects
  1537. (font
  1538. (size 1.27 1.27)
  1539. (italic yes)
  1540. )
  1541. (justify right)
  1542. )
  1543. )
  1544. )
  1545. (netclass_flag ""
  1546. (length 2.54)
  1547. (shape round)
  1548. (at 53.34 57.15 270)
  1549. (effects
  1550. (font
  1551. (size 1.27 1.27)
  1552. )
  1553. (justify right bottom)
  1554. )
  1555. (uuid "79353aa6-b58b-4e6b-8e6f-3f1842f7133d")
  1556. (property "Netclass" "SCL"
  1557. (at 61.214 57.15 0)
  1558. (effects
  1559. (font
  1560. (size 1.27 1.27)
  1561. (italic yes)
  1562. )
  1563. (justify right)
  1564. )
  1565. )
  1566. )
  1567. (netclass_flag ""
  1568. (length 2.54)
  1569. (shape round)
  1570. (at 107.95 91.44 90)
  1571. (effects
  1572. (font
  1573. (size 1.27 1.27)
  1574. )
  1575. (justify left bottom)
  1576. )
  1577. (uuid "7e457c05-a684-433c-b78c-4c0fad5e4692")
  1578. (property "Netclass" "AVR_RX"
  1579. (at 97.028 91.44 0)
  1580. (effects
  1581. (font
  1582. (size 1.27 1.27)
  1583. (italic yes)
  1584. )
  1585. (justify left)
  1586. )
  1587. )
  1588. )
  1589. (netclass_flag ""
  1590. (length 2.54)
  1591. (shape round)
  1592. (at 107.95 88.9 90)
  1593. (effects
  1594. (font
  1595. (size 1.27 1.27)
  1596. )
  1597. (justify left bottom)
  1598. )
  1599. (uuid "7f961a83-0edb-4d06-af02-bd01483d949d")
  1600. (property "Netclass" "AVR_TX"
  1601. (at 97.282 88.9 0)
  1602. (effects
  1603. (font
  1604. (size 1.27 1.27)
  1605. (italic yes)
  1606. )
  1607. (justify left)
  1608. )
  1609. )
  1610. )
  1611. (netclass_flag ""
  1612. (length 2.54)
  1613. (shape round)
  1614. (at 107.95 81.28 90)
  1615. (effects
  1616. (font
  1617. (size 1.27 1.27)
  1618. )
  1619. (justify left bottom)
  1620. )
  1621. (uuid "9deca6ed-c74b-441c-b5af-8e44b17c3dcc")
  1622. (property "Netclass" "UPDI"
  1623. (at 99.06 81.28 0)
  1624. (effects
  1625. (font
  1626. (size 1.27 1.27)
  1627. (italic yes)
  1628. )
  1629. (justify left)
  1630. )
  1631. )
  1632. )
  1633. (netclass_flag ""
  1634. (length 2.54)
  1635. (shape round)
  1636. (at 107.95 83.82 90)
  1637. (effects
  1638. (font
  1639. (size 1.27 1.27)
  1640. )
  1641. (justify left bottom)
  1642. )
  1643. (uuid "b4cdfad7-d9a8-4d26-962f-76c6d4b4c1bb")
  1644. (property "Netclass" "SCL"
  1645. (at 100.076 83.82 0)
  1646. (effects
  1647. (font
  1648. (size 1.27 1.27)
  1649. (italic yes)
  1650. )
  1651. (justify left)
  1652. )
  1653. )
  1654. )
  1655. (netclass_flag ""
  1656. (length 2.54)
  1657. (shape round)
  1658. (at 53.34 52.07 270)
  1659. (effects
  1660. (font
  1661. (size 1.27 1.27)
  1662. )
  1663. (justify right bottom)
  1664. )
  1665. (uuid "cdd4baf1-111e-4555-8a53-83666aa87f14")
  1666. (property "Netclass" "AVR_TX"
  1667. (at 64.008 52.07 0)
  1668. (effects
  1669. (font
  1670. (size 1.27 1.27)
  1671. (italic yes)
  1672. )
  1673. (justify right)
  1674. )
  1675. )
  1676. )
  1677. (symbol
  1678. (lib_id "power:+3V3")
  1679. (at 114.3 68.58 0)
  1680. (unit 1)
  1681. (exclude_from_sim no)
  1682. (in_bom yes)
  1683. (on_board yes)
  1684. (dnp no)
  1685. (fields_autoplaced yes)
  1686. (uuid "2f7c43e2-1166-4219-b8fb-9aa430364fcb")
  1687. (property "Reference" "#PWR022"
  1688. (at 114.3 72.39 0)
  1689. (effects
  1690. (font
  1691. (size 1.27 1.27)
  1692. )
  1693. (hide yes)
  1694. )
  1695. )
  1696. (property "Value" "+3V3"
  1697. (at 114.3 63.5 0)
  1698. (effects
  1699. (font
  1700. (size 1.27 1.27)
  1701. )
  1702. )
  1703. )
  1704. (property "Footprint" ""
  1705. (at 114.3 68.58 0)
  1706. (effects
  1707. (font
  1708. (size 1.27 1.27)
  1709. )
  1710. (hide yes)
  1711. )
  1712. )
  1713. (property "Datasheet" ""
  1714. (at 114.3 68.58 0)
  1715. (effects
  1716. (font
  1717. (size 1.27 1.27)
  1718. )
  1719. (hide yes)
  1720. )
  1721. )
  1722. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1723. (at 114.3 68.58 0)
  1724. (effects
  1725. (font
  1726. (size 1.27 1.27)
  1727. )
  1728. (hide yes)
  1729. )
  1730. )
  1731. (pin "1"
  1732. (uuid "224791fc-2b5c-4597-9b9c-504a0898b533")
  1733. )
  1734. (instances
  1735. (project "cx-light-strip"
  1736. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  1737. (reference "#PWR022")
  1738. (unit 1)
  1739. )
  1740. )
  1741. )
  1742. )
  1743. (symbol
  1744. (lib_id "power:+3V3")
  1745. (at 137.16 38.1 0)
  1746. (unit 1)
  1747. (exclude_from_sim no)
  1748. (in_bom yes)
  1749. (on_board yes)
  1750. (dnp no)
  1751. (fields_autoplaced yes)
  1752. (uuid "3c6bdc3b-6f32-498f-8d6c-02716357aff4")
  1753. (property "Reference" "#PWR016"
  1754. (at 137.16 41.91 0)
  1755. (effects
  1756. (font
  1757. (size 1.27 1.27)
  1758. )
  1759. (hide yes)
  1760. )
  1761. )
  1762. (property "Value" "+3V3"
  1763. (at 137.16 33.02 0)
  1764. (effects
  1765. (font
  1766. (size 1.27 1.27)
  1767. )
  1768. )
  1769. )
  1770. (property "Footprint" ""
  1771. (at 137.16 38.1 0)
  1772. (effects
  1773. (font
  1774. (size 1.27 1.27)
  1775. )
  1776. (hide yes)
  1777. )
  1778. )
  1779. (property "Datasheet" ""
  1780. (at 137.16 38.1 0)
  1781. (effects
  1782. (font
  1783. (size 1.27 1.27)
  1784. )
  1785. (hide yes)
  1786. )
  1787. )
  1788. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1789. (at 137.16 38.1 0)
  1790. (effects
  1791. (font
  1792. (size 1.27 1.27)
  1793. )
  1794. (hide yes)
  1795. )
  1796. )
  1797. (pin "1"
  1798. (uuid "47027203-e95e-4a81-bbdf-f13e8f89b046")
  1799. )
  1800. (instances
  1801. (project ""
  1802. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  1803. (reference "#PWR016")
  1804. (unit 1)
  1805. )
  1806. )
  1807. )
  1808. )
  1809. (symbol
  1810. (lib_id "power:GND")
  1811. (at 36.83 62.23 0)
  1812. (unit 1)
  1813. (exclude_from_sim no)
  1814. (in_bom yes)
  1815. (on_board yes)
  1816. (dnp no)
  1817. (fields_autoplaced yes)
  1818. (uuid "48152678-b1a2-408f-b9f2-34bed3cccef4")
  1819. (property "Reference" "#PWR021"
  1820. (at 36.83 68.58 0)
  1821. (effects
  1822. (font
  1823. (size 1.27 1.27)
  1824. )
  1825. (hide yes)
  1826. )
  1827. )
  1828. (property "Value" "GND"
  1829. (at 36.83 67.31 0)
  1830. (effects
  1831. (font
  1832. (size 1.27 1.27)
  1833. )
  1834. )
  1835. )
  1836. (property "Footprint" ""
  1837. (at 36.83 62.23 0)
  1838. (effects
  1839. (font
  1840. (size 1.27 1.27)
  1841. )
  1842. (hide yes)
  1843. )
  1844. )
  1845. (property "Datasheet" ""
  1846. (at 36.83 62.23 0)
  1847. (effects
  1848. (font
  1849. (size 1.27 1.27)
  1850. )
  1851. (hide yes)
  1852. )
  1853. )
  1854. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1855. (at 36.83 62.23 0)
  1856. (effects
  1857. (font
  1858. (size 1.27 1.27)
  1859. )
  1860. (hide yes)
  1861. )
  1862. )
  1863. (pin "1"
  1864. (uuid "3f4e6845-7c30-46ef-8cc4-6bc777f5203e")
  1865. )
  1866. (instances
  1867. (project "cx-light-strip"
  1868. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  1869. (reference "#PWR021")
  1870. (unit 1)
  1871. )
  1872. )
  1873. )
  1874. )
  1875. (symbol
  1876. (lib_id "Device:C")
  1877. (at 149.86 52.07 0)
  1878. (unit 1)
  1879. (exclude_from_sim no)
  1880. (in_bom yes)
  1881. (on_board yes)
  1882. (dnp no)
  1883. (fields_autoplaced yes)
  1884. (uuid "79111e7a-b4b7-4e1c-a7fb-21462a87d80f")
  1885. (property "Reference" "C9"
  1886. (at 153.67 50.7999 0)
  1887. (effects
  1888. (font
  1889. (size 1.27 1.27)
  1890. )
  1891. (justify left)
  1892. )
  1893. )
  1894. (property "Value" "100n"
  1895. (at 153.67 53.3399 0)
  1896. (effects
  1897. (font
  1898. (size 1.27 1.27)
  1899. )
  1900. (justify left)
  1901. )
  1902. )
  1903. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  1904. (at 150.8252 55.88 0)
  1905. (effects
  1906. (font
  1907. (size 1.27 1.27)
  1908. )
  1909. (hide yes)
  1910. )
  1911. )
  1912. (property "Datasheet" "~"
  1913. (at 149.86 52.07 0)
  1914. (effects
  1915. (font
  1916. (size 1.27 1.27)
  1917. )
  1918. (hide yes)
  1919. )
  1920. )
  1921. (property "Description" "Unpolarized capacitor"
  1922. (at 149.86 52.07 0)
  1923. (effects
  1924. (font
  1925. (size 1.27 1.27)
  1926. )
  1927. (hide yes)
  1928. )
  1929. )
  1930. (pin "1"
  1931. (uuid "11f2b6d6-b267-4a3c-8f79-df683c605045")
  1932. )
  1933. (pin "2"
  1934. (uuid "fe8ffc64-d425-4be5-95e8-a305f37cade8")
  1935. )
  1936. (instances
  1937. (project "cx-light-strip"
  1938. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  1939. (reference "C9")
  1940. (unit 1)
  1941. )
  1942. )
  1943. )
  1944. )
  1945. (symbol
  1946. (lib_id "Device:C")
  1947. (at 166.37 52.07 0)
  1948. (unit 1)
  1949. (exclude_from_sim no)
  1950. (in_bom yes)
  1951. (on_board yes)
  1952. (dnp no)
  1953. (fields_autoplaced yes)
  1954. (uuid "829abb71-c513-49d5-a432-887c08fddd19")
  1955. (property "Reference" "C8"
  1956. (at 170.18 50.7999 0)
  1957. (effects
  1958. (font
  1959. (size 1.27 1.27)
  1960. )
  1961. (justify left)
  1962. )
  1963. )
  1964. (property "Value" "100n"
  1965. (at 170.18 53.3399 0)
  1966. (effects
  1967. (font
  1968. (size 1.27 1.27)
  1969. )
  1970. (justify left)
  1971. )
  1972. )
  1973. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  1974. (at 167.3352 55.88 0)
  1975. (effects
  1976. (font
  1977. (size 1.27 1.27)
  1978. )
  1979. (hide yes)
  1980. )
  1981. )
  1982. (property "Datasheet" "~"
  1983. (at 166.37 52.07 0)
  1984. (effects
  1985. (font
  1986. (size 1.27 1.27)
  1987. )
  1988. (hide yes)
  1989. )
  1990. )
  1991. (property "Description" "Unpolarized capacitor"
  1992. (at 166.37 52.07 0)
  1993. (effects
  1994. (font
  1995. (size 1.27 1.27)
  1996. )
  1997. (hide yes)
  1998. )
  1999. )
  2000. (pin "1"
  2001. (uuid "cfbf4ae0-d2b8-4682-a9e5-293bca47b5e5")
  2002. )
  2003. (pin "2"
  2004. (uuid "e187ee1a-f523-4c22-9f78-b39539983a32")
  2005. )
  2006. (instances
  2007. (project "cx-light-strip"
  2008. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  2009. (reference "C8")
  2010. (unit 1)
  2011. )
  2012. )
  2013. )
  2014. )
  2015. (symbol
  2016. (lib_id "power:GND")
  2017. (at 137.16 106.68 0)
  2018. (unit 1)
  2019. (exclude_from_sim no)
  2020. (in_bom yes)
  2021. (on_board yes)
  2022. (dnp no)
  2023. (fields_autoplaced yes)
  2024. (uuid "8c0ac8d3-9786-40a7-89cb-0c21486e3f5f")
  2025. (property "Reference" "#PWR019"
  2026. (at 137.16 113.03 0)
  2027. (effects
  2028. (font
  2029. (size 1.27 1.27)
  2030. )
  2031. (hide yes)
  2032. )
  2033. )
  2034. (property "Value" "GND"
  2035. (at 137.16 111.76 0)
  2036. (effects
  2037. (font
  2038. (size 1.27 1.27)
  2039. )
  2040. )
  2041. )
  2042. (property "Footprint" ""
  2043. (at 137.16 106.68 0)
  2044. (effects
  2045. (font
  2046. (size 1.27 1.27)
  2047. )
  2048. (hide yes)
  2049. )
  2050. )
  2051. (property "Datasheet" ""
  2052. (at 137.16 106.68 0)
  2053. (effects
  2054. (font
  2055. (size 1.27 1.27)
  2056. )
  2057. (hide yes)
  2058. )
  2059. )
  2060. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2061. (at 137.16 106.68 0)
  2062. (effects
  2063. (font
  2064. (size 1.27 1.27)
  2065. )
  2066. (hide yes)
  2067. )
  2068. )
  2069. (pin "1"
  2070. (uuid "d3c88cd3-0640-488e-b248-22bad3b39dfc")
  2071. )
  2072. (instances
  2073. (project "cx-light-strip"
  2074. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  2075. (reference "#PWR019")
  2076. (unit 1)
  2077. )
  2078. )
  2079. )
  2080. )
  2081. (symbol
  2082. (lib_id "power:GND")
  2083. (at 149.86 58.42 0)
  2084. (unit 1)
  2085. (exclude_from_sim no)
  2086. (in_bom yes)
  2087. (on_board yes)
  2088. (dnp no)
  2089. (fields_autoplaced yes)
  2090. (uuid "b7a89036-f0e8-41e7-bd58-2800bd26676c")
  2091. (property "Reference" "#PWR018"
  2092. (at 149.86 64.77 0)
  2093. (effects
  2094. (font
  2095. (size 1.27 1.27)
  2096. )
  2097. (hide yes)
  2098. )
  2099. )
  2100. (property "Value" "GND"
  2101. (at 149.86 63.5 0)
  2102. (effects
  2103. (font
  2104. (size 1.27 1.27)
  2105. )
  2106. )
  2107. )
  2108. (property "Footprint" ""
  2109. (at 149.86 58.42 0)
  2110. (effects
  2111. (font
  2112. (size 1.27 1.27)
  2113. )
  2114. (hide yes)
  2115. )
  2116. )
  2117. (property "Datasheet" ""
  2118. (at 149.86 58.42 0)
  2119. (effects
  2120. (font
  2121. (size 1.27 1.27)
  2122. )
  2123. (hide yes)
  2124. )
  2125. )
  2126. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2127. (at 149.86 58.42 0)
  2128. (effects
  2129. (font
  2130. (size 1.27 1.27)
  2131. )
  2132. (hide yes)
  2133. )
  2134. )
  2135. (pin "1"
  2136. (uuid "b8ef6304-3ee4-4119-b022-506cf46c0122")
  2137. )
  2138. (instances
  2139. (project "cx-light-strip"
  2140. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  2141. (reference "#PWR018")
  2142. (unit 1)
  2143. )
  2144. )
  2145. )
  2146. )
  2147. (symbol
  2148. (lib_id "MCU_Microchip_ATtiny:ATtiny1604-SS")
  2149. (at 137.16 88.9 0)
  2150. (unit 1)
  2151. (exclude_from_sim no)
  2152. (in_bom yes)
  2153. (on_board yes)
  2154. (dnp no)
  2155. (uuid "cd10ff7a-143b-4285-a54d-5501a9d95c80")
  2156. (property "Reference" "U2"
  2157. (at 139.3541 68.58 0)
  2158. (effects
  2159. (font
  2160. (size 1.27 1.27)
  2161. )
  2162. (justify left)
  2163. )
  2164. )
  2165. (property "Value" "ATtiny1604-SS"
  2166. (at 139.3541 71.12 0)
  2167. (effects
  2168. (font
  2169. (size 1.27 1.27)
  2170. )
  2171. (justify left)
  2172. )
  2173. )
  2174. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm"
  2175. (at 137.16 88.9 0)
  2176. (effects
  2177. (font
  2178. (size 1.27 1.27)
  2179. (italic yes)
  2180. )
  2181. (hide yes)
  2182. )
  2183. )
  2184. (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/ATtiny804_1604-Data-Sheet-40002028A.pdf"
  2185. (at 137.16 88.9 0)
  2186. (effects
  2187. (font
  2188. (size 1.27 1.27)
  2189. )
  2190. (hide yes)
  2191. )
  2192. )
  2193. (property "Description" "20MHz, 16kB Flash, 1kB SRAM, 256B EEPROM, SOIC-14"
  2194. (at 137.16 88.9 0)
  2195. (effects
  2196. (font
  2197. (size 1.27 1.27)
  2198. )
  2199. (hide yes)
  2200. )
  2201. )
  2202. (pin "2"
  2203. (uuid "f38c4756-90fa-48d8-89a1-c4f25f47f2bc")
  2204. )
  2205. (pin "3"
  2206. (uuid "ac87a59e-6c5b-4fa6-a5de-8616c33a7773")
  2207. )
  2208. (pin "11"
  2209. (uuid "173e17ea-aef9-47fc-a27c-7c5d44fe42ac")
  2210. )
  2211. (pin "1"
  2212. (uuid "45e2ee2d-ac67-44bf-ad60-08afc59b9f35")
  2213. )
  2214. (pin "7"
  2215. (uuid "cde3f80e-6cc8-48f4-b28f-106ec44e7a96")
  2216. )
  2217. (pin "8"
  2218. (uuid "d4bf547f-f3fc-454a-9712-c50232b71d2c")
  2219. )
  2220. (pin "6"
  2221. (uuid "e9f7e24f-a354-4eac-b0ea-286c257181a3")
  2222. )
  2223. (pin "5"
  2224. (uuid "1e2a2558-6939-468a-a9ff-ef06a36b9882")
  2225. )
  2226. (pin "4"
  2227. (uuid "fae9bdd9-c75c-4e42-b436-20817bf83a3b")
  2228. )
  2229. (pin "9"
  2230. (uuid "805b25b0-64a7-44db-82a9-285ace85ac9b")
  2231. )
  2232. (pin "14"
  2233. (uuid "1c86d7f4-c0dc-44b2-bde9-264be0fd23f5")
  2234. )
  2235. (pin "12"
  2236. (uuid "fd0bbcf1-5051-4bdb-b296-72c97867430d")
  2237. )
  2238. (pin "10"
  2239. (uuid "1fa98764-4266-44bf-8492-c5ea2490f1b4")
  2240. )
  2241. (pin "13"
  2242. (uuid "b1a65123-7021-495a-b1a6-37c28ea00729")
  2243. )
  2244. (instances
  2245. (project ""
  2246. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  2247. (reference "U2")
  2248. (unit 1)
  2249. )
  2250. )
  2251. )
  2252. )
  2253. (symbol
  2254. (lib_id "power:GND")
  2255. (at 166.37 58.42 0)
  2256. (unit 1)
  2257. (exclude_from_sim no)
  2258. (in_bom yes)
  2259. (on_board yes)
  2260. (dnp no)
  2261. (fields_autoplaced yes)
  2262. (uuid "d1c4d6e5-eaa0-4afe-8763-642b88b5cc4f")
  2263. (property "Reference" "#PWR017"
  2264. (at 166.37 64.77 0)
  2265. (effects
  2266. (font
  2267. (size 1.27 1.27)
  2268. )
  2269. (hide yes)
  2270. )
  2271. )
  2272. (property "Value" "GND"
  2273. (at 166.37 63.5 0)
  2274. (effects
  2275. (font
  2276. (size 1.27 1.27)
  2277. )
  2278. )
  2279. )
  2280. (property "Footprint" ""
  2281. (at 166.37 58.42 0)
  2282. (effects
  2283. (font
  2284. (size 1.27 1.27)
  2285. )
  2286. (hide yes)
  2287. )
  2288. )
  2289. (property "Datasheet" ""
  2290. (at 166.37 58.42 0)
  2291. (effects
  2292. (font
  2293. (size 1.27 1.27)
  2294. )
  2295. (hide yes)
  2296. )
  2297. )
  2298. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2299. (at 166.37 58.42 0)
  2300. (effects
  2301. (font
  2302. (size 1.27 1.27)
  2303. )
  2304. (hide yes)
  2305. )
  2306. )
  2307. (pin "1"
  2308. (uuid "fe84dd86-fc21-4d58-9b91-d8f3b1fe1840")
  2309. )
  2310. (instances
  2311. (project ""
  2312. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  2313. (reference "#PWR017")
  2314. (unit 1)
  2315. )
  2316. )
  2317. )
  2318. )
  2319. (symbol
  2320. (lib_id "Device:R")
  2321. (at 114.3 74.93 0)
  2322. (unit 1)
  2323. (exclude_from_sim no)
  2324. (in_bom yes)
  2325. (on_board yes)
  2326. (dnp no)
  2327. (fields_autoplaced yes)
  2328. (uuid "d76dfcd7-3f1d-4bbd-aacf-be954c3ef9a2")
  2329. (property "Reference" "R1"
  2330. (at 116.84 73.6599 0)
  2331. (effects
  2332. (font
  2333. (size 1.27 1.27)
  2334. )
  2335. (justify left)
  2336. )
  2337. )
  2338. (property "Value" "10k"
  2339. (at 116.84 76.1999 0)
  2340. (effects
  2341. (font
  2342. (size 1.27 1.27)
  2343. )
  2344. (justify left)
  2345. )
  2346. )
  2347. (property "Footprint" "Resistor_SMD:R_0815_2038Metric_Pad1.20x4.05mm_HandSolder"
  2348. (at 112.522 74.93 90)
  2349. (effects
  2350. (font
  2351. (size 1.27 1.27)
  2352. )
  2353. (hide yes)
  2354. )
  2355. )
  2356. (property "Datasheet" "~"
  2357. (at 114.3 74.93 0)
  2358. (effects
  2359. (font
  2360. (size 1.27 1.27)
  2361. )
  2362. (hide yes)
  2363. )
  2364. )
  2365. (property "Description" "Resistor"
  2366. (at 114.3 74.93 0)
  2367. (effects
  2368. (font
  2369. (size 1.27 1.27)
  2370. )
  2371. (hide yes)
  2372. )
  2373. )
  2374. (pin "1"
  2375. (uuid "49449916-af12-4f07-bded-400025fe6fd2")
  2376. )
  2377. (pin "2"
  2378. (uuid "22b66868-bcdb-4f96-9514-b796016187ae")
  2379. )
  2380. (instances
  2381. (project ""
  2382. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  2383. (reference "R1")
  2384. (unit 1)
  2385. )
  2386. )
  2387. )
  2388. )
  2389. (symbol
  2390. (lib_id "Connector_Generic:Conn_02x05_Counter_Clockwise")
  2391. (at 45.72 54.61 180)
  2392. (unit 1)
  2393. (exclude_from_sim no)
  2394. (in_bom yes)
  2395. (on_board yes)
  2396. (dnp no)
  2397. (fields_autoplaced yes)
  2398. (uuid "dbe9f302-5091-4c0c-bf91-9c8d2bcf927f")
  2399. (property "Reference" "J2"
  2400. (at 44.45 43.18 0)
  2401. (effects
  2402. (font
  2403. (size 1.27 1.27)
  2404. )
  2405. )
  2406. )
  2407. (property "Value" "DEBUG"
  2408. (at 44.45 45.72 0)
  2409. (effects
  2410. (font
  2411. (size 1.27 1.27)
  2412. )
  2413. )
  2414. )
  2415. (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical"
  2416. (at 45.72 54.61 0)
  2417. (effects
  2418. (font
  2419. (size 1.27 1.27)
  2420. )
  2421. (hide yes)
  2422. )
  2423. )
  2424. (property "Datasheet" "~"
  2425. (at 45.72 54.61 0)
  2426. (effects
  2427. (font
  2428. (size 1.27 1.27)
  2429. )
  2430. (hide yes)
  2431. )
  2432. )
  2433. (property "Description" "Generic connector, double row, 02x05, counter clockwise pin numbering scheme (similar to DIP package numbering), script generated (kicad-library-utils/schlib/autogen/connector/)"
  2434. (at 45.72 54.61 0)
  2435. (effects
  2436. (font
  2437. (size 1.27 1.27)
  2438. )
  2439. (hide yes)
  2440. )
  2441. )
  2442. (pin "10"
  2443. (uuid "1146dec1-b2ee-4c43-aceb-4c5d2f703d77")
  2444. )
  2445. (pin "1"
  2446. (uuid "826a6c8a-185b-4d5c-a95f-24afc2dde7d1")
  2447. )
  2448. (pin "2"
  2449. (uuid "478b97a5-951a-4328-8a17-bd1795a8523b")
  2450. )
  2451. (pin "9"
  2452. (uuid "98726b94-9698-47ff-abd1-fbac7bb1f815")
  2453. )
  2454. (pin "5"
  2455. (uuid "858a1717-9181-4f25-9593-f5672479e6bf")
  2456. )
  2457. (pin "4"
  2458. (uuid "9c2a4099-9c63-456e-b06d-7089a455bf06")
  2459. )
  2460. (pin "3"
  2461. (uuid "98189503-9224-4747-92be-10906f3d0554")
  2462. )
  2463. (pin "7"
  2464. (uuid "412611cd-b63a-4be8-bd1b-40dc9cb0501e")
  2465. )
  2466. (pin "6"
  2467. (uuid "d6755e15-edc6-4d75-bc76-8d3fca0e1688")
  2468. )
  2469. (pin "8"
  2470. (uuid "43e90d01-3d41-4f8c-b97f-050b4760a7da")
  2471. )
  2472. (instances
  2473. (project ""
  2474. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  2475. (reference "J2")
  2476. (unit 1)
  2477. )
  2478. )
  2479. )
  2480. )
  2481. (symbol
  2482. (lib_id "power:+3V3")
  2483. (at 36.83 46.99 0)
  2484. (unit 1)
  2485. (exclude_from_sim no)
  2486. (in_bom yes)
  2487. (on_board yes)
  2488. (dnp no)
  2489. (fields_autoplaced yes)
  2490. (uuid "f3dc6995-d8cb-45df-90e3-8920d73339ef")
  2491. (property "Reference" "#PWR020"
  2492. (at 36.83 50.8 0)
  2493. (effects
  2494. (font
  2495. (size 1.27 1.27)
  2496. )
  2497. (hide yes)
  2498. )
  2499. )
  2500. (property "Value" "+3V3"
  2501. (at 36.83 41.91 0)
  2502. (effects
  2503. (font
  2504. (size 1.27 1.27)
  2505. )
  2506. )
  2507. )
  2508. (property "Footprint" ""
  2509. (at 36.83 46.99 0)
  2510. (effects
  2511. (font
  2512. (size 1.27 1.27)
  2513. )
  2514. (hide yes)
  2515. )
  2516. )
  2517. (property "Datasheet" ""
  2518. (at 36.83 46.99 0)
  2519. (effects
  2520. (font
  2521. (size 1.27 1.27)
  2522. )
  2523. (hide yes)
  2524. )
  2525. )
  2526. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2527. (at 36.83 46.99 0)
  2528. (effects
  2529. (font
  2530. (size 1.27 1.27)
  2531. )
  2532. (hide yes)
  2533. )
  2534. )
  2535. (pin "1"
  2536. (uuid "7c58cb7f-7f3e-4247-adf8-bd8a7596514e")
  2537. )
  2538. (instances
  2539. (project "cx-light-strip"
  2540. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/311b987d-166e-42da-bd79-c0d661904c98"
  2541. (reference "#PWR020")
  2542. (unit 1)
  2543. )
  2544. )
  2545. )
  2546. )
  2547. )