engine_driver.kicad_sch 38 KB

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