power_section.kicad_sch 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "5f7f1984-3f9c-4ab8-ba86-d64f5b0a782e")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Connector:Barrel_Jack_Switch"
  9. (pin_names hide)
  10. (exclude_from_sim no)
  11. (in_bom yes)
  12. (on_board yes)
  13. (property "Reference" "J"
  14. (at 0 5.334 0)
  15. (effects
  16. (font
  17. (size 1.27 1.27)
  18. )
  19. )
  20. )
  21. (property "Value" "Barrel_Jack_Switch"
  22. (at 0 -5.08 0)
  23. (effects
  24. (font
  25. (size 1.27 1.27)
  26. )
  27. )
  28. )
  29. (property "Footprint" ""
  30. (at 1.27 -1.016 0)
  31. (effects
  32. (font
  33. (size 1.27 1.27)
  34. )
  35. (hide yes)
  36. )
  37. )
  38. (property "Datasheet" "~"
  39. (at 1.27 -1.016 0)
  40. (effects
  41. (font
  42. (size 1.27 1.27)
  43. )
  44. (hide yes)
  45. )
  46. )
  47. (property "Description" "DC Barrel Jack with an internal switch"
  48. (at 0 0 0)
  49. (effects
  50. (font
  51. (size 1.27 1.27)
  52. )
  53. (hide yes)
  54. )
  55. )
  56. (property "ki_keywords" "DC power barrel jack connector"
  57. (at 0 0 0)
  58. (effects
  59. (font
  60. (size 1.27 1.27)
  61. )
  62. (hide yes)
  63. )
  64. )
  65. (property "ki_fp_filters" "BarrelJack*"
  66. (at 0 0 0)
  67. (effects
  68. (font
  69. (size 1.27 1.27)
  70. )
  71. (hide yes)
  72. )
  73. )
  74. (symbol "Barrel_Jack_Switch_0_1"
  75. (rectangle
  76. (start -5.08 3.81)
  77. (end 5.08 -3.81)
  78. (stroke
  79. (width 0.254)
  80. (type default)
  81. )
  82. (fill
  83. (type background)
  84. )
  85. )
  86. (arc
  87. (start -3.302 3.175)
  88. (mid -3.9343 2.54)
  89. (end -3.302 1.905)
  90. (stroke
  91. (width 0.254)
  92. (type default)
  93. )
  94. (fill
  95. (type none)
  96. )
  97. )
  98. (arc
  99. (start -3.302 3.175)
  100. (mid -3.9343 2.54)
  101. (end -3.302 1.905)
  102. (stroke
  103. (width 0.254)
  104. (type default)
  105. )
  106. (fill
  107. (type outline)
  108. )
  109. )
  110. (polyline
  111. (pts
  112. (xy 1.27 -2.286) (xy 1.905 -1.651)
  113. )
  114. (stroke
  115. (width 0.254)
  116. (type default)
  117. )
  118. (fill
  119. (type none)
  120. )
  121. )
  122. (polyline
  123. (pts
  124. (xy 5.08 2.54) (xy 3.81 2.54)
  125. )
  126. (stroke
  127. (width 0.254)
  128. (type default)
  129. )
  130. (fill
  131. (type none)
  132. )
  133. )
  134. (polyline
  135. (pts
  136. (xy 5.08 0) (xy 1.27 0) (xy 1.27 -2.286) (xy 0.635 -1.651)
  137. )
  138. (stroke
  139. (width 0.254)
  140. (type default)
  141. )
  142. (fill
  143. (type none)
  144. )
  145. )
  146. (polyline
  147. (pts
  148. (xy -3.81 -2.54) (xy -2.54 -2.54) (xy -1.27 -1.27) (xy 0 -2.54) (xy 2.54 -2.54) (xy 5.08 -2.54)
  149. )
  150. (stroke
  151. (width 0.254)
  152. (type default)
  153. )
  154. (fill
  155. (type none)
  156. )
  157. )
  158. (rectangle
  159. (start 3.683 3.175)
  160. (end -3.302 1.905)
  161. (stroke
  162. (width 0.254)
  163. (type default)
  164. )
  165. (fill
  166. (type outline)
  167. )
  168. )
  169. )
  170. (symbol "Barrel_Jack_Switch_1_1"
  171. (pin passive line
  172. (at 7.62 2.54 180)
  173. (length 2.54)
  174. (name "~"
  175. (effects
  176. (font
  177. (size 1.27 1.27)
  178. )
  179. )
  180. )
  181. (number "1"
  182. (effects
  183. (font
  184. (size 1.27 1.27)
  185. )
  186. )
  187. )
  188. )
  189. (pin passive line
  190. (at 7.62 -2.54 180)
  191. (length 2.54)
  192. (name "~"
  193. (effects
  194. (font
  195. (size 1.27 1.27)
  196. )
  197. )
  198. )
  199. (number "2"
  200. (effects
  201. (font
  202. (size 1.27 1.27)
  203. )
  204. )
  205. )
  206. )
  207. (pin passive line
  208. (at 7.62 0 180)
  209. (length 2.54)
  210. (name "~"
  211. (effects
  212. (font
  213. (size 1.27 1.27)
  214. )
  215. )
  216. )
  217. (number "3"
  218. (effects
  219. (font
  220. (size 1.27 1.27)
  221. )
  222. )
  223. )
  224. )
  225. )
  226. )
  227. (symbol "Device:C"
  228. (pin_numbers hide)
  229. (pin_names
  230. (offset 0.254)
  231. )
  232. (exclude_from_sim no)
  233. (in_bom yes)
  234. (on_board yes)
  235. (property "Reference" "C"
  236. (at 0.635 2.54 0)
  237. (effects
  238. (font
  239. (size 1.27 1.27)
  240. )
  241. (justify left)
  242. )
  243. )
  244. (property "Value" "C"
  245. (at 0.635 -2.54 0)
  246. (effects
  247. (font
  248. (size 1.27 1.27)
  249. )
  250. (justify left)
  251. )
  252. )
  253. (property "Footprint" ""
  254. (at 0.9652 -3.81 0)
  255. (effects
  256. (font
  257. (size 1.27 1.27)
  258. )
  259. (hide yes)
  260. )
  261. )
  262. (property "Datasheet" "~"
  263. (at 0 0 0)
  264. (effects
  265. (font
  266. (size 1.27 1.27)
  267. )
  268. (hide yes)
  269. )
  270. )
  271. (property "Description" "Unpolarized capacitor"
  272. (at 0 0 0)
  273. (effects
  274. (font
  275. (size 1.27 1.27)
  276. )
  277. (hide yes)
  278. )
  279. )
  280. (property "ki_keywords" "cap capacitor"
  281. (at 0 0 0)
  282. (effects
  283. (font
  284. (size 1.27 1.27)
  285. )
  286. (hide yes)
  287. )
  288. )
  289. (property "ki_fp_filters" "C_*"
  290. (at 0 0 0)
  291. (effects
  292. (font
  293. (size 1.27 1.27)
  294. )
  295. (hide yes)
  296. )
  297. )
  298. (symbol "C_0_1"
  299. (polyline
  300. (pts
  301. (xy -2.032 -0.762) (xy 2.032 -0.762)
  302. )
  303. (stroke
  304. (width 0.508)
  305. (type default)
  306. )
  307. (fill
  308. (type none)
  309. )
  310. )
  311. (polyline
  312. (pts
  313. (xy -2.032 0.762) (xy 2.032 0.762)
  314. )
  315. (stroke
  316. (width 0.508)
  317. (type default)
  318. )
  319. (fill
  320. (type none)
  321. )
  322. )
  323. )
  324. (symbol "C_1_1"
  325. (pin passive line
  326. (at 0 3.81 270)
  327. (length 2.794)
  328. (name "~"
  329. (effects
  330. (font
  331. (size 1.27 1.27)
  332. )
  333. )
  334. )
  335. (number "1"
  336. (effects
  337. (font
  338. (size 1.27 1.27)
  339. )
  340. )
  341. )
  342. )
  343. (pin passive line
  344. (at 0 -3.81 90)
  345. (length 2.794)
  346. (name "~"
  347. (effects
  348. (font
  349. (size 1.27 1.27)
  350. )
  351. )
  352. )
  353. (number "2"
  354. (effects
  355. (font
  356. (size 1.27 1.27)
  357. )
  358. )
  359. )
  360. )
  361. )
  362. )
  363. (symbol "Device:C_Polarized"
  364. (pin_numbers hide)
  365. (pin_names
  366. (offset 0.254)
  367. )
  368. (exclude_from_sim no)
  369. (in_bom yes)
  370. (on_board yes)
  371. (property "Reference" "C"
  372. (at 0.635 2.54 0)
  373. (effects
  374. (font
  375. (size 1.27 1.27)
  376. )
  377. (justify left)
  378. )
  379. )
  380. (property "Value" "C_Polarized"
  381. (at 0.635 -2.54 0)
  382. (effects
  383. (font
  384. (size 1.27 1.27)
  385. )
  386. (justify left)
  387. )
  388. )
  389. (property "Footprint" ""
  390. (at 0.9652 -3.81 0)
  391. (effects
  392. (font
  393. (size 1.27 1.27)
  394. )
  395. (hide yes)
  396. )
  397. )
  398. (property "Datasheet" "~"
  399. (at 0 0 0)
  400. (effects
  401. (font
  402. (size 1.27 1.27)
  403. )
  404. (hide yes)
  405. )
  406. )
  407. (property "Description" "Polarized capacitor"
  408. (at 0 0 0)
  409. (effects
  410. (font
  411. (size 1.27 1.27)
  412. )
  413. (hide yes)
  414. )
  415. )
  416. (property "ki_keywords" "cap capacitor"
  417. (at 0 0 0)
  418. (effects
  419. (font
  420. (size 1.27 1.27)
  421. )
  422. (hide yes)
  423. )
  424. )
  425. (property "ki_fp_filters" "CP_*"
  426. (at 0 0 0)
  427. (effects
  428. (font
  429. (size 1.27 1.27)
  430. )
  431. (hide yes)
  432. )
  433. )
  434. (symbol "C_Polarized_0_1"
  435. (rectangle
  436. (start -2.286 0.508)
  437. (end 2.286 1.016)
  438. (stroke
  439. (width 0)
  440. (type default)
  441. )
  442. (fill
  443. (type none)
  444. )
  445. )
  446. (polyline
  447. (pts
  448. (xy -1.778 2.286) (xy -0.762 2.286)
  449. )
  450. (stroke
  451. (width 0)
  452. (type default)
  453. )
  454. (fill
  455. (type none)
  456. )
  457. )
  458. (polyline
  459. (pts
  460. (xy -1.27 2.794) (xy -1.27 1.778)
  461. )
  462. (stroke
  463. (width 0)
  464. (type default)
  465. )
  466. (fill
  467. (type none)
  468. )
  469. )
  470. (rectangle
  471. (start 2.286 -0.508)
  472. (end -2.286 -1.016)
  473. (stroke
  474. (width 0)
  475. (type default)
  476. )
  477. (fill
  478. (type outline)
  479. )
  480. )
  481. )
  482. (symbol "C_Polarized_1_1"
  483. (pin passive line
  484. (at 0 3.81 270)
  485. (length 2.794)
  486. (name "~"
  487. (effects
  488. (font
  489. (size 1.27 1.27)
  490. )
  491. )
  492. )
  493. (number "1"
  494. (effects
  495. (font
  496. (size 1.27 1.27)
  497. )
  498. )
  499. )
  500. )
  501. (pin passive line
  502. (at 0 -3.81 90)
  503. (length 2.794)
  504. (name "~"
  505. (effects
  506. (font
  507. (size 1.27 1.27)
  508. )
  509. )
  510. )
  511. (number "2"
  512. (effects
  513. (font
  514. (size 1.27 1.27)
  515. )
  516. )
  517. )
  518. )
  519. )
  520. )
  521. (symbol "Device:D_Schottky"
  522. (pin_numbers hide)
  523. (pin_names
  524. (offset 1.016) hide)
  525. (exclude_from_sim no)
  526. (in_bom yes)
  527. (on_board yes)
  528. (property "Reference" "D"
  529. (at 0 2.54 0)
  530. (effects
  531. (font
  532. (size 1.27 1.27)
  533. )
  534. )
  535. )
  536. (property "Value" "D_Schottky"
  537. (at 0 -2.54 0)
  538. (effects
  539. (font
  540. (size 1.27 1.27)
  541. )
  542. )
  543. )
  544. (property "Footprint" ""
  545. (at 0 0 0)
  546. (effects
  547. (font
  548. (size 1.27 1.27)
  549. )
  550. (hide yes)
  551. )
  552. )
  553. (property "Datasheet" "~"
  554. (at 0 0 0)
  555. (effects
  556. (font
  557. (size 1.27 1.27)
  558. )
  559. (hide yes)
  560. )
  561. )
  562. (property "Description" "Schottky diode"
  563. (at 0 0 0)
  564. (effects
  565. (font
  566. (size 1.27 1.27)
  567. )
  568. (hide yes)
  569. )
  570. )
  571. (property "ki_keywords" "diode Schottky"
  572. (at 0 0 0)
  573. (effects
  574. (font
  575. (size 1.27 1.27)
  576. )
  577. (hide yes)
  578. )
  579. )
  580. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*"
  581. (at 0 0 0)
  582. (effects
  583. (font
  584. (size 1.27 1.27)
  585. )
  586. (hide yes)
  587. )
  588. )
  589. (symbol "D_Schottky_0_1"
  590. (polyline
  591. (pts
  592. (xy 1.27 0) (xy -1.27 0)
  593. )
  594. (stroke
  595. (width 0)
  596. (type default)
  597. )
  598. (fill
  599. (type none)
  600. )
  601. )
  602. (polyline
  603. (pts
  604. (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
  605. )
  606. (stroke
  607. (width 0.254)
  608. (type default)
  609. )
  610. (fill
  611. (type none)
  612. )
  613. )
  614. (polyline
  615. (pts
  616. (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635)
  617. )
  618. (stroke
  619. (width 0.254)
  620. (type default)
  621. )
  622. (fill
  623. (type none)
  624. )
  625. )
  626. )
  627. (symbol "D_Schottky_1_1"
  628. (pin passive line
  629. (at -3.81 0 0)
  630. (length 2.54)
  631. (name "K"
  632. (effects
  633. (font
  634. (size 1.27 1.27)
  635. )
  636. )
  637. )
  638. (number "1"
  639. (effects
  640. (font
  641. (size 1.27 1.27)
  642. )
  643. )
  644. )
  645. )
  646. (pin passive line
  647. (at 3.81 0 180)
  648. (length 2.54)
  649. (name "A"
  650. (effects
  651. (font
  652. (size 1.27 1.27)
  653. )
  654. )
  655. )
  656. (number "2"
  657. (effects
  658. (font
  659. (size 1.27 1.27)
  660. )
  661. )
  662. )
  663. )
  664. )
  665. )
  666. (symbol "Regulator_Linear:LM1117DT-3.3"
  667. (exclude_from_sim no)
  668. (in_bom yes)
  669. (on_board yes)
  670. (property "Reference" "U"
  671. (at -3.81 3.175 0)
  672. (effects
  673. (font
  674. (size 1.27 1.27)
  675. )
  676. )
  677. )
  678. (property "Value" "LM1117DT-3.3"
  679. (at 0 3.175 0)
  680. (effects
  681. (font
  682. (size 1.27 1.27)
  683. )
  684. (justify left)
  685. )
  686. )
  687. (property "Footprint" "Package_TO_SOT_SMD:TO-252-3_TabPin2"
  688. (at 0 0 0)
  689. (effects
  690. (font
  691. (size 1.27 1.27)
  692. )
  693. (hide yes)
  694. )
  695. )
  696. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  697. (at 0 0 0)
  698. (effects
  699. (font
  700. (size 1.27 1.27)
  701. )
  702. (hide yes)
  703. )
  704. )
  705. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, TO-252"
  706. (at 0 0 0)
  707. (effects
  708. (font
  709. (size 1.27 1.27)
  710. )
  711. (hide yes)
  712. )
  713. )
  714. (property "ki_keywords" "linear regulator ldo fixed positive"
  715. (at 0 0 0)
  716. (effects
  717. (font
  718. (size 1.27 1.27)
  719. )
  720. (hide yes)
  721. )
  722. )
  723. (property "ki_fp_filters" "TO?252*"
  724. (at 0 0 0)
  725. (effects
  726. (font
  727. (size 1.27 1.27)
  728. )
  729. (hide yes)
  730. )
  731. )
  732. (symbol "LM1117DT-3.3_0_1"
  733. (rectangle
  734. (start -5.08 -5.08)
  735. (end 5.08 1.905)
  736. (stroke
  737. (width 0.254)
  738. (type default)
  739. )
  740. (fill
  741. (type background)
  742. )
  743. )
  744. )
  745. (symbol "LM1117DT-3.3_1_1"
  746. (pin power_in line
  747. (at 0 -7.62 90)
  748. (length 2.54)
  749. (name "GND"
  750. (effects
  751. (font
  752. (size 1.27 1.27)
  753. )
  754. )
  755. )
  756. (number "1"
  757. (effects
  758. (font
  759. (size 1.27 1.27)
  760. )
  761. )
  762. )
  763. )
  764. (pin power_out line
  765. (at 7.62 0 180)
  766. (length 2.54)
  767. (name "VO"
  768. (effects
  769. (font
  770. (size 1.27 1.27)
  771. )
  772. )
  773. )
  774. (number "2"
  775. (effects
  776. (font
  777. (size 1.27 1.27)
  778. )
  779. )
  780. )
  781. )
  782. (pin power_in line
  783. (at -7.62 0 0)
  784. (length 2.54)
  785. (name "VI"
  786. (effects
  787. (font
  788. (size 1.27 1.27)
  789. )
  790. )
  791. )
  792. (number "3"
  793. (effects
  794. (font
  795. (size 1.27 1.27)
  796. )
  797. )
  798. )
  799. )
  800. )
  801. )
  802. (symbol "power:+12V"
  803. (power)
  804. (pin_numbers hide)
  805. (pin_names
  806. (offset 0) hide)
  807. (exclude_from_sim no)
  808. (in_bom yes)
  809. (on_board yes)
  810. (property "Reference" "#PWR"
  811. (at 0 -3.81 0)
  812. (effects
  813. (font
  814. (size 1.27 1.27)
  815. )
  816. (hide yes)
  817. )
  818. )
  819. (property "Value" "+12V"
  820. (at 0 3.556 0)
  821. (effects
  822. (font
  823. (size 1.27 1.27)
  824. )
  825. )
  826. )
  827. (property "Footprint" ""
  828. (at 0 0 0)
  829. (effects
  830. (font
  831. (size 1.27 1.27)
  832. )
  833. (hide yes)
  834. )
  835. )
  836. (property "Datasheet" ""
  837. (at 0 0 0)
  838. (effects
  839. (font
  840. (size 1.27 1.27)
  841. )
  842. (hide yes)
  843. )
  844. )
  845. (property "Description" "Power symbol creates a global label with name \"+12V\""
  846. (at 0 0 0)
  847. (effects
  848. (font
  849. (size 1.27 1.27)
  850. )
  851. (hide yes)
  852. )
  853. )
  854. (property "ki_keywords" "global power"
  855. (at 0 0 0)
  856. (effects
  857. (font
  858. (size 1.27 1.27)
  859. )
  860. (hide yes)
  861. )
  862. )
  863. (symbol "+12V_0_1"
  864. (polyline
  865. (pts
  866. (xy -0.762 1.27) (xy 0 2.54)
  867. )
  868. (stroke
  869. (width 0)
  870. (type default)
  871. )
  872. (fill
  873. (type none)
  874. )
  875. )
  876. (polyline
  877. (pts
  878. (xy 0 0) (xy 0 2.54)
  879. )
  880. (stroke
  881. (width 0)
  882. (type default)
  883. )
  884. (fill
  885. (type none)
  886. )
  887. )
  888. (polyline
  889. (pts
  890. (xy 0 2.54) (xy 0.762 1.27)
  891. )
  892. (stroke
  893. (width 0)
  894. (type default)
  895. )
  896. (fill
  897. (type none)
  898. )
  899. )
  900. )
  901. (symbol "+12V_1_1"
  902. (pin power_in line
  903. (at 0 0 90)
  904. (length 0)
  905. (name "~"
  906. (effects
  907. (font
  908. (size 1.27 1.27)
  909. )
  910. )
  911. )
  912. (number "1"
  913. (effects
  914. (font
  915. (size 1.27 1.27)
  916. )
  917. )
  918. )
  919. )
  920. )
  921. )
  922. (symbol "power:+3V3"
  923. (power)
  924. (pin_numbers hide)
  925. (pin_names
  926. (offset 0) hide)
  927. (exclude_from_sim no)
  928. (in_bom yes)
  929. (on_board yes)
  930. (property "Reference" "#PWR"
  931. (at 0 -3.81 0)
  932. (effects
  933. (font
  934. (size 1.27 1.27)
  935. )
  936. (hide yes)
  937. )
  938. )
  939. (property "Value" "+3V3"
  940. (at 0 3.556 0)
  941. (effects
  942. (font
  943. (size 1.27 1.27)
  944. )
  945. )
  946. )
  947. (property "Footprint" ""
  948. (at 0 0 0)
  949. (effects
  950. (font
  951. (size 1.27 1.27)
  952. )
  953. (hide yes)
  954. )
  955. )
  956. (property "Datasheet" ""
  957. (at 0 0 0)
  958. (effects
  959. (font
  960. (size 1.27 1.27)
  961. )
  962. (hide yes)
  963. )
  964. )
  965. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  966. (at 0 0 0)
  967. (effects
  968. (font
  969. (size 1.27 1.27)
  970. )
  971. (hide yes)
  972. )
  973. )
  974. (property "ki_keywords" "global power"
  975. (at 0 0 0)
  976. (effects
  977. (font
  978. (size 1.27 1.27)
  979. )
  980. (hide yes)
  981. )
  982. )
  983. (symbol "+3V3_0_1"
  984. (polyline
  985. (pts
  986. (xy -0.762 1.27) (xy 0 2.54)
  987. )
  988. (stroke
  989. (width 0)
  990. (type default)
  991. )
  992. (fill
  993. (type none)
  994. )
  995. )
  996. (polyline
  997. (pts
  998. (xy 0 0) (xy 0 2.54)
  999. )
  1000. (stroke
  1001. (width 0)
  1002. (type default)
  1003. )
  1004. (fill
  1005. (type none)
  1006. )
  1007. )
  1008. (polyline
  1009. (pts
  1010. (xy 0 2.54) (xy 0.762 1.27)
  1011. )
  1012. (stroke
  1013. (width 0)
  1014. (type default)
  1015. )
  1016. (fill
  1017. (type none)
  1018. )
  1019. )
  1020. )
  1021. (symbol "+3V3_1_1"
  1022. (pin power_in line
  1023. (at 0 0 90)
  1024. (length 0)
  1025. (name "~"
  1026. (effects
  1027. (font
  1028. (size 1.27 1.27)
  1029. )
  1030. )
  1031. )
  1032. (number "1"
  1033. (effects
  1034. (font
  1035. (size 1.27 1.27)
  1036. )
  1037. )
  1038. )
  1039. )
  1040. )
  1041. )
  1042. (symbol "power:GND"
  1043. (power)
  1044. (pin_numbers hide)
  1045. (pin_names
  1046. (offset 0) hide)
  1047. (exclude_from_sim no)
  1048. (in_bom yes)
  1049. (on_board yes)
  1050. (property "Reference" "#PWR"
  1051. (at 0 -6.35 0)
  1052. (effects
  1053. (font
  1054. (size 1.27 1.27)
  1055. )
  1056. (hide yes)
  1057. )
  1058. )
  1059. (property "Value" "GND"
  1060. (at 0 -3.81 0)
  1061. (effects
  1062. (font
  1063. (size 1.27 1.27)
  1064. )
  1065. )
  1066. )
  1067. (property "Footprint" ""
  1068. (at 0 0 0)
  1069. (effects
  1070. (font
  1071. (size 1.27 1.27)
  1072. )
  1073. (hide yes)
  1074. )
  1075. )
  1076. (property "Datasheet" ""
  1077. (at 0 0 0)
  1078. (effects
  1079. (font
  1080. (size 1.27 1.27)
  1081. )
  1082. (hide yes)
  1083. )
  1084. )
  1085. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1086. (at 0 0 0)
  1087. (effects
  1088. (font
  1089. (size 1.27 1.27)
  1090. )
  1091. (hide yes)
  1092. )
  1093. )
  1094. (property "ki_keywords" "global power"
  1095. (at 0 0 0)
  1096. (effects
  1097. (font
  1098. (size 1.27 1.27)
  1099. )
  1100. (hide yes)
  1101. )
  1102. )
  1103. (symbol "GND_0_1"
  1104. (polyline
  1105. (pts
  1106. (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)
  1107. )
  1108. (stroke
  1109. (width 0)
  1110. (type default)
  1111. )
  1112. (fill
  1113. (type none)
  1114. )
  1115. )
  1116. )
  1117. (symbol "GND_1_1"
  1118. (pin power_in line
  1119. (at 0 0 270)
  1120. (length 0)
  1121. (name "~"
  1122. (effects
  1123. (font
  1124. (size 1.27 1.27)
  1125. )
  1126. )
  1127. )
  1128. (number "1"
  1129. (effects
  1130. (font
  1131. (size 1.27 1.27)
  1132. )
  1133. )
  1134. )
  1135. )
  1136. )
  1137. )
  1138. )
  1139. (junction
  1140. (at 44.45 40.64)
  1141. (diameter 0)
  1142. (color 0 0 0 0)
  1143. (uuid "356a61ea-a596-417b-a1be-70f9e56913b9")
  1144. )
  1145. (junction
  1146. (at 107.95 97.79)
  1147. (diameter 0)
  1148. (color 0 0 0 0)
  1149. (uuid "45c3d4b5-1069-46d0-8eec-1e6c4775f27e")
  1150. )
  1151. (junction
  1152. (at 92.71 97.79)
  1153. (diameter 0)
  1154. (color 0 0 0 0)
  1155. (uuid "5d7d8047-56c8-47cb-a46d-bd295cbf652f")
  1156. )
  1157. (junction
  1158. (at 39.37 97.79)
  1159. (diameter 0)
  1160. (color 0 0 0 0)
  1161. (uuid "6044e3e7-4370-4321-aae6-746c1c1908ea")
  1162. )
  1163. (junction
  1164. (at 55.88 97.79)
  1165. (diameter 0)
  1166. (color 0 0 0 0)
  1167. (uuid "cb578fbf-b1c5-45a0-981d-a89815018cea")
  1168. )
  1169. (wire
  1170. (pts
  1171. (xy 92.71 100.33) (xy 92.71 97.79)
  1172. )
  1173. (stroke
  1174. (width 0)
  1175. (type default)
  1176. )
  1177. (uuid "03fb4f4f-8e55-447f-8045-53215462465a")
  1178. )
  1179. (wire
  1180. (pts
  1181. (xy 92.71 110.49) (xy 92.71 107.95)
  1182. )
  1183. (stroke
  1184. (width 0)
  1185. (type default)
  1186. )
  1187. (uuid "069d40a2-b35d-4ac3-8690-c9fa76577fb4")
  1188. )
  1189. (wire
  1190. (pts
  1191. (xy 39.37 97.79) (xy 55.88 97.79)
  1192. )
  1193. (stroke
  1194. (width 0)
  1195. (type default)
  1196. )
  1197. (uuid "07044bcf-5569-48a2-b042-e2b3211d393d")
  1198. )
  1199. (wire
  1200. (pts
  1201. (xy 107.95 100.33) (xy 107.95 97.79)
  1202. )
  1203. (stroke
  1204. (width 0)
  1205. (type default)
  1206. )
  1207. (uuid "0a443f36-b7b5-4bde-80cd-98d8ecee95a1")
  1208. )
  1209. (wire
  1210. (pts
  1211. (xy 74.93 110.49) (xy 74.93 105.41)
  1212. )
  1213. (stroke
  1214. (width 0)
  1215. (type default)
  1216. )
  1217. (uuid "0ac322a7-f32a-4dcd-ad99-951506de54c9")
  1218. )
  1219. (wire
  1220. (pts
  1221. (xy 55.88 100.33) (xy 55.88 97.79)
  1222. )
  1223. (stroke
  1224. (width 0)
  1225. (type default)
  1226. )
  1227. (uuid "10a9812d-6b2a-4994-b533-152d307bc101")
  1228. )
  1229. (wire
  1230. (pts
  1231. (xy 39.37 107.95) (xy 39.37 110.49)
  1232. )
  1233. (stroke
  1234. (width 0)
  1235. (type default)
  1236. )
  1237. (uuid "16d92c8d-19d7-4533-a26f-6c7a83c4b0e5")
  1238. )
  1239. (wire
  1240. (pts
  1241. (xy 55.88 97.79) (xy 67.31 97.79)
  1242. )
  1243. (stroke
  1244. (width 0)
  1245. (type default)
  1246. )
  1247. (uuid "2756f2a5-255e-426a-b7c2-926102575a3a")
  1248. )
  1249. (wire
  1250. (pts
  1251. (xy 107.95 97.79) (xy 92.71 97.79)
  1252. )
  1253. (stroke
  1254. (width 0)
  1255. (type default)
  1256. )
  1257. (uuid "2f28a82a-8fc7-4eeb-b85e-67cf30311354")
  1258. )
  1259. (wire
  1260. (pts
  1261. (xy 92.71 97.79) (xy 82.55 97.79)
  1262. )
  1263. (stroke
  1264. (width 0)
  1265. (type default)
  1266. )
  1267. (uuid "5b181c06-9bcb-4ad2-914a-799d197df33f")
  1268. )
  1269. (wire
  1270. (pts
  1271. (xy 78.74 86.36) (xy 92.71 86.36)
  1272. )
  1273. (stroke
  1274. (width 0)
  1275. (type default)
  1276. )
  1277. (uuid "7c5c417e-ad6f-4760-928b-c58ef276f875")
  1278. )
  1279. (wire
  1280. (pts
  1281. (xy 39.37 100.33) (xy 39.37 97.79)
  1282. )
  1283. (stroke
  1284. (width 0)
  1285. (type default)
  1286. )
  1287. (uuid "7c9a2fc3-7c89-41df-8fd3-615427aa8f55")
  1288. )
  1289. (wire
  1290. (pts
  1291. (xy 107.95 107.95) (xy 107.95 110.49)
  1292. )
  1293. (stroke
  1294. (width 0)
  1295. (type default)
  1296. )
  1297. (uuid "8993946a-a741-4878-929a-acd3049fd6c7")
  1298. )
  1299. (wire
  1300. (pts
  1301. (xy 48.26 35.56) (xy 44.45 35.56)
  1302. )
  1303. (stroke
  1304. (width 0)
  1305. (type default)
  1306. )
  1307. (uuid "8afe2b4c-5648-4e2a-9884-78ee24574e92")
  1308. )
  1309. (wire
  1310. (pts
  1311. (xy 44.45 38.1) (xy 44.45 40.64)
  1312. )
  1313. (stroke
  1314. (width 0)
  1315. (type default)
  1316. )
  1317. (uuid "97669a82-7171-40fc-9ccc-779278bc70ee")
  1318. )
  1319. (wire
  1320. (pts
  1321. (xy 39.37 91.44) (xy 39.37 97.79)
  1322. )
  1323. (stroke
  1324. (width 0)
  1325. (type default)
  1326. )
  1327. (uuid "ac4d4321-925b-46ae-8f6b-c96115f279f9")
  1328. )
  1329. (wire
  1330. (pts
  1331. (xy 107.95 91.44) (xy 107.95 97.79)
  1332. )
  1333. (stroke
  1334. (width 0)
  1335. (type default)
  1336. )
  1337. (uuid "ae19d306-4d62-4569-a79f-352ed9e73235")
  1338. )
  1339. (wire
  1340. (pts
  1341. (xy 55.88 110.49) (xy 55.88 107.95)
  1342. )
  1343. (stroke
  1344. (width 0)
  1345. (type default)
  1346. )
  1347. (uuid "b21e0452-ff7c-4868-b15d-2b942e25c0d0")
  1348. )
  1349. (wire
  1350. (pts
  1351. (xy 71.12 86.36) (xy 55.88 86.36)
  1352. )
  1353. (stroke
  1354. (width 0)
  1355. (type default)
  1356. )
  1357. (uuid "c47bf4f1-49ee-4ca1-a56e-512f739e2e5f")
  1358. )
  1359. (wire
  1360. (pts
  1361. (xy 48.26 40.64) (xy 44.45 40.64)
  1362. )
  1363. (stroke
  1364. (width 0)
  1365. (type default)
  1366. )
  1367. (uuid "c73a7421-43bc-4066-a916-b383292d5400")
  1368. )
  1369. (wire
  1370. (pts
  1371. (xy 48.26 33.02) (xy 48.26 35.56)
  1372. )
  1373. (stroke
  1374. (width 0)
  1375. (type default)
  1376. )
  1377. (uuid "c771d0f3-299f-46e1-8338-4453a2ba3c99")
  1378. )
  1379. (wire
  1380. (pts
  1381. (xy 48.26 43.18) (xy 48.26 40.64)
  1382. )
  1383. (stroke
  1384. (width 0)
  1385. (type default)
  1386. )
  1387. (uuid "c820944b-12dd-44e8-920c-83803faf9c26")
  1388. )
  1389. (wire
  1390. (pts
  1391. (xy 55.88 86.36) (xy 55.88 97.79)
  1392. )
  1393. (stroke
  1394. (width 0)
  1395. (type default)
  1396. )
  1397. (uuid "e80aec9c-d384-4038-bd04-b8abbf3c31a7")
  1398. )
  1399. (wire
  1400. (pts
  1401. (xy 92.71 86.36) (xy 92.71 97.79)
  1402. )
  1403. (stroke
  1404. (width 0)
  1405. (type default)
  1406. )
  1407. (uuid "f77ce6fd-e75d-4467-b320-79c82911f973")
  1408. )
  1409. (rectangle
  1410. (start 24.13 24.13)
  1411. (end 69.85 52.07)
  1412. (stroke
  1413. (width 0)
  1414. (type default)
  1415. )
  1416. (fill
  1417. (type none)
  1418. )
  1419. (uuid 5e972280-ccba-4208-b28b-d6f6085fa24e)
  1420. )
  1421. (rectangle
  1422. (start 29.21 74.93)
  1423. (end 123.19 125.73)
  1424. (stroke
  1425. (width 0)
  1426. (type default)
  1427. )
  1428. (fill
  1429. (type none)
  1430. )
  1431. (uuid 7630444c-748a-4ab2-bc09-20b1a50987fb)
  1432. )
  1433. (rectangle
  1434. (start 105.41 24.13)
  1435. (end 167.64 54.61)
  1436. (stroke
  1437. (width 0)
  1438. (type default)
  1439. )
  1440. (fill
  1441. (type none)
  1442. )
  1443. (uuid b9dce600-7e4a-46b9-8137-c0aca676dbfc)
  1444. )
  1445. (text "Main power line \nstabilizing capacitors."
  1446. (exclude_from_sim no)
  1447. (at 154.686 28.448 0)
  1448. (effects
  1449. (font
  1450. (size 1.27 1.27)
  1451. )
  1452. )
  1453. (uuid "738ce31a-1c3d-4c4e-9f03-aeee97ccc60f")
  1454. )
  1455. (text "Logic unit power section.\n"
  1456. (exclude_from_sim no)
  1457. (at 107.442 79.248 0)
  1458. (effects
  1459. (font
  1460. (size 1.27 1.27)
  1461. )
  1462. )
  1463. (uuid "97fb0d41-40da-4945-b85d-a6a8ae6ff85d")
  1464. )
  1465. (text "Power input."
  1466. (exclude_from_sim no)
  1467. (at 60.452 27.432 0)
  1468. (effects
  1469. (font
  1470. (size 1.27 1.27)
  1471. )
  1472. )
  1473. (uuid "c2570c32-4f7c-4207-ad67-069cd6a7fad3")
  1474. )
  1475. (symbol
  1476. (lib_id "power:GND")
  1477. (at 92.71 110.49 0)
  1478. (unit 1)
  1479. (exclude_from_sim no)
  1480. (in_bom yes)
  1481. (on_board yes)
  1482. (dnp no)
  1483. (fields_autoplaced yes)
  1484. (uuid "205f923a-2fc2-4f1e-b25e-3a61559c7073")
  1485. (property "Reference" "#PWR09"
  1486. (at 92.71 116.84 0)
  1487. (effects
  1488. (font
  1489. (size 1.27 1.27)
  1490. )
  1491. (hide yes)
  1492. )
  1493. )
  1494. (property "Value" "GND"
  1495. (at 92.71 115.57 0)
  1496. (effects
  1497. (font
  1498. (size 1.27 1.27)
  1499. )
  1500. )
  1501. )
  1502. (property "Footprint" ""
  1503. (at 92.71 110.49 0)
  1504. (effects
  1505. (font
  1506. (size 1.27 1.27)
  1507. )
  1508. (hide yes)
  1509. )
  1510. )
  1511. (property "Datasheet" ""
  1512. (at 92.71 110.49 0)
  1513. (effects
  1514. (font
  1515. (size 1.27 1.27)
  1516. )
  1517. (hide yes)
  1518. )
  1519. )
  1520. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1521. (at 92.71 110.49 0)
  1522. (effects
  1523. (font
  1524. (size 1.27 1.27)
  1525. )
  1526. (hide yes)
  1527. )
  1528. )
  1529. (pin "1"
  1530. (uuid "1ec05d21-8253-4d1d-95a1-f75c4f616221")
  1531. )
  1532. (instances
  1533. (project "cx-light-strip"
  1534. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  1535. (reference "#PWR09")
  1536. (unit 1)
  1537. )
  1538. )
  1539. )
  1540. )
  1541. (symbol
  1542. (lib_id "power:+12V")
  1543. (at 109.22 34.29 0)
  1544. (unit 1)
  1545. (exclude_from_sim no)
  1546. (in_bom yes)
  1547. (on_board yes)
  1548. (dnp no)
  1549. (fields_autoplaced yes)
  1550. (uuid "24296bb8-eeec-4910-86db-787a5204b9a4")
  1551. (property "Reference" "#PWR05"
  1552. (at 109.22 38.1 0)
  1553. (effects
  1554. (font
  1555. (size 1.27 1.27)
  1556. )
  1557. (hide yes)
  1558. )
  1559. )
  1560. (property "Value" "+12V"
  1561. (at 109.22 29.21 0)
  1562. (effects
  1563. (font
  1564. (size 1.27 1.27)
  1565. )
  1566. )
  1567. )
  1568. (property "Footprint" ""
  1569. (at 109.22 34.29 0)
  1570. (effects
  1571. (font
  1572. (size 1.27 1.27)
  1573. )
  1574. (hide yes)
  1575. )
  1576. )
  1577. (property "Datasheet" ""
  1578. (at 109.22 34.29 0)
  1579. (effects
  1580. (font
  1581. (size 1.27 1.27)
  1582. )
  1583. (hide yes)
  1584. )
  1585. )
  1586. (property "Description" "Power symbol creates a global label with name \"+12V\""
  1587. (at 109.22 34.29 0)
  1588. (effects
  1589. (font
  1590. (size 1.27 1.27)
  1591. )
  1592. (hide yes)
  1593. )
  1594. )
  1595. (pin "1"
  1596. (uuid "f3c69f93-5ae5-4e1b-92d2-2e2a3acf225e")
  1597. )
  1598. (instances
  1599. (project "cx-light-strip"
  1600. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  1601. (reference "#PWR05")
  1602. (unit 1)
  1603. )
  1604. )
  1605. )
  1606. )
  1607. (symbol
  1608. (lib_id "power:GND")
  1609. (at 123.19 41.91 0)
  1610. (unit 1)
  1611. (exclude_from_sim no)
  1612. (in_bom yes)
  1613. (on_board yes)
  1614. (dnp no)
  1615. (fields_autoplaced yes)
  1616. (uuid "37022f36-012c-4895-a93c-ea126608d2ff")
  1617. (property "Reference" "#PWR03"
  1618. (at 123.19 48.26 0)
  1619. (effects
  1620. (font
  1621. (size 1.27 1.27)
  1622. )
  1623. (hide yes)
  1624. )
  1625. )
  1626. (property "Value" "GND"
  1627. (at 123.19 46.99 0)
  1628. (effects
  1629. (font
  1630. (size 1.27 1.27)
  1631. )
  1632. )
  1633. )
  1634. (property "Footprint" ""
  1635. (at 123.19 41.91 0)
  1636. (effects
  1637. (font
  1638. (size 1.27 1.27)
  1639. )
  1640. (hide yes)
  1641. )
  1642. )
  1643. (property "Datasheet" ""
  1644. (at 123.19 41.91 0)
  1645. (effects
  1646. (font
  1647. (size 1.27 1.27)
  1648. )
  1649. (hide yes)
  1650. )
  1651. )
  1652. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1653. (at 123.19 41.91 0)
  1654. (effects
  1655. (font
  1656. (size 1.27 1.27)
  1657. )
  1658. (hide yes)
  1659. )
  1660. )
  1661. (pin "1"
  1662. (uuid "8b9a9336-3113-493b-9d8c-8c13304e55ac")
  1663. )
  1664. (instances
  1665. (project "cx-light-strip"
  1666. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  1667. (reference "#PWR03")
  1668. (unit 1)
  1669. )
  1670. )
  1671. )
  1672. )
  1673. (symbol
  1674. (lib_id "power:+12V")
  1675. (at 123.19 34.29 0)
  1676. (unit 1)
  1677. (exclude_from_sim no)
  1678. (in_bom yes)
  1679. (on_board yes)
  1680. (dnp no)
  1681. (fields_autoplaced yes)
  1682. (uuid "406ef586-fa93-4f72-bd83-f0b06ee812a6")
  1683. (property "Reference" "#PWR04"
  1684. (at 123.19 38.1 0)
  1685. (effects
  1686. (font
  1687. (size 1.27 1.27)
  1688. )
  1689. (hide yes)
  1690. )
  1691. )
  1692. (property "Value" "+12V"
  1693. (at 123.19 29.21 0)
  1694. (effects
  1695. (font
  1696. (size 1.27 1.27)
  1697. )
  1698. )
  1699. )
  1700. (property "Footprint" ""
  1701. (at 123.19 34.29 0)
  1702. (effects
  1703. (font
  1704. (size 1.27 1.27)
  1705. )
  1706. (hide yes)
  1707. )
  1708. )
  1709. (property "Datasheet" ""
  1710. (at 123.19 34.29 0)
  1711. (effects
  1712. (font
  1713. (size 1.27 1.27)
  1714. )
  1715. (hide yes)
  1716. )
  1717. )
  1718. (property "Description" "Power symbol creates a global label with name \"+12V\""
  1719. (at 123.19 34.29 0)
  1720. (effects
  1721. (font
  1722. (size 1.27 1.27)
  1723. )
  1724. (hide yes)
  1725. )
  1726. )
  1727. (pin "1"
  1728. (uuid "75d7627a-7810-434e-91c9-ac3004d508c8")
  1729. )
  1730. (instances
  1731. (project "cx-light-strip"
  1732. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  1733. (reference "#PWR04")
  1734. (unit 1)
  1735. )
  1736. )
  1737. )
  1738. )
  1739. (symbol
  1740. (lib_id "power:+12V")
  1741. (at 135.89 34.29 0)
  1742. (unit 1)
  1743. (exclude_from_sim no)
  1744. (in_bom yes)
  1745. (on_board yes)
  1746. (dnp no)
  1747. (fields_autoplaced yes)
  1748. (uuid "469c0044-a11a-4826-9992-6f755f558557")
  1749. (property "Reference" "#PWR06"
  1750. (at 135.89 38.1 0)
  1751. (effects
  1752. (font
  1753. (size 1.27 1.27)
  1754. )
  1755. (hide yes)
  1756. )
  1757. )
  1758. (property "Value" "+12V"
  1759. (at 135.89 29.21 0)
  1760. (effects
  1761. (font
  1762. (size 1.27 1.27)
  1763. )
  1764. )
  1765. )
  1766. (property "Footprint" ""
  1767. (at 135.89 34.29 0)
  1768. (effects
  1769. (font
  1770. (size 1.27 1.27)
  1771. )
  1772. (hide yes)
  1773. )
  1774. )
  1775. (property "Datasheet" ""
  1776. (at 135.89 34.29 0)
  1777. (effects
  1778. (font
  1779. (size 1.27 1.27)
  1780. )
  1781. (hide yes)
  1782. )
  1783. )
  1784. (property "Description" "Power symbol creates a global label with name \"+12V\""
  1785. (at 135.89 34.29 0)
  1786. (effects
  1787. (font
  1788. (size 1.27 1.27)
  1789. )
  1790. (hide yes)
  1791. )
  1792. )
  1793. (pin "1"
  1794. (uuid "cb5d3a95-5d6d-4171-8a98-819a81e790c7")
  1795. )
  1796. (instances
  1797. (project "cx-light-strip"
  1798. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  1799. (reference "#PWR06")
  1800. (unit 1)
  1801. )
  1802. )
  1803. )
  1804. )
  1805. (symbol
  1806. (lib_id "Connector:Barrel_Jack_Switch")
  1807. (at 36.83 38.1 0)
  1808. (unit 1)
  1809. (exclude_from_sim no)
  1810. (in_bom yes)
  1811. (on_board yes)
  1812. (dnp no)
  1813. (fields_autoplaced yes)
  1814. (uuid "488944b1-4b70-463f-8ddf-61efa4c51c8d")
  1815. (property "Reference" "J1"
  1816. (at 36.83 29.21 0)
  1817. (effects
  1818. (font
  1819. (size 1.27 1.27)
  1820. )
  1821. )
  1822. )
  1823. (property "Value" "POWER"
  1824. (at 36.83 31.75 0)
  1825. (effects
  1826. (font
  1827. (size 1.27 1.27)
  1828. )
  1829. )
  1830. )
  1831. (property "Footprint" "Connector_BarrelJack:BarrelJack_Horizontal"
  1832. (at 38.1 39.116 0)
  1833. (effects
  1834. (font
  1835. (size 1.27 1.27)
  1836. )
  1837. (hide yes)
  1838. )
  1839. )
  1840. (property "Datasheet" "~"
  1841. (at 38.1 39.116 0)
  1842. (effects
  1843. (font
  1844. (size 1.27 1.27)
  1845. )
  1846. (hide yes)
  1847. )
  1848. )
  1849. (property "Description" "DC Barrel Jack with an internal switch"
  1850. (at 36.83 38.1 0)
  1851. (effects
  1852. (font
  1853. (size 1.27 1.27)
  1854. )
  1855. (hide yes)
  1856. )
  1857. )
  1858. (pin "1"
  1859. (uuid "648ba0e0-07b6-4b97-9dab-ef299502187e")
  1860. )
  1861. (pin "2"
  1862. (uuid "77897af6-99c1-480b-b5cd-b2901293f851")
  1863. )
  1864. (pin "3"
  1865. (uuid "85b985ea-1772-401b-8e25-0b480ead095e")
  1866. )
  1867. (instances
  1868. (project ""
  1869. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  1870. (reference "J1")
  1871. (unit 1)
  1872. )
  1873. )
  1874. )
  1875. )
  1876. (symbol
  1877. (lib_id "Device:C")
  1878. (at 107.95 104.14 0)
  1879. (unit 1)
  1880. (exclude_from_sim no)
  1881. (in_bom yes)
  1882. (on_board yes)
  1883. (dnp no)
  1884. (fields_autoplaced yes)
  1885. (uuid "59e70db1-0dd5-41dd-8605-ca3885645e93")
  1886. (property "Reference" "C5"
  1887. (at 111.76 102.8699 0)
  1888. (effects
  1889. (font
  1890. (size 1.27 1.27)
  1891. )
  1892. (justify left)
  1893. )
  1894. )
  1895. (property "Value" "100n"
  1896. (at 111.76 105.4099 0)
  1897. (effects
  1898. (font
  1899. (size 1.27 1.27)
  1900. )
  1901. (justify left)
  1902. )
  1903. )
  1904. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  1905. (at 108.9152 107.95 0)
  1906. (effects
  1907. (font
  1908. (size 1.27 1.27)
  1909. )
  1910. (hide yes)
  1911. )
  1912. )
  1913. (property "Datasheet" "~"
  1914. (at 107.95 104.14 0)
  1915. (effects
  1916. (font
  1917. (size 1.27 1.27)
  1918. )
  1919. (hide yes)
  1920. )
  1921. )
  1922. (property "Description" "Unpolarized capacitor"
  1923. (at 107.95 104.14 0)
  1924. (effects
  1925. (font
  1926. (size 1.27 1.27)
  1927. )
  1928. (hide yes)
  1929. )
  1930. )
  1931. (pin "1"
  1932. (uuid "fcb09139-ab91-47fd-9e20-bbd51a21068b")
  1933. )
  1934. (pin "2"
  1935. (uuid "26e9e85e-dfdd-4499-8b36-c5a9bf36163d")
  1936. )
  1937. (instances
  1938. (project "cx-light-strip"
  1939. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  1940. (reference "C5")
  1941. (unit 1)
  1942. )
  1943. )
  1944. )
  1945. )
  1946. (symbol
  1947. (lib_id "Device:D_Schottky")
  1948. (at 74.93 86.36 0)
  1949. (unit 1)
  1950. (exclude_from_sim no)
  1951. (in_bom yes)
  1952. (on_board yes)
  1953. (dnp no)
  1954. (fields_autoplaced yes)
  1955. (uuid "66717bb7-5438-4f35-bcc8-64671444fafb")
  1956. (property "Reference" "D1"
  1957. (at 74.6125 80.01 0)
  1958. (effects
  1959. (font
  1960. (size 1.27 1.27)
  1961. )
  1962. )
  1963. )
  1964. (property "Value" "SK110"
  1965. (at 74.6125 82.55 0)
  1966. (effects
  1967. (font
  1968. (size 1.27 1.27)
  1969. )
  1970. )
  1971. )
  1972. (property "Footprint" "Diode_SMD:D_SMA_Handsoldering"
  1973. (at 74.93 86.36 0)
  1974. (effects
  1975. (font
  1976. (size 1.27 1.27)
  1977. )
  1978. (hide yes)
  1979. )
  1980. )
  1981. (property "Datasheet" "~"
  1982. (at 74.93 86.36 0)
  1983. (effects
  1984. (font
  1985. (size 1.27 1.27)
  1986. )
  1987. (hide yes)
  1988. )
  1989. )
  1990. (property "Description" "Schottky diode"
  1991. (at 74.93 86.36 0)
  1992. (effects
  1993. (font
  1994. (size 1.27 1.27)
  1995. )
  1996. (hide yes)
  1997. )
  1998. )
  1999. (pin "2"
  2000. (uuid "0bbb3fd9-7367-485a-9781-70e53d461d7d")
  2001. )
  2002. (pin "1"
  2003. (uuid "2c9eec5f-3d85-4edb-8768-3d9a22821d8c")
  2004. )
  2005. (instances
  2006. (project ""
  2007. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2008. (reference "D1")
  2009. (unit 1)
  2010. )
  2011. )
  2012. )
  2013. )
  2014. (symbol
  2015. (lib_id "power:GND")
  2016. (at 109.22 41.91 0)
  2017. (unit 1)
  2018. (exclude_from_sim no)
  2019. (in_bom yes)
  2020. (on_board yes)
  2021. (dnp no)
  2022. (fields_autoplaced yes)
  2023. (uuid "672ae198-166c-447f-8cc3-04701d94a62a")
  2024. (property "Reference" "#PWR07"
  2025. (at 109.22 48.26 0)
  2026. (effects
  2027. (font
  2028. (size 1.27 1.27)
  2029. )
  2030. (hide yes)
  2031. )
  2032. )
  2033. (property "Value" "GND"
  2034. (at 109.22 46.99 0)
  2035. (effects
  2036. (font
  2037. (size 1.27 1.27)
  2038. )
  2039. )
  2040. )
  2041. (property "Footprint" ""
  2042. (at 109.22 41.91 0)
  2043. (effects
  2044. (font
  2045. (size 1.27 1.27)
  2046. )
  2047. (hide yes)
  2048. )
  2049. )
  2050. (property "Datasheet" ""
  2051. (at 109.22 41.91 0)
  2052. (effects
  2053. (font
  2054. (size 1.27 1.27)
  2055. )
  2056. (hide yes)
  2057. )
  2058. )
  2059. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2060. (at 109.22 41.91 0)
  2061. (effects
  2062. (font
  2063. (size 1.27 1.27)
  2064. )
  2065. (hide yes)
  2066. )
  2067. )
  2068. (pin "1"
  2069. (uuid "e0e3c119-8648-4a46-ab5d-4e7da479e584")
  2070. )
  2071. (instances
  2072. (project "cx-light-strip"
  2073. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2074. (reference "#PWR07")
  2075. (unit 1)
  2076. )
  2077. )
  2078. )
  2079. )
  2080. (symbol
  2081. (lib_id "power:+12V")
  2082. (at 39.37 91.44 0)
  2083. (unit 1)
  2084. (exclude_from_sim no)
  2085. (in_bom yes)
  2086. (on_board yes)
  2087. (dnp no)
  2088. (fields_autoplaced yes)
  2089. (uuid "720e4fa3-8f5c-4cf5-a604-71525bb6de7a")
  2090. (property "Reference" "#PWR014"
  2091. (at 39.37 95.25 0)
  2092. (effects
  2093. (font
  2094. (size 1.27 1.27)
  2095. )
  2096. (hide yes)
  2097. )
  2098. )
  2099. (property "Value" "+12V"
  2100. (at 39.37 86.36 0)
  2101. (effects
  2102. (font
  2103. (size 1.27 1.27)
  2104. )
  2105. )
  2106. )
  2107. (property "Footprint" ""
  2108. (at 39.37 91.44 0)
  2109. (effects
  2110. (font
  2111. (size 1.27 1.27)
  2112. )
  2113. (hide yes)
  2114. )
  2115. )
  2116. (property "Datasheet" ""
  2117. (at 39.37 91.44 0)
  2118. (effects
  2119. (font
  2120. (size 1.27 1.27)
  2121. )
  2122. (hide yes)
  2123. )
  2124. )
  2125. (property "Description" "Power symbol creates a global label with name \"+12V\""
  2126. (at 39.37 91.44 0)
  2127. (effects
  2128. (font
  2129. (size 1.27 1.27)
  2130. )
  2131. (hide yes)
  2132. )
  2133. )
  2134. (pin "1"
  2135. (uuid "df6dec45-2e14-4bc7-b092-d93e20c52d35")
  2136. )
  2137. (instances
  2138. (project ""
  2139. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2140. (reference "#PWR014")
  2141. (unit 1)
  2142. )
  2143. )
  2144. )
  2145. )
  2146. (symbol
  2147. (lib_id "power:GND")
  2148. (at 55.88 110.49 0)
  2149. (unit 1)
  2150. (exclude_from_sim no)
  2151. (in_bom yes)
  2152. (on_board yes)
  2153. (dnp no)
  2154. (fields_autoplaced yes)
  2155. (uuid "72785321-03e4-4982-a40f-01d18fb5086a")
  2156. (property "Reference" "#PWR013"
  2157. (at 55.88 116.84 0)
  2158. (effects
  2159. (font
  2160. (size 1.27 1.27)
  2161. )
  2162. (hide yes)
  2163. )
  2164. )
  2165. (property "Value" "GND"
  2166. (at 55.88 115.57 0)
  2167. (effects
  2168. (font
  2169. (size 1.27 1.27)
  2170. )
  2171. )
  2172. )
  2173. (property "Footprint" ""
  2174. (at 55.88 110.49 0)
  2175. (effects
  2176. (font
  2177. (size 1.27 1.27)
  2178. )
  2179. (hide yes)
  2180. )
  2181. )
  2182. (property "Datasheet" ""
  2183. (at 55.88 110.49 0)
  2184. (effects
  2185. (font
  2186. (size 1.27 1.27)
  2187. )
  2188. (hide yes)
  2189. )
  2190. )
  2191. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2192. (at 55.88 110.49 0)
  2193. (effects
  2194. (font
  2195. (size 1.27 1.27)
  2196. )
  2197. (hide yes)
  2198. )
  2199. )
  2200. (pin "1"
  2201. (uuid "f6b1ae66-644a-4b23-861d-c0e99409dca6")
  2202. )
  2203. (instances
  2204. (project "cx-light-strip"
  2205. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2206. (reference "#PWR013")
  2207. (unit 1)
  2208. )
  2209. )
  2210. )
  2211. )
  2212. (symbol
  2213. (lib_id "power:GND")
  2214. (at 107.95 110.49 0)
  2215. (unit 1)
  2216. (exclude_from_sim no)
  2217. (in_bom yes)
  2218. (on_board yes)
  2219. (dnp no)
  2220. (fields_autoplaced yes)
  2221. (uuid "73e52f22-87d7-4022-920f-e8a2bddfd94c")
  2222. (property "Reference" "#PWR011"
  2223. (at 107.95 116.84 0)
  2224. (effects
  2225. (font
  2226. (size 1.27 1.27)
  2227. )
  2228. (hide yes)
  2229. )
  2230. )
  2231. (property "Value" "GND"
  2232. (at 107.95 115.57 0)
  2233. (effects
  2234. (font
  2235. (size 1.27 1.27)
  2236. )
  2237. )
  2238. )
  2239. (property "Footprint" ""
  2240. (at 107.95 110.49 0)
  2241. (effects
  2242. (font
  2243. (size 1.27 1.27)
  2244. )
  2245. (hide yes)
  2246. )
  2247. )
  2248. (property "Datasheet" ""
  2249. (at 107.95 110.49 0)
  2250. (effects
  2251. (font
  2252. (size 1.27 1.27)
  2253. )
  2254. (hide yes)
  2255. )
  2256. )
  2257. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2258. (at 107.95 110.49 0)
  2259. (effects
  2260. (font
  2261. (size 1.27 1.27)
  2262. )
  2263. (hide yes)
  2264. )
  2265. )
  2266. (pin "1"
  2267. (uuid "fb0326e4-4d8d-462b-93b2-671a681e9c7b")
  2268. )
  2269. (instances
  2270. (project "cx-light-strip"
  2271. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2272. (reference "#PWR011")
  2273. (unit 1)
  2274. )
  2275. )
  2276. )
  2277. )
  2278. (symbol
  2279. (lib_id "power:GND")
  2280. (at 74.93 110.49 0)
  2281. (unit 1)
  2282. (exclude_from_sim no)
  2283. (in_bom yes)
  2284. (on_board yes)
  2285. (dnp no)
  2286. (fields_autoplaced yes)
  2287. (uuid "79dbd4ec-b1e9-435d-b484-e81ec7be2657")
  2288. (property "Reference" "#PWR010"
  2289. (at 74.93 116.84 0)
  2290. (effects
  2291. (font
  2292. (size 1.27 1.27)
  2293. )
  2294. (hide yes)
  2295. )
  2296. )
  2297. (property "Value" "GND"
  2298. (at 74.93 115.57 0)
  2299. (effects
  2300. (font
  2301. (size 1.27 1.27)
  2302. )
  2303. )
  2304. )
  2305. (property "Footprint" ""
  2306. (at 74.93 110.49 0)
  2307. (effects
  2308. (font
  2309. (size 1.27 1.27)
  2310. )
  2311. (hide yes)
  2312. )
  2313. )
  2314. (property "Datasheet" ""
  2315. (at 74.93 110.49 0)
  2316. (effects
  2317. (font
  2318. (size 1.27 1.27)
  2319. )
  2320. (hide yes)
  2321. )
  2322. )
  2323. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2324. (at 74.93 110.49 0)
  2325. (effects
  2326. (font
  2327. (size 1.27 1.27)
  2328. )
  2329. (hide yes)
  2330. )
  2331. )
  2332. (pin "1"
  2333. (uuid "28c216d0-ec11-4efc-85a2-b9ac97552c0c")
  2334. )
  2335. (instances
  2336. (project "cx-light-strip"
  2337. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2338. (reference "#PWR010")
  2339. (unit 1)
  2340. )
  2341. )
  2342. )
  2343. )
  2344. (symbol
  2345. (lib_id "power:GND")
  2346. (at 135.89 41.91 0)
  2347. (unit 1)
  2348. (exclude_from_sim no)
  2349. (in_bom yes)
  2350. (on_board yes)
  2351. (dnp no)
  2352. (fields_autoplaced yes)
  2353. (uuid "86184f06-3a1e-4a01-b2a6-fb9526d2a0e7")
  2354. (property "Reference" "#PWR08"
  2355. (at 135.89 48.26 0)
  2356. (effects
  2357. (font
  2358. (size 1.27 1.27)
  2359. )
  2360. (hide yes)
  2361. )
  2362. )
  2363. (property "Value" "GND"
  2364. (at 135.89 46.99 0)
  2365. (effects
  2366. (font
  2367. (size 1.27 1.27)
  2368. )
  2369. )
  2370. )
  2371. (property "Footprint" ""
  2372. (at 135.89 41.91 0)
  2373. (effects
  2374. (font
  2375. (size 1.27 1.27)
  2376. )
  2377. (hide yes)
  2378. )
  2379. )
  2380. (property "Datasheet" ""
  2381. (at 135.89 41.91 0)
  2382. (effects
  2383. (font
  2384. (size 1.27 1.27)
  2385. )
  2386. (hide yes)
  2387. )
  2388. )
  2389. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2390. (at 135.89 41.91 0)
  2391. (effects
  2392. (font
  2393. (size 1.27 1.27)
  2394. )
  2395. (hide yes)
  2396. )
  2397. )
  2398. (pin "1"
  2399. (uuid "75fe82cd-5db5-43b8-bd38-2efcb7e92b7f")
  2400. )
  2401. (instances
  2402. (project "cx-light-strip"
  2403. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2404. (reference "#PWR08")
  2405. (unit 1)
  2406. )
  2407. )
  2408. )
  2409. )
  2410. (symbol
  2411. (lib_id "power:+12V")
  2412. (at 48.26 33.02 0)
  2413. (unit 1)
  2414. (exclude_from_sim no)
  2415. (in_bom yes)
  2416. (on_board yes)
  2417. (dnp no)
  2418. (fields_autoplaced yes)
  2419. (uuid "8704957d-0778-4084-9bea-846777646c76")
  2420. (property "Reference" "#PWR01"
  2421. (at 48.26 36.83 0)
  2422. (effects
  2423. (font
  2424. (size 1.27 1.27)
  2425. )
  2426. (hide yes)
  2427. )
  2428. )
  2429. (property "Value" "+12V"
  2430. (at 48.26 27.94 0)
  2431. (effects
  2432. (font
  2433. (size 1.27 1.27)
  2434. )
  2435. )
  2436. )
  2437. (property "Footprint" ""
  2438. (at 48.26 33.02 0)
  2439. (effects
  2440. (font
  2441. (size 1.27 1.27)
  2442. )
  2443. (hide yes)
  2444. )
  2445. )
  2446. (property "Datasheet" ""
  2447. (at 48.26 33.02 0)
  2448. (effects
  2449. (font
  2450. (size 1.27 1.27)
  2451. )
  2452. (hide yes)
  2453. )
  2454. )
  2455. (property "Description" "Power symbol creates a global label with name \"+12V\""
  2456. (at 48.26 33.02 0)
  2457. (effects
  2458. (font
  2459. (size 1.27 1.27)
  2460. )
  2461. (hide yes)
  2462. )
  2463. )
  2464. (pin "1"
  2465. (uuid "21aab611-aadd-42c9-9d1b-ddb46e5fd4e9")
  2466. )
  2467. (instances
  2468. (project ""
  2469. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2470. (reference "#PWR01")
  2471. (unit 1)
  2472. )
  2473. )
  2474. )
  2475. )
  2476. (symbol
  2477. (lib_id "Device:C")
  2478. (at 123.19 38.1 0)
  2479. (unit 1)
  2480. (exclude_from_sim no)
  2481. (in_bom yes)
  2482. (on_board yes)
  2483. (dnp no)
  2484. (fields_autoplaced yes)
  2485. (uuid "9c9c913b-c15c-4298-ad1d-7d6fab3f4f73")
  2486. (property "Reference" "C1"
  2487. (at 127 36.8299 0)
  2488. (effects
  2489. (font
  2490. (size 1.27 1.27)
  2491. )
  2492. (justify left)
  2493. )
  2494. )
  2495. (property "Value" "1u"
  2496. (at 127 39.3699 0)
  2497. (effects
  2498. (font
  2499. (size 1.27 1.27)
  2500. )
  2501. (justify left)
  2502. )
  2503. )
  2504. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  2505. (at 124.1552 41.91 0)
  2506. (effects
  2507. (font
  2508. (size 1.27 1.27)
  2509. )
  2510. (hide yes)
  2511. )
  2512. )
  2513. (property "Datasheet" "~"
  2514. (at 123.19 38.1 0)
  2515. (effects
  2516. (font
  2517. (size 1.27 1.27)
  2518. )
  2519. (hide yes)
  2520. )
  2521. )
  2522. (property "Description" "Unpolarized capacitor"
  2523. (at 123.19 38.1 0)
  2524. (effects
  2525. (font
  2526. (size 1.27 1.27)
  2527. )
  2528. (hide yes)
  2529. )
  2530. )
  2531. (pin "1"
  2532. (uuid "cc749512-e9d1-4507-a37f-4942d8d38971")
  2533. )
  2534. (pin "2"
  2535. (uuid "9635fbfc-1429-43b8-ac7d-6ea6c9f75975")
  2536. )
  2537. (instances
  2538. (project ""
  2539. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2540. (reference "C1")
  2541. (unit 1)
  2542. )
  2543. )
  2544. )
  2545. )
  2546. (symbol
  2547. (lib_id "Device:C")
  2548. (at 135.89 38.1 0)
  2549. (unit 1)
  2550. (exclude_from_sim no)
  2551. (in_bom yes)
  2552. (on_board yes)
  2553. (dnp no)
  2554. (fields_autoplaced yes)
  2555. (uuid "a93207a4-08c5-49ec-a0c4-675330d63810")
  2556. (property "Reference" "C2"
  2557. (at 139.7 36.8299 0)
  2558. (effects
  2559. (font
  2560. (size 1.27 1.27)
  2561. )
  2562. (justify left)
  2563. )
  2564. )
  2565. (property "Value" "100n"
  2566. (at 139.7 39.3699 0)
  2567. (effects
  2568. (font
  2569. (size 1.27 1.27)
  2570. )
  2571. (justify left)
  2572. )
  2573. )
  2574. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  2575. (at 136.8552 41.91 0)
  2576. (effects
  2577. (font
  2578. (size 1.27 1.27)
  2579. )
  2580. (hide yes)
  2581. )
  2582. )
  2583. (property "Datasheet" "~"
  2584. (at 135.89 38.1 0)
  2585. (effects
  2586. (font
  2587. (size 1.27 1.27)
  2588. )
  2589. (hide yes)
  2590. )
  2591. )
  2592. (property "Description" "Unpolarized capacitor"
  2593. (at 135.89 38.1 0)
  2594. (effects
  2595. (font
  2596. (size 1.27 1.27)
  2597. )
  2598. (hide yes)
  2599. )
  2600. )
  2601. (pin "1"
  2602. (uuid "697d38ac-c728-4e82-a637-2921aede6343")
  2603. )
  2604. (pin "2"
  2605. (uuid "6ea718f5-6332-43e5-82e4-cea004cc5048")
  2606. )
  2607. (instances
  2608. (project "cx-light-strip"
  2609. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2610. (reference "C2")
  2611. (unit 1)
  2612. )
  2613. )
  2614. )
  2615. )
  2616. (symbol
  2617. (lib_id "power:+3V3")
  2618. (at 107.95 91.44 0)
  2619. (unit 1)
  2620. (exclude_from_sim no)
  2621. (in_bom yes)
  2622. (on_board yes)
  2623. (dnp no)
  2624. (fields_autoplaced yes)
  2625. (uuid "beeba40c-53c0-4528-97df-26e1a1d7ac90")
  2626. (property "Reference" "#PWR012"
  2627. (at 107.95 95.25 0)
  2628. (effects
  2629. (font
  2630. (size 1.27 1.27)
  2631. )
  2632. (hide yes)
  2633. )
  2634. )
  2635. (property "Value" "+3V3"
  2636. (at 107.95 86.36 0)
  2637. (effects
  2638. (font
  2639. (size 1.27 1.27)
  2640. )
  2641. )
  2642. )
  2643. (property "Footprint" ""
  2644. (at 107.95 91.44 0)
  2645. (effects
  2646. (font
  2647. (size 1.27 1.27)
  2648. )
  2649. (hide yes)
  2650. )
  2651. )
  2652. (property "Datasheet" ""
  2653. (at 107.95 91.44 0)
  2654. (effects
  2655. (font
  2656. (size 1.27 1.27)
  2657. )
  2658. (hide yes)
  2659. )
  2660. )
  2661. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2662. (at 107.95 91.44 0)
  2663. (effects
  2664. (font
  2665. (size 1.27 1.27)
  2666. )
  2667. (hide yes)
  2668. )
  2669. )
  2670. (pin "1"
  2671. (uuid "1793051d-461e-4ed5-9bb6-1edb335a53ba")
  2672. )
  2673. (instances
  2674. (project ""
  2675. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2676. (reference "#PWR012")
  2677. (unit 1)
  2678. )
  2679. )
  2680. )
  2681. )
  2682. (symbol
  2683. (lib_id "Device:C_Polarized")
  2684. (at 109.22 38.1 0)
  2685. (unit 1)
  2686. (exclude_from_sim no)
  2687. (in_bom yes)
  2688. (on_board yes)
  2689. (dnp no)
  2690. (fields_autoplaced yes)
  2691. (uuid "c24ac2df-5d3d-4d1b-ba86-9d7bdafe89b6")
  2692. (property "Reference" "C3"
  2693. (at 113.03 35.9409 0)
  2694. (effects
  2695. (font
  2696. (size 1.27 1.27)
  2697. )
  2698. (justify left)
  2699. )
  2700. )
  2701. (property "Value" "100u"
  2702. (at 113.03 38.4809 0)
  2703. (effects
  2704. (font
  2705. (size 1.27 1.27)
  2706. )
  2707. (justify left)
  2708. )
  2709. )
  2710. (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x5.4"
  2711. (at 110.1852 41.91 0)
  2712. (effects
  2713. (font
  2714. (size 1.27 1.27)
  2715. )
  2716. (hide yes)
  2717. )
  2718. )
  2719. (property "Datasheet" "~"
  2720. (at 109.22 38.1 0)
  2721. (effects
  2722. (font
  2723. (size 1.27 1.27)
  2724. )
  2725. (hide yes)
  2726. )
  2727. )
  2728. (property "Description" "Polarized capacitor"
  2729. (at 109.22 38.1 0)
  2730. (effects
  2731. (font
  2732. (size 1.27 1.27)
  2733. )
  2734. (hide yes)
  2735. )
  2736. )
  2737. (pin "1"
  2738. (uuid "12e5829d-7072-4453-827e-a53f3139b933")
  2739. )
  2740. (pin "2"
  2741. (uuid "ea87d2ad-8b58-4f43-8d09-60996b9d64bb")
  2742. )
  2743. (instances
  2744. (project ""
  2745. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2746. (reference "C3")
  2747. (unit 1)
  2748. )
  2749. )
  2750. )
  2751. )
  2752. (symbol
  2753. (lib_id "Device:C")
  2754. (at 39.37 104.14 0)
  2755. (unit 1)
  2756. (exclude_from_sim no)
  2757. (in_bom yes)
  2758. (on_board yes)
  2759. (dnp no)
  2760. (fields_autoplaced yes)
  2761. (uuid "c5fd17e4-634c-43ea-a81e-78ec5e1f8324")
  2762. (property "Reference" "C7"
  2763. (at 43.18 102.8699 0)
  2764. (effects
  2765. (font
  2766. (size 1.27 1.27)
  2767. )
  2768. (justify left)
  2769. )
  2770. )
  2771. (property "Value" "100n"
  2772. (at 43.18 105.4099 0)
  2773. (effects
  2774. (font
  2775. (size 1.27 1.27)
  2776. )
  2777. (justify left)
  2778. )
  2779. )
  2780. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  2781. (at 40.3352 107.95 0)
  2782. (effects
  2783. (font
  2784. (size 1.27 1.27)
  2785. )
  2786. (hide yes)
  2787. )
  2788. )
  2789. (property "Datasheet" "~"
  2790. (at 39.37 104.14 0)
  2791. (effects
  2792. (font
  2793. (size 1.27 1.27)
  2794. )
  2795. (hide yes)
  2796. )
  2797. )
  2798. (property "Description" "Unpolarized capacitor"
  2799. (at 39.37 104.14 0)
  2800. (effects
  2801. (font
  2802. (size 1.27 1.27)
  2803. )
  2804. (hide yes)
  2805. )
  2806. )
  2807. (pin "1"
  2808. (uuid "9f4da834-7143-4ec9-bd57-9866d749c528")
  2809. )
  2810. (pin "2"
  2811. (uuid "88d3358d-c541-4a44-85dd-221971b25caf")
  2812. )
  2813. (instances
  2814. (project "cx-light-strip"
  2815. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2816. (reference "C7")
  2817. (unit 1)
  2818. )
  2819. )
  2820. )
  2821. )
  2822. (symbol
  2823. (lib_id "Regulator_Linear:LM1117DT-3.3")
  2824. (at 74.93 97.79 0)
  2825. (unit 1)
  2826. (exclude_from_sim no)
  2827. (in_bom yes)
  2828. (on_board yes)
  2829. (dnp no)
  2830. (fields_autoplaced yes)
  2831. (uuid "cf018f6a-14a0-45f8-9122-7f7461009ce1")
  2832. (property "Reference" "U1"
  2833. (at 74.93 91.44 0)
  2834. (effects
  2835. (font
  2836. (size 1.27 1.27)
  2837. )
  2838. )
  2839. )
  2840. (property "Value" "LM1117DT-3.3"
  2841. (at 74.93 93.98 0)
  2842. (effects
  2843. (font
  2844. (size 1.27 1.27)
  2845. )
  2846. )
  2847. )
  2848. (property "Footprint" "Package_TO_SOT_SMD:TO-252-2"
  2849. (at 74.93 97.79 0)
  2850. (effects
  2851. (font
  2852. (size 1.27 1.27)
  2853. )
  2854. (hide yes)
  2855. )
  2856. )
  2857. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  2858. (at 74.93 97.79 0)
  2859. (effects
  2860. (font
  2861. (size 1.27 1.27)
  2862. )
  2863. (hide yes)
  2864. )
  2865. )
  2866. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, TO-252"
  2867. (at 74.93 97.79 0)
  2868. (effects
  2869. (font
  2870. (size 1.27 1.27)
  2871. )
  2872. (hide yes)
  2873. )
  2874. )
  2875. (pin "2"
  2876. (uuid "f1534eb1-79c4-4458-af49-1b55319ca714")
  2877. )
  2878. (pin "3"
  2879. (uuid "9302d957-f820-49aa-a36b-f2736af9bc3c")
  2880. )
  2881. (pin "1"
  2882. (uuid "a5dec02c-8ea0-4b40-8d61-ec5f20d3297f")
  2883. )
  2884. (instances
  2885. (project ""
  2886. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2887. (reference "U1")
  2888. (unit 1)
  2889. )
  2890. )
  2891. )
  2892. )
  2893. (symbol
  2894. (lib_id "power:GND")
  2895. (at 39.37 110.49 0)
  2896. (unit 1)
  2897. (exclude_from_sim no)
  2898. (in_bom yes)
  2899. (on_board yes)
  2900. (dnp no)
  2901. (fields_autoplaced yes)
  2902. (uuid "e2cb9a00-b354-4e48-9e92-1390284cb2ae")
  2903. (property "Reference" "#PWR015"
  2904. (at 39.37 116.84 0)
  2905. (effects
  2906. (font
  2907. (size 1.27 1.27)
  2908. )
  2909. (hide yes)
  2910. )
  2911. )
  2912. (property "Value" "GND"
  2913. (at 39.37 115.57 0)
  2914. (effects
  2915. (font
  2916. (size 1.27 1.27)
  2917. )
  2918. )
  2919. )
  2920. (property "Footprint" ""
  2921. (at 39.37 110.49 0)
  2922. (effects
  2923. (font
  2924. (size 1.27 1.27)
  2925. )
  2926. (hide yes)
  2927. )
  2928. )
  2929. (property "Datasheet" ""
  2930. (at 39.37 110.49 0)
  2931. (effects
  2932. (font
  2933. (size 1.27 1.27)
  2934. )
  2935. (hide yes)
  2936. )
  2937. )
  2938. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2939. (at 39.37 110.49 0)
  2940. (effects
  2941. (font
  2942. (size 1.27 1.27)
  2943. )
  2944. (hide yes)
  2945. )
  2946. )
  2947. (pin "1"
  2948. (uuid "35586c68-9ac2-42d9-a5d0-79bb21b96a6e")
  2949. )
  2950. (instances
  2951. (project "cx-light-strip"
  2952. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  2953. (reference "#PWR015")
  2954. (unit 1)
  2955. )
  2956. )
  2957. )
  2958. )
  2959. (symbol
  2960. (lib_id "Device:C_Polarized")
  2961. (at 92.71 104.14 0)
  2962. (unit 1)
  2963. (exclude_from_sim no)
  2964. (in_bom yes)
  2965. (on_board yes)
  2966. (dnp no)
  2967. (fields_autoplaced yes)
  2968. (uuid "e5a7f417-4b42-4e15-a278-1206628ba648")
  2969. (property "Reference" "C4"
  2970. (at 96.52 101.9809 0)
  2971. (effects
  2972. (font
  2973. (size 1.27 1.27)
  2974. )
  2975. (justify left)
  2976. )
  2977. )
  2978. (property "Value" "100u"
  2979. (at 96.52 104.5209 0)
  2980. (effects
  2981. (font
  2982. (size 1.27 1.27)
  2983. )
  2984. (justify left)
  2985. )
  2986. )
  2987. (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x5.4"
  2988. (at 93.6752 107.95 0)
  2989. (effects
  2990. (font
  2991. (size 1.27 1.27)
  2992. )
  2993. (hide yes)
  2994. )
  2995. )
  2996. (property "Datasheet" "~"
  2997. (at 92.71 104.14 0)
  2998. (effects
  2999. (font
  3000. (size 1.27 1.27)
  3001. )
  3002. (hide yes)
  3003. )
  3004. )
  3005. (property "Description" "Polarized capacitor"
  3006. (at 92.71 104.14 0)
  3007. (effects
  3008. (font
  3009. (size 1.27 1.27)
  3010. )
  3011. (hide yes)
  3012. )
  3013. )
  3014. (pin "1"
  3015. (uuid "22f9c7cb-35b2-4628-b54d-dd5f730ee136")
  3016. )
  3017. (pin "2"
  3018. (uuid "1a5c5179-4b45-4f2d-8c0d-dd0d16fd2dc4")
  3019. )
  3020. (instances
  3021. (project "cx-light-strip"
  3022. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  3023. (reference "C4")
  3024. (unit 1)
  3025. )
  3026. )
  3027. )
  3028. )
  3029. (symbol
  3030. (lib_id "power:GND")
  3031. (at 48.26 43.18 0)
  3032. (unit 1)
  3033. (exclude_from_sim no)
  3034. (in_bom yes)
  3035. (on_board yes)
  3036. (dnp no)
  3037. (fields_autoplaced yes)
  3038. (uuid "f8d54964-2334-4514-8ff3-8e5973590a37")
  3039. (property "Reference" "#PWR02"
  3040. (at 48.26 49.53 0)
  3041. (effects
  3042. (font
  3043. (size 1.27 1.27)
  3044. )
  3045. (hide yes)
  3046. )
  3047. )
  3048. (property "Value" "GND"
  3049. (at 48.26 48.26 0)
  3050. (effects
  3051. (font
  3052. (size 1.27 1.27)
  3053. )
  3054. )
  3055. )
  3056. (property "Footprint" ""
  3057. (at 48.26 43.18 0)
  3058. (effects
  3059. (font
  3060. (size 1.27 1.27)
  3061. )
  3062. (hide yes)
  3063. )
  3064. )
  3065. (property "Datasheet" ""
  3066. (at 48.26 43.18 0)
  3067. (effects
  3068. (font
  3069. (size 1.27 1.27)
  3070. )
  3071. (hide yes)
  3072. )
  3073. )
  3074. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3075. (at 48.26 43.18 0)
  3076. (effects
  3077. (font
  3078. (size 1.27 1.27)
  3079. )
  3080. (hide yes)
  3081. )
  3082. )
  3083. (pin "1"
  3084. (uuid "e53f7028-bcb4-42cc-8f95-56f4da3d9731")
  3085. )
  3086. (instances
  3087. (project ""
  3088. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  3089. (reference "#PWR02")
  3090. (unit 1)
  3091. )
  3092. )
  3093. )
  3094. )
  3095. (symbol
  3096. (lib_id "Device:C_Polarized")
  3097. (at 55.88 104.14 0)
  3098. (unit 1)
  3099. (exclude_from_sim no)
  3100. (in_bom yes)
  3101. (on_board yes)
  3102. (dnp no)
  3103. (fields_autoplaced yes)
  3104. (uuid "fda546bd-651a-40a0-8153-b325582a9414")
  3105. (property "Reference" "C6"
  3106. (at 59.69 101.9809 0)
  3107. (effects
  3108. (font
  3109. (size 1.27 1.27)
  3110. )
  3111. (justify left)
  3112. )
  3113. )
  3114. (property "Value" "100u"
  3115. (at 59.69 104.5209 0)
  3116. (effects
  3117. (font
  3118. (size 1.27 1.27)
  3119. )
  3120. (justify left)
  3121. )
  3122. )
  3123. (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x5.4"
  3124. (at 56.8452 107.95 0)
  3125. (effects
  3126. (font
  3127. (size 1.27 1.27)
  3128. )
  3129. (hide yes)
  3130. )
  3131. )
  3132. (property "Datasheet" "~"
  3133. (at 55.88 104.14 0)
  3134. (effects
  3135. (font
  3136. (size 1.27 1.27)
  3137. )
  3138. (hide yes)
  3139. )
  3140. )
  3141. (property "Description" "Polarized capacitor"
  3142. (at 55.88 104.14 0)
  3143. (effects
  3144. (font
  3145. (size 1.27 1.27)
  3146. )
  3147. (hide yes)
  3148. )
  3149. )
  3150. (pin "1"
  3151. (uuid "7af0795c-9bde-42da-8462-af0943c3d123")
  3152. )
  3153. (pin "2"
  3154. (uuid "13ced74b-6651-477c-9609-6f800a43932a")
  3155. )
  3156. (instances
  3157. (project "cx-light-strip"
  3158. (path "/c84f7b8c-8d46-4cdf-96e7-8808b8751cbe/2a0279bb-cfb0-46c6-9852-6d23454a7d6e"
  3159. (reference "C6")
  3160. (unit 1)
  3161. )
  3162. )
  3163. )
  3164. )
  3165. )