engine_driver.kicad_sch 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "299c995e-a0d9-4458-ac64-e04a18af679d")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Device:R"
  9. (pin_numbers
  10. (hide yes)
  11. )
  12. (pin_names
  13. (offset 0)
  14. )
  15. (exclude_from_sim no)
  16. (in_bom yes)
  17. (on_board yes)
  18. (in_pos_files yes)
  19. (duplicate_pin_numbers_are_jumpers no)
  20. (property "Reference" "R"
  21. (at 2.032 0 90)
  22. (show_name no)
  23. (do_not_autoplace no)
  24. (effects
  25. (font
  26. (size 1.27 1.27)
  27. )
  28. )
  29. )
  30. (property "Value" "R"
  31. (at 0 0 90)
  32. (show_name no)
  33. (do_not_autoplace no)
  34. (effects
  35. (font
  36. (size 1.27 1.27)
  37. )
  38. )
  39. )
  40. (property "Footprint" ""
  41. (at -1.778 0 90)
  42. (show_name no)
  43. (do_not_autoplace no)
  44. (hide yes)
  45. (effects
  46. (font
  47. (size 1.27 1.27)
  48. )
  49. )
  50. )
  51. (property "Datasheet" ""
  52. (at 0 0 0)
  53. (show_name no)
  54. (do_not_autoplace no)
  55. (hide yes)
  56. (effects
  57. (font
  58. (size 1.27 1.27)
  59. )
  60. )
  61. )
  62. (property "Description" "Resistor"
  63. (at 0 0 0)
  64. (show_name no)
  65. (do_not_autoplace no)
  66. (hide yes)
  67. (effects
  68. (font
  69. (size 1.27 1.27)
  70. )
  71. )
  72. )
  73. (property "ki_keywords" "R res resistor"
  74. (at 0 0 0)
  75. (show_name no)
  76. (do_not_autoplace no)
  77. (hide yes)
  78. (effects
  79. (font
  80. (size 1.27 1.27)
  81. )
  82. )
  83. )
  84. (property "ki_fp_filters" "R_*"
  85. (at 0 0 0)
  86. (show_name no)
  87. (do_not_autoplace no)
  88. (hide yes)
  89. (effects
  90. (font
  91. (size 1.27 1.27)
  92. )
  93. )
  94. )
  95. (symbol "R_0_1"
  96. (rectangle
  97. (start -1.016 -2.54)
  98. (end 1.016 2.54)
  99. (stroke
  100. (width 0.254)
  101. (type default)
  102. )
  103. (fill
  104. (type none)
  105. )
  106. )
  107. )
  108. (symbol "R_1_1"
  109. (pin passive line
  110. (at 0 3.81 270)
  111. (length 1.27)
  112. (name ""
  113. (effects
  114. (font
  115. (size 1.27 1.27)
  116. )
  117. )
  118. )
  119. (number "1"
  120. (effects
  121. (font
  122. (size 1.27 1.27)
  123. )
  124. )
  125. )
  126. )
  127. (pin passive line
  128. (at 0 -3.81 90)
  129. (length 1.27)
  130. (name ""
  131. (effects
  132. (font
  133. (size 1.27 1.27)
  134. )
  135. )
  136. )
  137. (number "2"
  138. (effects
  139. (font
  140. (size 1.27 1.27)
  141. )
  142. )
  143. )
  144. )
  145. )
  146. (embedded_fonts no)
  147. )
  148. (symbol "Diode:B120-E3"
  149. (pin_numbers
  150. (hide yes)
  151. )
  152. (pin_names
  153. (hide yes)
  154. )
  155. (exclude_from_sim no)
  156. (in_bom yes)
  157. (on_board yes)
  158. (in_pos_files yes)
  159. (duplicate_pin_numbers_are_jumpers no)
  160. (property "Reference" "D"
  161. (at 0 2.54 0)
  162. (show_name no)
  163. (do_not_autoplace no)
  164. (effects
  165. (font
  166. (size 1.27 1.27)
  167. )
  168. )
  169. )
  170. (property "Value" "B120-E3"
  171. (at 0 -2.54 0)
  172. (show_name no)
  173. (do_not_autoplace no)
  174. (effects
  175. (font
  176. (size 1.27 1.27)
  177. )
  178. )
  179. )
  180. (property "Footprint" "Diode_SMD:D_SMA"
  181. (at 0 -4.445 0)
  182. (show_name no)
  183. (do_not_autoplace no)
  184. (hide yes)
  185. (effects
  186. (font
  187. (size 1.27 1.27)
  188. )
  189. )
  190. )
  191. (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
  192. (at 0 0 0)
  193. (show_name no)
  194. (do_not_autoplace no)
  195. (hide yes)
  196. (effects
  197. (font
  198. (size 1.27 1.27)
  199. )
  200. )
  201. )
  202. (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
  203. (at 0 0 0)
  204. (show_name no)
  205. (do_not_autoplace no)
  206. (hide yes)
  207. (effects
  208. (font
  209. (size 1.27 1.27)
  210. )
  211. )
  212. )
  213. (property "ki_keywords" "diode Schottky"
  214. (at 0 0 0)
  215. (show_name no)
  216. (do_not_autoplace no)
  217. (hide yes)
  218. (effects
  219. (font
  220. (size 1.27 1.27)
  221. )
  222. )
  223. )
  224. (property "ki_fp_filters" "D*SMA*"
  225. (at 0 0 0)
  226. (show_name no)
  227. (do_not_autoplace no)
  228. (hide yes)
  229. (effects
  230. (font
  231. (size 1.27 1.27)
  232. )
  233. )
  234. )
  235. (symbol "B120-E3_0_1"
  236. (polyline
  237. (pts
  238. (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635)
  239. )
  240. (stroke
  241. (width 0.254)
  242. (type default)
  243. )
  244. (fill
  245. (type none)
  246. )
  247. )
  248. (polyline
  249. (pts
  250. (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
  251. )
  252. (stroke
  253. (width 0.254)
  254. (type default)
  255. )
  256. (fill
  257. (type none)
  258. )
  259. )
  260. (polyline
  261. (pts
  262. (xy 1.27 0) (xy -1.27 0)
  263. )
  264. (stroke
  265. (width 0)
  266. (type default)
  267. )
  268. (fill
  269. (type none)
  270. )
  271. )
  272. )
  273. (symbol "B120-E3_1_1"
  274. (pin passive line
  275. (at -3.81 0 0)
  276. (length 2.54)
  277. (name "K"
  278. (effects
  279. (font
  280. (size 1.27 1.27)
  281. )
  282. )
  283. )
  284. (number "1"
  285. (effects
  286. (font
  287. (size 1.27 1.27)
  288. )
  289. )
  290. )
  291. )
  292. (pin passive line
  293. (at 3.81 0 180)
  294. (length 2.54)
  295. (name "A"
  296. (effects
  297. (font
  298. (size 1.27 1.27)
  299. )
  300. )
  301. )
  302. (number "2"
  303. (effects
  304. (font
  305. (size 1.27 1.27)
  306. )
  307. )
  308. )
  309. )
  310. )
  311. (embedded_fonts no)
  312. )
  313. (symbol "Motor:Fan"
  314. (pin_names
  315. (offset 0)
  316. )
  317. (exclude_from_sim no)
  318. (in_bom yes)
  319. (on_board yes)
  320. (in_pos_files yes)
  321. (duplicate_pin_numbers_are_jumpers no)
  322. (property "Reference" "M"
  323. (at 2.54 5.08 0)
  324. (show_name no)
  325. (do_not_autoplace no)
  326. (effects
  327. (font
  328. (size 1.27 1.27)
  329. )
  330. (justify left)
  331. )
  332. )
  333. (property "Value" "Fan"
  334. (at 2.54 -2.54 0)
  335. (show_name no)
  336. (do_not_autoplace no)
  337. (effects
  338. (font
  339. (size 1.27 1.27)
  340. )
  341. (justify left top)
  342. )
  343. )
  344. (property "Footprint" ""
  345. (at 0 0.254 0)
  346. (show_name no)
  347. (do_not_autoplace no)
  348. (hide yes)
  349. (effects
  350. (font
  351. (size 1.27 1.27)
  352. )
  353. )
  354. )
  355. (property "Datasheet" ""
  356. (at 0 0.254 0)
  357. (show_name no)
  358. (do_not_autoplace no)
  359. (hide yes)
  360. (effects
  361. (font
  362. (size 1.27 1.27)
  363. )
  364. )
  365. )
  366. (property "Description" "Fan"
  367. (at 0 0 0)
  368. (show_name no)
  369. (do_not_autoplace no)
  370. (hide yes)
  371. (effects
  372. (font
  373. (size 1.27 1.27)
  374. )
  375. )
  376. )
  377. (property "ki_keywords" "Fan Motor"
  378. (at 0 0 0)
  379. (show_name no)
  380. (do_not_autoplace no)
  381. (hide yes)
  382. (effects
  383. (font
  384. (size 1.27 1.27)
  385. )
  386. )
  387. )
  388. (property "ki_fp_filters" "PinHeader*P2.54mm* TerminalBlock*"
  389. (at 0 0 0)
  390. (show_name no)
  391. (do_not_autoplace no)
  392. (hide yes)
  393. (effects
  394. (font
  395. (size 1.27 1.27)
  396. )
  397. )
  398. )
  399. (symbol "Fan_0_1"
  400. (arc
  401. (start 0 3.81)
  402. (mid -0.0015 0.9048)
  403. (end -2.54 -0.508)
  404. (stroke
  405. (width 0)
  406. (type default)
  407. )
  408. (fill
  409. (type none)
  410. )
  411. )
  412. (polyline
  413. (pts
  414. (xy 0 4.572) (xy 0 5.08)
  415. )
  416. (stroke
  417. (width 0)
  418. (type default)
  419. )
  420. (fill
  421. (type none)
  422. )
  423. )
  424. (polyline
  425. (pts
  426. (xy 0 4.2672) (xy 0 4.6228)
  427. )
  428. (stroke
  429. (width 0)
  430. (type default)
  431. )
  432. (fill
  433. (type none)
  434. )
  435. )
  436. (circle
  437. (center 0 1.016)
  438. (radius 3.2512)
  439. (stroke
  440. (width 0.254)
  441. (type default)
  442. )
  443. (fill
  444. (type none)
  445. )
  446. )
  447. (arc
  448. (start -2.54 -0.508)
  449. (mid 0 1.0618)
  450. (end 2.54 -0.508)
  451. (stroke
  452. (width 0)
  453. (type default)
  454. )
  455. (fill
  456. (type none)
  457. )
  458. )
  459. (polyline
  460. (pts
  461. (xy 0 -2.2352) (xy 0 -2.6416)
  462. )
  463. (stroke
  464. (width 0)
  465. (type default)
  466. )
  467. (fill
  468. (type none)
  469. )
  470. )
  471. (polyline
  472. (pts
  473. (xy 0 -5.08) (xy 0 -4.572)
  474. )
  475. (stroke
  476. (width 0)
  477. (type default)
  478. )
  479. (fill
  480. (type none)
  481. )
  482. )
  483. (arc
  484. (start 2.54 -0.508)
  485. (mid 0.047 0.9315)
  486. (end 0 3.81)
  487. (stroke
  488. (width 0)
  489. (type default)
  490. )
  491. (fill
  492. (type none)
  493. )
  494. )
  495. )
  496. (symbol "Fan_1_1"
  497. (pin passive line
  498. (at 0 7.62 270)
  499. (length 2.54)
  500. (name "+"
  501. (effects
  502. (font
  503. (size 1.27 1.27)
  504. )
  505. )
  506. )
  507. (number "1"
  508. (effects
  509. (font
  510. (size 1.27 1.27)
  511. )
  512. )
  513. )
  514. )
  515. (pin passive line
  516. (at 0 -5.08 90)
  517. (length 2.54)
  518. (name "-"
  519. (effects
  520. (font
  521. (size 1.27 1.27)
  522. )
  523. )
  524. )
  525. (number "2"
  526. (effects
  527. (font
  528. (size 1.27 1.27)
  529. )
  530. )
  531. )
  532. )
  533. )
  534. (embedded_fonts no)
  535. )
  536. (symbol "power:GND"
  537. (power global)
  538. (pin_numbers
  539. (hide yes)
  540. )
  541. (pin_names
  542. (offset 0)
  543. (hide yes)
  544. )
  545. (exclude_from_sim no)
  546. (in_bom yes)
  547. (on_board yes)
  548. (in_pos_files yes)
  549. (duplicate_pin_numbers_are_jumpers no)
  550. (property "Reference" "#PWR"
  551. (at 0 -6.35 0)
  552. (show_name no)
  553. (do_not_autoplace no)
  554. (hide yes)
  555. (effects
  556. (font
  557. (size 1.27 1.27)
  558. )
  559. )
  560. )
  561. (property "Value" "GND"
  562. (at 0 -3.81 0)
  563. (show_name no)
  564. (do_not_autoplace no)
  565. (effects
  566. (font
  567. (size 1.27 1.27)
  568. )
  569. )
  570. )
  571. (property "Footprint" ""
  572. (at 0 0 0)
  573. (show_name no)
  574. (do_not_autoplace no)
  575. (hide yes)
  576. (effects
  577. (font
  578. (size 1.27 1.27)
  579. )
  580. )
  581. )
  582. (property "Datasheet" ""
  583. (at 0 0 0)
  584. (show_name no)
  585. (do_not_autoplace no)
  586. (hide yes)
  587. (effects
  588. (font
  589. (size 1.27 1.27)
  590. )
  591. )
  592. )
  593. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  594. (at 0 0 0)
  595. (show_name no)
  596. (do_not_autoplace no)
  597. (hide yes)
  598. (effects
  599. (font
  600. (size 1.27 1.27)
  601. )
  602. )
  603. )
  604. (property "ki_keywords" "global power"
  605. (at 0 0 0)
  606. (show_name no)
  607. (do_not_autoplace no)
  608. (hide yes)
  609. (effects
  610. (font
  611. (size 1.27 1.27)
  612. )
  613. )
  614. )
  615. (symbol "GND_0_1"
  616. (polyline
  617. (pts
  618. (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)
  619. )
  620. (stroke
  621. (width 0)
  622. (type default)
  623. )
  624. (fill
  625. (type none)
  626. )
  627. )
  628. )
  629. (symbol "GND_1_1"
  630. (pin power_in line
  631. (at 0 0 270)
  632. (length 0)
  633. (name ""
  634. (effects
  635. (font
  636. (size 1.27 1.27)
  637. )
  638. )
  639. )
  640. (number "1"
  641. (effects
  642. (font
  643. (size 1.27 1.27)
  644. )
  645. )
  646. )
  647. )
  648. )
  649. (embedded_fonts no)
  650. )
  651. (symbol "power:VDD"
  652. (power global)
  653. (pin_numbers
  654. (hide yes)
  655. )
  656. (pin_names
  657. (offset 0)
  658. (hide yes)
  659. )
  660. (exclude_from_sim no)
  661. (in_bom yes)
  662. (on_board yes)
  663. (in_pos_files yes)
  664. (duplicate_pin_numbers_are_jumpers no)
  665. (property "Reference" "#PWR"
  666. (at 0 -3.81 0)
  667. (show_name no)
  668. (do_not_autoplace no)
  669. (hide yes)
  670. (effects
  671. (font
  672. (size 1.27 1.27)
  673. )
  674. )
  675. )
  676. (property "Value" "VDD"
  677. (at 0 3.556 0)
  678. (show_name no)
  679. (do_not_autoplace no)
  680. (effects
  681. (font
  682. (size 1.27 1.27)
  683. )
  684. )
  685. )
  686. (property "Footprint" ""
  687. (at 0 0 0)
  688. (show_name no)
  689. (do_not_autoplace no)
  690. (hide yes)
  691. (effects
  692. (font
  693. (size 1.27 1.27)
  694. )
  695. )
  696. )
  697. (property "Datasheet" ""
  698. (at 0 0 0)
  699. (show_name no)
  700. (do_not_autoplace no)
  701. (hide yes)
  702. (effects
  703. (font
  704. (size 1.27 1.27)
  705. )
  706. )
  707. )
  708. (property "Description" "Power symbol creates a global label with name \"VDD\""
  709. (at 0 0 0)
  710. (show_name no)
  711. (do_not_autoplace no)
  712. (hide yes)
  713. (effects
  714. (font
  715. (size 1.27 1.27)
  716. )
  717. )
  718. )
  719. (property "ki_keywords" "global power"
  720. (at 0 0 0)
  721. (show_name no)
  722. (do_not_autoplace no)
  723. (hide yes)
  724. (effects
  725. (font
  726. (size 1.27 1.27)
  727. )
  728. )
  729. )
  730. (symbol "VDD_0_1"
  731. (polyline
  732. (pts
  733. (xy -0.762 1.27) (xy 0 2.54)
  734. )
  735. (stroke
  736. (width 0)
  737. (type default)
  738. )
  739. (fill
  740. (type none)
  741. )
  742. )
  743. (polyline
  744. (pts
  745. (xy 0 2.54) (xy 0.762 1.27)
  746. )
  747. (stroke
  748. (width 0)
  749. (type default)
  750. )
  751. (fill
  752. (type none)
  753. )
  754. )
  755. (polyline
  756. (pts
  757. (xy 0 0) (xy 0 2.54)
  758. )
  759. (stroke
  760. (width 0)
  761. (type default)
  762. )
  763. (fill
  764. (type none)
  765. )
  766. )
  767. )
  768. (symbol "VDD_1_1"
  769. (pin power_in line
  770. (at 0 0 90)
  771. (length 0)
  772. (name ""
  773. (effects
  774. (font
  775. (size 1.27 1.27)
  776. )
  777. )
  778. )
  779. (number "1"
  780. (effects
  781. (font
  782. (size 1.27 1.27)
  783. )
  784. )
  785. )
  786. )
  787. )
  788. (embedded_fonts no)
  789. )
  790. (symbol "transistors:YJL2312A"
  791. (exclude_from_sim no)
  792. (in_bom yes)
  793. (on_board yes)
  794. (in_pos_files yes)
  795. (duplicate_pin_numbers_are_jumpers no)
  796. (property "Reference" "Q"
  797. (at 4.826 3.302 0)
  798. (show_name no)
  799. (do_not_autoplace no)
  800. (effects
  801. (font
  802. (size 1.27 1.27)
  803. )
  804. )
  805. )
  806. (property "Value" "YJL2312A"
  807. (at 0 0 0)
  808. (show_name no)
  809. (do_not_autoplace no)
  810. (effects
  811. (font
  812. (size 1.27 1.27)
  813. )
  814. )
  815. )
  816. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  817. (at 0 0 0)
  818. (show_name no)
  819. (do_not_autoplace no)
  820. (hide yes)
  821. (effects
  822. (font
  823. (size 1.27 1.27)
  824. )
  825. )
  826. )
  827. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  828. (at 0 0 0)
  829. (show_name no)
  830. (do_not_autoplace no)
  831. (hide yes)
  832. (effects
  833. (font
  834. (size 1.27 1.27)
  835. )
  836. )
  837. )
  838. (property "Description" ""
  839. (at 0 0 0)
  840. (show_name no)
  841. (do_not_autoplace no)
  842. (hide yes)
  843. (effects
  844. (font
  845. (size 1.27 1.27)
  846. )
  847. )
  848. )
  849. (symbol "YJL2312A_0_1"
  850. (polyline
  851. (pts
  852. (xy -1.27 -2.54) (xy -1.27 2.54)
  853. )
  854. (stroke
  855. (width 0)
  856. (type default)
  857. )
  858. (fill
  859. (type none)
  860. )
  861. )
  862. )
  863. (symbol "YJL2312A_1_1"
  864. (polyline
  865. (pts
  866. (xy 0 3.175) (xy 0 -3.175)
  867. )
  868. (stroke
  869. (width 0)
  870. (type dash)
  871. )
  872. (fill
  873. (type none)
  874. )
  875. )
  876. (polyline
  877. (pts
  878. (xy 0 2.54) (xy 2.54 2.54) (xy 2.54 3.81)
  879. )
  880. (stroke
  881. (width 0)
  882. (type default)
  883. )
  884. (fill
  885. (type none)
  886. )
  887. )
  888. (polyline
  889. (pts
  890. (xy 0 0) (xy 2.54 0) (xy 2.54 -3.81)
  891. )
  892. (stroke
  893. (width 0)
  894. (type default)
  895. )
  896. (fill
  897. (type none)
  898. )
  899. )
  900. (polyline
  901. (pts
  902. (xy 0 0) (xy 1.27 -0.635) (xy 1.27 0.635) (xy 0 0)
  903. )
  904. (stroke
  905. (width 0)
  906. (type solid)
  907. )
  908. (fill
  909. (type outline)
  910. )
  911. )
  912. (polyline
  913. (pts
  914. (xy 2.54 -2.54) (xy 0 -2.54)
  915. )
  916. (stroke
  917. (width 0)
  918. (type default)
  919. )
  920. (fill
  921. (type none)
  922. )
  923. )
  924. (pin input line
  925. (at -3.81 0 0)
  926. (length 2.54)
  927. (name ""
  928. (effects
  929. (font
  930. (size 1.27 1.27)
  931. )
  932. )
  933. )
  934. (number "1"
  935. (effects
  936. (font
  937. (size 1.27 1.27)
  938. )
  939. )
  940. )
  941. )
  942. (pin power_in line
  943. (at 2.54 -6.35 90)
  944. (length 2.54)
  945. (name ""
  946. (effects
  947. (font
  948. (size 1.27 1.27)
  949. )
  950. )
  951. )
  952. (number "2"
  953. (effects
  954. (font
  955. (size 1.27 1.27)
  956. )
  957. )
  958. )
  959. )
  960. (pin power_out line
  961. (at 2.54 6.35 270)
  962. (length 2.54)
  963. (name ""
  964. (effects
  965. (font
  966. (size 1.27 1.27)
  967. )
  968. )
  969. )
  970. (number "3"
  971. (effects
  972. (font
  973. (size 1.27 1.27)
  974. )
  975. )
  976. )
  977. )
  978. )
  979. (embedded_fonts no)
  980. )
  981. )
  982. (junction
  983. (at 156.21 74.93)
  984. (diameter 0)
  985. (color 0 0 0 0)
  986. (uuid "5509802b-5ea3-4617-868d-5cf23bcb2aa1")
  987. )
  988. (junction
  989. (at 137.16 97.79)
  990. (diameter 0)
  991. (color 0 0 0 0)
  992. (uuid "68dd3054-5105-43dd-897c-1c905dc924a5")
  993. )
  994. (junction
  995. (at 156.21 90.17)
  996. (diameter 0)
  997. (color 0 0 0 0)
  998. (uuid "96ee3480-a7a9-47eb-b8ff-bf0d946ac672")
  999. )
  1000. (wire
  1001. (pts
  1002. (xy 166.37 86.36) (xy 166.37 90.17)
  1003. )
  1004. (stroke
  1005. (width 0)
  1006. (type default)
  1007. )
  1008. (uuid "182aa83d-1111-40f4-8993-300e98e760e8")
  1009. )
  1010. (wire
  1011. (pts
  1012. (xy 156.21 74.93) (xy 156.21 76.2)
  1013. )
  1014. (stroke
  1015. (width 0)
  1016. (type default)
  1017. )
  1018. (uuid "19a631dd-dfde-4062-8553-4f980462d53c")
  1019. )
  1020. (wire
  1021. (pts
  1022. (xy 137.16 97.79) (xy 137.16 100.33)
  1023. )
  1024. (stroke
  1025. (width 0)
  1026. (type default)
  1027. )
  1028. (uuid "1f5b6dd9-33c7-4592-b4eb-cfed8fd2a3b1")
  1029. )
  1030. (wire
  1031. (pts
  1032. (xy 156.21 73.66) (xy 156.21 74.93)
  1033. )
  1034. (stroke
  1035. (width 0)
  1036. (type default)
  1037. )
  1038. (uuid "38904aa7-0759-47f6-81e2-d9f1a2d1a288")
  1039. )
  1040. (wire
  1041. (pts
  1042. (xy 156.21 88.9) (xy 156.21 90.17)
  1043. )
  1044. (stroke
  1045. (width 0)
  1046. (type default)
  1047. )
  1048. (uuid "3e46c61d-4c07-4790-a905-641b2b57976a")
  1049. )
  1050. (wire
  1051. (pts
  1052. (xy 156.21 90.17) (xy 156.21 91.44)
  1053. )
  1054. (stroke
  1055. (width 0)
  1056. (type default)
  1057. )
  1058. (uuid "4c509629-f2f9-4dc6-a9d3-63b20babb8e1")
  1059. )
  1060. (wire
  1061. (pts
  1062. (xy 137.16 97.79) (xy 139.7 97.79)
  1063. )
  1064. (stroke
  1065. (width 0)
  1066. (type default)
  1067. )
  1068. (uuid "6cfeafd1-fdae-4f2b-9f69-40a98659bd17")
  1069. )
  1070. (wire
  1071. (pts
  1072. (xy 166.37 78.74) (xy 166.37 74.93)
  1073. )
  1074. (stroke
  1075. (width 0)
  1076. (type default)
  1077. )
  1078. (uuid "894e73c7-d2dd-4bcb-a247-d6107a7576d1")
  1079. )
  1080. (wire
  1081. (pts
  1082. (xy 166.37 74.93) (xy 156.21 74.93)
  1083. )
  1084. (stroke
  1085. (width 0)
  1086. (type default)
  1087. )
  1088. (uuid "8adce536-274f-4d11-97d5-d2ee0a325cc8")
  1089. )
  1090. (wire
  1091. (pts
  1092. (xy 156.21 104.14) (xy 156.21 105.41)
  1093. )
  1094. (stroke
  1095. (width 0)
  1096. (type default)
  1097. )
  1098. (uuid "8c8bb81b-948a-4978-874d-640d9209fc32")
  1099. )
  1100. (wire
  1101. (pts
  1102. (xy 137.16 107.95) (xy 137.16 109.22)
  1103. )
  1104. (stroke
  1105. (width 0)
  1106. (type default)
  1107. )
  1108. (uuid "8d539014-a5fd-40ee-9ea7-6771623282bb")
  1109. )
  1110. (wire
  1111. (pts
  1112. (xy 147.32 97.79) (xy 149.86 97.79)
  1113. )
  1114. (stroke
  1115. (width 0)
  1116. (type default)
  1117. )
  1118. (uuid "96ef39ca-e4f3-4bad-ab0b-ad8d9fffea27")
  1119. )
  1120. (wire
  1121. (pts
  1122. (xy 156.21 90.17) (xy 166.37 90.17)
  1123. )
  1124. (stroke
  1125. (width 0)
  1126. (type default)
  1127. )
  1128. (uuid "a4ab6f3d-c088-40b5-92b5-4fb9a4156ff4")
  1129. )
  1130. (wire
  1131. (pts
  1132. (xy 132.08 97.79) (xy 137.16 97.79)
  1133. )
  1134. (stroke
  1135. (width 0)
  1136. (type default)
  1137. )
  1138. (uuid "a550eb36-7a3b-4a5b-8061-b6d81a3d3de1")
  1139. )
  1140. (hierarchical_label "PWM"
  1141. (shape input)
  1142. (at 132.08 97.79 180)
  1143. (effects
  1144. (font
  1145. (size 1.27 1.27)
  1146. )
  1147. (justify right)
  1148. )
  1149. (uuid "f114b1aa-af83-4d11-af36-d5d3f7e033f1")
  1150. )
  1151. (symbol
  1152. (lib_id "power:VDD")
  1153. (at 156.21 73.66 0)
  1154. (unit 1)
  1155. (body_style 1)
  1156. (exclude_from_sim no)
  1157. (in_bom yes)
  1158. (on_board yes)
  1159. (in_pos_files yes)
  1160. (dnp no)
  1161. (fields_autoplaced yes)
  1162. (uuid "1a701aa2-a7b0-4489-8749-8d9ab6f7ddeb")
  1163. (property "Reference" "#PWR01"
  1164. (at 156.21 77.47 0)
  1165. (hide yes)
  1166. (show_name no)
  1167. (do_not_autoplace no)
  1168. (effects
  1169. (font
  1170. (size 1.27 1.27)
  1171. )
  1172. )
  1173. )
  1174. (property "Value" "VDD"
  1175. (at 156.21 68.58 0)
  1176. (show_name no)
  1177. (do_not_autoplace no)
  1178. (effects
  1179. (font
  1180. (size 1.27 1.27)
  1181. )
  1182. )
  1183. )
  1184. (property "Footprint" ""
  1185. (at 156.21 73.66 0)
  1186. (hide yes)
  1187. (show_name no)
  1188. (do_not_autoplace no)
  1189. (effects
  1190. (font
  1191. (size 1.27 1.27)
  1192. )
  1193. )
  1194. )
  1195. (property "Datasheet" ""
  1196. (at 156.21 73.66 0)
  1197. (hide yes)
  1198. (show_name no)
  1199. (do_not_autoplace no)
  1200. (effects
  1201. (font
  1202. (size 1.27 1.27)
  1203. )
  1204. )
  1205. )
  1206. (property "Description" "Power symbol creates a global label with name \"VDD\""
  1207. (at 156.21 73.66 0)
  1208. (hide yes)
  1209. (show_name no)
  1210. (do_not_autoplace no)
  1211. (effects
  1212. (font
  1213. (size 1.27 1.27)
  1214. )
  1215. )
  1216. )
  1217. (pin "1"
  1218. (uuid "f72924b5-52d2-407d-86f0-ad62ae30823c")
  1219. )
  1220. (instances
  1221. (project "cx-copter-schematic"
  1222. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/1294a00f-bea7-44c2-8af4-81f3d946c0e8"
  1223. (reference "#PWR011")
  1224. (unit 1)
  1225. )
  1226. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/26ed61ca-be80-41a7-8de5-b627fea95b9d"
  1227. (reference "#PWR05")
  1228. (unit 1)
  1229. )
  1230. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/5a4d2f37-c035-413d-94a5-f0c762c5279e"
  1231. (reference "#PWR01")
  1232. (unit 1)
  1233. )
  1234. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/61f0245d-3df3-4923-a222-e27fe8dccc00"
  1235. (reference "#PWR08")
  1236. (unit 1)
  1237. )
  1238. )
  1239. )
  1240. )
  1241. (symbol
  1242. (lib_id "transistors:YJL2312A")
  1243. (at 153.67 97.79 0)
  1244. (unit 1)
  1245. (body_style 1)
  1246. (exclude_from_sim no)
  1247. (in_bom yes)
  1248. (on_board yes)
  1249. (in_pos_files yes)
  1250. (dnp no)
  1251. (fields_autoplaced yes)
  1252. (uuid "220bd7a7-592c-43c0-9efc-74265ddc2fdb")
  1253. (property "Reference" "Q1"
  1254. (at 157.48 96.5199 0)
  1255. (show_name no)
  1256. (do_not_autoplace no)
  1257. (effects
  1258. (font
  1259. (size 1.27 1.27)
  1260. )
  1261. (justify left)
  1262. )
  1263. )
  1264. (property "Value" "YJL2312A"
  1265. (at 157.48 99.0599 0)
  1266. (show_name no)
  1267. (do_not_autoplace no)
  1268. (effects
  1269. (font
  1270. (size 1.27 1.27)
  1271. )
  1272. (justify left)
  1273. )
  1274. )
  1275. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  1276. (at 153.67 97.79 0)
  1277. (hide yes)
  1278. (show_name no)
  1279. (do_not_autoplace no)
  1280. (effects
  1281. (font
  1282. (size 1.27 1.27)
  1283. )
  1284. )
  1285. )
  1286. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  1287. (at 153.67 97.79 0)
  1288. (hide yes)
  1289. (show_name no)
  1290. (do_not_autoplace no)
  1291. (effects
  1292. (font
  1293. (size 1.27 1.27)
  1294. )
  1295. )
  1296. )
  1297. (property "Description" ""
  1298. (at 153.67 97.79 0)
  1299. (hide yes)
  1300. (show_name no)
  1301. (do_not_autoplace no)
  1302. (effects
  1303. (font
  1304. (size 1.27 1.27)
  1305. )
  1306. )
  1307. )
  1308. (pin "3"
  1309. (uuid "cae3c8e2-c211-44de-8228-434202c2f898")
  1310. )
  1311. (pin "1"
  1312. (uuid "b4e3f8ff-7fa0-46fd-8c9d-761ff3001f8b")
  1313. )
  1314. (pin "2"
  1315. (uuid "748682a2-5817-4d07-b1f2-5401b818735b")
  1316. )
  1317. (instances
  1318. (project "cx-copter-schematic"
  1319. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/1294a00f-bea7-44c2-8af4-81f3d946c0e8"
  1320. (reference "Q4")
  1321. (unit 1)
  1322. )
  1323. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/26ed61ca-be80-41a7-8de5-b627fea95b9d"
  1324. (reference "Q2")
  1325. (unit 1)
  1326. )
  1327. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/5a4d2f37-c035-413d-94a5-f0c762c5279e"
  1328. (reference "Q1")
  1329. (unit 1)
  1330. )
  1331. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/61f0245d-3df3-4923-a222-e27fe8dccc00"
  1332. (reference "Q3")
  1333. (unit 1)
  1334. )
  1335. )
  1336. )
  1337. )
  1338. (symbol
  1339. (lib_id "power:GND")
  1340. (at 137.16 109.22 0)
  1341. (unit 1)
  1342. (body_style 1)
  1343. (exclude_from_sim no)
  1344. (in_bom yes)
  1345. (on_board yes)
  1346. (in_pos_files yes)
  1347. (dnp no)
  1348. (fields_autoplaced yes)
  1349. (uuid "45eb31c1-3000-4e72-87e2-da8f4a42483a")
  1350. (property "Reference" "#PWR03"
  1351. (at 137.16 115.57 0)
  1352. (hide yes)
  1353. (show_name no)
  1354. (do_not_autoplace no)
  1355. (effects
  1356. (font
  1357. (size 1.27 1.27)
  1358. )
  1359. )
  1360. )
  1361. (property "Value" "GND"
  1362. (at 137.16 114.3 0)
  1363. (show_name no)
  1364. (do_not_autoplace no)
  1365. (effects
  1366. (font
  1367. (size 1.27 1.27)
  1368. )
  1369. )
  1370. )
  1371. (property "Footprint" ""
  1372. (at 137.16 109.22 0)
  1373. (hide yes)
  1374. (show_name no)
  1375. (do_not_autoplace no)
  1376. (effects
  1377. (font
  1378. (size 1.27 1.27)
  1379. )
  1380. )
  1381. )
  1382. (property "Datasheet" ""
  1383. (at 137.16 109.22 0)
  1384. (hide yes)
  1385. (show_name no)
  1386. (do_not_autoplace no)
  1387. (effects
  1388. (font
  1389. (size 1.27 1.27)
  1390. )
  1391. )
  1392. )
  1393. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1394. (at 137.16 109.22 0)
  1395. (hide yes)
  1396. (show_name no)
  1397. (do_not_autoplace no)
  1398. (effects
  1399. (font
  1400. (size 1.27 1.27)
  1401. )
  1402. )
  1403. )
  1404. (pin "1"
  1405. (uuid "36c09ba7-6ae1-4ee0-885c-7d55afbd1af9")
  1406. )
  1407. (instances
  1408. (project "cx-copter-schematic"
  1409. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/1294a00f-bea7-44c2-8af4-81f3d946c0e8"
  1410. (reference "#PWR010")
  1411. (unit 1)
  1412. )
  1413. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/26ed61ca-be80-41a7-8de5-b627fea95b9d"
  1414. (reference "#PWR04")
  1415. (unit 1)
  1416. )
  1417. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/5a4d2f37-c035-413d-94a5-f0c762c5279e"
  1418. (reference "#PWR03")
  1419. (unit 1)
  1420. )
  1421. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/61f0245d-3df3-4923-a222-e27fe8dccc00"
  1422. (reference "#PWR07")
  1423. (unit 1)
  1424. )
  1425. )
  1426. )
  1427. )
  1428. (symbol
  1429. (lib_id "Diode:B120-E3")
  1430. (at 166.37 82.55 270)
  1431. (unit 1)
  1432. (body_style 1)
  1433. (exclude_from_sim no)
  1434. (in_bom yes)
  1435. (on_board yes)
  1436. (in_pos_files yes)
  1437. (dnp no)
  1438. (fields_autoplaced yes)
  1439. (uuid "6f2c32a7-e374-4e74-86bd-dd80a9cb7821")
  1440. (property "Reference" "D1"
  1441. (at 168.91 80.9624 90)
  1442. (show_name no)
  1443. (do_not_autoplace no)
  1444. (effects
  1445. (font
  1446. (size 1.27 1.27)
  1447. )
  1448. (justify left)
  1449. )
  1450. )
  1451. (property "Value" "B120-13-F"
  1452. (at 168.91 83.5024 90)
  1453. (show_name no)
  1454. (do_not_autoplace no)
  1455. (effects
  1456. (font
  1457. (size 1.27 1.27)
  1458. )
  1459. (justify left)
  1460. )
  1461. )
  1462. (property "Footprint" "Diode_SMD:D_SMA"
  1463. (at 161.925 82.55 0)
  1464. (hide yes)
  1465. (show_name no)
  1466. (do_not_autoplace no)
  1467. (effects
  1468. (font
  1469. (size 1.27 1.27)
  1470. )
  1471. )
  1472. )
  1473. (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
  1474. (at 166.37 82.55 0)
  1475. (hide yes)
  1476. (show_name no)
  1477. (do_not_autoplace no)
  1478. (effects
  1479. (font
  1480. (size 1.27 1.27)
  1481. )
  1482. )
  1483. )
  1484. (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
  1485. (at 166.37 82.55 0)
  1486. (hide yes)
  1487. (show_name no)
  1488. (do_not_autoplace no)
  1489. (effects
  1490. (font
  1491. (size 1.27 1.27)
  1492. )
  1493. )
  1494. )
  1495. (pin "1"
  1496. (uuid "ddc00c40-857d-466a-8aa4-3ba8b375e21e")
  1497. )
  1498. (pin "2"
  1499. (uuid "d05589f6-f246-4a05-8dc2-ee474625aa64")
  1500. )
  1501. (instances
  1502. (project "cx-copter-schematic"
  1503. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/1294a00f-bea7-44c2-8af4-81f3d946c0e8"
  1504. (reference "D4")
  1505. (unit 1)
  1506. )
  1507. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/26ed61ca-be80-41a7-8de5-b627fea95b9d"
  1508. (reference "D2")
  1509. (unit 1)
  1510. )
  1511. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/5a4d2f37-c035-413d-94a5-f0c762c5279e"
  1512. (reference "D1")
  1513. (unit 1)
  1514. )
  1515. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/61f0245d-3df3-4923-a222-e27fe8dccc00"
  1516. (reference "D3")
  1517. (unit 1)
  1518. )
  1519. )
  1520. )
  1521. )
  1522. (symbol
  1523. (lib_id "Device:R")
  1524. (at 143.51 97.79 90)
  1525. (unit 1)
  1526. (body_style 1)
  1527. (exclude_from_sim no)
  1528. (in_bom yes)
  1529. (on_board yes)
  1530. (in_pos_files yes)
  1531. (dnp no)
  1532. (uuid "adb405ec-18c1-4131-b536-9bcbc78aa164")
  1533. (property "Reference" "R2"
  1534. (at 143.51 95.758 90)
  1535. (show_name no)
  1536. (do_not_autoplace no)
  1537. (effects
  1538. (font
  1539. (size 1.27 1.27)
  1540. )
  1541. )
  1542. )
  1543. (property "Value" "1k"
  1544. (at 143.51 100.076 90)
  1545. (show_name no)
  1546. (do_not_autoplace no)
  1547. (effects
  1548. (font
  1549. (size 1.27 1.27)
  1550. )
  1551. )
  1552. )
  1553. (property "Footprint" ""
  1554. (at 143.51 99.568 90)
  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 "Datasheet" ""
  1565. (at 143.51 97.79 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. (property "Description" "Resistor"
  1576. (at 143.51 97.79 0)
  1577. (hide yes)
  1578. (show_name no)
  1579. (do_not_autoplace no)
  1580. (effects
  1581. (font
  1582. (size 1.27 1.27)
  1583. )
  1584. )
  1585. )
  1586. (pin "2"
  1587. (uuid "1f688c95-4f6a-4eb2-94eb-3922db0f0966")
  1588. )
  1589. (pin "1"
  1590. (uuid "f298cd63-2c29-48b5-b7ec-9d9eb879e0e1")
  1591. )
  1592. (instances
  1593. (project "cx-copter-schematic"
  1594. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/1294a00f-bea7-44c2-8af4-81f3d946c0e8"
  1595. (reference "R8")
  1596. (unit 1)
  1597. )
  1598. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/26ed61ca-be80-41a7-8de5-b627fea95b9d"
  1599. (reference "R4")
  1600. (unit 1)
  1601. )
  1602. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/5a4d2f37-c035-413d-94a5-f0c762c5279e"
  1603. (reference "R2")
  1604. (unit 1)
  1605. )
  1606. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/61f0245d-3df3-4923-a222-e27fe8dccc00"
  1607. (reference "R6")
  1608. (unit 1)
  1609. )
  1610. )
  1611. )
  1612. )
  1613. (symbol
  1614. (lib_id "Device:R")
  1615. (at 137.16 104.14 0)
  1616. (unit 1)
  1617. (body_style 1)
  1618. (exclude_from_sim no)
  1619. (in_bom yes)
  1620. (on_board yes)
  1621. (in_pos_files yes)
  1622. (dnp no)
  1623. (uuid "c8b2a3c9-0b18-4652-9248-9781457792ff")
  1624. (property "Reference" "R1"
  1625. (at 139.192 104.14 90)
  1626. (show_name no)
  1627. (do_not_autoplace no)
  1628. (effects
  1629. (font
  1630. (size 1.27 1.27)
  1631. )
  1632. )
  1633. )
  1634. (property "Value" "10k"
  1635. (at 134.874 104.14 90)
  1636. (show_name no)
  1637. (do_not_autoplace no)
  1638. (effects
  1639. (font
  1640. (size 1.27 1.27)
  1641. )
  1642. )
  1643. )
  1644. (property "Footprint" ""
  1645. (at 135.382 104.14 90)
  1646. (hide yes)
  1647. (show_name no)
  1648. (do_not_autoplace no)
  1649. (effects
  1650. (font
  1651. (size 1.27 1.27)
  1652. )
  1653. )
  1654. )
  1655. (property "Datasheet" ""
  1656. (at 137.16 104.14 0)
  1657. (hide yes)
  1658. (show_name no)
  1659. (do_not_autoplace no)
  1660. (effects
  1661. (font
  1662. (size 1.27 1.27)
  1663. )
  1664. )
  1665. )
  1666. (property "Description" "Resistor"
  1667. (at 137.16 104.14 0)
  1668. (hide yes)
  1669. (show_name no)
  1670. (do_not_autoplace no)
  1671. (effects
  1672. (font
  1673. (size 1.27 1.27)
  1674. )
  1675. )
  1676. )
  1677. (pin "2"
  1678. (uuid "728e71ac-5a51-46c4-b627-d33fea268afd")
  1679. )
  1680. (pin "1"
  1681. (uuid "ba8d15c6-7bf8-4965-93c6-ad57df26211a")
  1682. )
  1683. (instances
  1684. (project "cx-copter-schematic"
  1685. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/1294a00f-bea7-44c2-8af4-81f3d946c0e8"
  1686. (reference "R7")
  1687. (unit 1)
  1688. )
  1689. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/26ed61ca-be80-41a7-8de5-b627fea95b9d"
  1690. (reference "R3")
  1691. (unit 1)
  1692. )
  1693. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/5a4d2f37-c035-413d-94a5-f0c762c5279e"
  1694. (reference "R1")
  1695. (unit 1)
  1696. )
  1697. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/61f0245d-3df3-4923-a222-e27fe8dccc00"
  1698. (reference "R5")
  1699. (unit 1)
  1700. )
  1701. )
  1702. )
  1703. )
  1704. (symbol
  1705. (lib_id "power:GND")
  1706. (at 156.21 105.41 0)
  1707. (unit 1)
  1708. (body_style 1)
  1709. (exclude_from_sim no)
  1710. (in_bom yes)
  1711. (on_board yes)
  1712. (in_pos_files yes)
  1713. (dnp no)
  1714. (fields_autoplaced yes)
  1715. (uuid "cf432565-b9ea-4e04-94bd-0008c8e24ebd")
  1716. (property "Reference" "#PWR02"
  1717. (at 156.21 111.76 0)
  1718. (hide yes)
  1719. (show_name no)
  1720. (do_not_autoplace no)
  1721. (effects
  1722. (font
  1723. (size 1.27 1.27)
  1724. )
  1725. )
  1726. )
  1727. (property "Value" "GND"
  1728. (at 156.21 110.49 0)
  1729. (show_name no)
  1730. (do_not_autoplace no)
  1731. (effects
  1732. (font
  1733. (size 1.27 1.27)
  1734. )
  1735. )
  1736. )
  1737. (property "Footprint" ""
  1738. (at 156.21 105.41 0)
  1739. (hide yes)
  1740. (show_name no)
  1741. (do_not_autoplace no)
  1742. (effects
  1743. (font
  1744. (size 1.27 1.27)
  1745. )
  1746. )
  1747. )
  1748. (property "Datasheet" ""
  1749. (at 156.21 105.41 0)
  1750. (hide yes)
  1751. (show_name no)
  1752. (do_not_autoplace no)
  1753. (effects
  1754. (font
  1755. (size 1.27 1.27)
  1756. )
  1757. )
  1758. )
  1759. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1760. (at 156.21 105.41 0)
  1761. (hide yes)
  1762. (show_name no)
  1763. (do_not_autoplace no)
  1764. (effects
  1765. (font
  1766. (size 1.27 1.27)
  1767. )
  1768. )
  1769. )
  1770. (pin "1"
  1771. (uuid "81bd41dc-77cf-4162-8dcd-5c7f6b91afd6")
  1772. )
  1773. (instances
  1774. (project "cx-copter-schematic"
  1775. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/1294a00f-bea7-44c2-8af4-81f3d946c0e8"
  1776. (reference "#PWR012")
  1777. (unit 1)
  1778. )
  1779. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/26ed61ca-be80-41a7-8de5-b627fea95b9d"
  1780. (reference "#PWR06")
  1781. (unit 1)
  1782. )
  1783. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/5a4d2f37-c035-413d-94a5-f0c762c5279e"
  1784. (reference "#PWR02")
  1785. (unit 1)
  1786. )
  1787. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/61f0245d-3df3-4923-a222-e27fe8dccc00"
  1788. (reference "#PWR09")
  1789. (unit 1)
  1790. )
  1791. )
  1792. )
  1793. )
  1794. (symbol
  1795. (lib_id "Motor:Fan")
  1796. (at 156.21 83.82 0)
  1797. (unit 1)
  1798. (body_style 1)
  1799. (exclude_from_sim no)
  1800. (in_bom yes)
  1801. (on_board yes)
  1802. (in_pos_files yes)
  1803. (dnp no)
  1804. (uuid "d1353b13-0251-4add-b11f-7dd0f248a70c")
  1805. (property "Reference" "M1"
  1806. (at 147.574 81.28 0)
  1807. (show_name no)
  1808. (do_not_autoplace no)
  1809. (effects
  1810. (font
  1811. (size 1.27 1.27)
  1812. )
  1813. (justify left)
  1814. )
  1815. )
  1816. (property "Value" "0820"
  1817. (at 147.574 83.82 0)
  1818. (show_name no)
  1819. (do_not_autoplace no)
  1820. (effects
  1821. (font
  1822. (size 1.27 1.27)
  1823. )
  1824. (justify left)
  1825. )
  1826. )
  1827. (property "Footprint" ""
  1828. (at 156.21 83.566 0)
  1829. (hide yes)
  1830. (show_name no)
  1831. (do_not_autoplace no)
  1832. (effects
  1833. (font
  1834. (size 1.27 1.27)
  1835. )
  1836. )
  1837. )
  1838. (property "Datasheet" ""
  1839. (at 156.21 83.566 0)
  1840. (hide yes)
  1841. (show_name no)
  1842. (do_not_autoplace no)
  1843. (effects
  1844. (font
  1845. (size 1.27 1.27)
  1846. )
  1847. )
  1848. )
  1849. (property "Description" "Fan"
  1850. (at 156.21 83.82 0)
  1851. (hide yes)
  1852. (show_name no)
  1853. (do_not_autoplace no)
  1854. (effects
  1855. (font
  1856. (size 1.27 1.27)
  1857. )
  1858. )
  1859. )
  1860. (pin "2"
  1861. (uuid "1012340e-7893-4720-9595-cb8d710d5be3")
  1862. )
  1863. (pin "1"
  1864. (uuid "779a8559-f505-4329-8509-c9b27070d3a9")
  1865. )
  1866. (instances
  1867. (project "cx-copter-schematic"
  1868. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/1294a00f-bea7-44c2-8af4-81f3d946c0e8"
  1869. (reference "M4")
  1870. (unit 1)
  1871. )
  1872. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/26ed61ca-be80-41a7-8de5-b627fea95b9d"
  1873. (reference "M2")
  1874. (unit 1)
  1875. )
  1876. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/5a4d2f37-c035-413d-94a5-f0c762c5279e"
  1877. (reference "M1")
  1878. (unit 1)
  1879. )
  1880. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/61f0245d-3df3-4923-a222-e27fe8dccc00"
  1881. (reference "M3")
  1882. (unit 1)
  1883. )
  1884. )
  1885. )
  1886. )
  1887. )