communication.kicad_sch 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "7cc889a8-1a63-4464-b152-8fe23a9c82be")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Connector_Generic:Conn_02x01"
  9. (pin_names
  10. (offset 1.016)
  11. (hide yes)
  12. )
  13. (exclude_from_sim no)
  14. (in_bom yes)
  15. (on_board yes)
  16. (in_pos_files yes)
  17. (duplicate_pin_numbers_are_jumpers no)
  18. (property "Reference" "J"
  19. (at 1.27 2.54 0)
  20. (show_name no)
  21. (do_not_autoplace no)
  22. (effects
  23. (font
  24. (size 1.27 1.27)
  25. )
  26. )
  27. )
  28. (property "Value" "Conn_02x01"
  29. (at 1.27 -2.54 0)
  30. (show_name no)
  31. (do_not_autoplace no)
  32. (effects
  33. (font
  34. (size 1.27 1.27)
  35. )
  36. )
  37. )
  38. (property "Footprint" ""
  39. (at 0 0 0)
  40. (show_name no)
  41. (do_not_autoplace no)
  42. (hide yes)
  43. (effects
  44. (font
  45. (size 1.27 1.27)
  46. )
  47. )
  48. )
  49. (property "Datasheet" ""
  50. (at 0 0 0)
  51. (show_name no)
  52. (do_not_autoplace no)
  53. (hide yes)
  54. (effects
  55. (font
  56. (size 1.27 1.27)
  57. )
  58. )
  59. )
  60. (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
  61. (at 0 0 0)
  62. (show_name no)
  63. (do_not_autoplace no)
  64. (hide yes)
  65. (effects
  66. (font
  67. (size 1.27 1.27)
  68. )
  69. )
  70. )
  71. (property "ki_keywords" "connector"
  72. (at 0 0 0)
  73. (show_name no)
  74. (do_not_autoplace no)
  75. (hide yes)
  76. (effects
  77. (font
  78. (size 1.27 1.27)
  79. )
  80. )
  81. )
  82. (property "ki_fp_filters" "Connector*:*_2x??_*"
  83. (at 0 0 0)
  84. (show_name no)
  85. (do_not_autoplace no)
  86. (hide yes)
  87. (effects
  88. (font
  89. (size 1.27 1.27)
  90. )
  91. )
  92. )
  93. (symbol "Conn_02x01_1_1"
  94. (rectangle
  95. (start -1.27 1.27)
  96. (end 3.81 -1.27)
  97. (stroke
  98. (width 0.254)
  99. (type default)
  100. )
  101. (fill
  102. (type background)
  103. )
  104. )
  105. (rectangle
  106. (start -1.27 0.127)
  107. (end 0 -0.127)
  108. (stroke
  109. (width 0.1524)
  110. (type default)
  111. )
  112. (fill
  113. (type none)
  114. )
  115. )
  116. (rectangle
  117. (start 3.81 0.127)
  118. (end 2.54 -0.127)
  119. (stroke
  120. (width 0.1524)
  121. (type default)
  122. )
  123. (fill
  124. (type none)
  125. )
  126. )
  127. (pin passive line
  128. (at -5.08 0 0)
  129. (length 3.81)
  130. (name "Pin_1"
  131. (effects
  132. (font
  133. (size 1.27 1.27)
  134. )
  135. )
  136. )
  137. (number "1"
  138. (effects
  139. (font
  140. (size 1.27 1.27)
  141. )
  142. )
  143. )
  144. )
  145. (pin passive line
  146. (at 7.62 0 180)
  147. (length 3.81)
  148. (name "Pin_2"
  149. (effects
  150. (font
  151. (size 1.27 1.27)
  152. )
  153. )
  154. )
  155. (number "2"
  156. (effects
  157. (font
  158. (size 1.27 1.27)
  159. )
  160. )
  161. )
  162. )
  163. )
  164. (embedded_fonts no)
  165. )
  166. (symbol "Device:C"
  167. (pin_numbers
  168. (hide yes)
  169. )
  170. (pin_names
  171. (offset 0.254)
  172. )
  173. (exclude_from_sim no)
  174. (in_bom yes)
  175. (on_board yes)
  176. (in_pos_files yes)
  177. (duplicate_pin_numbers_are_jumpers no)
  178. (property "Reference" "C"
  179. (at 0.635 2.54 0)
  180. (show_name no)
  181. (do_not_autoplace no)
  182. (effects
  183. (font
  184. (size 1.27 1.27)
  185. )
  186. (justify left)
  187. )
  188. )
  189. (property "Value" "C"
  190. (at 0.635 -2.54 0)
  191. (show_name no)
  192. (do_not_autoplace no)
  193. (effects
  194. (font
  195. (size 1.27 1.27)
  196. )
  197. (justify left)
  198. )
  199. )
  200. (property "Footprint" ""
  201. (at 0.9652 -3.81 0)
  202. (show_name no)
  203. (do_not_autoplace no)
  204. (hide yes)
  205. (effects
  206. (font
  207. (size 1.27 1.27)
  208. )
  209. )
  210. )
  211. (property "Datasheet" ""
  212. (at 0 0 0)
  213. (show_name no)
  214. (do_not_autoplace no)
  215. (hide yes)
  216. (effects
  217. (font
  218. (size 1.27 1.27)
  219. )
  220. )
  221. )
  222. (property "Description" "Unpolarized capacitor"
  223. (at 0 0 0)
  224. (show_name no)
  225. (do_not_autoplace no)
  226. (hide yes)
  227. (effects
  228. (font
  229. (size 1.27 1.27)
  230. )
  231. )
  232. )
  233. (property "ki_keywords" "cap capacitor"
  234. (at 0 0 0)
  235. (show_name no)
  236. (do_not_autoplace no)
  237. (hide yes)
  238. (effects
  239. (font
  240. (size 1.27 1.27)
  241. )
  242. )
  243. )
  244. (property "ki_fp_filters" "C_*"
  245. (at 0 0 0)
  246. (show_name no)
  247. (do_not_autoplace no)
  248. (hide yes)
  249. (effects
  250. (font
  251. (size 1.27 1.27)
  252. )
  253. )
  254. )
  255. (symbol "C_0_1"
  256. (polyline
  257. (pts
  258. (xy -2.032 0.762) (xy 2.032 0.762)
  259. )
  260. (stroke
  261. (width 0.508)
  262. (type default)
  263. )
  264. (fill
  265. (type none)
  266. )
  267. )
  268. (polyline
  269. (pts
  270. (xy -2.032 -0.762) (xy 2.032 -0.762)
  271. )
  272. (stroke
  273. (width 0.508)
  274. (type default)
  275. )
  276. (fill
  277. (type none)
  278. )
  279. )
  280. )
  281. (symbol "C_1_1"
  282. (pin passive line
  283. (at 0 3.81 270)
  284. (length 2.794)
  285. (name ""
  286. (effects
  287. (font
  288. (size 1.27 1.27)
  289. )
  290. )
  291. )
  292. (number "1"
  293. (effects
  294. (font
  295. (size 1.27 1.27)
  296. )
  297. )
  298. )
  299. )
  300. (pin passive line
  301. (at 0 -3.81 90)
  302. (length 2.794)
  303. (name ""
  304. (effects
  305. (font
  306. (size 1.27 1.27)
  307. )
  308. )
  309. )
  310. (number "2"
  311. (effects
  312. (font
  313. (size 1.27 1.27)
  314. )
  315. )
  316. )
  317. )
  318. )
  319. (embedded_fonts no)
  320. )
  321. (symbol "Device:R"
  322. (pin_numbers
  323. (hide yes)
  324. )
  325. (pin_names
  326. (offset 0)
  327. )
  328. (exclude_from_sim no)
  329. (in_bom yes)
  330. (on_board yes)
  331. (in_pos_files yes)
  332. (duplicate_pin_numbers_are_jumpers no)
  333. (property "Reference" "R"
  334. (at 2.032 0 90)
  335. (show_name no)
  336. (do_not_autoplace no)
  337. (effects
  338. (font
  339. (size 1.27 1.27)
  340. )
  341. )
  342. )
  343. (property "Value" "R"
  344. (at 0 0 90)
  345. (show_name no)
  346. (do_not_autoplace no)
  347. (effects
  348. (font
  349. (size 1.27 1.27)
  350. )
  351. )
  352. )
  353. (property "Footprint" ""
  354. (at -1.778 0 90)
  355. (show_name no)
  356. (do_not_autoplace no)
  357. (hide yes)
  358. (effects
  359. (font
  360. (size 1.27 1.27)
  361. )
  362. )
  363. )
  364. (property "Datasheet" ""
  365. (at 0 0 0)
  366. (show_name no)
  367. (do_not_autoplace no)
  368. (hide yes)
  369. (effects
  370. (font
  371. (size 1.27 1.27)
  372. )
  373. )
  374. )
  375. (property "Description" "Resistor"
  376. (at 0 0 0)
  377. (show_name no)
  378. (do_not_autoplace no)
  379. (hide yes)
  380. (effects
  381. (font
  382. (size 1.27 1.27)
  383. )
  384. )
  385. )
  386. (property "ki_keywords" "R res resistor"
  387. (at 0 0 0)
  388. (show_name no)
  389. (do_not_autoplace no)
  390. (hide yes)
  391. (effects
  392. (font
  393. (size 1.27 1.27)
  394. )
  395. )
  396. )
  397. (property "ki_fp_filters" "R_*"
  398. (at 0 0 0)
  399. (show_name no)
  400. (do_not_autoplace no)
  401. (hide yes)
  402. (effects
  403. (font
  404. (size 1.27 1.27)
  405. )
  406. )
  407. )
  408. (symbol "R_0_1"
  409. (rectangle
  410. (start -1.016 -2.54)
  411. (end 1.016 2.54)
  412. (stroke
  413. (width 0.254)
  414. (type default)
  415. )
  416. (fill
  417. (type none)
  418. )
  419. )
  420. )
  421. (symbol "R_1_1"
  422. (pin passive line
  423. (at 0 3.81 270)
  424. (length 1.27)
  425. (name ""
  426. (effects
  427. (font
  428. (size 1.27 1.27)
  429. )
  430. )
  431. )
  432. (number "1"
  433. (effects
  434. (font
  435. (size 1.27 1.27)
  436. )
  437. )
  438. )
  439. )
  440. (pin passive line
  441. (at 0 -3.81 90)
  442. (length 1.27)
  443. (name ""
  444. (effects
  445. (font
  446. (size 1.27 1.27)
  447. )
  448. )
  449. )
  450. (number "2"
  451. (effects
  452. (font
  453. (size 1.27 1.27)
  454. )
  455. )
  456. )
  457. )
  458. )
  459. (embedded_fonts no)
  460. )
  461. (symbol "ESP_modules:ESP-01"
  462. (exclude_from_sim no)
  463. (in_bom yes)
  464. (on_board yes)
  465. (in_pos_files yes)
  466. (duplicate_pin_numbers_are_jumpers no)
  467. (property "Reference" "U"
  468. (at -9.652 18.034 0)
  469. (show_name no)
  470. (do_not_autoplace no)
  471. (effects
  472. (font
  473. (size 1.27 1.27)
  474. )
  475. )
  476. )
  477. (property "Value" "ESP-01"
  478. (at 6.096 18.034 0)
  479. (show_name no)
  480. (do_not_autoplace no)
  481. (effects
  482. (font
  483. (size 1.27 1.27)
  484. )
  485. )
  486. )
  487. (property "Footprint" ""
  488. (at 0 0 0)
  489. (show_name no)
  490. (do_not_autoplace no)
  491. (hide yes)
  492. (effects
  493. (font
  494. (size 1.27 1.27)
  495. )
  496. )
  497. )
  498. (property "Datasheet" "https://academy.cba.mit.edu/classes/networking_communications/ESP8266/esp01.pdf"
  499. (at 0 0 0)
  500. (show_name no)
  501. (do_not_autoplace no)
  502. (hide yes)
  503. (effects
  504. (font
  505. (size 1.27 1.27)
  506. )
  507. )
  508. )
  509. (property "Description" ""
  510. (at 0 0 0)
  511. (show_name no)
  512. (do_not_autoplace no)
  513. (hide yes)
  514. (effects
  515. (font
  516. (size 1.27 1.27)
  517. )
  518. )
  519. )
  520. (symbol "ESP-01_1_1"
  521. (rectangle
  522. (start -10.16 17.78)
  523. (end 10.16 -17.78)
  524. (stroke
  525. (width 0)
  526. (type solid)
  527. )
  528. (fill
  529. (type background)
  530. )
  531. )
  532. (pin power_in line
  533. (at 0 -20.32 90)
  534. (length 2.54)
  535. (name "GND"
  536. (effects
  537. (font
  538. (size 1.27 1.27)
  539. )
  540. )
  541. )
  542. (number "1"
  543. (effects
  544. (font
  545. (size 1.27 1.27)
  546. )
  547. )
  548. )
  549. )
  550. (pin bidirectional line
  551. (at 12.7 -1.27 180)
  552. (length 2.54)
  553. (name "GPIO2"
  554. (effects
  555. (font
  556. (size 1.27 1.27)
  557. )
  558. )
  559. )
  560. (number "2"
  561. (effects
  562. (font
  563. (size 1.27 1.27)
  564. )
  565. )
  566. )
  567. )
  568. (pin bidirectional line
  569. (at 12.7 1.27 180)
  570. (length 2.54)
  571. (name "GPIO0"
  572. (effects
  573. (font
  574. (size 1.27 1.27)
  575. )
  576. )
  577. )
  578. (number "3"
  579. (effects
  580. (font
  581. (size 1.27 1.27)
  582. )
  583. )
  584. )
  585. )
  586. (pin input line
  587. (at -12.7 -7.62 0)
  588. (length 2.54)
  589. (name "RX/GPIO3"
  590. (effects
  591. (font
  592. (size 1.27 1.27)
  593. )
  594. )
  595. )
  596. (number "4"
  597. (effects
  598. (font
  599. (size 1.27 1.27)
  600. )
  601. )
  602. )
  603. )
  604. (pin power_in line
  605. (at 0 20.32 270)
  606. (length 2.54)
  607. (name "VCC"
  608. (effects
  609. (font
  610. (size 1.27 1.27)
  611. )
  612. )
  613. )
  614. (number "5"
  615. (effects
  616. (font
  617. (size 1.27 1.27)
  618. )
  619. )
  620. )
  621. )
  622. (pin input line
  623. (at -12.7 10.16 0)
  624. (length 2.54)
  625. (name "RST"
  626. (effects
  627. (font
  628. (size 1.27 1.27)
  629. )
  630. )
  631. )
  632. (number "6"
  633. (effects
  634. (font
  635. (size 1.27 1.27)
  636. )
  637. )
  638. )
  639. )
  640. (pin bidirectional line
  641. (at -12.7 7.62 0)
  642. (length 2.54)
  643. (name "CH_PD"
  644. (effects
  645. (font
  646. (size 1.27 1.27)
  647. )
  648. )
  649. )
  650. (number "7"
  651. (effects
  652. (font
  653. (size 1.27 1.27)
  654. )
  655. )
  656. )
  657. )
  658. (pin output line
  659. (at -12.7 -10.16 0)
  660. (length 2.54)
  661. (name "TX/GPIO1"
  662. (effects
  663. (font
  664. (size 1.27 1.27)
  665. )
  666. )
  667. )
  668. (number "8"
  669. (effects
  670. (font
  671. (size 1.27 1.27)
  672. )
  673. )
  674. )
  675. )
  676. )
  677. (embedded_fonts no)
  678. )
  679. (symbol "power:+3V3"
  680. (power global)
  681. (pin_numbers
  682. (hide yes)
  683. )
  684. (pin_names
  685. (offset 0)
  686. (hide yes)
  687. )
  688. (exclude_from_sim no)
  689. (in_bom yes)
  690. (on_board yes)
  691. (in_pos_files yes)
  692. (duplicate_pin_numbers_are_jumpers no)
  693. (property "Reference" "#PWR"
  694. (at 0 -3.81 0)
  695. (show_name no)
  696. (do_not_autoplace no)
  697. (hide yes)
  698. (effects
  699. (font
  700. (size 1.27 1.27)
  701. )
  702. )
  703. )
  704. (property "Value" "+3V3"
  705. (at 0 3.556 0)
  706. (show_name no)
  707. (do_not_autoplace no)
  708. (effects
  709. (font
  710. (size 1.27 1.27)
  711. )
  712. )
  713. )
  714. (property "Footprint" ""
  715. (at 0 0 0)
  716. (show_name no)
  717. (do_not_autoplace no)
  718. (hide yes)
  719. (effects
  720. (font
  721. (size 1.27 1.27)
  722. )
  723. )
  724. )
  725. (property "Datasheet" ""
  726. (at 0 0 0)
  727. (show_name no)
  728. (do_not_autoplace no)
  729. (hide yes)
  730. (effects
  731. (font
  732. (size 1.27 1.27)
  733. )
  734. )
  735. )
  736. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  737. (at 0 0 0)
  738. (show_name no)
  739. (do_not_autoplace no)
  740. (hide yes)
  741. (effects
  742. (font
  743. (size 1.27 1.27)
  744. )
  745. )
  746. )
  747. (property "ki_keywords" "global power"
  748. (at 0 0 0)
  749. (show_name no)
  750. (do_not_autoplace no)
  751. (hide yes)
  752. (effects
  753. (font
  754. (size 1.27 1.27)
  755. )
  756. )
  757. )
  758. (symbol "+3V3_0_1"
  759. (polyline
  760. (pts
  761. (xy -0.762 1.27) (xy 0 2.54)
  762. )
  763. (stroke
  764. (width 0)
  765. (type default)
  766. )
  767. (fill
  768. (type none)
  769. )
  770. )
  771. (polyline
  772. (pts
  773. (xy 0 2.54) (xy 0.762 1.27)
  774. )
  775. (stroke
  776. (width 0)
  777. (type default)
  778. )
  779. (fill
  780. (type none)
  781. )
  782. )
  783. (polyline
  784. (pts
  785. (xy 0 0) (xy 0 2.54)
  786. )
  787. (stroke
  788. (width 0)
  789. (type default)
  790. )
  791. (fill
  792. (type none)
  793. )
  794. )
  795. )
  796. (symbol "+3V3_1_1"
  797. (pin power_in line
  798. (at 0 0 90)
  799. (length 0)
  800. (name ""
  801. (effects
  802. (font
  803. (size 1.27 1.27)
  804. )
  805. )
  806. )
  807. (number "1"
  808. (effects
  809. (font
  810. (size 1.27 1.27)
  811. )
  812. )
  813. )
  814. )
  815. )
  816. (embedded_fonts no)
  817. )
  818. (symbol "power:GND"
  819. (power global)
  820. (pin_numbers
  821. (hide yes)
  822. )
  823. (pin_names
  824. (offset 0)
  825. (hide yes)
  826. )
  827. (exclude_from_sim no)
  828. (in_bom yes)
  829. (on_board yes)
  830. (in_pos_files yes)
  831. (duplicate_pin_numbers_are_jumpers no)
  832. (property "Reference" "#PWR"
  833. (at 0 -6.35 0)
  834. (show_name no)
  835. (do_not_autoplace no)
  836. (hide yes)
  837. (effects
  838. (font
  839. (size 1.27 1.27)
  840. )
  841. )
  842. )
  843. (property "Value" "GND"
  844. (at 0 -3.81 0)
  845. (show_name no)
  846. (do_not_autoplace no)
  847. (effects
  848. (font
  849. (size 1.27 1.27)
  850. )
  851. )
  852. )
  853. (property "Footprint" ""
  854. (at 0 0 0)
  855. (show_name no)
  856. (do_not_autoplace no)
  857. (hide yes)
  858. (effects
  859. (font
  860. (size 1.27 1.27)
  861. )
  862. )
  863. )
  864. (property "Datasheet" ""
  865. (at 0 0 0)
  866. (show_name no)
  867. (do_not_autoplace no)
  868. (hide yes)
  869. (effects
  870. (font
  871. (size 1.27 1.27)
  872. )
  873. )
  874. )
  875. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  876. (at 0 0 0)
  877. (show_name no)
  878. (do_not_autoplace no)
  879. (hide yes)
  880. (effects
  881. (font
  882. (size 1.27 1.27)
  883. )
  884. )
  885. )
  886. (property "ki_keywords" "global power"
  887. (at 0 0 0)
  888. (show_name no)
  889. (do_not_autoplace no)
  890. (hide yes)
  891. (effects
  892. (font
  893. (size 1.27 1.27)
  894. )
  895. )
  896. )
  897. (symbol "GND_0_1"
  898. (polyline
  899. (pts
  900. (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)
  901. )
  902. (stroke
  903. (width 0)
  904. (type default)
  905. )
  906. (fill
  907. (type none)
  908. )
  909. )
  910. )
  911. (symbol "GND_1_1"
  912. (pin power_in line
  913. (at 0 0 270)
  914. (length 0)
  915. (name ""
  916. (effects
  917. (font
  918. (size 1.27 1.27)
  919. )
  920. )
  921. )
  922. (number "1"
  923. (effects
  924. (font
  925. (size 1.27 1.27)
  926. )
  927. )
  928. )
  929. )
  930. )
  931. (embedded_fonts no)
  932. )
  933. )
  934. (junction
  935. (at 143.51 57.15)
  936. (diameter 0)
  937. (color 0 0 0 0)
  938. (uuid "466f71c4-203e-46b7-ab11-22fe229d31d0")
  939. )
  940. (junction
  941. (at 107.95 113.03)
  942. (diameter 0)
  943. (color 0 0 0 0)
  944. (uuid "69b58a09-972f-4c23-afc6-7a366868192e")
  945. )
  946. (junction
  947. (at 107.95 77.47)
  948. (diameter 0)
  949. (color 0 0 0 0)
  950. (uuid "82258aa3-5617-4b33-834e-2b232ef755b6")
  951. )
  952. (junction
  953. (at 119.38 92.71)
  954. (diameter 0)
  955. (color 0 0 0 0)
  956. (uuid "831653a2-cf66-4a52-aa5b-b0c708b582e4")
  957. )
  958. (junction
  959. (at 107.95 95.25)
  960. (diameter 0)
  961. (color 0 0 0 0)
  962. (uuid "c207c84b-9854-4884-9bc3-626b086ac832")
  963. )
  964. (wire
  965. (pts
  966. (xy 156.21 101.6) (xy 158.75 101.6)
  967. )
  968. (stroke
  969. (width 0)
  970. (type default)
  971. )
  972. (uuid "019453bc-6f52-4a50-9f1a-b605a602c03d")
  973. )
  974. (wire
  975. (pts
  976. (xy 107.95 110.49) (xy 107.95 113.03)
  977. )
  978. (stroke
  979. (width 0)
  980. (type default)
  981. )
  982. (uuid "033ba43f-fb3a-4709-9e7e-fb12e8e86212")
  983. )
  984. (wire
  985. (pts
  986. (xy 107.95 74.93) (xy 107.95 77.47)
  987. )
  988. (stroke
  989. (width 0)
  990. (type default)
  991. )
  992. (uuid "0f7b90b1-4609-4671-8f1c-d990aa0d1b0b")
  993. )
  994. (wire
  995. (pts
  996. (xy 119.38 92.71) (xy 119.38 97.79)
  997. )
  998. (stroke
  999. (width 0)
  1000. (type default)
  1001. )
  1002. (uuid "17a552cc-5dfb-46eb-8414-a2dc4eaceff1")
  1003. )
  1004. (wire
  1005. (pts
  1006. (xy 1.3462 1.3462) (xy 3.8862 1.3462)
  1007. )
  1008. (stroke
  1009. (width 0)
  1010. (type default)
  1011. )
  1012. (uuid "1b8ecd04-448c-423d-aa12-583e1d946493")
  1013. )
  1014. (wire
  1015. (pts
  1016. (xy 119.38 110.49) (xy 119.38 113.03)
  1017. )
  1018. (stroke
  1019. (width 0)
  1020. (type default)
  1021. )
  1022. (uuid "215f48f4-7c03-460c-8154-3b03968e3c89")
  1023. )
  1024. (wire
  1025. (pts
  1026. (xy 1.3462 16.5862) (xy 1.3462 1.3462)
  1027. )
  1028. (stroke
  1029. (width 0)
  1030. (type default)
  1031. )
  1032. (uuid "3493401a-b003-4f11-b698-e2963fe7852e")
  1033. )
  1034. (wire
  1035. (pts
  1036. (xy 107.95 95.25) (xy 107.95 97.79)
  1037. )
  1038. (stroke
  1039. (width 0)
  1040. (type default)
  1041. )
  1042. (uuid "3b80f4d8-b78a-4daf-90fd-ef8f3a22a164")
  1043. )
  1044. (wire
  1045. (pts
  1046. (xy 107.95 87.63) (xy 107.95 95.25)
  1047. )
  1048. (stroke
  1049. (width 0)
  1050. (type default)
  1051. )
  1052. (uuid "3ff5e314-f6f8-4333-9d13-75d5f1e6168c")
  1053. )
  1054. (wire
  1055. (pts
  1056. (xy 107.95 113.03) (xy 119.38 113.03)
  1057. )
  1058. (stroke
  1059. (width 0)
  1060. (type default)
  1061. )
  1062. (uuid "442246ba-9a3c-4040-8acd-06931e4ac220")
  1063. )
  1064. (wire
  1065. (pts
  1066. (xy 143.51 123.19) (xy 143.51 125.73)
  1067. )
  1068. (stroke
  1069. (width 0)
  1070. (type default)
  1071. )
  1072. (uuid "4c43359b-5ca3-4277-a42b-fa348601de64")
  1073. )
  1074. (wire
  1075. (pts
  1076. (xy 35.6362 20.3962) (xy 0.0762 20.3962)
  1077. )
  1078. (stroke
  1079. (width 0)
  1080. (type default)
  1081. )
  1082. (uuid "5dbbec94-4f33-4df6-9abb-1c928867fb09")
  1083. )
  1084. (wire
  1085. (pts
  1086. (xy 143.51 57.15) (xy 143.51 82.55)
  1087. )
  1088. (stroke
  1089. (width 0)
  1090. (type default)
  1091. )
  1092. (uuid "64a3a6ff-a061-4d60-89f9-74fa4a7e0a1f")
  1093. )
  1094. (wire
  1095. (pts
  1096. (xy 128.27 110.49) (xy 130.81 110.49)
  1097. )
  1098. (stroke
  1099. (width 0)
  1100. (type default)
  1101. )
  1102. (uuid "6d06e2e9-fe5e-46a0-a82c-91c0568e1447")
  1103. )
  1104. (wire
  1105. (pts
  1106. (xy 107.95 77.47) (xy 119.38 77.47)
  1107. )
  1108. (stroke
  1109. (width 0)
  1110. (type default)
  1111. )
  1112. (uuid "72de7c34-63ea-410c-bdaa-590375f793e8")
  1113. )
  1114. (wire
  1115. (pts
  1116. (xy 119.38 92.71) (xy 130.81 92.71)
  1117. )
  1118. (stroke
  1119. (width 0)
  1120. (type default)
  1121. )
  1122. (uuid "8358198d-45aa-4214-badb-eb836613d26e")
  1123. )
  1124. (wire
  1125. (pts
  1126. (xy 149.86 69.85) (xy 149.86 67.31)
  1127. )
  1128. (stroke
  1129. (width 0)
  1130. (type default)
  1131. )
  1132. (uuid "83e783a1-8540-4c25-bb1c-f254edffa0e3")
  1133. )
  1134. (wire
  1135. (pts
  1136. (xy 107.95 77.47) (xy 107.95 80.01)
  1137. )
  1138. (stroke
  1139. (width 0)
  1140. (type default)
  1141. )
  1142. (uuid "a7bc42ac-ef09-4002-8523-8a095fc15e6c")
  1143. )
  1144. (wire
  1145. (pts
  1146. (xy 128.27 113.03) (xy 130.81 113.03)
  1147. )
  1148. (stroke
  1149. (width 0)
  1150. (type default)
  1151. )
  1152. (uuid "adc95c3b-0351-42fd-ac1d-ac7dbb3761b6")
  1153. )
  1154. (wire
  1155. (pts
  1156. (xy 119.38 87.63) (xy 119.38 92.71)
  1157. )
  1158. (stroke
  1159. (width 0)
  1160. (type default)
  1161. )
  1162. (uuid "b7fdb6e3-1940-49bb-8eae-fd3bbc7c18c6")
  1163. )
  1164. (wire
  1165. (pts
  1166. (xy 107.95 115.57) (xy 107.95 113.03)
  1167. )
  1168. (stroke
  1169. (width 0)
  1170. (type default)
  1171. )
  1172. (uuid "c95645fb-19a5-44ee-9cf6-b4f6794c11dd")
  1173. )
  1174. (wire
  1175. (pts
  1176. (xy 0.0762 0.0762) (xy 1.3462 0.0762)
  1177. )
  1178. (stroke
  1179. (width 0)
  1180. (type default)
  1181. )
  1182. (uuid "d96d8dda-27c9-4642-820b-e90d31a65231")
  1183. )
  1184. (wire
  1185. (pts
  1186. (xy 119.38 77.47) (xy 119.38 80.01)
  1187. )
  1188. (stroke
  1189. (width 0)
  1190. (type default)
  1191. )
  1192. (uuid "dc9ec121-ba7b-4d80-adce-91a308d5f715")
  1193. )
  1194. (wire
  1195. (pts
  1196. (xy 156.21 104.14) (xy 158.75 104.14)
  1197. )
  1198. (stroke
  1199. (width 0)
  1200. (type default)
  1201. )
  1202. (uuid "e445b083-d251-42f2-b04f-a2eca713cfd9")
  1203. )
  1204. (wire
  1205. (pts
  1206. (xy 107.95 95.25) (xy 130.81 95.25)
  1207. )
  1208. (stroke
  1209. (width 0)
  1210. (type default)
  1211. )
  1212. (uuid "e4dd9f49-06ee-49e7-b96a-a4531646c240")
  1213. )
  1214. (wire
  1215. (pts
  1216. (xy 143.51 54.61) (xy 143.51 57.15)
  1217. )
  1218. (stroke
  1219. (width 0)
  1220. (type default)
  1221. )
  1222. (uuid "eaed46a2-ec18-491b-bdd3-f22dc8e44992")
  1223. )
  1224. (wire
  1225. (pts
  1226. (xy 0.0762 20.3962) (xy 0.0762 0.0762)
  1227. )
  1228. (stroke
  1229. (width 0)
  1230. (type default)
  1231. )
  1232. (uuid "ef7513e2-b423-4d3b-98a3-e1585dc3d59c")
  1233. )
  1234. (wire
  1235. (pts
  1236. (xy 35.6362 16.5862) (xy 1.3462 16.5862)
  1237. )
  1238. (stroke
  1239. (width 0)
  1240. (type default)
  1241. )
  1242. (uuid "f28d5748-13ef-46f2-9f4b-d70feba9157a")
  1243. )
  1244. (wire
  1245. (pts
  1246. (xy 143.51 57.15) (xy 149.86 57.15)
  1247. )
  1248. (stroke
  1249. (width 0)
  1250. (type default)
  1251. )
  1252. (uuid "f5fbaf68-52ea-4a1b-9971-7b9c5d402c9b")
  1253. )
  1254. (wire
  1255. (pts
  1256. (xy 149.86 57.15) (xy 149.86 59.69)
  1257. )
  1258. (stroke
  1259. (width 0)
  1260. (type default)
  1261. )
  1262. (uuid "ffbfcd2f-fc4f-4f92-9479-7016b6a9ce36")
  1263. )
  1264. (hierarchical_label "TX"
  1265. (shape output)
  1266. (at 128.27 113.03 180)
  1267. (effects
  1268. (font
  1269. (size 1.27 1.27)
  1270. )
  1271. (justify right)
  1272. )
  1273. (uuid "a63336f3-c77c-4a8b-ad92-01e89a94ab79")
  1274. )
  1275. (hierarchical_label "RF_LED"
  1276. (shape output)
  1277. (at 158.75 101.6 0)
  1278. (effects
  1279. (font
  1280. (size 1.27 1.27)
  1281. )
  1282. (justify left)
  1283. )
  1284. (uuid "b0bd845a-2426-41d0-9691-8c6a123ca4e1")
  1285. )
  1286. (hierarchical_label "LEDS_CHAIN"
  1287. (shape output)
  1288. (at 158.75 104.14 0)
  1289. (effects
  1290. (font
  1291. (size 1.27 1.27)
  1292. )
  1293. (justify left)
  1294. )
  1295. (uuid "d20a5d34-146a-45d7-8aeb-4f6f59bcae78")
  1296. )
  1297. (hierarchical_label "RX"
  1298. (shape input)
  1299. (at 128.27 110.49 180)
  1300. (effects
  1301. (font
  1302. (size 1.27 1.27)
  1303. )
  1304. (justify right)
  1305. )
  1306. (uuid "f0db8a5e-0d08-4dba-970d-64f12c0127e5")
  1307. )
  1308. (symbol
  1309. (lib_id "Connector_Generic:Conn_02x01")
  1310. (at 107.95 105.41 90)
  1311. (unit 1)
  1312. (body_style 1)
  1313. (exclude_from_sim no)
  1314. (in_bom yes)
  1315. (on_board yes)
  1316. (in_pos_files yes)
  1317. (dnp no)
  1318. (uuid "03e2d858-b0e8-4b86-a389-1adb65298a67")
  1319. (property "Reference" "J1"
  1320. (at 109.22 102.616 90)
  1321. (show_name no)
  1322. (do_not_autoplace no)
  1323. (effects
  1324. (font
  1325. (size 1.27 1.27)
  1326. )
  1327. (justify right)
  1328. )
  1329. )
  1330. (property "Value" "BURN"
  1331. (at 109.22 105.41 90)
  1332. (show_name no)
  1333. (do_not_autoplace no)
  1334. (effects
  1335. (font
  1336. (size 1.27 1.27)
  1337. )
  1338. (justify right)
  1339. )
  1340. )
  1341. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical"
  1342. (at 107.95 105.41 0)
  1343. (hide yes)
  1344. (show_name no)
  1345. (do_not_autoplace no)
  1346. (effects
  1347. (font
  1348. (size 1.27 1.27)
  1349. )
  1350. )
  1351. )
  1352. (property "Datasheet" ""
  1353. (at 107.95 105.41 0)
  1354. (hide yes)
  1355. (show_name no)
  1356. (do_not_autoplace no)
  1357. (effects
  1358. (font
  1359. (size 1.27 1.27)
  1360. )
  1361. )
  1362. )
  1363. (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
  1364. (at 107.95 105.41 0)
  1365. (hide yes)
  1366. (show_name no)
  1367. (do_not_autoplace no)
  1368. (effects
  1369. (font
  1370. (size 1.27 1.27)
  1371. )
  1372. )
  1373. )
  1374. (pin "2"
  1375. (uuid "928edfd6-a93a-4d01-9787-96b110b236dc")
  1376. )
  1377. (pin "1"
  1378. (uuid "0a03438e-c8ab-45fa-8718-8b255d017448")
  1379. )
  1380. (instances
  1381. (project "cx-copter"
  1382. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  1383. (reference "J1")
  1384. (unit 1)
  1385. )
  1386. )
  1387. )
  1388. )
  1389. (symbol
  1390. (lib_id "Device:R")
  1391. (at 119.38 83.82 0)
  1392. (unit 1)
  1393. (body_style 1)
  1394. (exclude_from_sim no)
  1395. (in_bom yes)
  1396. (on_board yes)
  1397. (in_pos_files yes)
  1398. (dnp no)
  1399. (uuid "4e74fe30-ec53-44a7-974d-3820fbcc63de")
  1400. (property "Reference" "R17"
  1401. (at 120.396 82.55 0)
  1402. (show_name no)
  1403. (do_not_autoplace no)
  1404. (effects
  1405. (font
  1406. (size 1.27 1.27)
  1407. )
  1408. (justify left)
  1409. )
  1410. )
  1411. (property "Value" "10k"
  1412. (at 120.396 85.09 0)
  1413. (show_name no)
  1414. (do_not_autoplace no)
  1415. (effects
  1416. (font
  1417. (size 1.27 1.27)
  1418. )
  1419. (justify left)
  1420. )
  1421. )
  1422. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  1423. (at 117.602 83.82 90)
  1424. (hide yes)
  1425. (show_name no)
  1426. (do_not_autoplace no)
  1427. (effects
  1428. (font
  1429. (size 1.27 1.27)
  1430. )
  1431. )
  1432. )
  1433. (property "Datasheet" ""
  1434. (at 119.38 83.82 0)
  1435. (hide yes)
  1436. (show_name no)
  1437. (do_not_autoplace no)
  1438. (effects
  1439. (font
  1440. (size 1.27 1.27)
  1441. )
  1442. )
  1443. )
  1444. (property "Description" "Resistor"
  1445. (at 119.38 83.82 0)
  1446. (hide yes)
  1447. (show_name no)
  1448. (do_not_autoplace no)
  1449. (effects
  1450. (font
  1451. (size 1.27 1.27)
  1452. )
  1453. )
  1454. )
  1455. (pin "2"
  1456. (uuid "7469f3cb-cb50-4514-95e3-afcc908bdd98")
  1457. )
  1458. (pin "1"
  1459. (uuid "6c19f06e-71e9-4696-a242-bf170e4cc825")
  1460. )
  1461. (instances
  1462. (project "cx-copter"
  1463. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  1464. (reference "R17")
  1465. (unit 1)
  1466. )
  1467. )
  1468. )
  1469. )
  1470. (symbol
  1471. (lib_id "Device:C")
  1472. (at 149.86 63.5 0)
  1473. (unit 1)
  1474. (body_style 1)
  1475. (exclude_from_sim no)
  1476. (in_bom yes)
  1477. (on_board yes)
  1478. (in_pos_files yes)
  1479. (dnp no)
  1480. (uuid "708431c3-b935-4ab6-86f4-60cad7d7edff")
  1481. (property "Reference" "C10"
  1482. (at 149.86 61.468 0)
  1483. (show_name no)
  1484. (do_not_autoplace no)
  1485. (effects
  1486. (font
  1487. (size 1.27 1.27)
  1488. )
  1489. (justify left)
  1490. )
  1491. )
  1492. (property "Value" "100n"
  1493. (at 149.86 65.532 0)
  1494. (show_name no)
  1495. (do_not_autoplace no)
  1496. (effects
  1497. (font
  1498. (size 1.27 1.27)
  1499. )
  1500. (justify left)
  1501. )
  1502. )
  1503. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  1504. (at 150.8252 67.31 0)
  1505. (hide yes)
  1506. (show_name no)
  1507. (do_not_autoplace no)
  1508. (effects
  1509. (font
  1510. (size 1.27 1.27)
  1511. )
  1512. )
  1513. )
  1514. (property "Datasheet" ""
  1515. (at 149.86 63.5 0)
  1516. (hide yes)
  1517. (show_name no)
  1518. (do_not_autoplace no)
  1519. (effects
  1520. (font
  1521. (size 1.27 1.27)
  1522. )
  1523. )
  1524. )
  1525. (property "Description" "Unpolarized capacitor"
  1526. (at 149.86 63.5 0)
  1527. (hide yes)
  1528. (show_name no)
  1529. (do_not_autoplace no)
  1530. (effects
  1531. (font
  1532. (size 1.27 1.27)
  1533. )
  1534. )
  1535. )
  1536. (pin "1"
  1537. (uuid "3f75ff90-17f3-49a7-924c-3c5d5481c157")
  1538. )
  1539. (pin "2"
  1540. (uuid "2e8cf8d7-dac3-4e8f-ac33-b4748dff9c91")
  1541. )
  1542. (instances
  1543. (project "cx-copter"
  1544. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  1545. (reference "C10")
  1546. (unit 1)
  1547. )
  1548. )
  1549. )
  1550. )
  1551. (symbol
  1552. (lib_id "Device:R")
  1553. (at 107.95 83.82 0)
  1554. (unit 1)
  1555. (body_style 1)
  1556. (exclude_from_sim no)
  1557. (in_bom yes)
  1558. (on_board yes)
  1559. (in_pos_files yes)
  1560. (dnp no)
  1561. (uuid "8893a592-e7ad-4bb9-86b8-d6dfae161c4f")
  1562. (property "Reference" "R18"
  1563. (at 108.966 82.55 0)
  1564. (show_name no)
  1565. (do_not_autoplace no)
  1566. (effects
  1567. (font
  1568. (size 1.27 1.27)
  1569. )
  1570. (justify left)
  1571. )
  1572. )
  1573. (property "Value" "10k"
  1574. (at 108.966 85.09 0)
  1575. (show_name no)
  1576. (do_not_autoplace no)
  1577. (effects
  1578. (font
  1579. (size 1.27 1.27)
  1580. )
  1581. (justify left)
  1582. )
  1583. )
  1584. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  1585. (at 106.172 83.82 90)
  1586. (hide yes)
  1587. (show_name no)
  1588. (do_not_autoplace no)
  1589. (effects
  1590. (font
  1591. (size 1.27 1.27)
  1592. )
  1593. )
  1594. )
  1595. (property "Datasheet" ""
  1596. (at 107.95 83.82 0)
  1597. (hide yes)
  1598. (show_name no)
  1599. (do_not_autoplace no)
  1600. (effects
  1601. (font
  1602. (size 1.27 1.27)
  1603. )
  1604. )
  1605. )
  1606. (property "Description" "Resistor"
  1607. (at 107.95 83.82 0)
  1608. (hide yes)
  1609. (show_name no)
  1610. (do_not_autoplace no)
  1611. (effects
  1612. (font
  1613. (size 1.27 1.27)
  1614. )
  1615. )
  1616. )
  1617. (pin "2"
  1618. (uuid "e02c6660-fafb-4154-ac16-0995122a50f1")
  1619. )
  1620. (pin "1"
  1621. (uuid "664e64f1-0d71-4440-9424-66266e4f7205")
  1622. )
  1623. (instances
  1624. (project "cx-copter"
  1625. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  1626. (reference "R18")
  1627. (unit 1)
  1628. )
  1629. )
  1630. )
  1631. )
  1632. (symbol
  1633. (lib_id "power:+3V3")
  1634. (at 143.51 54.61 0)
  1635. (unit 1)
  1636. (body_style 1)
  1637. (exclude_from_sim no)
  1638. (in_bom yes)
  1639. (on_board yes)
  1640. (in_pos_files yes)
  1641. (dnp no)
  1642. (fields_autoplaced yes)
  1643. (uuid "abc37a81-886f-4d7f-9289-bfc35e6456e9")
  1644. (property "Reference" "#PWR028"
  1645. (at 143.51 58.42 0)
  1646. (hide yes)
  1647. (show_name no)
  1648. (do_not_autoplace no)
  1649. (effects
  1650. (font
  1651. (size 1.27 1.27)
  1652. )
  1653. )
  1654. )
  1655. (property "Value" "+3V3"
  1656. (at 143.51 49.53 0)
  1657. (show_name no)
  1658. (do_not_autoplace no)
  1659. (effects
  1660. (font
  1661. (size 1.27 1.27)
  1662. )
  1663. )
  1664. )
  1665. (property "Footprint" ""
  1666. (at 143.51 54.61 0)
  1667. (hide yes)
  1668. (show_name no)
  1669. (do_not_autoplace no)
  1670. (effects
  1671. (font
  1672. (size 1.27 1.27)
  1673. )
  1674. )
  1675. )
  1676. (property "Datasheet" ""
  1677. (at 143.51 54.61 0)
  1678. (hide yes)
  1679. (show_name no)
  1680. (do_not_autoplace no)
  1681. (effects
  1682. (font
  1683. (size 1.27 1.27)
  1684. )
  1685. )
  1686. )
  1687. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1688. (at 143.51 54.61 0)
  1689. (hide yes)
  1690. (show_name no)
  1691. (do_not_autoplace no)
  1692. (effects
  1693. (font
  1694. (size 1.27 1.27)
  1695. )
  1696. )
  1697. )
  1698. (pin "1"
  1699. (uuid "0ffcb4b1-a088-492f-9ee0-e9c73454bc8d")
  1700. )
  1701. (instances
  1702. (project "cx-copter"
  1703. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  1704. (reference "#PWR028")
  1705. (unit 1)
  1706. )
  1707. )
  1708. )
  1709. )
  1710. (symbol
  1711. (lib_id "power:GND")
  1712. (at 149.86 69.85 0)
  1713. (unit 1)
  1714. (body_style 1)
  1715. (exclude_from_sim no)
  1716. (in_bom yes)
  1717. (on_board yes)
  1718. (in_pos_files yes)
  1719. (dnp no)
  1720. (fields_autoplaced yes)
  1721. (uuid "af2fbd88-2944-4f72-8a86-223132e4e065")
  1722. (property "Reference" "#PWR029"
  1723. (at 149.86 76.2 0)
  1724. (hide yes)
  1725. (show_name no)
  1726. (do_not_autoplace no)
  1727. (effects
  1728. (font
  1729. (size 1.27 1.27)
  1730. )
  1731. )
  1732. )
  1733. (property "Value" "GND"
  1734. (at 149.86 74.93 0)
  1735. (show_name no)
  1736. (do_not_autoplace no)
  1737. (effects
  1738. (font
  1739. (size 1.27 1.27)
  1740. )
  1741. )
  1742. )
  1743. (property "Footprint" ""
  1744. (at 149.86 69.85 0)
  1745. (hide yes)
  1746. (show_name no)
  1747. (do_not_autoplace no)
  1748. (effects
  1749. (font
  1750. (size 1.27 1.27)
  1751. )
  1752. )
  1753. )
  1754. (property "Datasheet" ""
  1755. (at 149.86 69.85 0)
  1756. (hide yes)
  1757. (show_name no)
  1758. (do_not_autoplace no)
  1759. (effects
  1760. (font
  1761. (size 1.27 1.27)
  1762. )
  1763. )
  1764. )
  1765. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1766. (at 149.86 69.85 0)
  1767. (hide yes)
  1768. (show_name no)
  1769. (do_not_autoplace no)
  1770. (effects
  1771. (font
  1772. (size 1.27 1.27)
  1773. )
  1774. )
  1775. )
  1776. (pin "1"
  1777. (uuid "2903e1a1-5983-4c01-8dba-09dadf8b5779")
  1778. )
  1779. (instances
  1780. (project "cx-copter"
  1781. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  1782. (reference "#PWR029")
  1783. (unit 1)
  1784. )
  1785. )
  1786. )
  1787. )
  1788. (symbol
  1789. (lib_id "ESP_modules:ESP-01")
  1790. (at 143.51 102.87 0)
  1791. (unit 1)
  1792. (body_style 1)
  1793. (exclude_from_sim no)
  1794. (in_bom yes)
  1795. (on_board yes)
  1796. (in_pos_files yes)
  1797. (dnp no)
  1798. (uuid "b1cfa9ca-8ff9-4aa8-b59d-488d87badb92")
  1799. (property "Reference" "U4"
  1800. (at 133.35 84.074 0)
  1801. (show_name no)
  1802. (do_not_autoplace no)
  1803. (effects
  1804. (font
  1805. (size 1.27 1.27)
  1806. )
  1807. (justify left)
  1808. )
  1809. )
  1810. (property "Value" "ESP-01"
  1811. (at 146.304 84.074 0)
  1812. (show_name no)
  1813. (do_not_autoplace no)
  1814. (effects
  1815. (font
  1816. (size 1.27 1.27)
  1817. )
  1818. (justify left)
  1819. )
  1820. )
  1821. (property "Footprint" "esp:ESP-01"
  1822. (at 143.51 102.87 0)
  1823. (hide yes)
  1824. (show_name no)
  1825. (do_not_autoplace no)
  1826. (effects
  1827. (font
  1828. (size 1.27 1.27)
  1829. )
  1830. )
  1831. )
  1832. (property "Datasheet" "https://academy.cba.mit.edu/classes/networking_communications/ESP8266/esp01.pdf"
  1833. (at 143.51 102.87 0)
  1834. (hide yes)
  1835. (show_name no)
  1836. (do_not_autoplace no)
  1837. (effects
  1838. (font
  1839. (size 1.27 1.27)
  1840. )
  1841. )
  1842. )
  1843. (property "Description" ""
  1844. (at 143.51 102.87 0)
  1845. (hide yes)
  1846. (show_name no)
  1847. (do_not_autoplace no)
  1848. (effects
  1849. (font
  1850. (size 1.27 1.27)
  1851. )
  1852. )
  1853. )
  1854. (pin "4"
  1855. (uuid "4ee66ff2-d82c-4467-aa19-f60fcdaaee96")
  1856. )
  1857. (pin "7"
  1858. (uuid "5d1d07af-8776-4f2e-91d6-6635281b8bb1")
  1859. )
  1860. (pin "6"
  1861. (uuid "8dd13f3a-3ca1-4e6c-96d5-d17972a5937a")
  1862. )
  1863. (pin "5"
  1864. (uuid "39f2dcf5-1540-4fed-83f8-af348c9634d9")
  1865. )
  1866. (pin "3"
  1867. (uuid "ea60181c-c973-4722-b5bc-0b75855661d6")
  1868. )
  1869. (pin "2"
  1870. (uuid "aa9ff680-a187-4595-8d3c-70873e1f6a95")
  1871. )
  1872. (pin "1"
  1873. (uuid "73712446-841b-4022-98d3-44abcb6b4a6e")
  1874. )
  1875. (pin "8"
  1876. (uuid "0932b22e-8708-4a9a-a5eb-543b7f92e615")
  1877. )
  1878. (instances
  1879. (project "cx-copter"
  1880. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  1881. (reference "U4")
  1882. (unit 1)
  1883. )
  1884. )
  1885. )
  1886. )
  1887. (symbol
  1888. (lib_id "Connector_Generic:Conn_02x01")
  1889. (at 119.38 105.41 90)
  1890. (unit 1)
  1891. (body_style 1)
  1892. (exclude_from_sim no)
  1893. (in_bom yes)
  1894. (on_board yes)
  1895. (in_pos_files yes)
  1896. (dnp no)
  1897. (uuid "bb6f10d5-cf59-4a94-836e-1f0724b83943")
  1898. (property "Reference" "J4"
  1899. (at 120.65 102.616 90)
  1900. (show_name no)
  1901. (do_not_autoplace no)
  1902. (effects
  1903. (font
  1904. (size 1.27 1.27)
  1905. )
  1906. (justify right)
  1907. )
  1908. )
  1909. (property "Value" "ESP_RST"
  1910. (at 120.65 105.41 90)
  1911. (show_name no)
  1912. (do_not_autoplace no)
  1913. (effects
  1914. (font
  1915. (size 1.27 1.27)
  1916. )
  1917. (justify right)
  1918. )
  1919. )
  1920. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical"
  1921. (at 119.38 105.41 0)
  1922. (hide yes)
  1923. (show_name no)
  1924. (do_not_autoplace no)
  1925. (effects
  1926. (font
  1927. (size 1.27 1.27)
  1928. )
  1929. )
  1930. )
  1931. (property "Datasheet" ""
  1932. (at 119.38 105.41 0)
  1933. (hide yes)
  1934. (show_name no)
  1935. (do_not_autoplace no)
  1936. (effects
  1937. (font
  1938. (size 1.27 1.27)
  1939. )
  1940. )
  1941. )
  1942. (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
  1943. (at 119.38 105.41 0)
  1944. (hide yes)
  1945. (show_name no)
  1946. (do_not_autoplace no)
  1947. (effects
  1948. (font
  1949. (size 1.27 1.27)
  1950. )
  1951. )
  1952. )
  1953. (pin "2"
  1954. (uuid "78a06b56-8033-45db-9a88-9c1bde1f48ea")
  1955. )
  1956. (pin "1"
  1957. (uuid "24ba3cf1-0481-4528-98cc-7e41a04437e3")
  1958. )
  1959. (instances
  1960. (project "cx-copter"
  1961. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  1962. (reference "J4")
  1963. (unit 1)
  1964. )
  1965. )
  1966. )
  1967. )
  1968. (symbol
  1969. (lib_id "power:GND")
  1970. (at 143.51 125.73 0)
  1971. (unit 1)
  1972. (body_style 1)
  1973. (exclude_from_sim no)
  1974. (in_bom yes)
  1975. (on_board yes)
  1976. (in_pos_files yes)
  1977. (dnp no)
  1978. (fields_autoplaced yes)
  1979. (uuid "bec363de-3444-4b38-a35a-15334708eafa")
  1980. (property "Reference" "#PWR025"
  1981. (at 143.51 132.08 0)
  1982. (hide yes)
  1983. (show_name no)
  1984. (do_not_autoplace no)
  1985. (effects
  1986. (font
  1987. (size 1.27 1.27)
  1988. )
  1989. )
  1990. )
  1991. (property "Value" "GND"
  1992. (at 143.51 130.81 0)
  1993. (show_name no)
  1994. (do_not_autoplace no)
  1995. (effects
  1996. (font
  1997. (size 1.27 1.27)
  1998. )
  1999. )
  2000. )
  2001. (property "Footprint" ""
  2002. (at 143.51 125.73 0)
  2003. (hide yes)
  2004. (show_name no)
  2005. (do_not_autoplace no)
  2006. (effects
  2007. (font
  2008. (size 1.27 1.27)
  2009. )
  2010. )
  2011. )
  2012. (property "Datasheet" ""
  2013. (at 143.51 125.73 0)
  2014. (hide yes)
  2015. (show_name no)
  2016. (do_not_autoplace no)
  2017. (effects
  2018. (font
  2019. (size 1.27 1.27)
  2020. )
  2021. )
  2022. )
  2023. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2024. (at 143.51 125.73 0)
  2025. (hide yes)
  2026. (show_name no)
  2027. (do_not_autoplace no)
  2028. (effects
  2029. (font
  2030. (size 1.27 1.27)
  2031. )
  2032. )
  2033. )
  2034. (pin "1"
  2035. (uuid "98cc1e3f-a0c2-4641-9aee-29818e1fc471")
  2036. )
  2037. (instances
  2038. (project "cx-copter"
  2039. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  2040. (reference "#PWR025")
  2041. (unit 1)
  2042. )
  2043. )
  2044. )
  2045. )
  2046. (symbol
  2047. (lib_id "power:GND")
  2048. (at 107.95 115.57 0)
  2049. (unit 1)
  2050. (body_style 1)
  2051. (exclude_from_sim no)
  2052. (in_bom yes)
  2053. (on_board yes)
  2054. (in_pos_files yes)
  2055. (dnp no)
  2056. (fields_autoplaced yes)
  2057. (uuid "d8225516-59cc-417d-8443-ba9e85537347")
  2058. (property "Reference" "#PWR026"
  2059. (at 107.95 121.92 0)
  2060. (hide yes)
  2061. (show_name no)
  2062. (do_not_autoplace no)
  2063. (effects
  2064. (font
  2065. (size 1.27 1.27)
  2066. )
  2067. )
  2068. )
  2069. (property "Value" "GND"
  2070. (at 107.95 120.65 0)
  2071. (show_name no)
  2072. (do_not_autoplace no)
  2073. (effects
  2074. (font
  2075. (size 1.27 1.27)
  2076. )
  2077. )
  2078. )
  2079. (property "Footprint" ""
  2080. (at 107.95 115.57 0)
  2081. (hide yes)
  2082. (show_name no)
  2083. (do_not_autoplace no)
  2084. (effects
  2085. (font
  2086. (size 1.27 1.27)
  2087. )
  2088. )
  2089. )
  2090. (property "Datasheet" ""
  2091. (at 107.95 115.57 0)
  2092. (hide yes)
  2093. (show_name no)
  2094. (do_not_autoplace no)
  2095. (effects
  2096. (font
  2097. (size 1.27 1.27)
  2098. )
  2099. )
  2100. )
  2101. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2102. (at 107.95 115.57 0)
  2103. (hide yes)
  2104. (show_name no)
  2105. (do_not_autoplace no)
  2106. (effects
  2107. (font
  2108. (size 1.27 1.27)
  2109. )
  2110. )
  2111. )
  2112. (pin "1"
  2113. (uuid "45ce23ba-d347-44d4-82e3-4088c38b16c3")
  2114. )
  2115. (instances
  2116. (project "cx-copter"
  2117. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  2118. (reference "#PWR026")
  2119. (unit 1)
  2120. )
  2121. )
  2122. )
  2123. )
  2124. (symbol
  2125. (lib_id "power:+3V3")
  2126. (at 107.95 74.93 0)
  2127. (unit 1)
  2128. (body_style 1)
  2129. (exclude_from_sim no)
  2130. (in_bom yes)
  2131. (on_board yes)
  2132. (in_pos_files yes)
  2133. (dnp no)
  2134. (fields_autoplaced yes)
  2135. (uuid "e3b820bb-76e8-4f3e-9aeb-0b99fafb96ff")
  2136. (property "Reference" "#PWR027"
  2137. (at 107.95 78.74 0)
  2138. (hide yes)
  2139. (show_name no)
  2140. (do_not_autoplace no)
  2141. (effects
  2142. (font
  2143. (size 1.27 1.27)
  2144. )
  2145. )
  2146. )
  2147. (property "Value" "+3V3"
  2148. (at 107.95 69.85 0)
  2149. (show_name no)
  2150. (do_not_autoplace no)
  2151. (effects
  2152. (font
  2153. (size 1.27 1.27)
  2154. )
  2155. )
  2156. )
  2157. (property "Footprint" ""
  2158. (at 107.95 74.93 0)
  2159. (hide yes)
  2160. (show_name no)
  2161. (do_not_autoplace no)
  2162. (effects
  2163. (font
  2164. (size 1.27 1.27)
  2165. )
  2166. )
  2167. )
  2168. (property "Datasheet" ""
  2169. (at 107.95 74.93 0)
  2170. (hide yes)
  2171. (show_name no)
  2172. (do_not_autoplace no)
  2173. (effects
  2174. (font
  2175. (size 1.27 1.27)
  2176. )
  2177. )
  2178. )
  2179. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2180. (at 107.95 74.93 0)
  2181. (hide yes)
  2182. (show_name no)
  2183. (do_not_autoplace no)
  2184. (effects
  2185. (font
  2186. (size 1.27 1.27)
  2187. )
  2188. )
  2189. )
  2190. (pin "1"
  2191. (uuid "03c0f93a-e2ea-4f8c-b698-abf082626275")
  2192. )
  2193. (instances
  2194. (project "cx-copter"
  2195. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
  2196. (reference "#PWR027")
  2197. (unit 1)
  2198. )
  2199. )
  2200. )
  2201. )
  2202. )