logic_power_section.kicad_sch 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "07f0bad5-bbb9-4213-b80e-0e5d6f16756c")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Device:C"
  9. (pin_numbers
  10. (hide yes)
  11. )
  12. (pin_names
  13. (offset 0.254)
  14. )
  15. (exclude_from_sim no)
  16. (in_bom yes)
  17. (on_board yes)
  18. (in_pos_files yes)
  19. (duplicate_pin_numbers_are_jumpers no)
  20. (property "Reference" "C"
  21. (at 0.635 2.54 0)
  22. (show_name no)
  23. (do_not_autoplace no)
  24. (effects
  25. (font
  26. (size 1.27 1.27)
  27. )
  28. (justify left)
  29. )
  30. )
  31. (property "Value" "C"
  32. (at 0.635 -2.54 0)
  33. (show_name no)
  34. (do_not_autoplace no)
  35. (effects
  36. (font
  37. (size 1.27 1.27)
  38. )
  39. (justify left)
  40. )
  41. )
  42. (property "Footprint" ""
  43. (at 0.9652 -3.81 0)
  44. (show_name no)
  45. (do_not_autoplace no)
  46. (hide yes)
  47. (effects
  48. (font
  49. (size 1.27 1.27)
  50. )
  51. )
  52. )
  53. (property "Datasheet" ""
  54. (at 0 0 0)
  55. (show_name no)
  56. (do_not_autoplace no)
  57. (hide yes)
  58. (effects
  59. (font
  60. (size 1.27 1.27)
  61. )
  62. )
  63. )
  64. (property "Description" "Unpolarized capacitor"
  65. (at 0 0 0)
  66. (show_name no)
  67. (do_not_autoplace no)
  68. (hide yes)
  69. (effects
  70. (font
  71. (size 1.27 1.27)
  72. )
  73. )
  74. )
  75. (property "ki_keywords" "cap capacitor"
  76. (at 0 0 0)
  77. (show_name no)
  78. (do_not_autoplace no)
  79. (hide yes)
  80. (effects
  81. (font
  82. (size 1.27 1.27)
  83. )
  84. )
  85. )
  86. (property "ki_fp_filters" "C_*"
  87. (at 0 0 0)
  88. (show_name no)
  89. (do_not_autoplace no)
  90. (hide yes)
  91. (effects
  92. (font
  93. (size 1.27 1.27)
  94. )
  95. )
  96. )
  97. (symbol "C_0_1"
  98. (polyline
  99. (pts
  100. (xy -2.032 0.762) (xy 2.032 0.762)
  101. )
  102. (stroke
  103. (width 0.508)
  104. (type default)
  105. )
  106. (fill
  107. (type none)
  108. )
  109. )
  110. (polyline
  111. (pts
  112. (xy -2.032 -0.762) (xy 2.032 -0.762)
  113. )
  114. (stroke
  115. (width 0.508)
  116. (type default)
  117. )
  118. (fill
  119. (type none)
  120. )
  121. )
  122. )
  123. (symbol "C_1_1"
  124. (pin passive line
  125. (at 0 3.81 270)
  126. (length 2.794)
  127. (name ""
  128. (effects
  129. (font
  130. (size 1.27 1.27)
  131. )
  132. )
  133. )
  134. (number "1"
  135. (effects
  136. (font
  137. (size 1.27 1.27)
  138. )
  139. )
  140. )
  141. )
  142. (pin passive line
  143. (at 0 -3.81 90)
  144. (length 2.794)
  145. (name ""
  146. (effects
  147. (font
  148. (size 1.27 1.27)
  149. )
  150. )
  151. )
  152. (number "2"
  153. (effects
  154. (font
  155. (size 1.27 1.27)
  156. )
  157. )
  158. )
  159. )
  160. )
  161. (embedded_fonts no)
  162. )
  163. (symbol "Diode:B120-E3"
  164. (pin_numbers
  165. (hide yes)
  166. )
  167. (pin_names
  168. (hide yes)
  169. )
  170. (exclude_from_sim no)
  171. (in_bom yes)
  172. (on_board yes)
  173. (in_pos_files yes)
  174. (duplicate_pin_numbers_are_jumpers no)
  175. (property "Reference" "D"
  176. (at 0 2.54 0)
  177. (show_name no)
  178. (do_not_autoplace no)
  179. (effects
  180. (font
  181. (size 1.27 1.27)
  182. )
  183. )
  184. )
  185. (property "Value" "B120-E3"
  186. (at 0 -2.54 0)
  187. (show_name no)
  188. (do_not_autoplace no)
  189. (effects
  190. (font
  191. (size 1.27 1.27)
  192. )
  193. )
  194. )
  195. (property "Footprint" "Diode_SMD:D_SMA"
  196. (at 0 -4.445 0)
  197. (show_name no)
  198. (do_not_autoplace no)
  199. (hide yes)
  200. (effects
  201. (font
  202. (size 1.27 1.27)
  203. )
  204. )
  205. )
  206. (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
  207. (at 0 0 0)
  208. (show_name no)
  209. (do_not_autoplace no)
  210. (hide yes)
  211. (effects
  212. (font
  213. (size 1.27 1.27)
  214. )
  215. )
  216. )
  217. (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
  218. (at 0 0 0)
  219. (show_name no)
  220. (do_not_autoplace no)
  221. (hide yes)
  222. (effects
  223. (font
  224. (size 1.27 1.27)
  225. )
  226. )
  227. )
  228. (property "ki_keywords" "diode Schottky"
  229. (at 0 0 0)
  230. (show_name no)
  231. (do_not_autoplace no)
  232. (hide yes)
  233. (effects
  234. (font
  235. (size 1.27 1.27)
  236. )
  237. )
  238. )
  239. (property "ki_fp_filters" "D*SMA*"
  240. (at 0 0 0)
  241. (show_name no)
  242. (do_not_autoplace no)
  243. (hide yes)
  244. (effects
  245. (font
  246. (size 1.27 1.27)
  247. )
  248. )
  249. )
  250. (symbol "B120-E3_0_1"
  251. (polyline
  252. (pts
  253. (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)
  254. )
  255. (stroke
  256. (width 0.254)
  257. (type default)
  258. )
  259. (fill
  260. (type none)
  261. )
  262. )
  263. (polyline
  264. (pts
  265. (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
  266. )
  267. (stroke
  268. (width 0.254)
  269. (type default)
  270. )
  271. (fill
  272. (type none)
  273. )
  274. )
  275. (polyline
  276. (pts
  277. (xy 1.27 0) (xy -1.27 0)
  278. )
  279. (stroke
  280. (width 0)
  281. (type default)
  282. )
  283. (fill
  284. (type none)
  285. )
  286. )
  287. )
  288. (symbol "B120-E3_1_1"
  289. (pin passive line
  290. (at -3.81 0 0)
  291. (length 2.54)
  292. (name "K"
  293. (effects
  294. (font
  295. (size 1.27 1.27)
  296. )
  297. )
  298. )
  299. (number "1"
  300. (effects
  301. (font
  302. (size 1.27 1.27)
  303. )
  304. )
  305. )
  306. )
  307. (pin passive line
  308. (at 3.81 0 180)
  309. (length 2.54)
  310. (name "A"
  311. (effects
  312. (font
  313. (size 1.27 1.27)
  314. )
  315. )
  316. )
  317. (number "2"
  318. (effects
  319. (font
  320. (size 1.27 1.27)
  321. )
  322. )
  323. )
  324. )
  325. )
  326. (embedded_fonts no)
  327. )
  328. (symbol "Diode:MM3Zxx"
  329. (pin_numbers
  330. (hide yes)
  331. )
  332. (pin_names
  333. (hide yes)
  334. )
  335. (exclude_from_sim no)
  336. (in_bom yes)
  337. (on_board yes)
  338. (in_pos_files yes)
  339. (duplicate_pin_numbers_are_jumpers no)
  340. (property "Reference" "D"
  341. (at 0 2.54 0)
  342. (show_name no)
  343. (do_not_autoplace no)
  344. (effects
  345. (font
  346. (size 1.27 1.27)
  347. )
  348. )
  349. )
  350. (property "Value" "MM3Zxx"
  351. (at 0 -2.54 0)
  352. (show_name no)
  353. (do_not_autoplace no)
  354. (effects
  355. (font
  356. (size 1.27 1.27)
  357. )
  358. )
  359. )
  360. (property "Footprint" "Diode_SMD:D_SOD-323F"
  361. (at 0 -4.445 0)
  362. (show_name no)
  363. (do_not_autoplace no)
  364. (hide yes)
  365. (effects
  366. (font
  367. (size 1.27 1.27)
  368. )
  369. )
  370. )
  371. (property "Datasheet" "https://diotec.com/tl_files/diotec/files/pdf/datasheets/mm3z2v4.pdf"
  372. (at 0 0 0)
  373. (show_name no)
  374. (do_not_autoplace no)
  375. (hide yes)
  376. (effects
  377. (font
  378. (size 1.27 1.27)
  379. )
  380. )
  381. )
  382. (property "Description" "300mW Zener Diode, SOD-323F"
  383. (at 0 0 0)
  384. (show_name no)
  385. (do_not_autoplace no)
  386. (hide yes)
  387. (effects
  388. (font
  389. (size 1.27 1.27)
  390. )
  391. )
  392. )
  393. (property "ki_keywords" "zener diode"
  394. (at 0 0 0)
  395. (show_name no)
  396. (do_not_autoplace no)
  397. (hide yes)
  398. (effects
  399. (font
  400. (size 1.27 1.27)
  401. )
  402. )
  403. )
  404. (property "ki_fp_filters" "D?SOD?323F*"
  405. (at 0 0 0)
  406. (show_name no)
  407. (do_not_autoplace no)
  408. (hide yes)
  409. (effects
  410. (font
  411. (size 1.27 1.27)
  412. )
  413. )
  414. )
  415. (symbol "MM3Zxx_0_1"
  416. (polyline
  417. (pts
  418. (xy -1.27 -1.27) (xy -1.27 1.27) (xy -0.762 1.27)
  419. )
  420. (stroke
  421. (width 0.254)
  422. (type default)
  423. )
  424. (fill
  425. (type none)
  426. )
  427. )
  428. (polyline
  429. (pts
  430. (xy 1.27 0) (xy -1.27 0)
  431. )
  432. (stroke
  433. (width 0)
  434. (type default)
  435. )
  436. (fill
  437. (type none)
  438. )
  439. )
  440. (polyline
  441. (pts
  442. (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
  443. )
  444. (stroke
  445. (width 0.254)
  446. (type default)
  447. )
  448. (fill
  449. (type none)
  450. )
  451. )
  452. )
  453. (symbol "MM3Zxx_1_1"
  454. (pin passive line
  455. (at -3.81 0 0)
  456. (length 2.54)
  457. (name "K"
  458. (effects
  459. (font
  460. (size 1.27 1.27)
  461. )
  462. )
  463. )
  464. (number "1"
  465. (effects
  466. (font
  467. (size 1.27 1.27)
  468. )
  469. )
  470. )
  471. )
  472. (pin passive line
  473. (at 3.81 0 180)
  474. (length 2.54)
  475. (name "A"
  476. (effects
  477. (font
  478. (size 1.27 1.27)
  479. )
  480. )
  481. )
  482. (number "2"
  483. (effects
  484. (font
  485. (size 1.27 1.27)
  486. )
  487. )
  488. )
  489. )
  490. )
  491. (embedded_fonts no)
  492. )
  493. (symbol "Diode:SMAJ5.0A"
  494. (pin_numbers
  495. (hide yes)
  496. )
  497. (pin_names
  498. (offset 1.016)
  499. (hide yes)
  500. )
  501. (exclude_from_sim no)
  502. (in_bom yes)
  503. (on_board yes)
  504. (in_pos_files yes)
  505. (duplicate_pin_numbers_are_jumpers no)
  506. (property "Reference" "D"
  507. (at 0 2.54 0)
  508. (show_name no)
  509. (do_not_autoplace no)
  510. (effects
  511. (font
  512. (size 1.27 1.27)
  513. )
  514. )
  515. )
  516. (property "Value" "SMAJ5.0A"
  517. (at 0 -2.54 0)
  518. (show_name no)
  519. (do_not_autoplace no)
  520. (effects
  521. (font
  522. (size 1.27 1.27)
  523. )
  524. )
  525. )
  526. (property "Footprint" "Diode_SMD:D_SMA"
  527. (at 0 -5.08 0)
  528. (show_name no)
  529. (do_not_autoplace no)
  530. (hide yes)
  531. (effects
  532. (font
  533. (size 1.27 1.27)
  534. )
  535. )
  536. )
  537. (property "Datasheet" "https://www.littelfuse.com/media?resourcetype=datasheets&itemid=75e32973-b177-4ee3-a0ff-cedaf1abdb93&filename=smaj-datasheet"
  538. (at -1.27 0 0)
  539. (show_name no)
  540. (do_not_autoplace no)
  541. (hide yes)
  542. (effects
  543. (font
  544. (size 1.27 1.27)
  545. )
  546. )
  547. )
  548. (property "Description" "400W unidirectional Transient Voltage Suppressor, 5.0Vr, SMA(DO-214AC)"
  549. (at 0 0 0)
  550. (show_name no)
  551. (do_not_autoplace no)
  552. (hide yes)
  553. (effects
  554. (font
  555. (size 1.27 1.27)
  556. )
  557. )
  558. )
  559. (property "ki_keywords" "unidirectional diode TVS voltage suppressor"
  560. (at 0 0 0)
  561. (show_name no)
  562. (do_not_autoplace no)
  563. (hide yes)
  564. (effects
  565. (font
  566. (size 1.27 1.27)
  567. )
  568. )
  569. )
  570. (property "ki_fp_filters" "D*SMA*"
  571. (at 0 0 0)
  572. (show_name no)
  573. (do_not_autoplace no)
  574. (hide yes)
  575. (effects
  576. (font
  577. (size 1.27 1.27)
  578. )
  579. )
  580. )
  581. (symbol "SMAJ5.0A_0_1"
  582. (polyline
  583. (pts
  584. (xy -0.762 1.27) (xy -1.27 1.27) (xy -1.27 -1.27)
  585. )
  586. (stroke
  587. (width 0.254)
  588. (type default)
  589. )
  590. (fill
  591. (type none)
  592. )
  593. )
  594. (polyline
  595. (pts
  596. (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
  597. )
  598. (stroke
  599. (width 0.254)
  600. (type default)
  601. )
  602. (fill
  603. (type none)
  604. )
  605. )
  606. )
  607. (symbol "SMAJ5.0A_1_1"
  608. (pin passive line
  609. (at -3.81 0 0)
  610. (length 2.54)
  611. (name "A1"
  612. (effects
  613. (font
  614. (size 1.27 1.27)
  615. )
  616. )
  617. )
  618. (number "1"
  619. (effects
  620. (font
  621. (size 1.27 1.27)
  622. )
  623. )
  624. )
  625. )
  626. (pin passive line
  627. (at 3.81 0 180)
  628. (length 2.54)
  629. (name "A2"
  630. (effects
  631. (font
  632. (size 1.27 1.27)
  633. )
  634. )
  635. )
  636. (number "2"
  637. (effects
  638. (font
  639. (size 1.27 1.27)
  640. )
  641. )
  642. )
  643. )
  644. )
  645. (embedded_fonts no)
  646. )
  647. (symbol "Regulator_Linear:LM1117MP-3.3"
  648. (exclude_from_sim no)
  649. (in_bom yes)
  650. (on_board yes)
  651. (in_pos_files yes)
  652. (duplicate_pin_numbers_are_jumpers no)
  653. (property "Reference" "U"
  654. (at -3.81 3.175 0)
  655. (show_name no)
  656. (do_not_autoplace no)
  657. (effects
  658. (font
  659. (size 1.27 1.27)
  660. )
  661. )
  662. )
  663. (property "Value" "LM1117MP-3.3"
  664. (at 0 3.175 0)
  665. (show_name no)
  666. (do_not_autoplace no)
  667. (effects
  668. (font
  669. (size 1.27 1.27)
  670. )
  671. (justify left)
  672. )
  673. )
  674. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
  675. (at 0 0 0)
  676. (show_name no)
  677. (do_not_autoplace no)
  678. (hide yes)
  679. (effects
  680. (font
  681. (size 1.27 1.27)
  682. )
  683. )
  684. )
  685. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  686. (at 0 0 0)
  687. (show_name no)
  688. (do_not_autoplace no)
  689. (hide yes)
  690. (effects
  691. (font
  692. (size 1.27 1.27)
  693. )
  694. )
  695. )
  696. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
  697. (at 0 0 0)
  698. (show_name no)
  699. (do_not_autoplace no)
  700. (hide yes)
  701. (effects
  702. (font
  703. (size 1.27 1.27)
  704. )
  705. )
  706. )
  707. (property "ki_keywords" "linear regulator ldo fixed positive"
  708. (at 0 0 0)
  709. (show_name no)
  710. (do_not_autoplace no)
  711. (hide yes)
  712. (effects
  713. (font
  714. (size 1.27 1.27)
  715. )
  716. )
  717. )
  718. (property "ki_fp_filters" "SOT?223*"
  719. (at 0 0 0)
  720. (show_name no)
  721. (do_not_autoplace no)
  722. (hide yes)
  723. (effects
  724. (font
  725. (size 1.27 1.27)
  726. )
  727. )
  728. )
  729. (symbol "LM1117MP-3.3_0_1"
  730. (rectangle
  731. (start -5.08 -5.08)
  732. (end 5.08 1.905)
  733. (stroke
  734. (width 0.254)
  735. (type default)
  736. )
  737. (fill
  738. (type background)
  739. )
  740. )
  741. )
  742. (symbol "LM1117MP-3.3_1_1"
  743. (pin power_in line
  744. (at 0 -7.62 90)
  745. (length 2.54)
  746. (name "GND"
  747. (effects
  748. (font
  749. (size 1.27 1.27)
  750. )
  751. )
  752. )
  753. (number "1"
  754. (effects
  755. (font
  756. (size 1.27 1.27)
  757. )
  758. )
  759. )
  760. )
  761. (pin power_out line
  762. (at 7.62 0 180)
  763. (length 2.54)
  764. (name "VO"
  765. (effects
  766. (font
  767. (size 1.27 1.27)
  768. )
  769. )
  770. )
  771. (number "2"
  772. (effects
  773. (font
  774. (size 1.27 1.27)
  775. )
  776. )
  777. )
  778. )
  779. (pin power_in line
  780. (at -7.62 0 0)
  781. (length 2.54)
  782. (name "VI"
  783. (effects
  784. (font
  785. (size 1.27 1.27)
  786. )
  787. )
  788. )
  789. (number "3"
  790. (effects
  791. (font
  792. (size 1.27 1.27)
  793. )
  794. )
  795. )
  796. )
  797. )
  798. (embedded_fonts no)
  799. )
  800. (symbol "power:+3V3"
  801. (power global)
  802. (pin_numbers
  803. (hide yes)
  804. )
  805. (pin_names
  806. (offset 0)
  807. (hide yes)
  808. )
  809. (exclude_from_sim no)
  810. (in_bom yes)
  811. (on_board yes)
  812. (in_pos_files yes)
  813. (duplicate_pin_numbers_are_jumpers no)
  814. (property "Reference" "#PWR"
  815. (at 0 -3.81 0)
  816. (show_name no)
  817. (do_not_autoplace no)
  818. (hide yes)
  819. (effects
  820. (font
  821. (size 1.27 1.27)
  822. )
  823. )
  824. )
  825. (property "Value" "+3V3"
  826. (at 0 3.556 0)
  827. (show_name no)
  828. (do_not_autoplace no)
  829. (effects
  830. (font
  831. (size 1.27 1.27)
  832. )
  833. )
  834. )
  835. (property "Footprint" ""
  836. (at 0 0 0)
  837. (show_name no)
  838. (do_not_autoplace no)
  839. (hide yes)
  840. (effects
  841. (font
  842. (size 1.27 1.27)
  843. )
  844. )
  845. )
  846. (property "Datasheet" ""
  847. (at 0 0 0)
  848. (show_name no)
  849. (do_not_autoplace no)
  850. (hide yes)
  851. (effects
  852. (font
  853. (size 1.27 1.27)
  854. )
  855. )
  856. )
  857. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  858. (at 0 0 0)
  859. (show_name no)
  860. (do_not_autoplace no)
  861. (hide yes)
  862. (effects
  863. (font
  864. (size 1.27 1.27)
  865. )
  866. )
  867. )
  868. (property "ki_keywords" "global power"
  869. (at 0 0 0)
  870. (show_name no)
  871. (do_not_autoplace no)
  872. (hide yes)
  873. (effects
  874. (font
  875. (size 1.27 1.27)
  876. )
  877. )
  878. )
  879. (symbol "+3V3_0_1"
  880. (polyline
  881. (pts
  882. (xy -0.762 1.27) (xy 0 2.54)
  883. )
  884. (stroke
  885. (width 0)
  886. (type default)
  887. )
  888. (fill
  889. (type none)
  890. )
  891. )
  892. (polyline
  893. (pts
  894. (xy 0 2.54) (xy 0.762 1.27)
  895. )
  896. (stroke
  897. (width 0)
  898. (type default)
  899. )
  900. (fill
  901. (type none)
  902. )
  903. )
  904. (polyline
  905. (pts
  906. (xy 0 0) (xy 0 2.54)
  907. )
  908. (stroke
  909. (width 0)
  910. (type default)
  911. )
  912. (fill
  913. (type none)
  914. )
  915. )
  916. )
  917. (symbol "+3V3_1_1"
  918. (pin power_in line
  919. (at 0 0 90)
  920. (length 0)
  921. (name ""
  922. (effects
  923. (font
  924. (size 1.27 1.27)
  925. )
  926. )
  927. )
  928. (number "1"
  929. (effects
  930. (font
  931. (size 1.27 1.27)
  932. )
  933. )
  934. )
  935. )
  936. )
  937. (embedded_fonts no)
  938. )
  939. (symbol "power:+5V"
  940. (power global)
  941. (pin_numbers
  942. (hide yes)
  943. )
  944. (pin_names
  945. (offset 0)
  946. (hide yes)
  947. )
  948. (exclude_from_sim no)
  949. (in_bom yes)
  950. (on_board yes)
  951. (in_pos_files yes)
  952. (duplicate_pin_numbers_are_jumpers no)
  953. (property "Reference" "#PWR"
  954. (at 0 -3.81 0)
  955. (show_name no)
  956. (do_not_autoplace no)
  957. (hide yes)
  958. (effects
  959. (font
  960. (size 1.27 1.27)
  961. )
  962. )
  963. )
  964. (property "Value" "+5V"
  965. (at 0 3.556 0)
  966. (show_name no)
  967. (do_not_autoplace no)
  968. (effects
  969. (font
  970. (size 1.27 1.27)
  971. )
  972. )
  973. )
  974. (property "Footprint" ""
  975. (at 0 0 0)
  976. (show_name no)
  977. (do_not_autoplace no)
  978. (hide yes)
  979. (effects
  980. (font
  981. (size 1.27 1.27)
  982. )
  983. )
  984. )
  985. (property "Datasheet" ""
  986. (at 0 0 0)
  987. (show_name no)
  988. (do_not_autoplace no)
  989. (hide yes)
  990. (effects
  991. (font
  992. (size 1.27 1.27)
  993. )
  994. )
  995. )
  996. (property "Description" "Power symbol creates a global label with name \"+5V\""
  997. (at 0 0 0)
  998. (show_name no)
  999. (do_not_autoplace no)
  1000. (hide yes)
  1001. (effects
  1002. (font
  1003. (size 1.27 1.27)
  1004. )
  1005. )
  1006. )
  1007. (property "ki_keywords" "global power"
  1008. (at 0 0 0)
  1009. (show_name no)
  1010. (do_not_autoplace no)
  1011. (hide yes)
  1012. (effects
  1013. (font
  1014. (size 1.27 1.27)
  1015. )
  1016. )
  1017. )
  1018. (symbol "+5V_0_1"
  1019. (polyline
  1020. (pts
  1021. (xy -0.762 1.27) (xy 0 2.54)
  1022. )
  1023. (stroke
  1024. (width 0)
  1025. (type default)
  1026. )
  1027. (fill
  1028. (type none)
  1029. )
  1030. )
  1031. (polyline
  1032. (pts
  1033. (xy 0 2.54) (xy 0.762 1.27)
  1034. )
  1035. (stroke
  1036. (width 0)
  1037. (type default)
  1038. )
  1039. (fill
  1040. (type none)
  1041. )
  1042. )
  1043. (polyline
  1044. (pts
  1045. (xy 0 0) (xy 0 2.54)
  1046. )
  1047. (stroke
  1048. (width 0)
  1049. (type default)
  1050. )
  1051. (fill
  1052. (type none)
  1053. )
  1054. )
  1055. )
  1056. (symbol "+5V_1_1"
  1057. (pin power_in line
  1058. (at 0 0 90)
  1059. (length 0)
  1060. (name ""
  1061. (effects
  1062. (font
  1063. (size 1.27 1.27)
  1064. )
  1065. )
  1066. )
  1067. (number "1"
  1068. (effects
  1069. (font
  1070. (size 1.27 1.27)
  1071. )
  1072. )
  1073. )
  1074. )
  1075. )
  1076. (embedded_fonts no)
  1077. )
  1078. (symbol "power:GND"
  1079. (power global)
  1080. (pin_numbers
  1081. (hide yes)
  1082. )
  1083. (pin_names
  1084. (offset 0)
  1085. (hide yes)
  1086. )
  1087. (exclude_from_sim no)
  1088. (in_bom yes)
  1089. (on_board yes)
  1090. (in_pos_files yes)
  1091. (duplicate_pin_numbers_are_jumpers no)
  1092. (property "Reference" "#PWR"
  1093. (at 0 -6.35 0)
  1094. (show_name no)
  1095. (do_not_autoplace no)
  1096. (hide yes)
  1097. (effects
  1098. (font
  1099. (size 1.27 1.27)
  1100. )
  1101. )
  1102. )
  1103. (property "Value" "GND"
  1104. (at 0 -3.81 0)
  1105. (show_name no)
  1106. (do_not_autoplace no)
  1107. (effects
  1108. (font
  1109. (size 1.27 1.27)
  1110. )
  1111. )
  1112. )
  1113. (property "Footprint" ""
  1114. (at 0 0 0)
  1115. (show_name no)
  1116. (do_not_autoplace no)
  1117. (hide yes)
  1118. (effects
  1119. (font
  1120. (size 1.27 1.27)
  1121. )
  1122. )
  1123. )
  1124. (property "Datasheet" ""
  1125. (at 0 0 0)
  1126. (show_name no)
  1127. (do_not_autoplace no)
  1128. (hide yes)
  1129. (effects
  1130. (font
  1131. (size 1.27 1.27)
  1132. )
  1133. )
  1134. )
  1135. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1136. (at 0 0 0)
  1137. (show_name no)
  1138. (do_not_autoplace no)
  1139. (hide yes)
  1140. (effects
  1141. (font
  1142. (size 1.27 1.27)
  1143. )
  1144. )
  1145. )
  1146. (property "ki_keywords" "global power"
  1147. (at 0 0 0)
  1148. (show_name no)
  1149. (do_not_autoplace no)
  1150. (hide yes)
  1151. (effects
  1152. (font
  1153. (size 1.27 1.27)
  1154. )
  1155. )
  1156. )
  1157. (symbol "GND_0_1"
  1158. (polyline
  1159. (pts
  1160. (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)
  1161. )
  1162. (stroke
  1163. (width 0)
  1164. (type default)
  1165. )
  1166. (fill
  1167. (type none)
  1168. )
  1169. )
  1170. )
  1171. (symbol "GND_1_1"
  1172. (pin power_in line
  1173. (at 0 0 270)
  1174. (length 0)
  1175. (name ""
  1176. (effects
  1177. (font
  1178. (size 1.27 1.27)
  1179. )
  1180. )
  1181. )
  1182. (number "1"
  1183. (effects
  1184. (font
  1185. (size 1.27 1.27)
  1186. )
  1187. )
  1188. )
  1189. )
  1190. )
  1191. (embedded_fonts no)
  1192. )
  1193. )
  1194. (text_box "3.3V Protection circuit.\nThe 5V TVS diode is used to accept the main pulse, while the 3.6V Zener diode accepts a 5V -> 3.3V pulse."
  1195. (exclude_from_sim no)
  1196. (at 64.77 128.27 0)
  1197. (size 44.45 13.97)
  1198. (margins 0.9525 0.9525 0.9525 0.9525)
  1199. (stroke
  1200. (width 0)
  1201. (type solid)
  1202. )
  1203. (fill
  1204. (type none)
  1205. )
  1206. (effects
  1207. (font
  1208. (size 1.27 1.27)
  1209. )
  1210. )
  1211. (uuid "058433ac-6ae7-4d59-8d7a-6befca81bdd8")
  1212. )
  1213. (text_box "Iout (max) = 150mA\nVin = 5V\nVout = 3.3V\nVdiff = 1.7V\n\nP (max) = Vdiff * Iout\nP (max) = 0.255W"
  1214. (exclude_from_sim no)
  1215. (at 181.61 78.74 0)
  1216. (size 41.91 24.13)
  1217. (margins 0.9525 0.9525 0.9525 0.9525)
  1218. (stroke
  1219. (width 0)
  1220. (type solid)
  1221. )
  1222. (fill
  1223. (type none)
  1224. )
  1225. (effects
  1226. (font
  1227. (size 1.27 1.27)
  1228. )
  1229. (justify left)
  1230. )
  1231. (uuid "1f628aef-c620-4533-8a87-d1a771ba0ab2")
  1232. )
  1233. (text_box "Maximum current of logic section is lower than 150mA. Maximum current of LM1117-3.3 is 800mA, which gives a large margin of safety. \n\nDatasheet recommends minimum 10uF input capacitor and minimum 10uF output capacitor. Capacitors should be ceramic low ESR. (See 9.2.2.1.* in datasheet)\n\nDiode should be used to protect LM1117-3.3 from reverse current. (See 8.4.1 in datasheet)\n"
  1234. (exclude_from_sim no)
  1235. (at 66.04 76.2 0)
  1236. (size 44.45 36.8299)
  1237. (margins 0.9525 0.9525 0.9525 0.9525)
  1238. (stroke
  1239. (width 0)
  1240. (type solid)
  1241. )
  1242. (fill
  1243. (type none)
  1244. )
  1245. (effects
  1246. (font
  1247. (size 1.27 1.27)
  1248. )
  1249. )
  1250. (uuid "dcea7838-24af-44f2-850e-1bc7f58b3217")
  1251. )
  1252. (junction
  1253. (at 166.37 104.14)
  1254. (diameter 0)
  1255. (color 0 0 0 0)
  1256. (uuid "38f89fcf-5e10-43ab-ab5d-26060236c632")
  1257. )
  1258. (junction
  1259. (at 123.19 93.98)
  1260. (diameter 0)
  1261. (color 0 0 0 0)
  1262. (uuid "3aea2ac0-9bf3-43a9-a34e-dc6b684a86ec")
  1263. )
  1264. (junction
  1265. (at 154.94 93.98)
  1266. (diameter 0)
  1267. (color 0 0 0 0)
  1268. (uuid "58327141-82fd-42ff-991b-2d40b3f4e6e7")
  1269. )
  1270. (junction
  1271. (at 166.37 78.74)
  1272. (diameter 0)
  1273. (color 0 0 0 0)
  1274. (uuid "6ed86689-55d4-4cfa-b3cb-4f9ef4e1c8dc")
  1275. )
  1276. (junction
  1277. (at 123.19 132.08)
  1278. (diameter 0)
  1279. (color 0 0 0 0)
  1280. (uuid "acbb9b61-0e33-4c63-ba68-619a1a25f239")
  1281. )
  1282. (junction
  1283. (at 123.19 78.74)
  1284. (diameter 0)
  1285. (color 0 0 0 0)
  1286. (uuid "bc84dcc2-4755-4fcf-b2a4-f1d120f6edf5")
  1287. )
  1288. (junction
  1289. (at 166.37 93.98)
  1290. (diameter 0)
  1291. (color 0 0 0 0)
  1292. (uuid "d096e932-65fb-4c85-aea8-a7314205664d")
  1293. )
  1294. (wire
  1295. (pts
  1296. (xy 166.37 95.25) (xy 166.37 93.98)
  1297. )
  1298. (stroke
  1299. (width 0)
  1300. (type default)
  1301. )
  1302. (uuid "0c07f3d1-5460-4634-8ce3-5fe2b79859d1")
  1303. )
  1304. (wire
  1305. (pts
  1306. (xy 123.19 78.74) (xy 123.19 93.98)
  1307. )
  1308. (stroke
  1309. (width 0)
  1310. (type default)
  1311. )
  1312. (uuid "0c18953e-fbad-4acf-a279-ceb95fe515cd")
  1313. )
  1314. (wire
  1315. (pts
  1316. (xy 123.19 140.97) (xy 123.19 142.24)
  1317. )
  1318. (stroke
  1319. (width 0)
  1320. (type default)
  1321. )
  1322. (uuid "1168f166-470e-4817-836c-3f59f7d6a511")
  1323. )
  1324. (wire
  1325. (pts
  1326. (xy 148.59 93.98) (xy 154.94 93.98)
  1327. )
  1328. (stroke
  1329. (width 0)
  1330. (type default)
  1331. )
  1332. (uuid "1e15d729-8edd-44e7-955f-731d51c24096")
  1333. )
  1334. (wire
  1335. (pts
  1336. (xy 166.37 77.47) (xy 166.37 78.74)
  1337. )
  1338. (stroke
  1339. (width 0)
  1340. (type default)
  1341. )
  1342. (uuid "34410907-7fa7-4b4f-aa1d-33c8742d5116")
  1343. )
  1344. (wire
  1345. (pts
  1346. (xy 123.19 77.47) (xy 123.19 78.74)
  1347. )
  1348. (stroke
  1349. (width 0)
  1350. (type default)
  1351. )
  1352. (uuid "3527dc7f-5059-4983-97f4-39f08c92b7e4")
  1353. )
  1354. (wire
  1355. (pts
  1356. (xy 140.97 140.97) (xy 140.97 142.24)
  1357. )
  1358. (stroke
  1359. (width 0)
  1360. (type default)
  1361. )
  1362. (uuid "417b6b33-3616-4adb-bb39-0f86a4ef0ec3")
  1363. )
  1364. (wire
  1365. (pts
  1366. (xy 140.97 101.6) (xy 140.97 102.87)
  1367. )
  1368. (stroke
  1369. (width 0)
  1370. (type default)
  1371. )
  1372. (uuid "4eabf22d-625c-4738-8c0b-809097618499")
  1373. )
  1374. (wire
  1375. (pts
  1376. (xy 123.19 93.98) (xy 133.35 93.98)
  1377. )
  1378. (stroke
  1379. (width 0)
  1380. (type default)
  1381. )
  1382. (uuid "5aa6d780-fddf-42ef-830a-64971a43938a")
  1383. )
  1384. (wire
  1385. (pts
  1386. (xy 140.97 133.35) (xy 140.97 132.08)
  1387. )
  1388. (stroke
  1389. (width 0)
  1390. (type default)
  1391. )
  1392. (uuid "5dc0b670-4aca-46cd-ab17-246e66cfa0b2")
  1393. )
  1394. (wire
  1395. (pts
  1396. (xy 166.37 102.87) (xy 166.37 104.14)
  1397. )
  1398. (stroke
  1399. (width 0)
  1400. (type default)
  1401. )
  1402. (uuid "6af214e3-0cc6-448c-88da-77735c04bd1e")
  1403. )
  1404. (wire
  1405. (pts
  1406. (xy 154.94 104.14) (xy 166.37 104.14)
  1407. )
  1408. (stroke
  1409. (width 0)
  1410. (type default)
  1411. )
  1412. (uuid "6d4c5ad9-dba0-4d5d-82c3-e816a32e0062")
  1413. )
  1414. (wire
  1415. (pts
  1416. (xy 123.19 102.87) (xy 123.19 105.41)
  1417. )
  1418. (stroke
  1419. (width 0)
  1420. (type default)
  1421. )
  1422. (uuid "7de5b4a4-fdbb-4078-b04a-fe3495439733")
  1423. )
  1424. (wire
  1425. (pts
  1426. (xy 123.19 132.08) (xy 140.97 132.08)
  1427. )
  1428. (stroke
  1429. (width 0)
  1430. (type default)
  1431. )
  1432. (uuid "7fe6ab5f-2573-430d-a5e9-3eeb2b7da463")
  1433. )
  1434. (wire
  1435. (pts
  1436. (xy 166.37 105.41) (xy 166.37 104.14)
  1437. )
  1438. (stroke
  1439. (width 0)
  1440. (type default)
  1441. )
  1442. (uuid "8d99afc6-5875-4af9-8739-6c4c307fb9a7")
  1443. )
  1444. (wire
  1445. (pts
  1446. (xy 123.19 93.98) (xy 123.19 95.25)
  1447. )
  1448. (stroke
  1449. (width 0)
  1450. (type default)
  1451. )
  1452. (uuid "915c7772-2fd1-4686-95b5-3c834d449ad5")
  1453. )
  1454. (wire
  1455. (pts
  1456. (xy 166.37 78.74) (xy 166.37 93.98)
  1457. )
  1458. (stroke
  1459. (width 0)
  1460. (type default)
  1461. )
  1462. (uuid "94c8e391-19ee-439f-9315-b5400fa43539")
  1463. )
  1464. (wire
  1465. (pts
  1466. (xy 123.19 132.08) (xy 123.19 133.35)
  1467. )
  1468. (stroke
  1469. (width 0)
  1470. (type default)
  1471. )
  1472. (uuid "9d7cc3b6-a69f-4fbc-b6d6-37a497c9625a")
  1473. )
  1474. (wire
  1475. (pts
  1476. (xy 123.19 130.81) (xy 123.19 132.08)
  1477. )
  1478. (stroke
  1479. (width 0)
  1480. (type default)
  1481. )
  1482. (uuid "ad782ae2-c1b7-4ea2-bd24-295735b028d2")
  1483. )
  1484. (wire
  1485. (pts
  1486. (xy 154.94 102.87) (xy 154.94 104.14)
  1487. )
  1488. (stroke
  1489. (width 0)
  1490. (type default)
  1491. )
  1492. (uuid "b55135ae-99b4-4fac-a03c-2193f27425b9")
  1493. )
  1494. (wire
  1495. (pts
  1496. (xy 154.94 93.98) (xy 166.37 93.98)
  1497. )
  1498. (stroke
  1499. (width 0)
  1500. (type default)
  1501. )
  1502. (uuid "c5f6c41b-eafa-4cc0-9347-bd083740868a")
  1503. )
  1504. (wire
  1505. (pts
  1506. (xy 154.94 95.25) (xy 154.94 93.98)
  1507. )
  1508. (stroke
  1509. (width 0)
  1510. (type default)
  1511. )
  1512. (uuid "c7794198-055a-41df-b1a1-3722b88d9416")
  1513. )
  1514. (wire
  1515. (pts
  1516. (xy 123.19 78.74) (xy 137.16 78.74)
  1517. )
  1518. (stroke
  1519. (width 0)
  1520. (type default)
  1521. )
  1522. (uuid "c9969096-885a-40b3-b7aa-d4ce24ff51f5")
  1523. )
  1524. (wire
  1525. (pts
  1526. (xy 144.78 78.74) (xy 166.37 78.74)
  1527. )
  1528. (stroke
  1529. (width 0)
  1530. (type default)
  1531. )
  1532. (uuid "ed789b5f-e41b-4358-82dc-ffc44eab32a3")
  1533. )
  1534. (symbol
  1535. (lib_id "power:+3V3")
  1536. (at 123.19 130.81 0)
  1537. (unit 1)
  1538. (body_style 1)
  1539. (exclude_from_sim no)
  1540. (in_bom yes)
  1541. (on_board yes)
  1542. (in_pos_files yes)
  1543. (dnp no)
  1544. (fields_autoplaced yes)
  1545. (uuid "1d6959c6-bffc-48bb-b909-e6f85df5ec16")
  1546. (property "Reference" "#PWR044"
  1547. (at 123.19 134.62 0)
  1548. (hide yes)
  1549. (show_name no)
  1550. (do_not_autoplace no)
  1551. (effects
  1552. (font
  1553. (size 1.27 1.27)
  1554. )
  1555. )
  1556. )
  1557. (property "Value" "+3V3"
  1558. (at 123.19 125.73 0)
  1559. (show_name no)
  1560. (do_not_autoplace no)
  1561. (effects
  1562. (font
  1563. (size 1.27 1.27)
  1564. )
  1565. )
  1566. )
  1567. (property "Footprint" ""
  1568. (at 123.19 130.81 0)
  1569. (hide yes)
  1570. (show_name no)
  1571. (do_not_autoplace no)
  1572. (effects
  1573. (font
  1574. (size 1.27 1.27)
  1575. )
  1576. )
  1577. )
  1578. (property "Datasheet" ""
  1579. (at 123.19 130.81 0)
  1580. (hide yes)
  1581. (show_name no)
  1582. (do_not_autoplace no)
  1583. (effects
  1584. (font
  1585. (size 1.27 1.27)
  1586. )
  1587. )
  1588. )
  1589. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1590. (at 123.19 130.81 0)
  1591. (hide yes)
  1592. (show_name no)
  1593. (do_not_autoplace no)
  1594. (effects
  1595. (font
  1596. (size 1.27 1.27)
  1597. )
  1598. )
  1599. )
  1600. (pin "1"
  1601. (uuid "2f3c7ee9-515d-41f1-996e-2f1e16768d60")
  1602. )
  1603. (instances
  1604. (project "cx-copter-schematic"
  1605. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  1606. (reference "#PWR044")
  1607. (unit 1)
  1608. )
  1609. )
  1610. )
  1611. )
  1612. (symbol
  1613. (lib_id "Diode:SMAJ5.0A")
  1614. (at 123.19 137.16 270)
  1615. (unit 1)
  1616. (body_style 1)
  1617. (exclude_from_sim no)
  1618. (in_bom yes)
  1619. (on_board yes)
  1620. (in_pos_files yes)
  1621. (dnp no)
  1622. (fields_autoplaced yes)
  1623. (uuid "2d806ee4-2995-40d7-b0d2-5baa6191a1b4")
  1624. (property "Reference" "D7"
  1625. (at 125.73 135.8899 90)
  1626. (show_name no)
  1627. (do_not_autoplace no)
  1628. (effects
  1629. (font
  1630. (size 1.27 1.27)
  1631. )
  1632. (justify left)
  1633. )
  1634. )
  1635. (property "Value" "SMAJ5.0A"
  1636. (at 125.73 138.4299 90)
  1637. (show_name no)
  1638. (do_not_autoplace no)
  1639. (effects
  1640. (font
  1641. (size 1.27 1.27)
  1642. )
  1643. (justify left)
  1644. )
  1645. )
  1646. (property "Footprint" "Diode_SMD:D_SMA"
  1647. (at 118.11 137.16 0)
  1648. (hide yes)
  1649. (show_name no)
  1650. (do_not_autoplace no)
  1651. (effects
  1652. (font
  1653. (size 1.27 1.27)
  1654. )
  1655. )
  1656. )
  1657. (property "Datasheet" "https://www.littelfuse.com/media?resourcetype=datasheets&itemid=75e32973-b177-4ee3-a0ff-cedaf1abdb93&filename=smaj-datasheet"
  1658. (at 123.19 135.89 0)
  1659. (hide yes)
  1660. (show_name no)
  1661. (do_not_autoplace no)
  1662. (effects
  1663. (font
  1664. (size 1.27 1.27)
  1665. )
  1666. )
  1667. )
  1668. (property "Description" "400W unidirectional Transient Voltage Suppressor, 5.0Vr, SMA(DO-214AC)"
  1669. (at 123.19 137.16 0)
  1670. (hide yes)
  1671. (show_name no)
  1672. (do_not_autoplace no)
  1673. (effects
  1674. (font
  1675. (size 1.27 1.27)
  1676. )
  1677. )
  1678. )
  1679. (pin "2"
  1680. (uuid "fe7e2395-8f4e-420e-a80e-2865a0d028ce")
  1681. )
  1682. (pin "1"
  1683. (uuid "286f379a-bd05-429e-8c32-ab720b563712")
  1684. )
  1685. (instances
  1686. (project "cx-copter-schematic"
  1687. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  1688. (reference "D7")
  1689. (unit 1)
  1690. )
  1691. )
  1692. )
  1693. )
  1694. (symbol
  1695. (lib_id "power:GND")
  1696. (at 140.97 102.87 0)
  1697. (unit 1)
  1698. (body_style 1)
  1699. (exclude_from_sim no)
  1700. (in_bom yes)
  1701. (on_board yes)
  1702. (in_pos_files yes)
  1703. (dnp no)
  1704. (fields_autoplaced yes)
  1705. (uuid "2f2b4b6e-c7d5-4d59-83a4-59a9d4460e19")
  1706. (property "Reference" "#PWR042"
  1707. (at 140.97 109.22 0)
  1708. (hide yes)
  1709. (show_name no)
  1710. (do_not_autoplace no)
  1711. (effects
  1712. (font
  1713. (size 1.27 1.27)
  1714. )
  1715. )
  1716. )
  1717. (property "Value" "GND"
  1718. (at 140.97 107.95 0)
  1719. (show_name no)
  1720. (do_not_autoplace no)
  1721. (effects
  1722. (font
  1723. (size 1.27 1.27)
  1724. )
  1725. )
  1726. )
  1727. (property "Footprint" ""
  1728. (at 140.97 102.87 0)
  1729. (hide yes)
  1730. (show_name no)
  1731. (do_not_autoplace no)
  1732. (effects
  1733. (font
  1734. (size 1.27 1.27)
  1735. )
  1736. )
  1737. )
  1738. (property "Datasheet" ""
  1739. (at 140.97 102.87 0)
  1740. (hide yes)
  1741. (show_name no)
  1742. (do_not_autoplace no)
  1743. (effects
  1744. (font
  1745. (size 1.27 1.27)
  1746. )
  1747. )
  1748. )
  1749. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1750. (at 140.97 102.87 0)
  1751. (hide yes)
  1752. (show_name no)
  1753. (do_not_autoplace no)
  1754. (effects
  1755. (font
  1756. (size 1.27 1.27)
  1757. )
  1758. )
  1759. )
  1760. (pin "1"
  1761. (uuid "8842e184-b41f-468a-8cbe-c5b20ae11746")
  1762. )
  1763. (instances
  1764. (project "cx-copter-schematic"
  1765. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  1766. (reference "#PWR042")
  1767. (unit 1)
  1768. )
  1769. )
  1770. )
  1771. )
  1772. (symbol
  1773. (lib_id "Diode:B120-E3")
  1774. (at 140.97 78.74 0)
  1775. (unit 1)
  1776. (body_style 1)
  1777. (exclude_from_sim no)
  1778. (in_bom yes)
  1779. (on_board yes)
  1780. (in_pos_files yes)
  1781. (dnp no)
  1782. (uuid "30587f09-bdeb-4a92-ba5f-1143d207fc9e")
  1783. (property "Reference" "D6"
  1784. (at 140.97 81.28 0)
  1785. (show_name no)
  1786. (do_not_autoplace no)
  1787. (effects
  1788. (font
  1789. (size 1.27 1.27)
  1790. )
  1791. )
  1792. )
  1793. (property "Value" "B120-13-F"
  1794. (at 140.97 76.2 0)
  1795. (show_name no)
  1796. (do_not_autoplace no)
  1797. (effects
  1798. (font
  1799. (size 1.27 1.27)
  1800. )
  1801. )
  1802. )
  1803. (property "Footprint" "Diode_SMD:D_SMA"
  1804. (at 140.97 83.185 0)
  1805. (hide yes)
  1806. (show_name no)
  1807. (do_not_autoplace no)
  1808. (effects
  1809. (font
  1810. (size 1.27 1.27)
  1811. )
  1812. )
  1813. )
  1814. (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
  1815. (at 140.97 78.74 0)
  1816. (hide yes)
  1817. (show_name no)
  1818. (do_not_autoplace no)
  1819. (effects
  1820. (font
  1821. (size 1.27 1.27)
  1822. )
  1823. )
  1824. )
  1825. (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
  1826. (at 140.97 78.74 0)
  1827. (hide yes)
  1828. (show_name no)
  1829. (do_not_autoplace no)
  1830. (effects
  1831. (font
  1832. (size 1.27 1.27)
  1833. )
  1834. )
  1835. )
  1836. (pin "1"
  1837. (uuid "ccfe1dad-59c6-408f-9ab0-ef22068a1f46")
  1838. )
  1839. (pin "2"
  1840. (uuid "3152fd0a-b7b0-46c5-a022-0fc668b4006d")
  1841. )
  1842. (instances
  1843. (project "cx-copter-schematic"
  1844. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  1845. (reference "D6")
  1846. (unit 1)
  1847. )
  1848. )
  1849. )
  1850. )
  1851. (symbol
  1852. (lib_id "Regulator_Linear:LM1117MP-3.3")
  1853. (at 140.97 93.98 0)
  1854. (unit 1)
  1855. (body_style 1)
  1856. (exclude_from_sim no)
  1857. (in_bom yes)
  1858. (on_board yes)
  1859. (in_pos_files yes)
  1860. (dnp no)
  1861. (fields_autoplaced yes)
  1862. (uuid "3990e9c6-ab7f-4302-827f-cbe319641567")
  1863. (property "Reference" "U5"
  1864. (at 140.97 87.63 0)
  1865. (show_name no)
  1866. (do_not_autoplace no)
  1867. (effects
  1868. (font
  1869. (size 1.27 1.27)
  1870. )
  1871. )
  1872. )
  1873. (property "Value" "LM1117MP-3.3"
  1874. (at 140.97 90.17 0)
  1875. (show_name no)
  1876. (do_not_autoplace no)
  1877. (effects
  1878. (font
  1879. (size 1.27 1.27)
  1880. )
  1881. )
  1882. )
  1883. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
  1884. (at 140.97 93.98 0)
  1885. (hide yes)
  1886. (show_name no)
  1887. (do_not_autoplace no)
  1888. (effects
  1889. (font
  1890. (size 1.27 1.27)
  1891. )
  1892. )
  1893. )
  1894. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  1895. (at 140.97 93.98 0)
  1896. (hide yes)
  1897. (show_name no)
  1898. (do_not_autoplace no)
  1899. (effects
  1900. (font
  1901. (size 1.27 1.27)
  1902. )
  1903. )
  1904. )
  1905. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
  1906. (at 140.97 93.98 0)
  1907. (hide yes)
  1908. (show_name no)
  1909. (do_not_autoplace no)
  1910. (effects
  1911. (font
  1912. (size 1.27 1.27)
  1913. )
  1914. )
  1915. )
  1916. (pin "3"
  1917. (uuid "b7af2086-5046-4edf-956c-2f655dc9c992")
  1918. )
  1919. (pin "1"
  1920. (uuid "a38c6875-ae35-45d1-a281-ea2f5f90a96a")
  1921. )
  1922. (pin "2"
  1923. (uuid "9638a547-be5d-42d9-8027-6055c3ce7803")
  1924. )
  1925. (instances
  1926. (project "cx-copter-schematic"
  1927. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  1928. (reference "U5")
  1929. (unit 1)
  1930. )
  1931. )
  1932. )
  1933. )
  1934. (symbol
  1935. (lib_id "Diode:MM3Zxx")
  1936. (at 140.97 137.16 270)
  1937. (unit 1)
  1938. (body_style 1)
  1939. (exclude_from_sim no)
  1940. (in_bom yes)
  1941. (on_board yes)
  1942. (in_pos_files yes)
  1943. (dnp no)
  1944. (fields_autoplaced yes)
  1945. (uuid "731c04fb-28ae-4ac2-81d4-0f2c73b92e0c")
  1946. (property "Reference" "D8"
  1947. (at 143.51 135.8899 90)
  1948. (show_name no)
  1949. (do_not_autoplace no)
  1950. (effects
  1951. (font
  1952. (size 1.27 1.27)
  1953. )
  1954. (justify left)
  1955. )
  1956. )
  1957. (property "Value" "MM3Z3V6"
  1958. (at 143.51 138.4299 90)
  1959. (show_name no)
  1960. (do_not_autoplace no)
  1961. (effects
  1962. (font
  1963. (size 1.27 1.27)
  1964. )
  1965. (justify left)
  1966. )
  1967. )
  1968. (property "Footprint" "Diode_SMD:D_SOD-323F"
  1969. (at 136.525 137.16 0)
  1970. (hide yes)
  1971. (show_name no)
  1972. (do_not_autoplace no)
  1973. (effects
  1974. (font
  1975. (size 1.27 1.27)
  1976. )
  1977. )
  1978. )
  1979. (property "Datasheet" "https://diotec.com/tl_files/diotec/files/pdf/datasheets/mm3z2v4.pdf"
  1980. (at 140.97 137.16 0)
  1981. (hide yes)
  1982. (show_name no)
  1983. (do_not_autoplace no)
  1984. (effects
  1985. (font
  1986. (size 1.27 1.27)
  1987. )
  1988. )
  1989. )
  1990. (property "Description" "300mW Zener Diode, SOD-323F"
  1991. (at 140.97 137.16 0)
  1992. (hide yes)
  1993. (show_name no)
  1994. (do_not_autoplace no)
  1995. (effects
  1996. (font
  1997. (size 1.27 1.27)
  1998. )
  1999. )
  2000. )
  2001. (pin "2"
  2002. (uuid "c5e4bd83-9747-48a1-9977-a10f860cec12")
  2003. )
  2004. (pin "1"
  2005. (uuid "55be3f81-4f1b-4596-83f3-a3185fcc3eaf")
  2006. )
  2007. (instances
  2008. (project "cx-copter-schematic"
  2009. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2010. (reference "D8")
  2011. (unit 1)
  2012. )
  2013. )
  2014. )
  2015. )
  2016. (symbol
  2017. (lib_id "power:GND")
  2018. (at 123.19 105.41 0)
  2019. (unit 1)
  2020. (body_style 1)
  2021. (exclude_from_sim no)
  2022. (in_bom yes)
  2023. (on_board yes)
  2024. (in_pos_files yes)
  2025. (dnp no)
  2026. (fields_autoplaced yes)
  2027. (uuid "741680d6-a433-4847-9a66-043251f98342")
  2028. (property "Reference" "#PWR041"
  2029. (at 123.19 111.76 0)
  2030. (hide yes)
  2031. (show_name no)
  2032. (do_not_autoplace no)
  2033. (effects
  2034. (font
  2035. (size 1.27 1.27)
  2036. )
  2037. )
  2038. )
  2039. (property "Value" "GND"
  2040. (at 123.19 110.49 0)
  2041. (show_name no)
  2042. (do_not_autoplace no)
  2043. (effects
  2044. (font
  2045. (size 1.27 1.27)
  2046. )
  2047. )
  2048. )
  2049. (property "Footprint" ""
  2050. (at 123.19 105.41 0)
  2051. (hide yes)
  2052. (show_name no)
  2053. (do_not_autoplace no)
  2054. (effects
  2055. (font
  2056. (size 1.27 1.27)
  2057. )
  2058. )
  2059. )
  2060. (property "Datasheet" ""
  2061. (at 123.19 105.41 0)
  2062. (hide yes)
  2063. (show_name no)
  2064. (do_not_autoplace no)
  2065. (effects
  2066. (font
  2067. (size 1.27 1.27)
  2068. )
  2069. )
  2070. )
  2071. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2072. (at 123.19 105.41 0)
  2073. (hide yes)
  2074. (show_name no)
  2075. (do_not_autoplace no)
  2076. (effects
  2077. (font
  2078. (size 1.27 1.27)
  2079. )
  2080. )
  2081. )
  2082. (pin "1"
  2083. (uuid "fd0a7fd5-63ef-4993-a533-ec7c6517b015")
  2084. )
  2085. (instances
  2086. (project "cx-copter-schematic"
  2087. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2088. (reference "#PWR041")
  2089. (unit 1)
  2090. )
  2091. )
  2092. )
  2093. )
  2094. (symbol
  2095. (lib_id "Device:C")
  2096. (at 166.37 99.06 0)
  2097. (unit 1)
  2098. (body_style 1)
  2099. (exclude_from_sim no)
  2100. (in_bom yes)
  2101. (on_board yes)
  2102. (in_pos_files yes)
  2103. (dnp no)
  2104. (uuid "7f46e893-82d4-4bdf-bc4b-ef9b45238035")
  2105. (property "Reference" "C18"
  2106. (at 168.656 97.79 0)
  2107. (show_name no)
  2108. (do_not_autoplace no)
  2109. (effects
  2110. (font
  2111. (size 1.27 1.27)
  2112. )
  2113. (justify left)
  2114. )
  2115. )
  2116. (property "Value" "47uF"
  2117. (at 168.91 100.33 0)
  2118. (show_name no)
  2119. (do_not_autoplace no)
  2120. (effects
  2121. (font
  2122. (size 1.27 1.27)
  2123. )
  2124. (justify left)
  2125. )
  2126. )
  2127. (property "Footprint" ""
  2128. (at 167.3352 102.87 0)
  2129. (hide yes)
  2130. (show_name no)
  2131. (do_not_autoplace no)
  2132. (effects
  2133. (font
  2134. (size 1.27 1.27)
  2135. )
  2136. )
  2137. )
  2138. (property "Datasheet" ""
  2139. (at 166.37 99.06 0)
  2140. (hide yes)
  2141. (show_name no)
  2142. (do_not_autoplace no)
  2143. (effects
  2144. (font
  2145. (size 1.27 1.27)
  2146. )
  2147. )
  2148. )
  2149. (property "Description" "Unpolarized capacitor"
  2150. (at 166.37 99.06 0)
  2151. (hide yes)
  2152. (show_name no)
  2153. (do_not_autoplace no)
  2154. (effects
  2155. (font
  2156. (size 1.27 1.27)
  2157. )
  2158. )
  2159. )
  2160. (pin "2"
  2161. (uuid "33558cbe-43d4-440f-9c07-d5598038af5d")
  2162. )
  2163. (pin "1"
  2164. (uuid "c523d828-7488-486a-8808-478af5af4ecb")
  2165. )
  2166. (instances
  2167. (project "cx-copter-schematic"
  2168. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2169. (reference "C18")
  2170. (unit 1)
  2171. )
  2172. )
  2173. )
  2174. )
  2175. (symbol
  2176. (lib_id "power:+3V3")
  2177. (at 166.37 77.47 0)
  2178. (unit 1)
  2179. (body_style 1)
  2180. (exclude_from_sim no)
  2181. (in_bom yes)
  2182. (on_board yes)
  2183. (in_pos_files yes)
  2184. (dnp no)
  2185. (fields_autoplaced yes)
  2186. (uuid "838b112a-ebd6-431b-a1b5-f271c8d2a148")
  2187. (property "Reference" "#PWR037"
  2188. (at 166.37 81.28 0)
  2189. (hide yes)
  2190. (show_name no)
  2191. (do_not_autoplace no)
  2192. (effects
  2193. (font
  2194. (size 1.27 1.27)
  2195. )
  2196. )
  2197. )
  2198. (property "Value" "+3V3"
  2199. (at 166.37 72.39 0)
  2200. (show_name no)
  2201. (do_not_autoplace no)
  2202. (effects
  2203. (font
  2204. (size 1.27 1.27)
  2205. )
  2206. )
  2207. )
  2208. (property "Footprint" ""
  2209. (at 166.37 77.47 0)
  2210. (hide yes)
  2211. (show_name no)
  2212. (do_not_autoplace no)
  2213. (effects
  2214. (font
  2215. (size 1.27 1.27)
  2216. )
  2217. )
  2218. )
  2219. (property "Datasheet" ""
  2220. (at 166.37 77.47 0)
  2221. (hide yes)
  2222. (show_name no)
  2223. (do_not_autoplace no)
  2224. (effects
  2225. (font
  2226. (size 1.27 1.27)
  2227. )
  2228. )
  2229. )
  2230. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2231. (at 166.37 77.47 0)
  2232. (hide yes)
  2233. (show_name no)
  2234. (do_not_autoplace no)
  2235. (effects
  2236. (font
  2237. (size 1.27 1.27)
  2238. )
  2239. )
  2240. )
  2241. (pin "1"
  2242. (uuid "1699ebf9-2689-4148-81a9-4fbf09afddea")
  2243. )
  2244. (instances
  2245. (project "cx-copter-schematic"
  2246. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2247. (reference "#PWR037")
  2248. (unit 1)
  2249. )
  2250. )
  2251. )
  2252. )
  2253. (symbol
  2254. (lib_id "power:GND")
  2255. (at 166.37 105.41 0)
  2256. (unit 1)
  2257. (body_style 1)
  2258. (exclude_from_sim no)
  2259. (in_bom yes)
  2260. (on_board yes)
  2261. (in_pos_files yes)
  2262. (dnp no)
  2263. (fields_autoplaced yes)
  2264. (uuid "87e13787-1375-4030-a649-29d2131a75ad")
  2265. (property "Reference" "#PWR040"
  2266. (at 166.37 111.76 0)
  2267. (hide yes)
  2268. (show_name no)
  2269. (do_not_autoplace no)
  2270. (effects
  2271. (font
  2272. (size 1.27 1.27)
  2273. )
  2274. )
  2275. )
  2276. (property "Value" "GND"
  2277. (at 166.37 110.49 0)
  2278. (show_name no)
  2279. (do_not_autoplace no)
  2280. (effects
  2281. (font
  2282. (size 1.27 1.27)
  2283. )
  2284. )
  2285. )
  2286. (property "Footprint" ""
  2287. (at 166.37 105.41 0)
  2288. (hide yes)
  2289. (show_name no)
  2290. (do_not_autoplace no)
  2291. (effects
  2292. (font
  2293. (size 1.27 1.27)
  2294. )
  2295. )
  2296. )
  2297. (property "Datasheet" ""
  2298. (at 166.37 105.41 0)
  2299. (hide yes)
  2300. (show_name no)
  2301. (do_not_autoplace no)
  2302. (effects
  2303. (font
  2304. (size 1.27 1.27)
  2305. )
  2306. )
  2307. )
  2308. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2309. (at 166.37 105.41 0)
  2310. (hide yes)
  2311. (show_name no)
  2312. (do_not_autoplace no)
  2313. (effects
  2314. (font
  2315. (size 1.27 1.27)
  2316. )
  2317. )
  2318. )
  2319. (pin "1"
  2320. (uuid "af8ca7b0-290f-4c21-930f-5c3b9ea01df3")
  2321. )
  2322. (instances
  2323. (project "cx-copter-schematic"
  2324. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2325. (reference "#PWR040")
  2326. (unit 1)
  2327. )
  2328. )
  2329. )
  2330. )
  2331. (symbol
  2332. (lib_id "power:GND")
  2333. (at 123.19 142.24 0)
  2334. (unit 1)
  2335. (body_style 1)
  2336. (exclude_from_sim no)
  2337. (in_bom yes)
  2338. (on_board yes)
  2339. (in_pos_files yes)
  2340. (dnp no)
  2341. (fields_autoplaced yes)
  2342. (uuid "88e5e784-a118-4b08-a8c3-b6290747dc5f")
  2343. (property "Reference" "#PWR045"
  2344. (at 123.19 148.59 0)
  2345. (hide yes)
  2346. (show_name no)
  2347. (do_not_autoplace no)
  2348. (effects
  2349. (font
  2350. (size 1.27 1.27)
  2351. )
  2352. )
  2353. )
  2354. (property "Value" "GND"
  2355. (at 123.19 147.32 0)
  2356. (show_name no)
  2357. (do_not_autoplace no)
  2358. (effects
  2359. (font
  2360. (size 1.27 1.27)
  2361. )
  2362. )
  2363. )
  2364. (property "Footprint" ""
  2365. (at 123.19 142.24 0)
  2366. (hide yes)
  2367. (show_name no)
  2368. (do_not_autoplace no)
  2369. (effects
  2370. (font
  2371. (size 1.27 1.27)
  2372. )
  2373. )
  2374. )
  2375. (property "Datasheet" ""
  2376. (at 123.19 142.24 0)
  2377. (hide yes)
  2378. (show_name no)
  2379. (do_not_autoplace no)
  2380. (effects
  2381. (font
  2382. (size 1.27 1.27)
  2383. )
  2384. )
  2385. )
  2386. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2387. (at 123.19 142.24 0)
  2388. (hide yes)
  2389. (show_name no)
  2390. (do_not_autoplace no)
  2391. (effects
  2392. (font
  2393. (size 1.27 1.27)
  2394. )
  2395. )
  2396. )
  2397. (pin "1"
  2398. (uuid "c6894bdb-2628-4a73-a0b3-762ea352a0f1")
  2399. )
  2400. (instances
  2401. (project "cx-copter-schematic"
  2402. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2403. (reference "#PWR045")
  2404. (unit 1)
  2405. )
  2406. )
  2407. )
  2408. )
  2409. (symbol
  2410. (lib_id "power:GND")
  2411. (at 140.97 142.24 0)
  2412. (unit 1)
  2413. (body_style 1)
  2414. (exclude_from_sim no)
  2415. (in_bom yes)
  2416. (on_board yes)
  2417. (in_pos_files yes)
  2418. (dnp no)
  2419. (fields_autoplaced yes)
  2420. (uuid "937f6cb5-5156-45df-a3f0-c1a672f0dcec")
  2421. (property "Reference" "#PWR046"
  2422. (at 140.97 148.59 0)
  2423. (hide yes)
  2424. (show_name no)
  2425. (do_not_autoplace no)
  2426. (effects
  2427. (font
  2428. (size 1.27 1.27)
  2429. )
  2430. )
  2431. )
  2432. (property "Value" "GND"
  2433. (at 140.97 147.32 0)
  2434. (show_name no)
  2435. (do_not_autoplace no)
  2436. (effects
  2437. (font
  2438. (size 1.27 1.27)
  2439. )
  2440. )
  2441. )
  2442. (property "Footprint" ""
  2443. (at 140.97 142.24 0)
  2444. (hide yes)
  2445. (show_name no)
  2446. (do_not_autoplace no)
  2447. (effects
  2448. (font
  2449. (size 1.27 1.27)
  2450. )
  2451. )
  2452. )
  2453. (property "Datasheet" ""
  2454. (at 140.97 142.24 0)
  2455. (hide yes)
  2456. (show_name no)
  2457. (do_not_autoplace no)
  2458. (effects
  2459. (font
  2460. (size 1.27 1.27)
  2461. )
  2462. )
  2463. )
  2464. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2465. (at 140.97 142.24 0)
  2466. (hide yes)
  2467. (show_name no)
  2468. (do_not_autoplace no)
  2469. (effects
  2470. (font
  2471. (size 1.27 1.27)
  2472. )
  2473. )
  2474. )
  2475. (pin "1"
  2476. (uuid "4a529d57-d221-48e8-b934-8fb04ab46a46")
  2477. )
  2478. (instances
  2479. (project "cx-copter-schematic"
  2480. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2481. (reference "#PWR046")
  2482. (unit 1)
  2483. )
  2484. )
  2485. )
  2486. )
  2487. (symbol
  2488. (lib_id "Device:C")
  2489. (at 123.19 99.06 0)
  2490. (unit 1)
  2491. (body_style 1)
  2492. (exclude_from_sim no)
  2493. (in_bom yes)
  2494. (on_board yes)
  2495. (in_pos_files yes)
  2496. (dnp no)
  2497. (uuid "ca640049-ee99-4bcf-beb7-27059bc317a8")
  2498. (property "Reference" "C19"
  2499. (at 125.476 97.79 0)
  2500. (show_name no)
  2501. (do_not_autoplace no)
  2502. (effects
  2503. (font
  2504. (size 1.27 1.27)
  2505. )
  2506. (justify left)
  2507. )
  2508. )
  2509. (property "Value" "22uF"
  2510. (at 125.476 100.33 0)
  2511. (show_name no)
  2512. (do_not_autoplace no)
  2513. (effects
  2514. (font
  2515. (size 1.27 1.27)
  2516. )
  2517. (justify left)
  2518. )
  2519. )
  2520. (property "Footprint" ""
  2521. (at 124.1552 102.87 0)
  2522. (hide yes)
  2523. (show_name no)
  2524. (do_not_autoplace no)
  2525. (effects
  2526. (font
  2527. (size 1.27 1.27)
  2528. )
  2529. )
  2530. )
  2531. (property "Datasheet" ""
  2532. (at 123.19 99.06 0)
  2533. (hide yes)
  2534. (show_name no)
  2535. (do_not_autoplace no)
  2536. (effects
  2537. (font
  2538. (size 1.27 1.27)
  2539. )
  2540. )
  2541. )
  2542. (property "Description" "Unpolarized capacitor"
  2543. (at 123.19 99.06 0)
  2544. (hide yes)
  2545. (show_name no)
  2546. (do_not_autoplace no)
  2547. (effects
  2548. (font
  2549. (size 1.27 1.27)
  2550. )
  2551. )
  2552. )
  2553. (pin "2"
  2554. (uuid "78e75238-962c-4068-b392-d931355a5b5d")
  2555. )
  2556. (pin "1"
  2557. (uuid "6f7c0a3c-86c5-46b1-bcf4-dabc267afd01")
  2558. )
  2559. (instances
  2560. (project "cx-copter-schematic"
  2561. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2562. (reference "C19")
  2563. (unit 1)
  2564. )
  2565. )
  2566. )
  2567. )
  2568. (symbol
  2569. (lib_id "power:+5V")
  2570. (at 123.19 77.47 0)
  2571. (unit 1)
  2572. (body_style 1)
  2573. (exclude_from_sim no)
  2574. (in_bom yes)
  2575. (on_board yes)
  2576. (in_pos_files yes)
  2577. (dnp no)
  2578. (fields_autoplaced yes)
  2579. (uuid "d4bb3e37-e535-4cc8-9b5d-fa83c6c623a7")
  2580. (property "Reference" "#PWR039"
  2581. (at 123.19 81.28 0)
  2582. (hide yes)
  2583. (show_name no)
  2584. (do_not_autoplace no)
  2585. (effects
  2586. (font
  2587. (size 1.27 1.27)
  2588. )
  2589. )
  2590. )
  2591. (property "Value" "+5V"
  2592. (at 123.19 72.39 0)
  2593. (show_name no)
  2594. (do_not_autoplace no)
  2595. (effects
  2596. (font
  2597. (size 1.27 1.27)
  2598. )
  2599. )
  2600. )
  2601. (property "Footprint" ""
  2602. (at 123.19 77.47 0)
  2603. (hide yes)
  2604. (show_name no)
  2605. (do_not_autoplace no)
  2606. (effects
  2607. (font
  2608. (size 1.27 1.27)
  2609. )
  2610. )
  2611. )
  2612. (property "Datasheet" ""
  2613. (at 123.19 77.47 0)
  2614. (hide yes)
  2615. (show_name no)
  2616. (do_not_autoplace no)
  2617. (effects
  2618. (font
  2619. (size 1.27 1.27)
  2620. )
  2621. )
  2622. )
  2623. (property "Description" "Power symbol creates a global label with name \"+5V\""
  2624. (at 123.19 77.47 0)
  2625. (hide yes)
  2626. (show_name no)
  2627. (do_not_autoplace no)
  2628. (effects
  2629. (font
  2630. (size 1.27 1.27)
  2631. )
  2632. )
  2633. )
  2634. (pin "1"
  2635. (uuid "d6dda649-10e7-4d4f-938e-1a0b4019fa0a")
  2636. )
  2637. (instances
  2638. (project "cx-copter-schematic"
  2639. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2640. (reference "#PWR039")
  2641. (unit 1)
  2642. )
  2643. )
  2644. )
  2645. )
  2646. (symbol
  2647. (lib_id "Device:C")
  2648. (at 154.94 99.06 0)
  2649. (unit 1)
  2650. (body_style 1)
  2651. (exclude_from_sim no)
  2652. (in_bom yes)
  2653. (on_board yes)
  2654. (in_pos_files yes)
  2655. (dnp no)
  2656. (uuid "eb20124c-c4f4-4d13-9beb-168ba0a9c991")
  2657. (property "Reference" "C13"
  2658. (at 157.226 97.79 0)
  2659. (show_name no)
  2660. (do_not_autoplace no)
  2661. (effects
  2662. (font
  2663. (size 1.27 1.27)
  2664. )
  2665. (justify left)
  2666. )
  2667. )
  2668. (property "Value" "22uF"
  2669. (at 157.226 100.33 0)
  2670. (show_name no)
  2671. (do_not_autoplace no)
  2672. (effects
  2673. (font
  2674. (size 1.27 1.27)
  2675. )
  2676. (justify left)
  2677. )
  2678. )
  2679. (property "Footprint" ""
  2680. (at 155.9052 102.87 0)
  2681. (hide yes)
  2682. (show_name no)
  2683. (do_not_autoplace no)
  2684. (effects
  2685. (font
  2686. (size 1.27 1.27)
  2687. )
  2688. )
  2689. )
  2690. (property "Datasheet" ""
  2691. (at 154.94 99.06 0)
  2692. (hide yes)
  2693. (show_name no)
  2694. (do_not_autoplace no)
  2695. (effects
  2696. (font
  2697. (size 1.27 1.27)
  2698. )
  2699. )
  2700. )
  2701. (property "Description" "Unpolarized capacitor"
  2702. (at 154.94 99.06 0)
  2703. (hide yes)
  2704. (show_name no)
  2705. (do_not_autoplace no)
  2706. (effects
  2707. (font
  2708. (size 1.27 1.27)
  2709. )
  2710. )
  2711. )
  2712. (pin "2"
  2713. (uuid "7a2295c4-b6e2-4781-b27a-c5eeaba21ffd")
  2714. )
  2715. (pin "1"
  2716. (uuid "8781be18-101f-48ab-a13d-d5fa041ffd7b")
  2717. )
  2718. (instances
  2719. (project "cx-copter-schematic"
  2720. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
  2721. (reference "C13")
  2722. (unit 1)
  2723. )
  2724. )
  2725. )
  2726. )
  2727. )