wifi_communication.kicad_sch 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "81fa588a-e86f-4849-83a6-d1bc1462669f")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Connector:TestPoint_Probe"
  9. (pin_numbers
  10. (hide yes)
  11. )
  12. (pin_names
  13. (offset 0.762)
  14. (hide yes)
  15. )
  16. (exclude_from_sim no)
  17. (in_bom yes)
  18. (on_board yes)
  19. (in_pos_files yes)
  20. (duplicate_pin_numbers_are_jumpers no)
  21. (property "Reference" "TP"
  22. (at 1.651 5.842 0)
  23. (show_name no)
  24. (do_not_autoplace no)
  25. (effects
  26. (font
  27. (size 1.27 1.27)
  28. )
  29. )
  30. )
  31. (property "Value" "TestPoint_Probe"
  32. (at 1.651 4.064 0)
  33. (show_name no)
  34. (do_not_autoplace no)
  35. (effects
  36. (font
  37. (size 1.27 1.27)
  38. )
  39. )
  40. )
  41. (property "Footprint" ""
  42. (at 5.08 0 0)
  43. (show_name no)
  44. (do_not_autoplace no)
  45. (hide yes)
  46. (effects
  47. (font
  48. (size 1.27 1.27)
  49. )
  50. )
  51. )
  52. (property "Datasheet" ""
  53. (at 5.08 0 0)
  54. (show_name no)
  55. (do_not_autoplace no)
  56. (hide yes)
  57. (effects
  58. (font
  59. (size 1.27 1.27)
  60. )
  61. )
  62. )
  63. (property "Description" "test point (alternative probe-style design)"
  64. (at 0 0 0)
  65. (show_name no)
  66. (do_not_autoplace no)
  67. (hide yes)
  68. (effects
  69. (font
  70. (size 1.27 1.27)
  71. )
  72. )
  73. )
  74. (property "ki_keywords" "test point tp"
  75. (at 0 0 0)
  76. (show_name no)
  77. (do_not_autoplace no)
  78. (hide yes)
  79. (effects
  80. (font
  81. (size 1.27 1.27)
  82. )
  83. )
  84. )
  85. (property "ki_fp_filters" "Pin* Test*"
  86. (at 0 0 0)
  87. (show_name no)
  88. (do_not_autoplace no)
  89. (hide yes)
  90. (effects
  91. (font
  92. (size 1.27 1.27)
  93. )
  94. )
  95. )
  96. (symbol "TestPoint_Probe_0_1"
  97. (polyline
  98. (pts
  99. (xy 1.27 0.762) (xy 0 0) (xy 0.762 1.27) (xy 1.27 0.762)
  100. )
  101. (stroke
  102. (width 0)
  103. (type default)
  104. )
  105. (fill
  106. (type outline)
  107. )
  108. )
  109. (polyline
  110. (pts
  111. (xy 1.397 0.635) (xy 0.635 1.397) (xy 2.413 3.175) (xy 3.175 2.413) (xy 1.397 0.635)
  112. )
  113. (stroke
  114. (width 0)
  115. (type default)
  116. )
  117. (fill
  118. (type background)
  119. )
  120. )
  121. )
  122. (symbol "TestPoint_Probe_1_1"
  123. (pin passive line
  124. (at 0 0 90)
  125. (length 0)
  126. (name "1"
  127. (effects
  128. (font
  129. (size 1.27 1.27)
  130. )
  131. )
  132. )
  133. (number "1"
  134. (effects
  135. (font
  136. (size 1.27 1.27)
  137. )
  138. )
  139. )
  140. )
  141. )
  142. (embedded_fonts no)
  143. )
  144. (symbol "Device:C"
  145. (pin_numbers
  146. (hide yes)
  147. )
  148. (pin_names
  149. (offset 0.254)
  150. )
  151. (exclude_from_sim no)
  152. (in_bom yes)
  153. (on_board yes)
  154. (in_pos_files yes)
  155. (duplicate_pin_numbers_are_jumpers no)
  156. (property "Reference" "C"
  157. (at 0.635 2.54 0)
  158. (show_name no)
  159. (do_not_autoplace no)
  160. (effects
  161. (font
  162. (size 1.27 1.27)
  163. )
  164. (justify left)
  165. )
  166. )
  167. (property "Value" "C"
  168. (at 0.635 -2.54 0)
  169. (show_name no)
  170. (do_not_autoplace no)
  171. (effects
  172. (font
  173. (size 1.27 1.27)
  174. )
  175. (justify left)
  176. )
  177. )
  178. (property "Footprint" ""
  179. (at 0.9652 -3.81 0)
  180. (show_name no)
  181. (do_not_autoplace no)
  182. (hide yes)
  183. (effects
  184. (font
  185. (size 1.27 1.27)
  186. )
  187. )
  188. )
  189. (property "Datasheet" ""
  190. (at 0 0 0)
  191. (show_name no)
  192. (do_not_autoplace no)
  193. (hide yes)
  194. (effects
  195. (font
  196. (size 1.27 1.27)
  197. )
  198. )
  199. )
  200. (property "Description" "Unpolarized capacitor"
  201. (at 0 0 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 "ki_keywords" "cap capacitor"
  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 "ki_fp_filters" "C_*"
  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. (symbol "C_0_1"
  234. (polyline
  235. (pts
  236. (xy -2.032 0.762) (xy 2.032 0.762)
  237. )
  238. (stroke
  239. (width 0.508)
  240. (type default)
  241. )
  242. (fill
  243. (type none)
  244. )
  245. )
  246. (polyline
  247. (pts
  248. (xy -2.032 -0.762) (xy 2.032 -0.762)
  249. )
  250. (stroke
  251. (width 0.508)
  252. (type default)
  253. )
  254. (fill
  255. (type none)
  256. )
  257. )
  258. )
  259. (symbol "C_1_1"
  260. (pin passive line
  261. (at 0 3.81 270)
  262. (length 2.794)
  263. (name ""
  264. (effects
  265. (font
  266. (size 1.27 1.27)
  267. )
  268. )
  269. )
  270. (number "1"
  271. (effects
  272. (font
  273. (size 1.27 1.27)
  274. )
  275. )
  276. )
  277. )
  278. (pin passive line
  279. (at 0 -3.81 90)
  280. (length 2.794)
  281. (name ""
  282. (effects
  283. (font
  284. (size 1.27 1.27)
  285. )
  286. )
  287. )
  288. (number "2"
  289. (effects
  290. (font
  291. (size 1.27 1.27)
  292. )
  293. )
  294. )
  295. )
  296. )
  297. (embedded_fonts no)
  298. )
  299. (symbol "Device:R"
  300. (pin_numbers
  301. (hide yes)
  302. )
  303. (pin_names
  304. (offset 0)
  305. )
  306. (exclude_from_sim no)
  307. (in_bom yes)
  308. (on_board yes)
  309. (in_pos_files yes)
  310. (duplicate_pin_numbers_are_jumpers no)
  311. (property "Reference" "R"
  312. (at 2.032 0 90)
  313. (show_name no)
  314. (do_not_autoplace no)
  315. (effects
  316. (font
  317. (size 1.27 1.27)
  318. )
  319. )
  320. )
  321. (property "Value" "R"
  322. (at 0 0 90)
  323. (show_name no)
  324. (do_not_autoplace no)
  325. (effects
  326. (font
  327. (size 1.27 1.27)
  328. )
  329. )
  330. )
  331. (property "Footprint" ""
  332. (at -1.778 0 90)
  333. (show_name no)
  334. (do_not_autoplace no)
  335. (hide yes)
  336. (effects
  337. (font
  338. (size 1.27 1.27)
  339. )
  340. )
  341. )
  342. (property "Datasheet" ""
  343. (at 0 0 0)
  344. (show_name no)
  345. (do_not_autoplace no)
  346. (hide yes)
  347. (effects
  348. (font
  349. (size 1.27 1.27)
  350. )
  351. )
  352. )
  353. (property "Description" "Resistor"
  354. (at 0 0 0)
  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 "ki_keywords" "R res resistor"
  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 "ki_fp_filters" "R_*"
  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. (symbol "R_0_1"
  387. (rectangle
  388. (start -1.016 -2.54)
  389. (end 1.016 2.54)
  390. (stroke
  391. (width 0.254)
  392. (type default)
  393. )
  394. (fill
  395. (type none)
  396. )
  397. )
  398. )
  399. (symbol "R_1_1"
  400. (pin passive line
  401. (at 0 3.81 270)
  402. (length 1.27)
  403. (name ""
  404. (effects
  405. (font
  406. (size 1.27 1.27)
  407. )
  408. )
  409. )
  410. (number "1"
  411. (effects
  412. (font
  413. (size 1.27 1.27)
  414. )
  415. )
  416. )
  417. )
  418. (pin passive line
  419. (at 0 -3.81 90)
  420. (length 1.27)
  421. (name ""
  422. (effects
  423. (font
  424. (size 1.27 1.27)
  425. )
  426. )
  427. )
  428. (number "2"
  429. (effects
  430. (font
  431. (size 1.27 1.27)
  432. )
  433. )
  434. )
  435. )
  436. )
  437. (embedded_fonts no)
  438. )
  439. (symbol "ESP_modules:ESP-01"
  440. (exclude_from_sim no)
  441. (in_bom yes)
  442. (on_board yes)
  443. (in_pos_files yes)
  444. (duplicate_pin_numbers_are_jumpers no)
  445. (property "Reference" "U6"
  446. (at 2.1433 22.86 0)
  447. (show_name no)
  448. (do_not_autoplace no)
  449. (effects
  450. (font
  451. (size 1.27 1.27)
  452. )
  453. (justify left)
  454. )
  455. )
  456. (property "Value" "ESP-01"
  457. (at 2.1433 20.32 0)
  458. (show_name no)
  459. (do_not_autoplace no)
  460. (effects
  461. (font
  462. (size 1.27 1.27)
  463. )
  464. (justify left)
  465. )
  466. )
  467. (property "Footprint" ""
  468. (at 0 0 0)
  469. (show_name no)
  470. (do_not_autoplace no)
  471. (hide yes)
  472. (effects
  473. (font
  474. (size 1.27 1.27)
  475. )
  476. )
  477. )
  478. (property "Datasheet" "https://academy.cba.mit.edu/classes/networking_communications/ESP8266/esp01.pdf"
  479. (at 0 0 0)
  480. (show_name no)
  481. (do_not_autoplace no)
  482. (hide yes)
  483. (effects
  484. (font
  485. (size 1.27 1.27)
  486. )
  487. )
  488. )
  489. (property "Description" ""
  490. (at 0 0 0)
  491. (show_name no)
  492. (do_not_autoplace no)
  493. (hide yes)
  494. (effects
  495. (font
  496. (size 1.27 1.27)
  497. )
  498. )
  499. )
  500. (symbol "ESP-01_1_1"
  501. (rectangle
  502. (start -10.16 17.78)
  503. (end 10.16 -17.78)
  504. (stroke
  505. (width 0)
  506. (type solid)
  507. )
  508. (fill
  509. (type background)
  510. )
  511. )
  512. (pin power_in line
  513. (at 0 -20.32 90)
  514. (length 2.54)
  515. (name "GND"
  516. (effects
  517. (font
  518. (size 1.27 1.27)
  519. )
  520. )
  521. )
  522. (number "1"
  523. (effects
  524. (font
  525. (size 1.27 1.27)
  526. )
  527. )
  528. )
  529. )
  530. (pin bidirectional line
  531. (at 12.7 -1.27 180)
  532. (length 2.54)
  533. (name "GPIO2"
  534. (effects
  535. (font
  536. (size 1.27 1.27)
  537. )
  538. )
  539. )
  540. (number "2"
  541. (effects
  542. (font
  543. (size 1.27 1.27)
  544. )
  545. )
  546. )
  547. )
  548. (pin bidirectional line
  549. (at 12.7 1.27 180)
  550. (length 2.54)
  551. (name "GPIO0"
  552. (effects
  553. (font
  554. (size 1.27 1.27)
  555. )
  556. )
  557. )
  558. (number "3"
  559. (effects
  560. (font
  561. (size 1.27 1.27)
  562. )
  563. )
  564. )
  565. )
  566. (pin input line
  567. (at -12.7 -10.16 0)
  568. (length 2.54)
  569. (name "RX/GPIO3"
  570. (effects
  571. (font
  572. (size 1.27 1.27)
  573. )
  574. )
  575. )
  576. (number "4"
  577. (effects
  578. (font
  579. (size 1.27 1.27)
  580. )
  581. )
  582. )
  583. )
  584. (pin power_in line
  585. (at 0 20.32 270)
  586. (length 2.54)
  587. (name "VCC"
  588. (effects
  589. (font
  590. (size 1.27 1.27)
  591. )
  592. )
  593. )
  594. (number "5"
  595. (effects
  596. (font
  597. (size 1.27 1.27)
  598. )
  599. )
  600. )
  601. )
  602. (pin input line
  603. (at -12.7 10.16 0)
  604. (length 2.54)
  605. (name "RST"
  606. (effects
  607. (font
  608. (size 1.27 1.27)
  609. )
  610. )
  611. )
  612. (number "6"
  613. (effects
  614. (font
  615. (size 1.27 1.27)
  616. )
  617. )
  618. )
  619. )
  620. (pin bidirectional line
  621. (at -12.7 7.62 0)
  622. (length 2.54)
  623. (name "CH_PD"
  624. (effects
  625. (font
  626. (size 1.27 1.27)
  627. )
  628. )
  629. )
  630. (number "7"
  631. (effects
  632. (font
  633. (size 1.27 1.27)
  634. )
  635. )
  636. )
  637. )
  638. (pin output line
  639. (at -12.7 -6.35 0)
  640. (length 2.54)
  641. (name "TX/GPIO1"
  642. (effects
  643. (font
  644. (size 1.27 1.27)
  645. )
  646. )
  647. )
  648. (number "8"
  649. (effects
  650. (font
  651. (size 1.27 1.27)
  652. )
  653. )
  654. )
  655. )
  656. )
  657. (embedded_fonts no)
  658. )
  659. (symbol "power:+3V3"
  660. (power global)
  661. (pin_numbers
  662. (hide yes)
  663. )
  664. (pin_names
  665. (offset 0)
  666. (hide yes)
  667. )
  668. (exclude_from_sim no)
  669. (in_bom yes)
  670. (on_board yes)
  671. (in_pos_files yes)
  672. (duplicate_pin_numbers_are_jumpers no)
  673. (property "Reference" "#PWR"
  674. (at 0 -3.81 0)
  675. (show_name no)
  676. (do_not_autoplace no)
  677. (hide yes)
  678. (effects
  679. (font
  680. (size 1.27 1.27)
  681. )
  682. )
  683. )
  684. (property "Value" "+3V3"
  685. (at 0 3.556 0)
  686. (show_name no)
  687. (do_not_autoplace no)
  688. (effects
  689. (font
  690. (size 1.27 1.27)
  691. )
  692. )
  693. )
  694. (property "Footprint" ""
  695. (at 0 0 0)
  696. (show_name no)
  697. (do_not_autoplace no)
  698. (hide yes)
  699. (effects
  700. (font
  701. (size 1.27 1.27)
  702. )
  703. )
  704. )
  705. (property "Datasheet" ""
  706. (at 0 0 0)
  707. (show_name no)
  708. (do_not_autoplace no)
  709. (hide yes)
  710. (effects
  711. (font
  712. (size 1.27 1.27)
  713. )
  714. )
  715. )
  716. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  717. (at 0 0 0)
  718. (show_name no)
  719. (do_not_autoplace no)
  720. (hide yes)
  721. (effects
  722. (font
  723. (size 1.27 1.27)
  724. )
  725. )
  726. )
  727. (property "ki_keywords" "global power"
  728. (at 0 0 0)
  729. (show_name no)
  730. (do_not_autoplace no)
  731. (hide yes)
  732. (effects
  733. (font
  734. (size 1.27 1.27)
  735. )
  736. )
  737. )
  738. (symbol "+3V3_0_1"
  739. (polyline
  740. (pts
  741. (xy -0.762 1.27) (xy 0 2.54)
  742. )
  743. (stroke
  744. (width 0)
  745. (type default)
  746. )
  747. (fill
  748. (type none)
  749. )
  750. )
  751. (polyline
  752. (pts
  753. (xy 0 2.54) (xy 0.762 1.27)
  754. )
  755. (stroke
  756. (width 0)
  757. (type default)
  758. )
  759. (fill
  760. (type none)
  761. )
  762. )
  763. (polyline
  764. (pts
  765. (xy 0 0) (xy 0 2.54)
  766. )
  767. (stroke
  768. (width 0)
  769. (type default)
  770. )
  771. (fill
  772. (type none)
  773. )
  774. )
  775. )
  776. (symbol "+3V3_1_1"
  777. (pin power_in line
  778. (at 0 0 90)
  779. (length 0)
  780. (name ""
  781. (effects
  782. (font
  783. (size 1.27 1.27)
  784. )
  785. )
  786. )
  787. (number "1"
  788. (effects
  789. (font
  790. (size 1.27 1.27)
  791. )
  792. )
  793. )
  794. )
  795. )
  796. (embedded_fonts no)
  797. )
  798. (symbol "power:GND"
  799. (power global)
  800. (pin_numbers
  801. (hide yes)
  802. )
  803. (pin_names
  804. (offset 0)
  805. (hide yes)
  806. )
  807. (exclude_from_sim no)
  808. (in_bom yes)
  809. (on_board yes)
  810. (in_pos_files yes)
  811. (duplicate_pin_numbers_are_jumpers no)
  812. (property "Reference" "#PWR"
  813. (at 0 -6.35 0)
  814. (show_name no)
  815. (do_not_autoplace no)
  816. (hide yes)
  817. (effects
  818. (font
  819. (size 1.27 1.27)
  820. )
  821. )
  822. )
  823. (property "Value" "GND"
  824. (at 0 -3.81 0)
  825. (show_name no)
  826. (do_not_autoplace no)
  827. (effects
  828. (font
  829. (size 1.27 1.27)
  830. )
  831. )
  832. )
  833. (property "Footprint" ""
  834. (at 0 0 0)
  835. (show_name no)
  836. (do_not_autoplace no)
  837. (hide yes)
  838. (effects
  839. (font
  840. (size 1.27 1.27)
  841. )
  842. )
  843. )
  844. (property "Datasheet" ""
  845. (at 0 0 0)
  846. (show_name no)
  847. (do_not_autoplace no)
  848. (hide yes)
  849. (effects
  850. (font
  851. (size 1.27 1.27)
  852. )
  853. )
  854. )
  855. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  856. (at 0 0 0)
  857. (show_name no)
  858. (do_not_autoplace no)
  859. (hide yes)
  860. (effects
  861. (font
  862. (size 1.27 1.27)
  863. )
  864. )
  865. )
  866. (property "ki_keywords" "global power"
  867. (at 0 0 0)
  868. (show_name no)
  869. (do_not_autoplace no)
  870. (hide yes)
  871. (effects
  872. (font
  873. (size 1.27 1.27)
  874. )
  875. )
  876. )
  877. (symbol "GND_0_1"
  878. (polyline
  879. (pts
  880. (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)
  881. )
  882. (stroke
  883. (width 0)
  884. (type default)
  885. )
  886. (fill
  887. (type none)
  888. )
  889. )
  890. )
  891. (symbol "GND_1_1"
  892. (pin power_in line
  893. (at 0 0 270)
  894. (length 0)
  895. (name ""
  896. (effects
  897. (font
  898. (size 1.27 1.27)
  899. )
  900. )
  901. )
  902. (number "1"
  903. (effects
  904. (font
  905. (size 1.27 1.27)
  906. )
  907. )
  908. )
  909. )
  910. )
  911. (embedded_fonts no)
  912. )
  913. )
  914. (junction
  915. (at 144.78 44.45)
  916. (diameter 0)
  917. (color 0 0 0 0)
  918. (uuid "1473a0f8-a97d-4ca6-982f-350e3c0266f4")
  919. )
  920. (junction
  921. (at 166.37 54.61)
  922. (diameter 0)
  923. (color 0 0 0 0)
  924. (uuid "1548d8d1-2469-436b-baa1-152c73d00dbf")
  925. )
  926. (junction
  927. (at 152.4 44.45)
  928. (diameter 0)
  929. (color 0 0 0 0)
  930. (uuid "2e9a8ed5-4ab6-4876-85f4-afe754800467")
  931. )
  932. (junction
  933. (at 113.03 88.9)
  934. (diameter 0)
  935. (color 0 0 0 0)
  936. (uuid "750607ab-7ed3-4ffc-b320-d0803dfbc9ac")
  937. )
  938. (junction
  939. (at 129.54 74.93)
  940. (diameter 0)
  941. (color 0 0 0 0)
  942. (uuid "a2257cbb-a5bc-40d5-b25f-d7b7890c86f1")
  943. )
  944. (wire
  945. (pts
  946. (xy 128.27 74.93) (xy 129.54 74.93)
  947. )
  948. (stroke
  949. (width 0)
  950. (type default)
  951. )
  952. (uuid "098c0b61-3f20-4c5b-bbad-ee2182f43695")
  953. )
  954. (wire
  955. (pts
  956. (xy 113.03 62.23) (xy 113.03 63.5)
  957. )
  958. (stroke
  959. (width 0)
  960. (type default)
  961. )
  962. (uuid "2b157b2f-6c74-4233-855e-8cb287f83816")
  963. )
  964. (wire
  965. (pts
  966. (xy 161.29 81.28) (xy 157.48 81.28)
  967. )
  968. (stroke
  969. (width 0)
  970. (type default)
  971. )
  972. (uuid "32432905-c705-4842-9d68-02e9c2b92340")
  973. )
  974. (wire
  975. (pts
  976. (xy 113.03 88.9) (xy 132.08 88.9)
  977. )
  978. (stroke
  979. (width 0)
  980. (type default)
  981. )
  982. (uuid "356da0db-09b1-486b-8ec0-fd607c124574")
  983. )
  984. (wire
  985. (pts
  986. (xy 166.37 53.34) (xy 166.37 54.61)
  987. )
  988. (stroke
  989. (width 0)
  990. (type default)
  991. )
  992. (uuid "424b406c-2f97-49e4-88e8-7b0f95926c30")
  993. )
  994. (wire
  995. (pts
  996. (xy 111.76 88.9) (xy 113.03 88.9)
  997. )
  998. (stroke
  999. (width 0)
  1000. (type default)
  1001. )
  1002. (uuid "4660801f-4bea-4eb0-ac8e-b37567b82734")
  1003. )
  1004. (wire
  1005. (pts
  1006. (xy 132.08 72.39) (xy 125.73 72.39)
  1007. )
  1008. (stroke
  1009. (width 0)
  1010. (type default)
  1011. )
  1012. (uuid "4692a59e-6cc7-48d6-a227-883df2f8e70c")
  1013. )
  1014. (wire
  1015. (pts
  1016. (xy 125.73 62.23) (xy 125.73 63.5)
  1017. )
  1018. (stroke
  1019. (width 0)
  1020. (type default)
  1021. )
  1022. (uuid "5480938d-271d-423e-9690-38830d9c7954")
  1023. )
  1024. (wire
  1025. (pts
  1026. (xy 144.78 44.45) (xy 144.78 62.23)
  1027. )
  1028. (stroke
  1029. (width 0)
  1030. (type default)
  1031. )
  1032. (uuid "5a80769f-84f0-4cea-b255-ccd7617e2d51")
  1033. )
  1034. (wire
  1035. (pts
  1036. (xy 152.4 45.72) (xy 152.4 44.45)
  1037. )
  1038. (stroke
  1039. (width 0)
  1040. (type default)
  1041. )
  1042. (uuid "5d7c9fb2-60f2-4140-a5ec-e72ac4dfb0e2")
  1043. )
  1044. (wire
  1045. (pts
  1046. (xy 152.4 44.45) (xy 166.37 44.45)
  1047. )
  1048. (stroke
  1049. (width 0)
  1050. (type default)
  1051. )
  1052. (uuid "71a1cba3-b98c-4720-bcf0-f529a04a5e63")
  1053. )
  1054. (wire
  1055. (pts
  1056. (xy 166.37 54.61) (xy 166.37 55.88)
  1057. )
  1058. (stroke
  1059. (width 0)
  1060. (type default)
  1061. )
  1062. (uuid "79bfe1fd-dc9e-4d52-8191-6153151ad20f")
  1063. )
  1064. (wire
  1065. (pts
  1066. (xy 102.87 92.71) (xy 132.08 92.71)
  1067. )
  1068. (stroke
  1069. (width 0)
  1070. (type default)
  1071. )
  1072. (uuid "7ad83af7-352a-466e-a537-a283157d3cf8")
  1073. )
  1074. (wire
  1075. (pts
  1076. (xy 144.78 44.45) (xy 152.4 44.45)
  1077. )
  1078. (stroke
  1079. (width 0)
  1080. (type default)
  1081. )
  1082. (uuid "867ad019-22a1-4436-a8e1-ee4cfa357ac2")
  1083. )
  1084. (wire
  1085. (pts
  1086. (xy 161.29 83.82) (xy 157.48 83.82)
  1087. )
  1088. (stroke
  1089. (width 0)
  1090. (type default)
  1091. )
  1092. (uuid "89468c82-35b0-4a10-8ce6-a8e42ed48abe")
  1093. )
  1094. (wire
  1095. (pts
  1096. (xy 113.03 71.12) (xy 113.03 88.9)
  1097. )
  1098. (stroke
  1099. (width 0)
  1100. (type default)
  1101. )
  1102. (uuid "a26566db-41ca-4183-930a-e0ff610ac448")
  1103. )
  1104. (wire
  1105. (pts
  1106. (xy 95.25 110.49) (xy 102.87 110.49)
  1107. )
  1108. (stroke
  1109. (width 0)
  1110. (type default)
  1111. )
  1112. (uuid "a7026f9d-6e00-4abf-894f-0fa01528ee1b")
  1113. )
  1114. (wire
  1115. (pts
  1116. (xy 125.73 72.39) (xy 125.73 71.12)
  1117. )
  1118. (stroke
  1119. (width 0)
  1120. (type default)
  1121. )
  1122. (uuid "af3cc0c8-3d2a-427d-8964-9003bb01f30c")
  1123. )
  1124. (wire
  1125. (pts
  1126. (xy 181.61 119.38) (xy 182.88 119.38)
  1127. )
  1128. (stroke
  1129. (width 0)
  1130. (type default)
  1131. )
  1132. (uuid "b602d36e-f1cd-4705-b7b7-6efce6e3e9cc")
  1133. )
  1134. (wire
  1135. (pts
  1136. (xy 166.37 45.72) (xy 166.37 44.45)
  1137. )
  1138. (stroke
  1139. (width 0)
  1140. (type default)
  1141. )
  1142. (uuid "b8ffcb98-8f9e-46d7-ad4c-524914309f95")
  1143. )
  1144. (wire
  1145. (pts
  1146. (xy 95.25 114.3) (xy 102.87 114.3)
  1147. )
  1148. (stroke
  1149. (width 0)
  1150. (type default)
  1151. )
  1152. (uuid "c46c6ee3-eede-40c9-82ad-ca53d97c8621")
  1153. )
  1154. (wire
  1155. (pts
  1156. (xy 102.87 88.9) (xy 104.14 88.9)
  1157. )
  1158. (stroke
  1159. (width 0)
  1160. (type default)
  1161. )
  1162. (uuid "ce4e28e8-23d5-4fee-a038-8d0b3a6467ab")
  1163. )
  1164. (wire
  1165. (pts
  1166. (xy 144.78 102.87) (xy 144.78 104.14)
  1167. )
  1168. (stroke
  1169. (width 0)
  1170. (type default)
  1171. )
  1172. (uuid "d47a4ac2-d7c2-47d5-9612-dbe3d32eadc1")
  1173. )
  1174. (wire
  1175. (pts
  1176. (xy 181.61 118.11) (xy 181.61 119.38)
  1177. )
  1178. (stroke
  1179. (width 0)
  1180. (type default)
  1181. )
  1182. (uuid "d85dfb68-9972-4ffa-ad77-19f3c89e4cc4")
  1183. )
  1184. (wire
  1185. (pts
  1186. (xy 144.78 40.64) (xy 144.78 44.45)
  1187. )
  1188. (stroke
  1189. (width 0)
  1190. (type default)
  1191. )
  1192. (uuid "ef18f1c8-95dd-4736-9508-873b54386171")
  1193. )
  1194. (wire
  1195. (pts
  1196. (xy 166.37 54.61) (xy 152.4 54.61)
  1197. )
  1198. (stroke
  1199. (width 0)
  1200. (type default)
  1201. )
  1202. (uuid "f3b99d11-77cc-43b2-9e80-92590ec55d15")
  1203. )
  1204. (wire
  1205. (pts
  1206. (xy 129.54 74.93) (xy 132.08 74.93)
  1207. )
  1208. (stroke
  1209. (width 0)
  1210. (type default)
  1211. )
  1212. (uuid "f4a19f3f-97d2-4562-ae95-7fed1219209c")
  1213. )
  1214. (wire
  1215. (pts
  1216. (xy 129.54 74.93) (xy 129.54 78.74)
  1217. )
  1218. (stroke
  1219. (width 0)
  1220. (type default)
  1221. )
  1222. (uuid "f9e9e5ad-0782-4aa7-98b5-eb8ab787cf1b")
  1223. )
  1224. (wire
  1225. (pts
  1226. (xy 152.4 54.61) (xy 152.4 53.34)
  1227. )
  1228. (stroke
  1229. (width 0)
  1230. (type default)
  1231. )
  1232. (uuid "fed9011f-f073-4b59-a93a-6811c68afdb9")
  1233. )
  1234. (hierarchical_label "TX_PROG"
  1235. (shape output)
  1236. (at 95.25 110.49 180)
  1237. (effects
  1238. (font
  1239. (size 1.27 1.27)
  1240. )
  1241. (justify right)
  1242. )
  1243. (uuid "52c86781-8389-46a5-b735-a908e06be1e4")
  1244. )
  1245. (hierarchical_label "RX"
  1246. (shape input)
  1247. (at 102.87 114.3 0)
  1248. (effects
  1249. (font
  1250. (size 1.27 1.27)
  1251. )
  1252. (justify left)
  1253. )
  1254. (uuid "53772b67-45d4-4e79-9f4a-5ab611f897fc")
  1255. )
  1256. (hierarchical_label "TX"
  1257. (shape output)
  1258. (at 102.87 88.9 180)
  1259. (effects
  1260. (font
  1261. (size 1.27 1.27)
  1262. )
  1263. (justify right)
  1264. )
  1265. (uuid "6ca87534-34be-4288-afea-e2f90ef5869e")
  1266. )
  1267. (hierarchical_label "WIFI_SETUP"
  1268. (shape input)
  1269. (at 161.29 81.28 0)
  1270. (effects
  1271. (font
  1272. (size 1.27 1.27)
  1273. )
  1274. (justify left)
  1275. )
  1276. (uuid "781de45c-3b6c-49b7-ac47-714b81172dc3")
  1277. )
  1278. (hierarchical_label "ESP_STATE"
  1279. (shape input)
  1280. (at 128.27 74.93 180)
  1281. (effects
  1282. (font
  1283. (size 1.27 1.27)
  1284. )
  1285. (justify right)
  1286. )
  1287. (uuid "82e12f49-fce1-4d51-a28c-666879550bcb")
  1288. )
  1289. (hierarchical_label "WIFI_STATUS"
  1290. (shape output)
  1291. (at 161.29 83.82 0)
  1292. (effects
  1293. (font
  1294. (size 1.27 1.27)
  1295. )
  1296. (justify left)
  1297. )
  1298. (uuid "9343bfa0-4b89-42f8-bbb9-bb016a0b777d")
  1299. )
  1300. (hierarchical_label "RX"
  1301. (shape input)
  1302. (at 102.87 92.71 180)
  1303. (effects
  1304. (font
  1305. (size 1.27 1.27)
  1306. )
  1307. (justify right)
  1308. )
  1309. (uuid "97826f2b-032e-440f-bf3e-024c6fbd9af4")
  1310. )
  1311. (hierarchical_label "RX_PROG"
  1312. (shape input)
  1313. (at 95.25 114.3 180)
  1314. (effects
  1315. (font
  1316. (size 1.27 1.27)
  1317. )
  1318. (justify right)
  1319. )
  1320. (uuid "ad10ca0c-c677-4ee0-b608-11f2fc4806ba")
  1321. )
  1322. (hierarchical_label "TX"
  1323. (shape output)
  1324. (at 102.87 110.49 0)
  1325. (effects
  1326. (font
  1327. (size 1.27 1.27)
  1328. )
  1329. (justify left)
  1330. )
  1331. (uuid "d3c99038-14a0-4fa6-9484-e976632ac35a")
  1332. )
  1333. (hierarchical_label "3V3"
  1334. (shape input)
  1335. (at 182.88 119.38 0)
  1336. (effects
  1337. (font
  1338. (size 1.27 1.27)
  1339. )
  1340. (justify left)
  1341. )
  1342. (uuid "ffe4be74-3e8d-43bf-8a65-9cc9d05c7fc6")
  1343. )
  1344. (symbol
  1345. (lib_id "Device:C")
  1346. (at 152.4 49.53 0)
  1347. (unit 1)
  1348. (body_style 1)
  1349. (exclude_from_sim no)
  1350. (in_bom yes)
  1351. (on_board yes)
  1352. (in_pos_files yes)
  1353. (dnp no)
  1354. (fields_autoplaced yes)
  1355. (uuid "09b91b6e-8d45-4edf-8d4c-f1a3a01ff340")
  1356. (property "Reference" "C21"
  1357. (at 156.21 48.2599 0)
  1358. (show_name no)
  1359. (do_not_autoplace no)
  1360. (effects
  1361. (font
  1362. (size 1.27 1.27)
  1363. )
  1364. (justify left)
  1365. )
  1366. )
  1367. (property "Value" "22u"
  1368. (at 156.21 50.7999 0)
  1369. (show_name no)
  1370. (do_not_autoplace no)
  1371. (effects
  1372. (font
  1373. (size 1.27 1.27)
  1374. )
  1375. (justify left)
  1376. )
  1377. )
  1378. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  1379. (at 153.3652 53.34 0)
  1380. (hide yes)
  1381. (show_name no)
  1382. (do_not_autoplace no)
  1383. (effects
  1384. (font
  1385. (size 1.27 1.27)
  1386. )
  1387. )
  1388. )
  1389. (property "Datasheet" ""
  1390. (at 152.4 49.53 0)
  1391. (hide yes)
  1392. (show_name no)
  1393. (do_not_autoplace no)
  1394. (effects
  1395. (font
  1396. (size 1.27 1.27)
  1397. )
  1398. )
  1399. )
  1400. (property "Description" "Unpolarized capacitor"
  1401. (at 152.4 49.53 0)
  1402. (hide yes)
  1403. (show_name no)
  1404. (do_not_autoplace no)
  1405. (effects
  1406. (font
  1407. (size 1.27 1.27)
  1408. )
  1409. )
  1410. )
  1411. (pin "2"
  1412. (uuid "66fdf2b0-5cbf-4aa0-861c-65b10a73dd47")
  1413. )
  1414. (pin "1"
  1415. (uuid "d6b04b26-944c-4b53-af94-a255da73d025")
  1416. )
  1417. (instances
  1418. (project "cx-copter-schematic"
  1419. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  1420. (reference "C21")
  1421. (unit 1)
  1422. )
  1423. )
  1424. )
  1425. )
  1426. (symbol
  1427. (lib_id "Device:C")
  1428. (at 166.37 49.53 0)
  1429. (unit 1)
  1430. (body_style 1)
  1431. (exclude_from_sim no)
  1432. (in_bom yes)
  1433. (on_board yes)
  1434. (in_pos_files yes)
  1435. (dnp no)
  1436. (fields_autoplaced yes)
  1437. (uuid "0c3368fc-0ab5-4228-a95e-f9b2f40d9242")
  1438. (property "Reference" "C17"
  1439. (at 170.18 48.2599 0)
  1440. (show_name no)
  1441. (do_not_autoplace no)
  1442. (effects
  1443. (font
  1444. (size 1.27 1.27)
  1445. )
  1446. (justify left)
  1447. )
  1448. )
  1449. (property "Value" "100n"
  1450. (at 170.18 50.7999 0)
  1451. (show_name no)
  1452. (do_not_autoplace no)
  1453. (effects
  1454. (font
  1455. (size 1.27 1.27)
  1456. )
  1457. (justify left)
  1458. )
  1459. )
  1460. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  1461. (at 167.3352 53.34 0)
  1462. (hide yes)
  1463. (show_name no)
  1464. (do_not_autoplace no)
  1465. (effects
  1466. (font
  1467. (size 1.27 1.27)
  1468. )
  1469. )
  1470. )
  1471. (property "Datasheet" ""
  1472. (at 166.37 49.53 0)
  1473. (hide yes)
  1474. (show_name no)
  1475. (do_not_autoplace no)
  1476. (effects
  1477. (font
  1478. (size 1.27 1.27)
  1479. )
  1480. )
  1481. )
  1482. (property "Description" "Unpolarized capacitor"
  1483. (at 166.37 49.53 0)
  1484. (hide yes)
  1485. (show_name no)
  1486. (do_not_autoplace no)
  1487. (effects
  1488. (font
  1489. (size 1.27 1.27)
  1490. )
  1491. )
  1492. )
  1493. (pin "2"
  1494. (uuid "ae0ff720-eb7d-4051-bd37-da3e4ac69071")
  1495. )
  1496. (pin "1"
  1497. (uuid "df37285f-96bd-4840-a86c-3b8d0af24ea6")
  1498. )
  1499. (instances
  1500. (project "cx-copter-schematic"
  1501. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  1502. (reference "C17")
  1503. (unit 1)
  1504. )
  1505. )
  1506. )
  1507. )
  1508. (symbol
  1509. (lib_id "ESP_modules:ESP-01")
  1510. (at 144.78 82.55 0)
  1511. (unit 1)
  1512. (body_style 1)
  1513. (exclude_from_sim no)
  1514. (in_bom yes)
  1515. (on_board yes)
  1516. (in_pos_files yes)
  1517. (dnp no)
  1518. (fields_autoplaced yes)
  1519. (uuid "6c6a9c2e-84ec-433d-8794-3d646c6cf813")
  1520. (property "Reference" "U6"
  1521. (at 146.9233 59.69 0)
  1522. (show_name no)
  1523. (do_not_autoplace no)
  1524. (effects
  1525. (font
  1526. (size 1.27 1.27)
  1527. )
  1528. (justify left)
  1529. )
  1530. )
  1531. (property "Value" "ESP-01"
  1532. (at 146.9233 62.23 0)
  1533. (show_name no)
  1534. (do_not_autoplace no)
  1535. (effects
  1536. (font
  1537. (size 1.27 1.27)
  1538. )
  1539. (justify left)
  1540. )
  1541. )
  1542. (property "Footprint" "esp:ESP-01"
  1543. (at 144.78 82.55 0)
  1544. (hide yes)
  1545. (show_name no)
  1546. (do_not_autoplace no)
  1547. (effects
  1548. (font
  1549. (size 1.27 1.27)
  1550. )
  1551. )
  1552. )
  1553. (property "Datasheet" "https://academy.cba.mit.edu/classes/networking_communications/ESP8266/esp01.pdf"
  1554. (at 144.78 82.55 0)
  1555. (hide yes)
  1556. (show_name no)
  1557. (do_not_autoplace no)
  1558. (effects
  1559. (font
  1560. (size 1.27 1.27)
  1561. )
  1562. )
  1563. )
  1564. (property "Description" ""
  1565. (at 144.78 82.55 0)
  1566. (hide yes)
  1567. (show_name no)
  1568. (do_not_autoplace no)
  1569. (effects
  1570. (font
  1571. (size 1.27 1.27)
  1572. )
  1573. )
  1574. )
  1575. (pin "1"
  1576. (uuid "51858527-19ab-41de-8d1c-8f099fa9d02d")
  1577. )
  1578. (pin "2"
  1579. (uuid "91005a85-5e55-437c-bb26-89f26654b385")
  1580. )
  1581. (pin "3"
  1582. (uuid "9f8ecc7b-ebbc-4942-8177-dfad60b2ecf0")
  1583. )
  1584. (pin "4"
  1585. (uuid "401c2942-5ed8-4e6c-aab6-e85473bd0641")
  1586. )
  1587. (pin "5"
  1588. (uuid "bc49fac9-1a67-4d50-a51c-3c4586b54614")
  1589. )
  1590. (pin "6"
  1591. (uuid "3b0a1577-5bfc-48bf-bca0-1407af073248")
  1592. )
  1593. (pin "7"
  1594. (uuid "6d5f5f04-8e65-464f-ae22-eecd2e1d4440")
  1595. )
  1596. (pin "8"
  1597. (uuid "0427ee4f-9119-4f70-97bd-651431c0f527")
  1598. )
  1599. (instances
  1600. (project "cx-copter-schematic"
  1601. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  1602. (reference "U6")
  1603. (unit 1)
  1604. )
  1605. )
  1606. )
  1607. )
  1608. (symbol
  1609. (lib_id "Device:R")
  1610. (at 113.03 67.31 180)
  1611. (unit 1)
  1612. (body_style 1)
  1613. (exclude_from_sim no)
  1614. (in_bom yes)
  1615. (on_board yes)
  1616. (in_pos_files yes)
  1617. (dnp no)
  1618. (uuid "80e375bd-6e05-4a68-b1bf-eab10d0827b9")
  1619. (property "Reference" "R21"
  1620. (at 114.554 65.786 0)
  1621. (show_name no)
  1622. (do_not_autoplace no)
  1623. (effects
  1624. (font
  1625. (size 1.27 1.27)
  1626. )
  1627. (justify right)
  1628. )
  1629. )
  1630. (property "Value" "10k"
  1631. (at 114.554 68.326 0)
  1632. (show_name no)
  1633. (do_not_autoplace no)
  1634. (effects
  1635. (font
  1636. (size 1.27 1.27)
  1637. )
  1638. (justify right)
  1639. )
  1640. )
  1641. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  1642. (at 114.808 67.31 90)
  1643. (hide yes)
  1644. (show_name no)
  1645. (do_not_autoplace no)
  1646. (effects
  1647. (font
  1648. (size 1.27 1.27)
  1649. )
  1650. )
  1651. )
  1652. (property "Datasheet" ""
  1653. (at 113.03 67.31 0)
  1654. (hide yes)
  1655. (show_name no)
  1656. (do_not_autoplace no)
  1657. (effects
  1658. (font
  1659. (size 1.27 1.27)
  1660. )
  1661. )
  1662. )
  1663. (property "Description" "Resistor"
  1664. (at 113.03 67.31 0)
  1665. (hide yes)
  1666. (show_name no)
  1667. (do_not_autoplace no)
  1668. (effects
  1669. (font
  1670. (size 1.27 1.27)
  1671. )
  1672. )
  1673. )
  1674. (pin "2"
  1675. (uuid "3c7c45c8-c22f-4487-8fc9-0f8d82bd1f51")
  1676. )
  1677. (pin "1"
  1678. (uuid "0492bfd6-0e38-4f3c-b32c-ba687af39db2")
  1679. )
  1680. (instances
  1681. (project "cx-copter-schematic"
  1682. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  1683. (reference "R21")
  1684. (unit 1)
  1685. )
  1686. )
  1687. )
  1688. )
  1689. (symbol
  1690. (lib_id "power:+3V3")
  1691. (at 181.61 118.11 0)
  1692. (unit 1)
  1693. (body_style 1)
  1694. (exclude_from_sim no)
  1695. (in_bom yes)
  1696. (on_board yes)
  1697. (in_pos_files yes)
  1698. (dnp no)
  1699. (fields_autoplaced yes)
  1700. (uuid "915cf053-4574-4358-9ca3-96057a82618c")
  1701. (property "Reference" "#PWR077"
  1702. (at 181.61 121.92 0)
  1703. (hide yes)
  1704. (show_name no)
  1705. (do_not_autoplace no)
  1706. (effects
  1707. (font
  1708. (size 1.27 1.27)
  1709. )
  1710. )
  1711. )
  1712. (property "Value" "+3V3"
  1713. (at 181.61 113.03 0)
  1714. (show_name no)
  1715. (do_not_autoplace no)
  1716. (effects
  1717. (font
  1718. (size 1.27 1.27)
  1719. )
  1720. )
  1721. )
  1722. (property "Footprint" ""
  1723. (at 181.61 118.11 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 "Datasheet" ""
  1734. (at 181.61 118.11 0)
  1735. (hide yes)
  1736. (show_name no)
  1737. (do_not_autoplace no)
  1738. (effects
  1739. (font
  1740. (size 1.27 1.27)
  1741. )
  1742. )
  1743. )
  1744. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1745. (at 181.61 118.11 0)
  1746. (hide yes)
  1747. (show_name no)
  1748. (do_not_autoplace no)
  1749. (effects
  1750. (font
  1751. (size 1.27 1.27)
  1752. )
  1753. )
  1754. )
  1755. (pin "1"
  1756. (uuid "f3948cb1-4c7e-4843-8bb9-391a236ede4d")
  1757. )
  1758. (instances
  1759. (project "cx-copter-schematic"
  1760. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  1761. (reference "#PWR077")
  1762. (unit 1)
  1763. )
  1764. )
  1765. )
  1766. )
  1767. (symbol
  1768. (lib_id "Device:R")
  1769. (at 125.73 67.31 180)
  1770. (unit 1)
  1771. (body_style 1)
  1772. (exclude_from_sim no)
  1773. (in_bom yes)
  1774. (on_board yes)
  1775. (in_pos_files yes)
  1776. (dnp no)
  1777. (uuid "962ab460-361a-485a-8c31-324ea4e7018c")
  1778. (property "Reference" "R24"
  1779. (at 127.254 65.786 0)
  1780. (show_name no)
  1781. (do_not_autoplace no)
  1782. (effects
  1783. (font
  1784. (size 1.27 1.27)
  1785. )
  1786. (justify right)
  1787. )
  1788. )
  1789. (property "Value" "10k"
  1790. (at 127.254 68.326 0)
  1791. (show_name no)
  1792. (do_not_autoplace no)
  1793. (effects
  1794. (font
  1795. (size 1.27 1.27)
  1796. )
  1797. (justify right)
  1798. )
  1799. )
  1800. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  1801. (at 127.508 67.31 90)
  1802. (hide yes)
  1803. (show_name no)
  1804. (do_not_autoplace no)
  1805. (effects
  1806. (font
  1807. (size 1.27 1.27)
  1808. )
  1809. )
  1810. )
  1811. (property "Datasheet" ""
  1812. (at 125.73 67.31 0)
  1813. (hide yes)
  1814. (show_name no)
  1815. (do_not_autoplace no)
  1816. (effects
  1817. (font
  1818. (size 1.27 1.27)
  1819. )
  1820. )
  1821. )
  1822. (property "Description" "Resistor"
  1823. (at 125.73 67.31 0)
  1824. (hide yes)
  1825. (show_name no)
  1826. (do_not_autoplace no)
  1827. (effects
  1828. (font
  1829. (size 1.27 1.27)
  1830. )
  1831. )
  1832. )
  1833. (pin "2"
  1834. (uuid "cb77e44d-8f91-4d5d-8f5a-404ac4cc236f")
  1835. )
  1836. (pin "1"
  1837. (uuid "0d0d0f31-414d-41f7-8144-8b655b637d82")
  1838. )
  1839. (instances
  1840. (project "cx-copter-schematic"
  1841. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  1842. (reference "R24")
  1843. (unit 1)
  1844. )
  1845. )
  1846. )
  1847. )
  1848. (symbol
  1849. (lib_id "Connector:TestPoint_Probe")
  1850. (at 129.54 78.74 180)
  1851. (unit 1)
  1852. (body_style 1)
  1853. (exclude_from_sim no)
  1854. (in_bom yes)
  1855. (on_board yes)
  1856. (in_pos_files yes)
  1857. (dnp no)
  1858. (uuid "c2b02536-e7a1-45a3-a0ca-8218a70fd1ed")
  1859. (property "Reference" "TP13"
  1860. (at 126.492 82.042 0)
  1861. (show_name no)
  1862. (do_not_autoplace no)
  1863. (effects
  1864. (font
  1865. (size 1.27 1.27)
  1866. )
  1867. (justify left)
  1868. )
  1869. )
  1870. (property "Value" "ESP_STATE"
  1871. (at 126.492 80.01 0)
  1872. (show_name no)
  1873. (do_not_autoplace no)
  1874. (effects
  1875. (font
  1876. (size 1.27 1.27)
  1877. )
  1878. (justify left)
  1879. )
  1880. )
  1881. (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm"
  1882. (at 124.46 78.74 0)
  1883. (hide yes)
  1884. (show_name no)
  1885. (do_not_autoplace no)
  1886. (effects
  1887. (font
  1888. (size 1.27 1.27)
  1889. )
  1890. )
  1891. )
  1892. (property "Datasheet" ""
  1893. (at 124.46 78.74 0)
  1894. (hide yes)
  1895. (show_name no)
  1896. (do_not_autoplace no)
  1897. (effects
  1898. (font
  1899. (size 1.27 1.27)
  1900. )
  1901. )
  1902. )
  1903. (property "Description" "test point (alternative probe-style design)"
  1904. (at 129.54 78.74 0)
  1905. (hide yes)
  1906. (show_name no)
  1907. (do_not_autoplace no)
  1908. (effects
  1909. (font
  1910. (size 1.27 1.27)
  1911. )
  1912. )
  1913. )
  1914. (pin "1"
  1915. (uuid "91c01163-c47c-494d-b502-8372471fe562")
  1916. )
  1917. (instances
  1918. (project "cx-copter-schematic"
  1919. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  1920. (reference "TP13")
  1921. (unit 1)
  1922. )
  1923. )
  1924. )
  1925. )
  1926. (symbol
  1927. (lib_id "power:+3V3")
  1928. (at 113.03 62.23 0)
  1929. (unit 1)
  1930. (body_style 1)
  1931. (exclude_from_sim no)
  1932. (in_bom yes)
  1933. (on_board yes)
  1934. (in_pos_files yes)
  1935. (dnp no)
  1936. (fields_autoplaced yes)
  1937. (uuid "d0f837c0-0085-4ba5-b3bd-05dd61aa3ffc")
  1938. (property "Reference" "#PWR075"
  1939. (at 113.03 66.04 0)
  1940. (hide yes)
  1941. (show_name no)
  1942. (do_not_autoplace no)
  1943. (effects
  1944. (font
  1945. (size 1.27 1.27)
  1946. )
  1947. )
  1948. )
  1949. (property "Value" "+3V3"
  1950. (at 113.03 57.15 0)
  1951. (show_name no)
  1952. (do_not_autoplace no)
  1953. (effects
  1954. (font
  1955. (size 1.27 1.27)
  1956. )
  1957. )
  1958. )
  1959. (property "Footprint" ""
  1960. (at 113.03 62.23 0)
  1961. (hide yes)
  1962. (show_name no)
  1963. (do_not_autoplace no)
  1964. (effects
  1965. (font
  1966. (size 1.27 1.27)
  1967. )
  1968. )
  1969. )
  1970. (property "Datasheet" ""
  1971. (at 113.03 62.23 0)
  1972. (hide yes)
  1973. (show_name no)
  1974. (do_not_autoplace no)
  1975. (effects
  1976. (font
  1977. (size 1.27 1.27)
  1978. )
  1979. )
  1980. )
  1981. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1982. (at 113.03 62.23 0)
  1983. (hide yes)
  1984. (show_name no)
  1985. (do_not_autoplace no)
  1986. (effects
  1987. (font
  1988. (size 1.27 1.27)
  1989. )
  1990. )
  1991. )
  1992. (pin "1"
  1993. (uuid "42cfe05b-7921-434d-a303-59fe5804588d")
  1994. )
  1995. (instances
  1996. (project "cx-copter-schematic"
  1997. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  1998. (reference "#PWR075")
  1999. (unit 1)
  2000. )
  2001. )
  2002. )
  2003. )
  2004. (symbol
  2005. (lib_id "power:+3V3")
  2006. (at 144.78 40.64 0)
  2007. (unit 1)
  2008. (body_style 1)
  2009. (exclude_from_sim no)
  2010. (in_bom yes)
  2011. (on_board yes)
  2012. (in_pos_files yes)
  2013. (dnp no)
  2014. (fields_autoplaced yes)
  2015. (uuid "de56b4f2-c63a-4870-a3ab-9bd43f965ead")
  2016. (property "Reference" "#PWR072"
  2017. (at 144.78 44.45 0)
  2018. (hide yes)
  2019. (show_name no)
  2020. (do_not_autoplace no)
  2021. (effects
  2022. (font
  2023. (size 1.27 1.27)
  2024. )
  2025. )
  2026. )
  2027. (property "Value" "+3V3"
  2028. (at 144.78 35.56 0)
  2029. (show_name no)
  2030. (do_not_autoplace no)
  2031. (effects
  2032. (font
  2033. (size 1.27 1.27)
  2034. )
  2035. )
  2036. )
  2037. (property "Footprint" ""
  2038. (at 144.78 40.64 0)
  2039. (hide yes)
  2040. (show_name no)
  2041. (do_not_autoplace no)
  2042. (effects
  2043. (font
  2044. (size 1.27 1.27)
  2045. )
  2046. )
  2047. )
  2048. (property "Datasheet" ""
  2049. (at 144.78 40.64 0)
  2050. (hide yes)
  2051. (show_name no)
  2052. (do_not_autoplace no)
  2053. (effects
  2054. (font
  2055. (size 1.27 1.27)
  2056. )
  2057. )
  2058. )
  2059. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2060. (at 144.78 40.64 0)
  2061. (hide yes)
  2062. (show_name no)
  2063. (do_not_autoplace no)
  2064. (effects
  2065. (font
  2066. (size 1.27 1.27)
  2067. )
  2068. )
  2069. )
  2070. (pin "1"
  2071. (uuid "f7eff4e5-e620-4514-ba15-52402de8a2bf")
  2072. )
  2073. (instances
  2074. (project "cx-copter-schematic"
  2075. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  2076. (reference "#PWR072")
  2077. (unit 1)
  2078. )
  2079. )
  2080. )
  2081. )
  2082. (symbol
  2083. (lib_id "power:+3V3")
  2084. (at 125.73 62.23 0)
  2085. (unit 1)
  2086. (body_style 1)
  2087. (exclude_from_sim no)
  2088. (in_bom yes)
  2089. (on_board yes)
  2090. (in_pos_files yes)
  2091. (dnp no)
  2092. (fields_autoplaced yes)
  2093. (uuid "e018d015-dd5a-421d-8409-4f56151a633d")
  2094. (property "Reference" "#PWR078"
  2095. (at 125.73 66.04 0)
  2096. (hide yes)
  2097. (show_name no)
  2098. (do_not_autoplace no)
  2099. (effects
  2100. (font
  2101. (size 1.27 1.27)
  2102. )
  2103. )
  2104. )
  2105. (property "Value" "+3V3"
  2106. (at 125.73 57.15 0)
  2107. (show_name no)
  2108. (do_not_autoplace no)
  2109. (effects
  2110. (font
  2111. (size 1.27 1.27)
  2112. )
  2113. )
  2114. )
  2115. (property "Footprint" ""
  2116. (at 125.73 62.23 0)
  2117. (hide yes)
  2118. (show_name no)
  2119. (do_not_autoplace no)
  2120. (effects
  2121. (font
  2122. (size 1.27 1.27)
  2123. )
  2124. )
  2125. )
  2126. (property "Datasheet" ""
  2127. (at 125.73 62.23 0)
  2128. (hide yes)
  2129. (show_name no)
  2130. (do_not_autoplace no)
  2131. (effects
  2132. (font
  2133. (size 1.27 1.27)
  2134. )
  2135. )
  2136. )
  2137. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2138. (at 125.73 62.23 0)
  2139. (hide yes)
  2140. (show_name no)
  2141. (do_not_autoplace no)
  2142. (effects
  2143. (font
  2144. (size 1.27 1.27)
  2145. )
  2146. )
  2147. )
  2148. (pin "1"
  2149. (uuid "cbda981d-ef31-4879-b72f-7d796db26616")
  2150. )
  2151. (instances
  2152. (project "cx-copter-schematic"
  2153. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  2154. (reference "#PWR078")
  2155. (unit 1)
  2156. )
  2157. )
  2158. )
  2159. )
  2160. (symbol
  2161. (lib_id "power:GND")
  2162. (at 144.78 104.14 0)
  2163. (unit 1)
  2164. (body_style 1)
  2165. (exclude_from_sim no)
  2166. (in_bom yes)
  2167. (on_board yes)
  2168. (in_pos_files yes)
  2169. (dnp no)
  2170. (fields_autoplaced yes)
  2171. (uuid "e6e09801-b63e-4d11-a144-c919ebc0779a")
  2172. (property "Reference" "#PWR076"
  2173. (at 144.78 110.49 0)
  2174. (hide yes)
  2175. (show_name no)
  2176. (do_not_autoplace no)
  2177. (effects
  2178. (font
  2179. (size 1.27 1.27)
  2180. )
  2181. )
  2182. )
  2183. (property "Value" "GND"
  2184. (at 144.78 109.22 0)
  2185. (show_name no)
  2186. (do_not_autoplace no)
  2187. (effects
  2188. (font
  2189. (size 1.27 1.27)
  2190. )
  2191. )
  2192. )
  2193. (property "Footprint" ""
  2194. (at 144.78 104.14 0)
  2195. (hide yes)
  2196. (show_name no)
  2197. (do_not_autoplace no)
  2198. (effects
  2199. (font
  2200. (size 1.27 1.27)
  2201. )
  2202. )
  2203. )
  2204. (property "Datasheet" ""
  2205. (at 144.78 104.14 0)
  2206. (hide yes)
  2207. (show_name no)
  2208. (do_not_autoplace no)
  2209. (effects
  2210. (font
  2211. (size 1.27 1.27)
  2212. )
  2213. )
  2214. )
  2215. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2216. (at 144.78 104.14 0)
  2217. (hide yes)
  2218. (show_name no)
  2219. (do_not_autoplace no)
  2220. (effects
  2221. (font
  2222. (size 1.27 1.27)
  2223. )
  2224. )
  2225. )
  2226. (pin "1"
  2227. (uuid "94dfb811-7ab6-465f-bdca-44e8f3539d26")
  2228. )
  2229. (instances
  2230. (project "cx-copter-schematic"
  2231. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  2232. (reference "#PWR076")
  2233. (unit 1)
  2234. )
  2235. )
  2236. )
  2237. )
  2238. (symbol
  2239. (lib_id "Device:R")
  2240. (at 107.95 88.9 90)
  2241. (unit 1)
  2242. (body_style 1)
  2243. (exclude_from_sim no)
  2244. (in_bom yes)
  2245. (on_board yes)
  2246. (in_pos_files yes)
  2247. (dnp no)
  2248. (uuid "f72324a8-ebc0-4f9f-96d4-021843306aa8")
  2249. (property "Reference" "R25"
  2250. (at 105.918 86.868 90)
  2251. (show_name no)
  2252. (do_not_autoplace no)
  2253. (effects
  2254. (font
  2255. (size 1.27 1.27)
  2256. )
  2257. (justify right)
  2258. )
  2259. )
  2260. (property "Value" "100R"
  2261. (at 105.41 90.932 90)
  2262. (show_name no)
  2263. (do_not_autoplace no)
  2264. (effects
  2265. (font
  2266. (size 1.27 1.27)
  2267. )
  2268. (justify right)
  2269. )
  2270. )
  2271. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  2272. (at 107.95 90.678 90)
  2273. (hide yes)
  2274. (show_name no)
  2275. (do_not_autoplace no)
  2276. (effects
  2277. (font
  2278. (size 1.27 1.27)
  2279. )
  2280. )
  2281. )
  2282. (property "Datasheet" ""
  2283. (at 107.95 88.9 0)
  2284. (hide yes)
  2285. (show_name no)
  2286. (do_not_autoplace no)
  2287. (effects
  2288. (font
  2289. (size 1.27 1.27)
  2290. )
  2291. )
  2292. )
  2293. (property "Description" "Resistor"
  2294. (at 107.95 88.9 0)
  2295. (hide yes)
  2296. (show_name no)
  2297. (do_not_autoplace no)
  2298. (effects
  2299. (font
  2300. (size 1.27 1.27)
  2301. )
  2302. )
  2303. )
  2304. (pin "2"
  2305. (uuid "9193cc84-bacc-40dc-bc05-62e20c17d25b")
  2306. )
  2307. (pin "1"
  2308. (uuid "ed181693-9e4f-4147-9d57-ffab3583d6a3")
  2309. )
  2310. (instances
  2311. (project "cx-copter-schematic"
  2312. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  2313. (reference "R25")
  2314. (unit 1)
  2315. )
  2316. )
  2317. )
  2318. )
  2319. (symbol
  2320. (lib_id "power:GND")
  2321. (at 166.37 55.88 0)
  2322. (unit 1)
  2323. (body_style 1)
  2324. (exclude_from_sim no)
  2325. (in_bom yes)
  2326. (on_board yes)
  2327. (in_pos_files yes)
  2328. (dnp no)
  2329. (fields_autoplaced yes)
  2330. (uuid "ff91a7fd-3868-4184-a50b-37cdb102ac91")
  2331. (property "Reference" "#PWR073"
  2332. (at 166.37 62.23 0)
  2333. (hide yes)
  2334. (show_name no)
  2335. (do_not_autoplace no)
  2336. (effects
  2337. (font
  2338. (size 1.27 1.27)
  2339. )
  2340. )
  2341. )
  2342. (property "Value" "GND"
  2343. (at 166.37 60.96 0)
  2344. (show_name no)
  2345. (do_not_autoplace no)
  2346. (effects
  2347. (font
  2348. (size 1.27 1.27)
  2349. )
  2350. )
  2351. )
  2352. (property "Footprint" ""
  2353. (at 166.37 55.88 0)
  2354. (hide yes)
  2355. (show_name no)
  2356. (do_not_autoplace no)
  2357. (effects
  2358. (font
  2359. (size 1.27 1.27)
  2360. )
  2361. )
  2362. )
  2363. (property "Datasheet" ""
  2364. (at 166.37 55.88 0)
  2365. (hide yes)
  2366. (show_name no)
  2367. (do_not_autoplace no)
  2368. (effects
  2369. (font
  2370. (size 1.27 1.27)
  2371. )
  2372. )
  2373. )
  2374. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2375. (at 166.37 55.88 0)
  2376. (hide yes)
  2377. (show_name no)
  2378. (do_not_autoplace no)
  2379. (effects
  2380. (font
  2381. (size 1.27 1.27)
  2382. )
  2383. )
  2384. )
  2385. (pin "1"
  2386. (uuid "b6c995cb-5838-4702-abb3-c24067695d05")
  2387. )
  2388. (instances
  2389. (project "cx-copter-schematic"
  2390. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
  2391. (reference "#PWR073")
  2392. (unit 1)
  2393. )
  2394. )
  2395. )
  2396. )
  2397. )