ESP12-F.kicad_sch 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  1. (kicad_sch
  2. (version 20231120)
  3. (generator "eeschema")
  4. (generator_version "8.0")
  5. (uuid "9665ebc7-28f2-41dc-b976-4876726bc137")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Module:ESP-12F"
  9. (pin_names
  10. (offset 1.016)
  11. )
  12. (exclude_from_sim no)
  13. (in_bom yes)
  14. (on_board yes)
  15. (property "Reference" "U"
  16. (at 11.43 -15.24 0)
  17. (effects
  18. (font
  19. (size 1.524 1.524)
  20. )
  21. )
  22. )
  23. (property "Value" "ESP-12F"
  24. (at 0 15.24 0)
  25. (effects
  26. (font
  27. (size 1.524 1.524)
  28. )
  29. )
  30. )
  31. (property "Footprint" ""
  32. (at 0 -1.27 0)
  33. (effects
  34. (font
  35. (size 1.524 1.524)
  36. )
  37. (hide yes)
  38. )
  39. )
  40. (property "Datasheet" ""
  41. (at 0 -1.27 0)
  42. (effects
  43. (font
  44. (size 1.524 1.524)
  45. )
  46. (hide yes)
  47. )
  48. )
  49. (property "Description" ""
  50. (at 0 0 0)
  51. (effects
  52. (font
  53. (size 1.27 1.27)
  54. )
  55. (hide yes)
  56. )
  57. )
  58. (symbol "ESP-12F_0_1"
  59. (rectangle
  60. (start -12.7 -12.7)
  61. (end 12.7 13.97)
  62. (stroke
  63. (width 0)
  64. (type default)
  65. )
  66. (fill
  67. (type none)
  68. )
  69. )
  70. (rectangle
  71. (start 6.35 -12.7)
  72. (end 6.35 -12.7)
  73. (stroke
  74. (width 0)
  75. (type default)
  76. )
  77. (fill
  78. (type none)
  79. )
  80. )
  81. )
  82. (symbol "ESP-12F_1_1"
  83. (pin input line
  84. (at -17.78 11.43 0)
  85. (length 5.08)
  86. (name "RST"
  87. (effects
  88. (font
  89. (size 1.27 1.27)
  90. )
  91. )
  92. )
  93. (number "1"
  94. (effects
  95. (font
  96. (size 1.27 1.27)
  97. )
  98. )
  99. )
  100. )
  101. (pin input line
  102. (at -3.81 -17.78 90)
  103. (length 5.08)
  104. (name "MISO"
  105. (effects
  106. (font
  107. (size 1.27 1.27)
  108. )
  109. )
  110. )
  111. (number "10"
  112. (effects
  113. (font
  114. (size 1.27 1.27)
  115. )
  116. )
  117. )
  118. )
  119. (pin input line
  120. (at -1.27 -17.78 90)
  121. (length 5.08)
  122. (name "GPIO9"
  123. (effects
  124. (font
  125. (size 1.27 1.27)
  126. )
  127. )
  128. )
  129. (number "11"
  130. (effects
  131. (font
  132. (size 1.27 1.27)
  133. )
  134. )
  135. )
  136. )
  137. (pin input line
  138. (at 1.27 -17.78 90)
  139. (length 5.08)
  140. (name "GPIO10"
  141. (effects
  142. (font
  143. (size 1.27 1.27)
  144. )
  145. )
  146. )
  147. (number "12"
  148. (effects
  149. (font
  150. (size 1.27 1.27)
  151. )
  152. )
  153. )
  154. )
  155. (pin input line
  156. (at 3.81 -17.78 90)
  157. (length 5.08)
  158. (name "MOSI"
  159. (effects
  160. (font
  161. (size 1.27 1.27)
  162. )
  163. )
  164. )
  165. (number "13"
  166. (effects
  167. (font
  168. (size 1.27 1.27)
  169. )
  170. )
  171. )
  172. )
  173. (pin input line
  174. (at 6.35 -17.78 90)
  175. (length 5.08)
  176. (name "SCLK"
  177. (effects
  178. (font
  179. (size 1.27 1.27)
  180. )
  181. )
  182. )
  183. (number "14"
  184. (effects
  185. (font
  186. (size 1.27 1.27)
  187. )
  188. )
  189. )
  190. )
  191. (pin input line
  192. (at 17.78 -6.35 180)
  193. (length 5.08)
  194. (name "GND"
  195. (effects
  196. (font
  197. (size 1.27 1.27)
  198. )
  199. )
  200. )
  201. (number "15"
  202. (effects
  203. (font
  204. (size 1.27 1.27)
  205. )
  206. )
  207. )
  208. )
  209. (pin input line
  210. (at 17.78 -3.81 180)
  211. (length 5.08)
  212. (name "GPIO15"
  213. (effects
  214. (font
  215. (size 1.27 1.27)
  216. )
  217. )
  218. )
  219. (number "16"
  220. (effects
  221. (font
  222. (size 1.27 1.27)
  223. )
  224. )
  225. )
  226. )
  227. (pin input line
  228. (at 17.78 -1.27 180)
  229. (length 5.08)
  230. (name "GPIO2"
  231. (effects
  232. (font
  233. (size 1.27 1.27)
  234. )
  235. )
  236. )
  237. (number "17"
  238. (effects
  239. (font
  240. (size 1.27 1.27)
  241. )
  242. )
  243. )
  244. )
  245. (pin input line
  246. (at 17.78 1.27 180)
  247. (length 5.08)
  248. (name "GPIO0"
  249. (effects
  250. (font
  251. (size 1.27 1.27)
  252. )
  253. )
  254. )
  255. (number "18"
  256. (effects
  257. (font
  258. (size 1.27 1.27)
  259. )
  260. )
  261. )
  262. )
  263. (pin input line
  264. (at 17.78 3.81 180)
  265. (length 5.08)
  266. (name "GPIO4"
  267. (effects
  268. (font
  269. (size 1.27 1.27)
  270. )
  271. )
  272. )
  273. (number "19"
  274. (effects
  275. (font
  276. (size 1.27 1.27)
  277. )
  278. )
  279. )
  280. )
  281. (pin input line
  282. (at -17.78 8.89 0)
  283. (length 5.08)
  284. (name "ADC"
  285. (effects
  286. (font
  287. (size 1.27 1.27)
  288. )
  289. )
  290. )
  291. (number "2"
  292. (effects
  293. (font
  294. (size 1.27 1.27)
  295. )
  296. )
  297. )
  298. )
  299. (pin input line
  300. (at 17.78 6.35 180)
  301. (length 5.08)
  302. (name "GPIO5"
  303. (effects
  304. (font
  305. (size 1.27 1.27)
  306. )
  307. )
  308. )
  309. (number "20"
  310. (effects
  311. (font
  312. (size 1.27 1.27)
  313. )
  314. )
  315. )
  316. )
  317. (pin input line
  318. (at 17.78 8.89 180)
  319. (length 5.08)
  320. (name "RXD"
  321. (effects
  322. (font
  323. (size 1.27 1.27)
  324. )
  325. )
  326. )
  327. (number "21"
  328. (effects
  329. (font
  330. (size 1.27 1.27)
  331. )
  332. )
  333. )
  334. )
  335. (pin input line
  336. (at 17.78 11.43 180)
  337. (length 5.08)
  338. (name "TXD"
  339. (effects
  340. (font
  341. (size 1.27 1.27)
  342. )
  343. )
  344. )
  345. (number "22"
  346. (effects
  347. (font
  348. (size 1.27 1.27)
  349. )
  350. )
  351. )
  352. )
  353. (pin input line
  354. (at -17.78 6.35 0)
  355. (length 5.08)
  356. (name "EN"
  357. (effects
  358. (font
  359. (size 1.27 1.27)
  360. )
  361. )
  362. )
  363. (number "3"
  364. (effects
  365. (font
  366. (size 1.27 1.27)
  367. )
  368. )
  369. )
  370. )
  371. (pin input line
  372. (at -17.78 3.81 0)
  373. (length 5.08)
  374. (name "GPIO16"
  375. (effects
  376. (font
  377. (size 1.27 1.27)
  378. )
  379. )
  380. )
  381. (number "4"
  382. (effects
  383. (font
  384. (size 1.27 1.27)
  385. )
  386. )
  387. )
  388. )
  389. (pin input line
  390. (at -17.78 1.27 0)
  391. (length 5.08)
  392. (name "GPIO14"
  393. (effects
  394. (font
  395. (size 1.27 1.27)
  396. )
  397. )
  398. )
  399. (number "5"
  400. (effects
  401. (font
  402. (size 1.27 1.27)
  403. )
  404. )
  405. )
  406. )
  407. (pin input line
  408. (at -17.78 -1.27 0)
  409. (length 5.08)
  410. (name "GPIO12"
  411. (effects
  412. (font
  413. (size 1.27 1.27)
  414. )
  415. )
  416. )
  417. (number "6"
  418. (effects
  419. (font
  420. (size 1.27 1.27)
  421. )
  422. )
  423. )
  424. )
  425. (pin input line
  426. (at -17.78 -3.81 0)
  427. (length 5.08)
  428. (name "GPIO13"
  429. (effects
  430. (font
  431. (size 1.27 1.27)
  432. )
  433. )
  434. )
  435. (number "7"
  436. (effects
  437. (font
  438. (size 1.27 1.27)
  439. )
  440. )
  441. )
  442. )
  443. (pin input line
  444. (at -17.78 -6.35 0)
  445. (length 5.08)
  446. (name "VCC"
  447. (effects
  448. (font
  449. (size 1.27 1.27)
  450. )
  451. )
  452. )
  453. (number "8"
  454. (effects
  455. (font
  456. (size 1.27 1.27)
  457. )
  458. )
  459. )
  460. )
  461. (pin input line
  462. (at -6.35 -17.78 90)
  463. (length 5.08)
  464. (name "CS0"
  465. (effects
  466. (font
  467. (size 1.27 1.27)
  468. )
  469. )
  470. )
  471. (number "9"
  472. (effects
  473. (font
  474. (size 1.27 1.27)
  475. )
  476. )
  477. )
  478. )
  479. )
  480. )
  481. (symbol "conn:CONN_01X05"
  482. (pin_names
  483. (offset 1.016) hide)
  484. (exclude_from_sim no)
  485. (in_bom yes)
  486. (on_board yes)
  487. (property "Reference" "P"
  488. (at 0 7.62 0)
  489. (effects
  490. (font
  491. (size 1.27 1.27)
  492. )
  493. )
  494. )
  495. (property "Value" "CONN_01X05"
  496. (at 2.54 0 90)
  497. (effects
  498. (font
  499. (size 1.27 1.27)
  500. )
  501. )
  502. )
  503. (property "Footprint" ""
  504. (at 0 0 0)
  505. (effects
  506. (font
  507. (size 1.27 1.27)
  508. )
  509. )
  510. )
  511. (property "Datasheet" ""
  512. (at 0 0 0)
  513. (effects
  514. (font
  515. (size 1.27 1.27)
  516. )
  517. )
  518. )
  519. (property "Description" ""
  520. (at 0 0 0)
  521. (effects
  522. (font
  523. (size 1.27 1.27)
  524. )
  525. (hide yes)
  526. )
  527. )
  528. (property "ki_fp_filters" "Pin_Header_Straight_1X05 Pin_Header_Angled_1X05 Socket_Strip_Straight_1X05 Socket_Strip_Angled_1X05"
  529. (at 0 0 0)
  530. (effects
  531. (font
  532. (size 1.27 1.27)
  533. )
  534. (hide yes)
  535. )
  536. )
  537. (symbol "CONN_01X05_0_1"
  538. (rectangle
  539. (start -1.27 -4.953)
  540. (end 0.254 -5.207)
  541. (stroke
  542. (width 0)
  543. (type default)
  544. )
  545. (fill
  546. (type none)
  547. )
  548. )
  549. (rectangle
  550. (start -1.27 -2.413)
  551. (end 0.254 -2.667)
  552. (stroke
  553. (width 0)
  554. (type default)
  555. )
  556. (fill
  557. (type none)
  558. )
  559. )
  560. (rectangle
  561. (start -1.27 0.127)
  562. (end 0.254 -0.127)
  563. (stroke
  564. (width 0)
  565. (type default)
  566. )
  567. (fill
  568. (type none)
  569. )
  570. )
  571. (rectangle
  572. (start -1.27 2.667)
  573. (end 0.254 2.413)
  574. (stroke
  575. (width 0)
  576. (type default)
  577. )
  578. (fill
  579. (type none)
  580. )
  581. )
  582. (rectangle
  583. (start -1.27 5.207)
  584. (end 0.254 4.953)
  585. (stroke
  586. (width 0)
  587. (type default)
  588. )
  589. (fill
  590. (type none)
  591. )
  592. )
  593. (rectangle
  594. (start -1.27 6.35)
  595. (end 1.27 -6.35)
  596. (stroke
  597. (width 0)
  598. (type default)
  599. )
  600. (fill
  601. (type none)
  602. )
  603. )
  604. )
  605. (symbol "CONN_01X05_1_1"
  606. (pin passive line
  607. (at -5.08 5.08 0)
  608. (length 3.81)
  609. (name "P1"
  610. (effects
  611. (font
  612. (size 1.27 1.27)
  613. )
  614. )
  615. )
  616. (number "1"
  617. (effects
  618. (font
  619. (size 1.27 1.27)
  620. )
  621. )
  622. )
  623. )
  624. (pin passive line
  625. (at -5.08 2.54 0)
  626. (length 3.81)
  627. (name "P2"
  628. (effects
  629. (font
  630. (size 1.27 1.27)
  631. )
  632. )
  633. )
  634. (number "2"
  635. (effects
  636. (font
  637. (size 1.27 1.27)
  638. )
  639. )
  640. )
  641. )
  642. (pin passive line
  643. (at -5.08 0 0)
  644. (length 3.81)
  645. (name "P3"
  646. (effects
  647. (font
  648. (size 1.27 1.27)
  649. )
  650. )
  651. )
  652. (number "3"
  653. (effects
  654. (font
  655. (size 1.27 1.27)
  656. )
  657. )
  658. )
  659. )
  660. (pin passive line
  661. (at -5.08 -2.54 0)
  662. (length 3.81)
  663. (name "P4"
  664. (effects
  665. (font
  666. (size 1.27 1.27)
  667. )
  668. )
  669. )
  670. (number "4"
  671. (effects
  672. (font
  673. (size 1.27 1.27)
  674. )
  675. )
  676. )
  677. )
  678. (pin passive line
  679. (at -5.08 -5.08 0)
  680. (length 3.81)
  681. (name "P5"
  682. (effects
  683. (font
  684. (size 1.27 1.27)
  685. )
  686. )
  687. )
  688. (number "5"
  689. (effects
  690. (font
  691. (size 1.27 1.27)
  692. )
  693. )
  694. )
  695. )
  696. )
  697. )
  698. (symbol "global:C"
  699. (pin_numbers hide)
  700. (pin_names
  701. (offset 0.254)
  702. )
  703. (exclude_from_sim no)
  704. (in_bom yes)
  705. (on_board yes)
  706. (property "Reference" "C"
  707. (at 0.635 2.54 0)
  708. (effects
  709. (font
  710. (size 1.27 1.27)
  711. )
  712. (justify left)
  713. )
  714. )
  715. (property "Value" "C"
  716. (at 0.635 -2.54 0)
  717. (effects
  718. (font
  719. (size 1.27 1.27)
  720. )
  721. (justify left)
  722. )
  723. )
  724. (property "Footprint" ""
  725. (at 0.9652 -3.81 0)
  726. (effects
  727. (font
  728. (size 1.27 1.27)
  729. )
  730. )
  731. )
  732. (property "Datasheet" ""
  733. (at 0 0 0)
  734. (effects
  735. (font
  736. (size 1.27 1.27)
  737. )
  738. )
  739. )
  740. (property "Description" ""
  741. (at 0 0 0)
  742. (effects
  743. (font
  744. (size 1.27 1.27)
  745. )
  746. (hide yes)
  747. )
  748. )
  749. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*"
  750. (at 0 0 0)
  751. (effects
  752. (font
  753. (size 1.27 1.27)
  754. )
  755. (hide yes)
  756. )
  757. )
  758. (symbol "C_0_1"
  759. (polyline
  760. (pts
  761. (xy -2.032 -0.762) (xy 2.032 -0.762)
  762. )
  763. (stroke
  764. (width 0.508)
  765. (type default)
  766. )
  767. (fill
  768. (type none)
  769. )
  770. )
  771. (polyline
  772. (pts
  773. (xy -2.032 0.762) (xy 2.032 0.762)
  774. )
  775. (stroke
  776. (width 0.508)
  777. (type default)
  778. )
  779. (fill
  780. (type none)
  781. )
  782. )
  783. )
  784. (symbol "C_1_1"
  785. (pin passive line
  786. (at 0 3.81 270)
  787. (length 2.794)
  788. (name "~"
  789. (effects
  790. (font
  791. (size 1.016 1.016)
  792. )
  793. )
  794. )
  795. (number "1"
  796. (effects
  797. (font
  798. (size 1.016 1.016)
  799. )
  800. )
  801. )
  802. )
  803. (pin passive line
  804. (at 0 -3.81 90)
  805. (length 2.794)
  806. (name "~"
  807. (effects
  808. (font
  809. (size 1.016 1.016)
  810. )
  811. )
  812. )
  813. (number "2"
  814. (effects
  815. (font
  816. (size 1.016 1.016)
  817. )
  818. )
  819. )
  820. )
  821. )
  822. )
  823. (symbol "global:R"
  824. (pin_numbers hide)
  825. (pin_names
  826. (offset 0)
  827. )
  828. (exclude_from_sim no)
  829. (in_bom yes)
  830. (on_board yes)
  831. (property "Reference" "R"
  832. (at 2.032 0 90)
  833. (effects
  834. (font
  835. (size 1.27 1.27)
  836. )
  837. )
  838. )
  839. (property "Value" "R"
  840. (at 0 0 90)
  841. (effects
  842. (font
  843. (size 1.27 1.27)
  844. )
  845. )
  846. )
  847. (property "Footprint" ""
  848. (at -1.778 0 90)
  849. (effects
  850. (font
  851. (size 1.27 1.27)
  852. )
  853. )
  854. )
  855. (property "Datasheet" ""
  856. (at 0 0 0)
  857. (effects
  858. (font
  859. (size 1.27 1.27)
  860. )
  861. )
  862. )
  863. (property "Description" ""
  864. (at 0 0 0)
  865. (effects
  866. (font
  867. (size 1.27 1.27)
  868. )
  869. (hide yes)
  870. )
  871. )
  872. (property "ki_fp_filters" "R_* Resistor_*"
  873. (at 0 0 0)
  874. (effects
  875. (font
  876. (size 1.27 1.27)
  877. )
  878. (hide yes)
  879. )
  880. )
  881. (symbol "R_0_1"
  882. (rectangle
  883. (start -1.016 -2.54)
  884. (end 1.016 2.54)
  885. (stroke
  886. (width 0.254)
  887. (type default)
  888. )
  889. (fill
  890. (type none)
  891. )
  892. )
  893. )
  894. (symbol "R_1_1"
  895. (pin passive line
  896. (at 0 3.81 270)
  897. (length 1.27)
  898. (name "~"
  899. (effects
  900. (font
  901. (size 1.27 1.27)
  902. )
  903. )
  904. )
  905. (number "1"
  906. (effects
  907. (font
  908. (size 1.27 1.27)
  909. )
  910. )
  911. )
  912. )
  913. (pin passive line
  914. (at 0 -3.81 90)
  915. (length 1.27)
  916. (name "~"
  917. (effects
  918. (font
  919. (size 1.27 1.27)
  920. )
  921. )
  922. )
  923. (number "2"
  924. (effects
  925. (font
  926. (size 1.27 1.27)
  927. )
  928. )
  929. )
  930. )
  931. )
  932. )
  933. )
  934. (junction
  935. (at 24.13 16.51)
  936. (diameter 0)
  937. (color 0 0 0 0)
  938. (uuid "2cffcee9-8871-4410-b6d2-b7dddac05c5d")
  939. )
  940. (junction
  941. (at 27.94 62.23)
  942. (diameter 0)
  943. (color 0 0 0 0)
  944. (uuid "6185fdf8-8d65-4ea9-8db9-f3c604a354a1")
  945. )
  946. (junction
  947. (at 30.48 27.94)
  948. (diameter 0)
  949. (color 0 0 0 0)
  950. (uuid "a88798fe-decd-4fa2-8f29-74447799eef7")
  951. )
  952. (junction
  953. (at 88.9 38.1)
  954. (diameter 0)
  955. (color 0 0 0 0)
  956. (uuid "cf51d4d7-d432-423e-901f-a7df50c83ee3")
  957. )
  958. (junction
  959. (at 27.94 54.61)
  960. (diameter 0)
  961. (color 0 0 0 0)
  962. (uuid "df9ba796-f680-4d71-83e4-83f135e655e1")
  963. )
  964. (junction
  965. (at 95.25 24.13)
  966. (diameter 0)
  967. (color 0 0 0 0)
  968. (uuid "fbe015d9-b3d0-4695-8d53-84e8927323fa")
  969. )
  970. (no_connect
  971. (at 36.83 38.1)
  972. (uuid "25e11784-3a59-4f4f-9b16-77cdd6082bbc")
  973. )
  974. (no_connect
  975. (at 36.83 40.64)
  976. (uuid "421c5ed9-e4cd-46af-b4fb-2b18d7fa93da")
  977. )
  978. (no_connect
  979. (at 60.96 57.15)
  980. (uuid "4fe3e923-9850-4c74-8451-37c24bf79676")
  981. )
  982. (no_connect
  983. (at 58.42 57.15)
  984. (uuid "7e99c5f3-0ead-467c-a8c3-f5bbc290611c")
  985. )
  986. (no_connect
  987. (at 36.83 35.56)
  988. (uuid "9f713c0d-868a-4290-bca3-027ceaf9dc10")
  989. )
  990. (no_connect
  991. (at 50.8 57.15)
  992. (uuid "a97a81d0-f180-44e0-a3d8-8b7759aa9eca")
  993. )
  994. (no_connect
  995. (at 36.83 43.18)
  996. (uuid "a9cae65d-165a-41a9-9a22-fd8445a81df3")
  997. )
  998. (no_connect
  999. (at 53.34 57.15)
  1000. (uuid "b36c8c09-a5c6-4cbe-9080-34b5a43995f4")
  1001. )
  1002. (no_connect
  1003. (at 36.83 30.48)
  1004. (uuid "c1333edb-e2bd-410d-9de7-11a3302fd9b5")
  1005. )
  1006. (no_connect
  1007. (at 55.88 57.15)
  1008. (uuid "d73a664b-4cb1-46b2-8b0f-5920d20fec5d")
  1009. )
  1010. (no_connect
  1011. (at 72.39 33.02)
  1012. (uuid "dbc11d04-59cc-4fc9-9340-70805268b454")
  1013. )
  1014. (no_connect
  1015. (at 48.26 57.15)
  1016. (uuid "edae29a4-9b4d-4bc8-bc36-7c9173aaed7c")
  1017. )
  1018. (no_connect
  1019. (at 72.39 35.56)
  1020. (uuid "fc281f08-cc4f-43d7-85e1-f3a38c08bd75")
  1021. )
  1022. (wire
  1023. (pts
  1024. (xy 21.59 16.51) (xy 24.13 16.51)
  1025. )
  1026. (stroke
  1027. (width 0)
  1028. (type default)
  1029. )
  1030. (uuid "0632cfe1-0141-4872-bca2-3386fe819f95")
  1031. )
  1032. (wire
  1033. (pts
  1034. (xy 88.9 31.75) (xy 88.9 38.1)
  1035. )
  1036. (stroke
  1037. (width 0)
  1038. (type default)
  1039. )
  1040. (uuid "1201e02a-9950-4718-890b-541f827e24ca")
  1041. )
  1042. (wire
  1043. (pts
  1044. (xy 95.25 24.13) (xy 97.79 24.13)
  1045. )
  1046. (stroke
  1047. (width 0)
  1048. (type default)
  1049. )
  1050. (uuid "16e9104e-7caf-427e-8352-3603bfc9f885")
  1051. )
  1052. (wire
  1053. (pts
  1054. (xy 17.78 27.94) (xy 30.48 27.94)
  1055. )
  1056. (stroke
  1057. (width 0)
  1058. (type default)
  1059. )
  1060. (uuid "17cafdf7-93c7-4756-a2b8-880722a84506")
  1061. )
  1062. (wire
  1063. (pts
  1064. (xy 30.48 27.94) (xy 36.83 27.94)
  1065. )
  1066. (stroke
  1067. (width 0)
  1068. (type default)
  1069. )
  1070. (uuid "1daf04b9-2c1b-41ce-b373-d7ec46dd774e")
  1071. )
  1072. (wire
  1073. (pts
  1074. (xy 88.9 24.13) (xy 95.25 24.13)
  1075. )
  1076. (stroke
  1077. (width 0)
  1078. (type default)
  1079. )
  1080. (uuid "259c9a94-4ee4-420d-8b91-284b9179a2ce")
  1081. )
  1082. (wire
  1083. (pts
  1084. (xy 24.13 33.02) (xy 36.83 33.02)
  1085. )
  1086. (stroke
  1087. (width 0)
  1088. (type default)
  1089. )
  1090. (uuid "2a2474c1-2117-494f-8cf3-37760f2b5162")
  1091. )
  1092. (wire
  1093. (pts
  1094. (xy 95.25 31.75) (xy 95.25 40.64)
  1095. )
  1096. (stroke
  1097. (width 0)
  1098. (type default)
  1099. )
  1100. (uuid "3587b16a-b76c-4e53-a2a7-d91959cd3a18")
  1101. )
  1102. (wire
  1103. (pts
  1104. (xy 24.13 16.51) (xy 30.48 16.51)
  1105. )
  1106. (stroke
  1107. (width 0)
  1108. (type default)
  1109. )
  1110. (uuid "4960c00b-a81e-43e8-9f42-ee6129ba85f4")
  1111. )
  1112. (wire
  1113. (pts
  1114. (xy 22.86 62.23) (xy 27.94 62.23)
  1115. )
  1116. (stroke
  1117. (width 0)
  1118. (type default)
  1119. )
  1120. (uuid "504727e5-0a5f-4c1e-b9e0-ca7d6f042143")
  1121. )
  1122. (wire
  1123. (pts
  1124. (xy 30.48 24.13) (xy 30.48 27.94)
  1125. )
  1126. (stroke
  1127. (width 0)
  1128. (type default)
  1129. )
  1130. (uuid "5bbabcf8-01e7-4566-b232-eb800aad1b77")
  1131. )
  1132. (wire
  1133. (pts
  1134. (xy 22.86 54.61) (xy 27.94 54.61)
  1135. )
  1136. (stroke
  1137. (width 0)
  1138. (type default)
  1139. )
  1140. (uuid "64c8ac61-cd12-40d2-94aa-679411f15aeb")
  1141. )
  1142. (wire
  1143. (pts
  1144. (xy 88.9 38.1) (xy 100.33 38.1)
  1145. )
  1146. (stroke
  1147. (width 0)
  1148. (type default)
  1149. )
  1150. (uuid "67a8c8aa-68de-4680-bf5c-64f85d72b1b8")
  1151. )
  1152. (wire
  1153. (pts
  1154. (xy 72.39 38.1) (xy 88.9 38.1)
  1155. )
  1156. (stroke
  1157. (width 0)
  1158. (type default)
  1159. )
  1160. (uuid "8883f6da-c9b4-4727-a3e7-cb10eea46085")
  1161. )
  1162. (wire
  1163. (pts
  1164. (xy 27.94 54.61) (xy 36.83 54.61)
  1165. )
  1166. (stroke
  1167. (width 0)
  1168. (type default)
  1169. )
  1170. (uuid "89dc4282-8229-4f89-83e2-901ab1fb3c3c")
  1171. )
  1172. (wire
  1173. (pts
  1174. (xy 72.39 40.64) (xy 95.25 40.64)
  1175. )
  1176. (stroke
  1177. (width 0)
  1178. (type default)
  1179. )
  1180. (uuid "8b376445-6d5c-4252-8b36-28d688c6c7ce")
  1181. )
  1182. (wire
  1183. (pts
  1184. (xy 27.94 62.23) (xy 36.83 62.23)
  1185. )
  1186. (stroke
  1187. (width 0)
  1188. (type default)
  1189. )
  1190. (uuid "913b3cd7-6942-44ba-a892-a51b3d831a2d")
  1191. )
  1192. (wire
  1193. (pts
  1194. (xy 24.13 24.13) (xy 24.13 33.02)
  1195. )
  1196. (stroke
  1197. (width 0)
  1198. (type default)
  1199. )
  1200. (uuid "abc8e683-f00d-47d8-9a82-98354486ebd6")
  1201. )
  1202. (text "V2 :\nLa V2 du schéma de l'ESP utilise un NODE MCU pour programmé le ESP.\nNODE MCU sans esp\nPensé a mettre le STM32 en reset (monter sans le cable usb la carte de programation)"
  1203. (exclude_from_sim no)
  1204. (at 19.05 187.96 0)
  1205. (effects
  1206. (font
  1207. (size 1.27 1.27)
  1208. )
  1209. (justify left bottom)
  1210. )
  1211. (uuid "6339da43-b217-48b8-9b2c-238a5c6f0af1")
  1212. )
  1213. (text "ESP-12F\n"
  1214. (exclude_from_sim no)
  1215. (at 49.53 68.58 0)
  1216. (effects
  1217. (font
  1218. (size 1.524 1.524)
  1219. )
  1220. (justify left bottom)
  1221. )
  1222. (uuid "66d73138-c54b-40cb-9ecf-36ef3f2bfd00")
  1223. )
  1224. (label "3.3V"
  1225. (at 36.83 45.72 180)
  1226. (fields_autoplaced yes)
  1227. (effects
  1228. (font
  1229. (size 1.524 1.524)
  1230. )
  1231. (justify right bottom)
  1232. )
  1233. (uuid "124fc515-0ae8-4f76-ad7a-5fb690d95265")
  1234. )
  1235. (label "3.3V"
  1236. (at 97.79 24.13 0)
  1237. (fields_autoplaced yes)
  1238. (effects
  1239. (font
  1240. (size 1.524 1.524)
  1241. )
  1242. (justify left bottom)
  1243. )
  1244. (uuid "15c0a256-5301-4e11-9a68-9f1ca3a9b66d")
  1245. )
  1246. (label "GND"
  1247. (at 22.86 62.23 180)
  1248. (fields_autoplaced yes)
  1249. (effects
  1250. (font
  1251. (size 1.524 1.524)
  1252. )
  1253. (justify right bottom)
  1254. )
  1255. (uuid "1955cfa8-494a-4ff1-95e4-449cb77cc943")
  1256. )
  1257. (label "TX"
  1258. (at 125.73 26.67 180)
  1259. (fields_autoplaced yes)
  1260. (effects
  1261. (font
  1262. (size 1.524 1.524)
  1263. )
  1264. (justify right bottom)
  1265. )
  1266. (uuid "1b9a8554-f1e1-42d6-b46a-c598e59fb4e7")
  1267. )
  1268. (label "RST"
  1269. (at 17.78 27.94 180)
  1270. (fields_autoplaced yes)
  1271. (effects
  1272. (font
  1273. (size 1.27 1.27)
  1274. )
  1275. (justify right bottom)
  1276. )
  1277. (uuid "1fa6075c-d807-45d7-a9c1-ac71b85c429e")
  1278. )
  1279. (label "TX"
  1280. (at 72.39 27.94 0)
  1281. (fields_autoplaced yes)
  1282. (effects
  1283. (font
  1284. (size 1.524 1.524)
  1285. )
  1286. (justify left bottom)
  1287. )
  1288. (uuid "239e3a2b-c5b3-44ac-8317-269bfe9bb9d0")
  1289. )
  1290. (label "GND"
  1291. (at 72.39 43.18 0)
  1292. (fields_autoplaced yes)
  1293. (effects
  1294. (font
  1295. (size 1.524 1.524)
  1296. )
  1297. (justify left bottom)
  1298. )
  1299. (uuid "24b8e56c-330a-4446-b97e-3e13ea825498")
  1300. )
  1301. (label "GPIO0"
  1302. (at 100.33 38.1 0)
  1303. (fields_autoplaced yes)
  1304. (effects
  1305. (font
  1306. (size 1.27 1.27)
  1307. )
  1308. (justify left bottom)
  1309. )
  1310. (uuid "2d8917e3-6d81-4308-889e-8d42c0264f69")
  1311. )
  1312. (label "3.3V"
  1313. (at 22.86 54.61 180)
  1314. (fields_autoplaced yes)
  1315. (effects
  1316. (font
  1317. (size 1.524 1.524)
  1318. )
  1319. (justify right bottom)
  1320. )
  1321. (uuid "3d990992-5143-4d4c-8ba5-b029ebc06f4e")
  1322. )
  1323. (label "3.3V"
  1324. (at 21.59 16.51 180)
  1325. (fields_autoplaced yes)
  1326. (effects
  1327. (font
  1328. (size 1.524 1.524)
  1329. )
  1330. (justify right bottom)
  1331. )
  1332. (uuid "61f8c0ae-53e1-47b7-a11f-e74a54d3fb5b")
  1333. )
  1334. (label "GND"
  1335. (at 125.73 36.83 180)
  1336. (fields_autoplaced yes)
  1337. (effects
  1338. (font
  1339. (size 1.524 1.524)
  1340. )
  1341. (justify right bottom)
  1342. )
  1343. (uuid "6382f53a-d2f5-4940-9958-cf9f59e948a7")
  1344. )
  1345. (label "GND"
  1346. (at 72.39 45.72 0)
  1347. (fields_autoplaced yes)
  1348. (effects
  1349. (font
  1350. (size 1.524 1.524)
  1351. )
  1352. (justify left bottom)
  1353. )
  1354. (uuid "8fe345cd-3398-4f70-b167-737d453ac8c5")
  1355. )
  1356. (label "RX"
  1357. (at 125.73 29.21 180)
  1358. (fields_autoplaced yes)
  1359. (effects
  1360. (font
  1361. (size 1.524 1.524)
  1362. )
  1363. (justify right bottom)
  1364. )
  1365. (uuid "ac2cd8ec-0930-4e22-ba58-97ef2d885292")
  1366. )
  1367. (label "GPIO0"
  1368. (at 125.73 31.75 180)
  1369. (fields_autoplaced yes)
  1370. (effects
  1371. (font
  1372. (size 1.27 1.27)
  1373. )
  1374. (justify right bottom)
  1375. )
  1376. (uuid "d1c3c0fb-a90d-4e59-b2f1-e59228b5d867")
  1377. )
  1378. (label "RX"
  1379. (at 72.39 30.48 0)
  1380. (fields_autoplaced yes)
  1381. (effects
  1382. (font
  1383. (size 1.524 1.524)
  1384. )
  1385. (justify left bottom)
  1386. )
  1387. (uuid "e50d7a5f-ca2e-43ce-9eb7-09cc4ac54d22")
  1388. )
  1389. (label "RST"
  1390. (at 125.73 34.29 180)
  1391. (fields_autoplaced yes)
  1392. (effects
  1393. (font
  1394. (size 1.27 1.27)
  1395. )
  1396. (justify right bottom)
  1397. )
  1398. (uuid "f5a64210-018e-416d-a63d-0665730f93ab")
  1399. )
  1400. (symbol
  1401. (lib_id "global:R")
  1402. (at 30.48 20.32 0)
  1403. (unit 1)
  1404. (exclude_from_sim no)
  1405. (in_bom yes)
  1406. (on_board yes)
  1407. (dnp no)
  1408. (uuid "00000000-0000-0000-0000-00005ceee96c")
  1409. (property "Reference" "R?"
  1410. (at 32.512 20.32 90)
  1411. (effects
  1412. (font
  1413. (size 1.27 1.27)
  1414. )
  1415. )
  1416. )
  1417. (property "Value" "10K"
  1418. (at 30.48 20.32 90)
  1419. (effects
  1420. (font
  1421. (size 1.27 1.27)
  1422. )
  1423. )
  1424. )
  1425. (property "Footprint" "R:0805"
  1426. (at 28.702 20.32 90)
  1427. (effects
  1428. (font
  1429. (size 1.27 1.27)
  1430. )
  1431. (hide yes)
  1432. )
  1433. )
  1434. (property "Datasheet" ""
  1435. (at 30.48 20.32 0)
  1436. (effects
  1437. (font
  1438. (size 1.27 1.27)
  1439. )
  1440. )
  1441. )
  1442. (property "Description" ""
  1443. (at 30.48 20.32 0)
  1444. (effects
  1445. (font
  1446. (size 1.27 1.27)
  1447. )
  1448. (hide yes)
  1449. )
  1450. )
  1451. (property "Partkeepr" "0910"
  1452. (at 2.54 38.1 0)
  1453. (effects
  1454. (font
  1455. (size 1.27 1.27)
  1456. )
  1457. (hide yes)
  1458. )
  1459. )
  1460. (pin "1"
  1461. (uuid "7bf289d6-68c4-412b-9f0a-4dffd3319dce")
  1462. )
  1463. (pin "2"
  1464. (uuid "269c0a98-117f-47d0-84fe-c14359ed040f")
  1465. )
  1466. (instances
  1467. (project ""
  1468. (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
  1469. (reference "R?")
  1470. (unit 1)
  1471. )
  1472. )
  1473. )
  1474. )
  1475. (symbol
  1476. (lib_id "global:R")
  1477. (at 24.13 20.32 0)
  1478. (unit 1)
  1479. (exclude_from_sim no)
  1480. (in_bom yes)
  1481. (on_board yes)
  1482. (dnp no)
  1483. (uuid "00000000-0000-0000-0000-00005ceee974")
  1484. (property "Reference" "R?"
  1485. (at 26.162 20.32 90)
  1486. (effects
  1487. (font
  1488. (size 1.27 1.27)
  1489. )
  1490. )
  1491. )
  1492. (property "Value" "10K"
  1493. (at 24.13 20.32 90)
  1494. (effects
  1495. (font
  1496. (size 1.27 1.27)
  1497. )
  1498. )
  1499. )
  1500. (property "Footprint" "R:0805"
  1501. (at 22.352 20.32 90)
  1502. (effects
  1503. (font
  1504. (size 1.27 1.27)
  1505. )
  1506. (hide yes)
  1507. )
  1508. )
  1509. (property "Datasheet" ""
  1510. (at 24.13 20.32 0)
  1511. (effects
  1512. (font
  1513. (size 1.27 1.27)
  1514. )
  1515. )
  1516. )
  1517. (property "Description" ""
  1518. (at 24.13 20.32 0)
  1519. (effects
  1520. (font
  1521. (size 1.27 1.27)
  1522. )
  1523. (hide yes)
  1524. )
  1525. )
  1526. (property "Partkeepr" "0910"
  1527. (at -3.81 43.18 0)
  1528. (effects
  1529. (font
  1530. (size 1.27 1.27)
  1531. )
  1532. (hide yes)
  1533. )
  1534. )
  1535. (pin "1"
  1536. (uuid "a5bffeab-6117-4073-ac44-be5e14cf651d")
  1537. )
  1538. (pin "2"
  1539. (uuid "b5fa7f5d-3107-4fe9-8640-4e9e65c0661a")
  1540. )
  1541. (instances
  1542. (project ""
  1543. (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
  1544. (reference "R?")
  1545. (unit 1)
  1546. )
  1547. )
  1548. )
  1549. )
  1550. (symbol
  1551. (lib_id "global:C")
  1552. (at 36.83 58.42 0)
  1553. (unit 1)
  1554. (exclude_from_sim no)
  1555. (in_bom yes)
  1556. (on_board yes)
  1557. (dnp no)
  1558. (uuid "00000000-0000-0000-0000-00005ceee98a")
  1559. (property "Reference" "C?"
  1560. (at 39.751 57.2516 0)
  1561. (effects
  1562. (font
  1563. (size 1.27 1.27)
  1564. )
  1565. (justify left)
  1566. )
  1567. )
  1568. (property "Value" "100nF"
  1569. (at 39.751 59.563 0)
  1570. (effects
  1571. (font
  1572. (size 1.27 1.27)
  1573. )
  1574. (justify left)
  1575. )
  1576. )
  1577. (property "Footprint" "C:0805"
  1578. (at 37.7952 62.23 0)
  1579. (effects
  1580. (font
  1581. (size 1.27 1.27)
  1582. )
  1583. (hide yes)
  1584. )
  1585. )
  1586. (property "Datasheet" ""
  1587. (at 36.83 58.42 0)
  1588. (effects
  1589. (font
  1590. (size 1.27 1.27)
  1591. )
  1592. )
  1593. )
  1594. (property "Description" ""
  1595. (at 36.83 58.42 0)
  1596. (effects
  1597. (font
  1598. (size 1.27 1.27)
  1599. )
  1600. (hide yes)
  1601. )
  1602. )
  1603. (property "Partkeepr" "0605"
  1604. (at 5.08 106.68 0)
  1605. (effects
  1606. (font
  1607. (size 1.27 1.27)
  1608. )
  1609. (hide yes)
  1610. )
  1611. )
  1612. (pin "1"
  1613. (uuid "5add8a08-1826-4ea1-8613-d67ac8663fce")
  1614. )
  1615. (pin "2"
  1616. (uuid "c8f96216-9476-45d9-ac77-f9a1120b2891")
  1617. )
  1618. (instances
  1619. (project ""
  1620. (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
  1621. (reference "C?")
  1622. (unit 1)
  1623. )
  1624. )
  1625. )
  1626. )
  1627. (symbol
  1628. (lib_id "global:R")
  1629. (at 88.9 27.94 0)
  1630. (unit 1)
  1631. (exclude_from_sim no)
  1632. (in_bom yes)
  1633. (on_board yes)
  1634. (dnp no)
  1635. (uuid "00000000-0000-0000-0000-00005ceee994")
  1636. (property "Reference" "R?"
  1637. (at 90.932 27.94 90)
  1638. (effects
  1639. (font
  1640. (size 1.27 1.27)
  1641. )
  1642. )
  1643. )
  1644. (property "Value" "10K"
  1645. (at 88.9 27.94 90)
  1646. (effects
  1647. (font
  1648. (size 1.27 1.27)
  1649. )
  1650. )
  1651. )
  1652. (property "Footprint" "R:0805"
  1653. (at 87.122 27.94 90)
  1654. (effects
  1655. (font
  1656. (size 1.27 1.27)
  1657. )
  1658. (hide yes)
  1659. )
  1660. )
  1661. (property "Datasheet" ""
  1662. (at 88.9 27.94 0)
  1663. (effects
  1664. (font
  1665. (size 1.27 1.27)
  1666. )
  1667. )
  1668. )
  1669. (property "Description" ""
  1670. (at 88.9 27.94 0)
  1671. (effects
  1672. (font
  1673. (size 1.27 1.27)
  1674. )
  1675. (hide yes)
  1676. )
  1677. )
  1678. (property "Partkeepr" "0910"
  1679. (at 13.97 58.42 0)
  1680. (effects
  1681. (font
  1682. (size 1.27 1.27)
  1683. )
  1684. (hide yes)
  1685. )
  1686. )
  1687. (pin "1"
  1688. (uuid "fd06b059-d45f-4a65-805e-51d0b38327f9")
  1689. )
  1690. (pin "2"
  1691. (uuid "56002ab7-0c97-47b1-aebc-898bb99738e7")
  1692. )
  1693. (instances
  1694. (project ""
  1695. (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
  1696. (reference "R?")
  1697. (unit 1)
  1698. )
  1699. )
  1700. )
  1701. )
  1702. (symbol
  1703. (lib_id "global:R")
  1704. (at 95.25 27.94 0)
  1705. (unit 1)
  1706. (exclude_from_sim no)
  1707. (in_bom yes)
  1708. (on_board yes)
  1709. (dnp no)
  1710. (uuid "00000000-0000-0000-0000-00005ceee99e")
  1711. (property "Reference" "R?"
  1712. (at 97.282 27.94 90)
  1713. (effects
  1714. (font
  1715. (size 1.27 1.27)
  1716. )
  1717. )
  1718. )
  1719. (property "Value" "10K"
  1720. (at 95.25 27.94 90)
  1721. (effects
  1722. (font
  1723. (size 1.27 1.27)
  1724. )
  1725. )
  1726. )
  1727. (property "Footprint" "R:0805"
  1728. (at 93.472 27.94 90)
  1729. (effects
  1730. (font
  1731. (size 1.27 1.27)
  1732. )
  1733. (hide yes)
  1734. )
  1735. )
  1736. (property "Datasheet" ""
  1737. (at 95.25 27.94 0)
  1738. (effects
  1739. (font
  1740. (size 1.27 1.27)
  1741. )
  1742. )
  1743. )
  1744. (property "Description" ""
  1745. (at 95.25 27.94 0)
  1746. (effects
  1747. (font
  1748. (size 1.27 1.27)
  1749. )
  1750. (hide yes)
  1751. )
  1752. )
  1753. (property "Partkeepr" "0910"
  1754. (at 17.78 69.85 0)
  1755. (effects
  1756. (font
  1757. (size 1.27 1.27)
  1758. )
  1759. (hide yes)
  1760. )
  1761. )
  1762. (pin "1"
  1763. (uuid "156985ca-2324-4463-9ead-e18eb7e8550b")
  1764. )
  1765. (pin "2"
  1766. (uuid "c807d400-0dea-4e24-94c5-c673284faa52")
  1767. )
  1768. (instances
  1769. (project ""
  1770. (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
  1771. (reference "R?")
  1772. (unit 1)
  1773. )
  1774. )
  1775. )
  1776. )
  1777. (symbol
  1778. (lib_id "global:C")
  1779. (at 27.94 58.42 0)
  1780. (unit 1)
  1781. (exclude_from_sim no)
  1782. (in_bom yes)
  1783. (on_board yes)
  1784. (dnp no)
  1785. (uuid "00000000-0000-0000-0000-00005ceee9c1")
  1786. (property "Reference" "C?"
  1787. (at 28.575 55.88 0)
  1788. (effects
  1789. (font
  1790. (size 1.27 1.27)
  1791. )
  1792. (justify left)
  1793. )
  1794. )
  1795. (property "Value" "4.7µF"
  1796. (at 28.575 60.96 0)
  1797. (effects
  1798. (font
  1799. (size 1.27 1.27)
  1800. )
  1801. (justify left)
  1802. )
  1803. )
  1804. (property "Footprint" "C:0805"
  1805. (at 28.9052 62.23 0)
  1806. (effects
  1807. (font
  1808. (size 1.27 1.27)
  1809. )
  1810. (hide yes)
  1811. )
  1812. )
  1813. (property "Datasheet" ""
  1814. (at 27.94 58.42 0)
  1815. (effects
  1816. (font
  1817. (size 1.27 1.27)
  1818. )
  1819. )
  1820. )
  1821. (property "Description" ""
  1822. (at 27.94 58.42 0)
  1823. (effects
  1824. (font
  1825. (size 1.27 1.27)
  1826. )
  1827. (hide yes)
  1828. )
  1829. )
  1830. (property "Partkeepr" "0607"
  1831. (at 7.62 235.585 0)
  1832. (effects
  1833. (font
  1834. (size 1.27 1.27)
  1835. )
  1836. (hide yes)
  1837. )
  1838. )
  1839. (pin "1"
  1840. (uuid "27207fed-570b-499c-9b43-25bd84a1d79b")
  1841. )
  1842. (pin "2"
  1843. (uuid "b28e35c6-8d26-446b-adb7-69d88fc6bd17")
  1844. )
  1845. (instances
  1846. (project ""
  1847. (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
  1848. (reference "C?")
  1849. (unit 1)
  1850. )
  1851. )
  1852. )
  1853. )
  1854. (symbol
  1855. (lib_id "Module:ESP-12F")
  1856. (at 54.61 39.37 0)
  1857. (unit 1)
  1858. (exclude_from_sim no)
  1859. (in_bom yes)
  1860. (on_board yes)
  1861. (dnp no)
  1862. (uuid "00000000-0000-0000-0000-00005e455468")
  1863. (property "Reference" "U?"
  1864. (at 54.61 20.6502 0)
  1865. (effects
  1866. (font
  1867. (size 1.524 1.524)
  1868. )
  1869. )
  1870. )
  1871. (property "Value" "ESP-12F"
  1872. (at 54.61 23.3426 0)
  1873. (effects
  1874. (font
  1875. (size 1.524 1.524)
  1876. )
  1877. )
  1878. )
  1879. (property "Footprint" "Module:ESP-12F"
  1880. (at 54.61 40.64 0)
  1881. (effects
  1882. (font
  1883. (size 1.524 1.524)
  1884. )
  1885. (hide yes)
  1886. )
  1887. )
  1888. (property "Datasheet" ""
  1889. (at 54.61 40.64 0)
  1890. (effects
  1891. (font
  1892. (size 1.524 1.524)
  1893. )
  1894. (hide yes)
  1895. )
  1896. )
  1897. (property "Description" ""
  1898. (at 54.61 39.37 0)
  1899. (effects
  1900. (font
  1901. (size 1.27 1.27)
  1902. )
  1903. (hide yes)
  1904. )
  1905. )
  1906. (property "Partkeepr" "2800"
  1907. (at 54.61 39.37 0)
  1908. (effects
  1909. (font
  1910. (size 1.27 1.27)
  1911. )
  1912. (hide yes)
  1913. )
  1914. )
  1915. (pin "1"
  1916. (uuid "f7557fa6-e168-4368-bec6-43e190ff5feb")
  1917. )
  1918. (pin "10"
  1919. (uuid "a13a9891-08dc-45ff-bb45-7fe40ed0eae2")
  1920. )
  1921. (pin "11"
  1922. (uuid "9673ae97-283d-4f2f-a6dd-94764eae7d22")
  1923. )
  1924. (pin "12"
  1925. (uuid "fda4cbf1-9dfa-47c8-aa63-a2e6c8cd4526")
  1926. )
  1927. (pin "13"
  1928. (uuid "7bca64fa-113c-42d1-a06c-cc12a8779975")
  1929. )
  1930. (pin "14"
  1931. (uuid "029774aa-37cf-40f9-b943-d6d6389109dc")
  1932. )
  1933. (pin "15"
  1934. (uuid "c10a3dd8-3382-4bfc-88fd-e85261581852")
  1935. )
  1936. (pin "16"
  1937. (uuid "b68cee68-0981-4af5-a05a-f3a98132b38f")
  1938. )
  1939. (pin "17"
  1940. (uuid "c090dc02-0ae5-4b89-adf8-b75751b6dc2f")
  1941. )
  1942. (pin "18"
  1943. (uuid "2cd5b243-bf57-4c1c-b897-f28b3b0d68eb")
  1944. )
  1945. (pin "19"
  1946. (uuid "36f899c5-db4a-44ac-9f00-7e280ef774bf")
  1947. )
  1948. (pin "2"
  1949. (uuid "1a89d2a4-a6e0-417e-8bb8-610cd02e75f7")
  1950. )
  1951. (pin "20"
  1952. (uuid "3babd4ef-0ae3-4506-b3a9-9aefd253edf4")
  1953. )
  1954. (pin "21"
  1955. (uuid "8aa3169a-88e3-4d52-9e9c-a18c220a3dff")
  1956. )
  1957. (pin "22"
  1958. (uuid "38e4bf0b-e3a5-4320-9d97-7f9e5a9f4c6b")
  1959. )
  1960. (pin "3"
  1961. (uuid "c39c9fea-a4f2-4c7f-b400-bf438249cfe2")
  1962. )
  1963. (pin "4"
  1964. (uuid "370fffc0-493a-4f29-bfde-bfdad1aad6da")
  1965. )
  1966. (pin "5"
  1967. (uuid "2f586e05-bfe9-43ed-b148-2ea299d270c1")
  1968. )
  1969. (pin "6"
  1970. (uuid "7625d1f8-c776-42d9-9ea3-299275481d23")
  1971. )
  1972. (pin "7"
  1973. (uuid "4d2a91c1-5cc8-4757-8d33-f84fa73a210c")
  1974. )
  1975. (pin "8"
  1976. (uuid "584b603b-ba83-4f7b-98c2-7878c32a6212")
  1977. )
  1978. (pin "9"
  1979. (uuid "976216f2-adef-4035-a198-47057c207ae3")
  1980. )
  1981. (instances
  1982. (project ""
  1983. (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
  1984. (reference "U?")
  1985. (unit 1)
  1986. )
  1987. )
  1988. )
  1989. )
  1990. (symbol
  1991. (lib_id "conn:CONN_01X05")
  1992. (at 130.81 31.75 0)
  1993. (unit 1)
  1994. (exclude_from_sim no)
  1995. (in_bom yes)
  1996. (on_board yes)
  1997. (dnp no)
  1998. (fields_autoplaced yes)
  1999. (uuid "85572356-6139-4ed2-8486-a84cc09f4a4f")
  2000. (property "Reference" "P?"
  2001. (at 133.35 30.4799 0)
  2002. (effects
  2003. (font
  2004. (size 1.27 1.27)
  2005. )
  2006. (justify left)
  2007. )
  2008. )
  2009. (property "Value" "CONN_01X05"
  2010. (at 133.35 33.0199 0)
  2011. (effects
  2012. (font
  2013. (size 1.27 1.27)
  2014. )
  2015. (justify left)
  2016. )
  2017. )
  2018. (property "Footprint" "PinHeader:PinHeader2.54_1X5_CMS"
  2019. (at 130.81 31.75 0)
  2020. (effects
  2021. (font
  2022. (size 1.27 1.27)
  2023. )
  2024. (hide yes)
  2025. )
  2026. )
  2027. (property "Datasheet" ""
  2028. (at 130.81 31.75 0)
  2029. (effects
  2030. (font
  2031. (size 1.27 1.27)
  2032. )
  2033. )
  2034. )
  2035. (property "Description" ""
  2036. (at 130.81 31.75 0)
  2037. (effects
  2038. (font
  2039. (size 1.27 1.27)
  2040. )
  2041. (hide yes)
  2042. )
  2043. )
  2044. (property "Partkeepr" "0100"
  2045. (at 130.81 31.75 0)
  2046. (effects
  2047. (font
  2048. (size 1.27 1.27)
  2049. )
  2050. (hide yes)
  2051. )
  2052. )
  2053. (pin "1"
  2054. (uuid "114e7ef6-8ed3-4db7-81de-d8691d836c8a")
  2055. )
  2056. (pin "2"
  2057. (uuid "c94bd112-a30d-45dd-b7c6-2981c827d2f5")
  2058. )
  2059. (pin "3"
  2060. (uuid "ee05f436-58c8-4b94-8789-aa3a8a915968")
  2061. )
  2062. (pin "4"
  2063. (uuid "78eec8eb-77a8-4de3-abf7-1ee784f0af44")
  2064. )
  2065. (pin "5"
  2066. (uuid "07d1f389-619c-45cf-96ee-667aceba32eb")
  2067. )
  2068. (instances
  2069. (project ""
  2070. (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
  2071. (reference "P?")
  2072. (unit 1)
  2073. )
  2074. )
  2075. )
  2076. )
  2077. (sheet_instances
  2078. (path "/"
  2079. (page "1")
  2080. )
  2081. )
  2082. )