imu.kicad_sch 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "0476561a-cd36-4acd-9826-88dbef4d9376")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Device:C"
  9. (pin_numbers
  10. (hide yes)
  11. )
  12. (pin_names
  13. (offset 0.254)
  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" "C"
  21. (at 0.635 2.54 0)
  22. (show_name no)
  23. (do_not_autoplace no)
  24. (effects
  25. (font
  26. (size 1.27 1.27)
  27. )
  28. (justify left)
  29. )
  30. )
  31. (property "Value" "C"
  32. (at 0.635 -2.54 0)
  33. (show_name no)
  34. (do_not_autoplace no)
  35. (effects
  36. (font
  37. (size 1.27 1.27)
  38. )
  39. (justify left)
  40. )
  41. )
  42. (property "Footprint" ""
  43. (at 0.9652 -3.81 0)
  44. (show_name no)
  45. (do_not_autoplace no)
  46. (hide yes)
  47. (effects
  48. (font
  49. (size 1.27 1.27)
  50. )
  51. )
  52. )
  53. (property "Datasheet" ""
  54. (at 0 0 0)
  55. (show_name no)
  56. (do_not_autoplace no)
  57. (hide yes)
  58. (effects
  59. (font
  60. (size 1.27 1.27)
  61. )
  62. )
  63. )
  64. (property "Description" "Unpolarized capacitor"
  65. (at 0 0 0)
  66. (show_name no)
  67. (do_not_autoplace no)
  68. (hide yes)
  69. (effects
  70. (font
  71. (size 1.27 1.27)
  72. )
  73. )
  74. )
  75. (property "ki_keywords" "cap capacitor"
  76. (at 0 0 0)
  77. (show_name no)
  78. (do_not_autoplace no)
  79. (hide yes)
  80. (effects
  81. (font
  82. (size 1.27 1.27)
  83. )
  84. )
  85. )
  86. (property "ki_fp_filters" "C_*"
  87. (at 0 0 0)
  88. (show_name no)
  89. (do_not_autoplace no)
  90. (hide yes)
  91. (effects
  92. (font
  93. (size 1.27 1.27)
  94. )
  95. )
  96. )
  97. (symbol "C_0_1"
  98. (polyline
  99. (pts
  100. (xy -2.032 0.762) (xy 2.032 0.762)
  101. )
  102. (stroke
  103. (width 0.508)
  104. (type default)
  105. )
  106. (fill
  107. (type none)
  108. )
  109. )
  110. (polyline
  111. (pts
  112. (xy -2.032 -0.762) (xy 2.032 -0.762)
  113. )
  114. (stroke
  115. (width 0.508)
  116. (type default)
  117. )
  118. (fill
  119. (type none)
  120. )
  121. )
  122. )
  123. (symbol "C_1_1"
  124. (pin passive line
  125. (at 0 3.81 270)
  126. (length 2.794)
  127. (name ""
  128. (effects
  129. (font
  130. (size 1.27 1.27)
  131. )
  132. )
  133. )
  134. (number "1"
  135. (effects
  136. (font
  137. (size 1.27 1.27)
  138. )
  139. )
  140. )
  141. )
  142. (pin passive line
  143. (at 0 -3.81 90)
  144. (length 2.794)
  145. (name ""
  146. (effects
  147. (font
  148. (size 1.27 1.27)
  149. )
  150. )
  151. )
  152. (number "2"
  153. (effects
  154. (font
  155. (size 1.27 1.27)
  156. )
  157. )
  158. )
  159. )
  160. )
  161. (embedded_fonts no)
  162. )
  163. (symbol "Device:R"
  164. (pin_numbers
  165. (hide yes)
  166. )
  167. (pin_names
  168. (offset 0)
  169. )
  170. (exclude_from_sim no)
  171. (in_bom yes)
  172. (on_board yes)
  173. (in_pos_files yes)
  174. (duplicate_pin_numbers_are_jumpers no)
  175. (property "Reference" "R"
  176. (at 2.032 0 90)
  177. (show_name no)
  178. (do_not_autoplace no)
  179. (effects
  180. (font
  181. (size 1.27 1.27)
  182. )
  183. )
  184. )
  185. (property "Value" "R"
  186. (at 0 0 90)
  187. (show_name no)
  188. (do_not_autoplace no)
  189. (effects
  190. (font
  191. (size 1.27 1.27)
  192. )
  193. )
  194. )
  195. (property "Footprint" ""
  196. (at -1.778 0 90)
  197. (show_name no)
  198. (do_not_autoplace no)
  199. (hide yes)
  200. (effects
  201. (font
  202. (size 1.27 1.27)
  203. )
  204. )
  205. )
  206. (property "Datasheet" ""
  207. (at 0 0 0)
  208. (show_name no)
  209. (do_not_autoplace no)
  210. (hide yes)
  211. (effects
  212. (font
  213. (size 1.27 1.27)
  214. )
  215. )
  216. )
  217. (property "Description" "Resistor"
  218. (at 0 0 0)
  219. (show_name no)
  220. (do_not_autoplace no)
  221. (hide yes)
  222. (effects
  223. (font
  224. (size 1.27 1.27)
  225. )
  226. )
  227. )
  228. (property "ki_keywords" "R res resistor"
  229. (at 0 0 0)
  230. (show_name no)
  231. (do_not_autoplace no)
  232. (hide yes)
  233. (effects
  234. (font
  235. (size 1.27 1.27)
  236. )
  237. )
  238. )
  239. (property "ki_fp_filters" "R_*"
  240. (at 0 0 0)
  241. (show_name no)
  242. (do_not_autoplace no)
  243. (hide yes)
  244. (effects
  245. (font
  246. (size 1.27 1.27)
  247. )
  248. )
  249. )
  250. (symbol "R_0_1"
  251. (rectangle
  252. (start -1.016 -2.54)
  253. (end 1.016 2.54)
  254. (stroke
  255. (width 0.254)
  256. (type default)
  257. )
  258. (fill
  259. (type none)
  260. )
  261. )
  262. )
  263. (symbol "R_1_1"
  264. (pin passive line
  265. (at 0 3.81 270)
  266. (length 1.27)
  267. (name ""
  268. (effects
  269. (font
  270. (size 1.27 1.27)
  271. )
  272. )
  273. )
  274. (number "1"
  275. (effects
  276. (font
  277. (size 1.27 1.27)
  278. )
  279. )
  280. )
  281. )
  282. (pin passive line
  283. (at 0 -3.81 90)
  284. (length 1.27)
  285. (name ""
  286. (effects
  287. (font
  288. (size 1.27 1.27)
  289. )
  290. )
  291. )
  292. (number "2"
  293. (effects
  294. (font
  295. (size 1.27 1.27)
  296. )
  297. )
  298. )
  299. )
  300. )
  301. (embedded_fonts no)
  302. )
  303. (symbol "imu:GY-LSM6DS3_module"
  304. (exclude_from_sim no)
  305. (in_bom yes)
  306. (on_board yes)
  307. (in_pos_files yes)
  308. (duplicate_pin_numbers_are_jumpers no)
  309. (property "Reference" "U"
  310. (at 13.208 17.018 0)
  311. (show_name no)
  312. (do_not_autoplace no)
  313. (effects
  314. (font
  315. (size 1.27 1.27)
  316. )
  317. )
  318. )
  319. (property "Value" "LSM6DS3"
  320. (at 13.208 19.304 0)
  321. (show_name no)
  322. (do_not_autoplace no)
  323. (effects
  324. (font
  325. (size 1.27 1.27)
  326. )
  327. )
  328. )
  329. (property "Footprint" "imu:GY-LSM6DS3"
  330. (at 0 0 0)
  331. (show_name no)
  332. (do_not_autoplace no)
  333. (hide yes)
  334. (effects
  335. (font
  336. (size 1.27 1.27)
  337. )
  338. )
  339. )
  340. (property "Datasheet" "https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf"
  341. (at -15.494 62.23 0)
  342. (show_name no)
  343. (do_not_autoplace no)
  344. (hide yes)
  345. (effects
  346. (font
  347. (size 1.27 1.27)
  348. )
  349. )
  350. )
  351. (property "Description" ""
  352. (at 0 0 0)
  353. (show_name no)
  354. (do_not_autoplace no)
  355. (hide yes)
  356. (effects
  357. (font
  358. (size 1.27 1.27)
  359. )
  360. )
  361. )
  362. (property "ki_keywords" "IMU,6DoF"
  363. (at 0 0 0)
  364. (show_name no)
  365. (do_not_autoplace no)
  366. (hide yes)
  367. (effects
  368. (font
  369. (size 1.27 1.27)
  370. )
  371. )
  372. )
  373. (symbol "GY-LSM6DS3_module_1_1"
  374. (rectangle
  375. (start -15.24 15.24)
  376. (end 15.24 -15.24)
  377. (stroke
  378. (width 0)
  379. (type solid)
  380. )
  381. (fill
  382. (type background)
  383. )
  384. )
  385. (pin power_in line
  386. (at -3.81 17.78 270)
  387. (length 2.54)
  388. (name "VIN"
  389. (effects
  390. (font
  391. (size 1.27 1.27)
  392. )
  393. )
  394. )
  395. (number "1"
  396. (effects
  397. (font
  398. (size 1.27 1.27)
  399. )
  400. )
  401. )
  402. )
  403. (pin power_in line
  404. (at 3.81 17.78 270)
  405. (length 2.54)
  406. (name "3V3"
  407. (effects
  408. (font
  409. (size 1.27 1.27)
  410. )
  411. )
  412. )
  413. (number "2"
  414. (effects
  415. (font
  416. (size 1.27 1.27)
  417. )
  418. )
  419. )
  420. )
  421. (pin power_in line
  422. (at 0 -17.78 90)
  423. (length 2.54)
  424. (name "GND"
  425. (effects
  426. (font
  427. (size 1.27 1.27)
  428. )
  429. )
  430. )
  431. (number "3"
  432. (effects
  433. (font
  434. (size 1.27 1.27)
  435. )
  436. )
  437. )
  438. )
  439. (pin input line
  440. (at -17.78 11.43 0)
  441. (length 2.54)
  442. (name "SCL"
  443. (effects
  444. (font
  445. (size 1.27 1.27)
  446. )
  447. )
  448. )
  449. (number "4"
  450. (effects
  451. (font
  452. (size 1.27 1.27)
  453. )
  454. )
  455. )
  456. )
  457. (pin bidirectional line
  458. (at -17.78 8.89 0)
  459. (length 2.54)
  460. (name "SDA/SDI"
  461. (effects
  462. (font
  463. (size 1.27 1.27)
  464. )
  465. )
  466. )
  467. (number "5"
  468. (effects
  469. (font
  470. (size 1.27 1.27)
  471. )
  472. )
  473. )
  474. )
  475. (pin input line
  476. (at -17.78 3.81 0)
  477. (length 2.54)
  478. (name "CS"
  479. (effects
  480. (font
  481. (size 1.27 1.27)
  482. )
  483. )
  484. )
  485. (number "6"
  486. (effects
  487. (font
  488. (size 1.27 1.27)
  489. )
  490. )
  491. )
  492. )
  493. (pin bidirectional line
  494. (at -17.78 6.35 0)
  495. (length 2.54)
  496. (name "SDO/SA0"
  497. (effects
  498. (font
  499. (size 1.27 1.27)
  500. )
  501. )
  502. )
  503. (number "7"
  504. (effects
  505. (font
  506. (size 1.27 1.27)
  507. )
  508. )
  509. )
  510. )
  511. (pin bidirectional line
  512. (at 17.78 11.43 180)
  513. (length 2.54)
  514. (name "SDX"
  515. (effects
  516. (font
  517. (size 1.27 1.27)
  518. )
  519. )
  520. )
  521. (number "8"
  522. (effects
  523. (font
  524. (size 1.27 1.27)
  525. )
  526. )
  527. )
  528. )
  529. (pin bidirectional line
  530. (at 17.78 8.89 180)
  531. (length 2.54)
  532. (name "SCX"
  533. (effects
  534. (font
  535. (size 1.27 1.27)
  536. )
  537. )
  538. )
  539. (number "9"
  540. (effects
  541. (font
  542. (size 1.27 1.27)
  543. )
  544. )
  545. )
  546. )
  547. (pin output line
  548. (at -17.78 -8.89 0)
  549. (length 2.54)
  550. (name "INT1"
  551. (effects
  552. (font
  553. (size 1.27 1.27)
  554. )
  555. )
  556. )
  557. (number "10"
  558. (effects
  559. (font
  560. (size 1.27 1.27)
  561. )
  562. )
  563. )
  564. )
  565. (pin output line
  566. (at -17.78 -11.43 0)
  567. (length 2.54)
  568. (name "INT2"
  569. (effects
  570. (font
  571. (size 1.27 1.27)
  572. )
  573. )
  574. )
  575. (number "11"
  576. (effects
  577. (font
  578. (size 1.27 1.27)
  579. )
  580. )
  581. )
  582. )
  583. (pin output line
  584. (at 17.78 6.35 180)
  585. (length 2.54)
  586. (name "0CS"
  587. (effects
  588. (font
  589. (size 1.27 1.27)
  590. )
  591. )
  592. )
  593. (number "12"
  594. (effects
  595. (font
  596. (size 1.27 1.27)
  597. )
  598. )
  599. )
  600. )
  601. )
  602. (embedded_fonts no)
  603. )
  604. (symbol "power:+3V3"
  605. (power global)
  606. (pin_numbers
  607. (hide yes)
  608. )
  609. (pin_names
  610. (offset 0)
  611. (hide yes)
  612. )
  613. (exclude_from_sim no)
  614. (in_bom yes)
  615. (on_board yes)
  616. (in_pos_files yes)
  617. (duplicate_pin_numbers_are_jumpers no)
  618. (property "Reference" "#PWR"
  619. (at 0 -3.81 0)
  620. (show_name no)
  621. (do_not_autoplace no)
  622. (hide yes)
  623. (effects
  624. (font
  625. (size 1.27 1.27)
  626. )
  627. )
  628. )
  629. (property "Value" "+3V3"
  630. (at 0 3.556 0)
  631. (show_name no)
  632. (do_not_autoplace no)
  633. (effects
  634. (font
  635. (size 1.27 1.27)
  636. )
  637. )
  638. )
  639. (property "Footprint" ""
  640. (at 0 0 0)
  641. (show_name no)
  642. (do_not_autoplace no)
  643. (hide yes)
  644. (effects
  645. (font
  646. (size 1.27 1.27)
  647. )
  648. )
  649. )
  650. (property "Datasheet" ""
  651. (at 0 0 0)
  652. (show_name no)
  653. (do_not_autoplace no)
  654. (hide yes)
  655. (effects
  656. (font
  657. (size 1.27 1.27)
  658. )
  659. )
  660. )
  661. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  662. (at 0 0 0)
  663. (show_name no)
  664. (do_not_autoplace no)
  665. (hide yes)
  666. (effects
  667. (font
  668. (size 1.27 1.27)
  669. )
  670. )
  671. )
  672. (property "ki_keywords" "global power"
  673. (at 0 0 0)
  674. (show_name no)
  675. (do_not_autoplace no)
  676. (hide yes)
  677. (effects
  678. (font
  679. (size 1.27 1.27)
  680. )
  681. )
  682. )
  683. (symbol "+3V3_0_1"
  684. (polyline
  685. (pts
  686. (xy -0.762 1.27) (xy 0 2.54)
  687. )
  688. (stroke
  689. (width 0)
  690. (type default)
  691. )
  692. (fill
  693. (type none)
  694. )
  695. )
  696. (polyline
  697. (pts
  698. (xy 0 2.54) (xy 0.762 1.27)
  699. )
  700. (stroke
  701. (width 0)
  702. (type default)
  703. )
  704. (fill
  705. (type none)
  706. )
  707. )
  708. (polyline
  709. (pts
  710. (xy 0 0) (xy 0 2.54)
  711. )
  712. (stroke
  713. (width 0)
  714. (type default)
  715. )
  716. (fill
  717. (type none)
  718. )
  719. )
  720. )
  721. (symbol "+3V3_1_1"
  722. (pin power_in line
  723. (at 0 0 90)
  724. (length 0)
  725. (name ""
  726. (effects
  727. (font
  728. (size 1.27 1.27)
  729. )
  730. )
  731. )
  732. (number "1"
  733. (effects
  734. (font
  735. (size 1.27 1.27)
  736. )
  737. )
  738. )
  739. )
  740. )
  741. (embedded_fonts no)
  742. )
  743. (symbol "power:GND"
  744. (power global)
  745. (pin_numbers
  746. (hide yes)
  747. )
  748. (pin_names
  749. (offset 0)
  750. (hide yes)
  751. )
  752. (exclude_from_sim no)
  753. (in_bom yes)
  754. (on_board yes)
  755. (in_pos_files yes)
  756. (duplicate_pin_numbers_are_jumpers no)
  757. (property "Reference" "#PWR"
  758. (at 0 -6.35 0)
  759. (show_name no)
  760. (do_not_autoplace no)
  761. (hide yes)
  762. (effects
  763. (font
  764. (size 1.27 1.27)
  765. )
  766. )
  767. )
  768. (property "Value" "GND"
  769. (at 0 -3.81 0)
  770. (show_name no)
  771. (do_not_autoplace no)
  772. (effects
  773. (font
  774. (size 1.27 1.27)
  775. )
  776. )
  777. )
  778. (property "Footprint" ""
  779. (at 0 0 0)
  780. (show_name no)
  781. (do_not_autoplace no)
  782. (hide yes)
  783. (effects
  784. (font
  785. (size 1.27 1.27)
  786. )
  787. )
  788. )
  789. (property "Datasheet" ""
  790. (at 0 0 0)
  791. (show_name no)
  792. (do_not_autoplace no)
  793. (hide yes)
  794. (effects
  795. (font
  796. (size 1.27 1.27)
  797. )
  798. )
  799. )
  800. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  801. (at 0 0 0)
  802. (show_name no)
  803. (do_not_autoplace no)
  804. (hide yes)
  805. (effects
  806. (font
  807. (size 1.27 1.27)
  808. )
  809. )
  810. )
  811. (property "ki_keywords" "global power"
  812. (at 0 0 0)
  813. (show_name no)
  814. (do_not_autoplace no)
  815. (hide yes)
  816. (effects
  817. (font
  818. (size 1.27 1.27)
  819. )
  820. )
  821. )
  822. (symbol "GND_0_1"
  823. (polyline
  824. (pts
  825. (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)
  826. )
  827. (stroke
  828. (width 0)
  829. (type default)
  830. )
  831. (fill
  832. (type none)
  833. )
  834. )
  835. )
  836. (symbol "GND_1_1"
  837. (pin power_in line
  838. (at 0 0 270)
  839. (length 0)
  840. (name ""
  841. (effects
  842. (font
  843. (size 1.27 1.27)
  844. )
  845. )
  846. )
  847. (number "1"
  848. (effects
  849. (font
  850. (size 1.27 1.27)
  851. )
  852. )
  853. )
  854. )
  855. )
  856. (embedded_fonts no)
  857. )
  858. (symbol "power:VDD"
  859. (power global)
  860. (pin_numbers
  861. (hide yes)
  862. )
  863. (pin_names
  864. (offset 0)
  865. (hide yes)
  866. )
  867. (exclude_from_sim no)
  868. (in_bom yes)
  869. (on_board yes)
  870. (in_pos_files yes)
  871. (duplicate_pin_numbers_are_jumpers no)
  872. (property "Reference" "#PWR"
  873. (at 0 -3.81 0)
  874. (show_name no)
  875. (do_not_autoplace no)
  876. (hide yes)
  877. (effects
  878. (font
  879. (size 1.27 1.27)
  880. )
  881. )
  882. )
  883. (property "Value" "VDD"
  884. (at 0 3.556 0)
  885. (show_name no)
  886. (do_not_autoplace no)
  887. (effects
  888. (font
  889. (size 1.27 1.27)
  890. )
  891. )
  892. )
  893. (property "Footprint" ""
  894. (at 0 0 0)
  895. (show_name no)
  896. (do_not_autoplace no)
  897. (hide yes)
  898. (effects
  899. (font
  900. (size 1.27 1.27)
  901. )
  902. )
  903. )
  904. (property "Datasheet" ""
  905. (at 0 0 0)
  906. (show_name no)
  907. (do_not_autoplace no)
  908. (hide yes)
  909. (effects
  910. (font
  911. (size 1.27 1.27)
  912. )
  913. )
  914. )
  915. (property "Description" "Power symbol creates a global label with name \"VDD\""
  916. (at 0 0 0)
  917. (show_name no)
  918. (do_not_autoplace no)
  919. (hide yes)
  920. (effects
  921. (font
  922. (size 1.27 1.27)
  923. )
  924. )
  925. )
  926. (property "ki_keywords" "global power"
  927. (at 0 0 0)
  928. (show_name no)
  929. (do_not_autoplace no)
  930. (hide yes)
  931. (effects
  932. (font
  933. (size 1.27 1.27)
  934. )
  935. )
  936. )
  937. (symbol "VDD_0_1"
  938. (polyline
  939. (pts
  940. (xy -0.762 1.27) (xy 0 2.54)
  941. )
  942. (stroke
  943. (width 0)
  944. (type default)
  945. )
  946. (fill
  947. (type none)
  948. )
  949. )
  950. (polyline
  951. (pts
  952. (xy 0 2.54) (xy 0.762 1.27)
  953. )
  954. (stroke
  955. (width 0)
  956. (type default)
  957. )
  958. (fill
  959. (type none)
  960. )
  961. )
  962. (polyline
  963. (pts
  964. (xy 0 0) (xy 0 2.54)
  965. )
  966. (stroke
  967. (width 0)
  968. (type default)
  969. )
  970. (fill
  971. (type none)
  972. )
  973. )
  974. )
  975. (symbol "VDD_1_1"
  976. (pin power_in line
  977. (at 0 0 90)
  978. (length 0)
  979. (name ""
  980. (effects
  981. (font
  982. (size 1.27 1.27)
  983. )
  984. )
  985. )
  986. (number "1"
  987. (effects
  988. (font
  989. (size 1.27 1.27)
  990. )
  991. )
  992. )
  993. )
  994. )
  995. (embedded_fonts no)
  996. )
  997. )
  998. (junction
  999. (at 128.27 73.66)
  1000. (diameter 0)
  1001. (color 0 0 0 0)
  1002. (uuid "06a06f67-3946-4372-bfb0-f5b5fdbda2af")
  1003. )
  1004. (junction
  1005. (at 161.29 63.5)
  1006. (diameter 0)
  1007. (color 0 0 0 0)
  1008. (uuid "4cf6779c-ca26-4554-a746-dd2481957c6f")
  1009. )
  1010. (junction
  1011. (at 138.43 63.5)
  1012. (diameter 0)
  1013. (color 0 0 0 0)
  1014. (uuid "56c699ad-8b21-4443-94e0-e40ddbcb2413")
  1015. )
  1016. (junction
  1017. (at 118.11 110.49)
  1018. (diameter 0)
  1019. (color 0 0 0 0)
  1020. (uuid "c5d08ef8-cff1-4c2d-b445-54d07a891088")
  1021. )
  1022. (junction
  1023. (at 146.05 63.5)
  1024. (diameter 0)
  1025. (color 0 0 0 0)
  1026. (uuid "eb43f1de-82c7-46df-952c-2674dcc8cc37")
  1027. )
  1028. (junction
  1029. (at 170.18 73.66)
  1030. (diameter 0)
  1031. (color 0 0 0 0)
  1032. (uuid "f87bc3ef-7f46-40b8-8c2f-f9c842826e7f")
  1033. )
  1034. (wire
  1035. (pts
  1036. (xy 153.67 63.5) (xy 153.67 83.82)
  1037. )
  1038. (stroke
  1039. (width 0)
  1040. (type default)
  1041. )
  1042. (uuid "00766b39-438b-4c51-a3da-af57841a6bc7")
  1043. )
  1044. (wire
  1045. (pts
  1046. (xy 170.18 73.66) (xy 170.18 74.93)
  1047. )
  1048. (stroke
  1049. (width 0)
  1050. (type default)
  1051. )
  1052. (uuid "078a5425-27f0-456a-a11a-13d3d5b0a1fe")
  1053. )
  1054. (wire
  1055. (pts
  1056. (xy 161.29 63.5) (xy 161.29 64.77)
  1057. )
  1058. (stroke
  1059. (width 0)
  1060. (type default)
  1061. )
  1062. (uuid "0a75d6e6-a2af-4c66-a1d9-bedafacdda5f")
  1063. )
  1064. (wire
  1065. (pts
  1066. (xy 181.61 87.63) (xy 181.61 90.17)
  1067. )
  1068. (stroke
  1069. (width 0)
  1070. (type default)
  1071. )
  1072. (uuid "0f42fe8a-0a8e-40b2-9f0e-0cb438b678ab")
  1073. )
  1074. (wire
  1075. (pts
  1076. (xy 130.81 90.17) (xy 132.08 90.17)
  1077. )
  1078. (stroke
  1079. (width 0)
  1080. (type default)
  1081. )
  1082. (uuid "154170fc-b00d-489f-90c6-75cd66b8253c")
  1083. )
  1084. (wire
  1085. (pts
  1086. (xy 149.86 119.38) (xy 149.86 120.65)
  1087. )
  1088. (stroke
  1089. (width 0)
  1090. (type default)
  1091. )
  1092. (uuid "163331f8-59c2-4648-9f9a-e8d1c0292c96")
  1093. )
  1094. (wire
  1095. (pts
  1096. (xy 153.67 63.5) (xy 161.29 63.5)
  1097. )
  1098. (stroke
  1099. (width 0)
  1100. (type default)
  1101. )
  1102. (uuid "19efbcb5-8817-43ee-865d-50b27e325d5c")
  1103. )
  1104. (wire
  1105. (pts
  1106. (xy 138.43 72.39) (xy 138.43 73.66)
  1107. )
  1108. (stroke
  1109. (width 0)
  1110. (type default)
  1111. )
  1112. (uuid "1fd1411b-0d1f-47c7-b90c-02f30b0f555b")
  1113. )
  1114. (wire
  1115. (pts
  1116. (xy 146.05 63.5) (xy 146.05 83.82)
  1117. )
  1118. (stroke
  1119. (width 0)
  1120. (type default)
  1121. )
  1122. (uuid "36dce96c-d28c-4f24-bb8b-58f6239a2b58")
  1123. )
  1124. (wire
  1125. (pts
  1126. (xy 118.11 99.06) (xy 118.11 100.33)
  1127. )
  1128. (stroke
  1129. (width 0)
  1130. (type default)
  1131. )
  1132. (uuid "36e5fe94-03cf-476d-be3a-cf0db8628a0b")
  1133. )
  1134. (wire
  1135. (pts
  1136. (xy 106.68 110.49) (xy 107.95 110.49)
  1137. )
  1138. (stroke
  1139. (width 0)
  1140. (type default)
  1141. )
  1142. (uuid "37166687-e601-42c4-ba82-7925789a9bfd")
  1143. )
  1144. (wire
  1145. (pts
  1146. (xy 115.57 110.49) (xy 118.11 110.49)
  1147. )
  1148. (stroke
  1149. (width 0)
  1150. (type default)
  1151. )
  1152. (uuid "3a1fd9f3-01e4-4149-81c1-c5c96c3f0b1e")
  1153. )
  1154. (wire
  1155. (pts
  1156. (xy 130.81 92.71) (xy 132.08 92.71)
  1157. )
  1158. (stroke
  1159. (width 0)
  1160. (type default)
  1161. )
  1162. (uuid "506a3d1a-495b-40ff-ac41-622b995215b8")
  1163. )
  1164. (wire
  1165. (pts
  1166. (xy 146.05 62.23) (xy 146.05 63.5)
  1167. )
  1168. (stroke
  1169. (width 0)
  1170. (type default)
  1171. )
  1172. (uuid "56d39607-b6d9-4fbd-9d2a-6ecb3a9bfd39")
  1173. )
  1174. (wire
  1175. (pts
  1176. (xy 170.18 72.39) (xy 170.18 73.66)
  1177. )
  1178. (stroke
  1179. (width 0)
  1180. (type default)
  1181. )
  1182. (uuid "5bd2c43a-77a2-41e0-a5cf-a0fffcb8ba41")
  1183. )
  1184. (wire
  1185. (pts
  1186. (xy 161.29 63.5) (xy 170.18 63.5)
  1187. )
  1188. (stroke
  1189. (width 0)
  1190. (type default)
  1191. )
  1192. (uuid "64b33c3e-d9e7-46fe-b863-707feb61dd38")
  1193. )
  1194. (wire
  1195. (pts
  1196. (xy 128.27 63.5) (xy 138.43 63.5)
  1197. )
  1198. (stroke
  1199. (width 0)
  1200. (type default)
  1201. )
  1202. (uuid "792b0d15-ca01-4681-ae4f-e587fdd19c76")
  1203. )
  1204. (wire
  1205. (pts
  1206. (xy 161.29 73.66) (xy 170.18 73.66)
  1207. )
  1208. (stroke
  1209. (width 0)
  1210. (type default)
  1211. )
  1212. (uuid "79d9422c-d72f-436c-be51-1e221200e046")
  1213. )
  1214. (wire
  1215. (pts
  1216. (xy 128.27 72.39) (xy 128.27 73.66)
  1217. )
  1218. (stroke
  1219. (width 0)
  1220. (type default)
  1221. )
  1222. (uuid "7df54e15-0ceb-49c0-808f-154a0b1904b7")
  1223. )
  1224. (wire
  1225. (pts
  1226. (xy 128.27 63.5) (xy 128.27 64.77)
  1227. )
  1228. (stroke
  1229. (width 0)
  1230. (type default)
  1231. )
  1232. (uuid "7e5be9ac-3338-4227-82cd-79a2208417ca")
  1233. )
  1234. (wire
  1235. (pts
  1236. (xy 190.5 78.74) (xy 190.5 80.01)
  1237. )
  1238. (stroke
  1239. (width 0)
  1240. (type default)
  1241. )
  1242. (uuid "962ec706-deab-47af-b1d6-0536c9667761")
  1243. )
  1244. (wire
  1245. (pts
  1246. (xy 161.29 72.39) (xy 161.29 73.66)
  1247. )
  1248. (stroke
  1249. (width 0)
  1250. (type default)
  1251. )
  1252. (uuid "9a1309d0-c929-4012-a124-1cffd8798359")
  1253. )
  1254. (wire
  1255. (pts
  1256. (xy 128.27 73.66) (xy 128.27 74.93)
  1257. )
  1258. (stroke
  1259. (width 0)
  1260. (type default)
  1261. )
  1262. (uuid "9bd97bb8-a6be-418e-9eca-fe945e04ac32")
  1263. )
  1264. (wire
  1265. (pts
  1266. (xy 190.5 92.71) (xy 167.64 92.71)
  1267. )
  1268. (stroke
  1269. (width 0)
  1270. (type default)
  1271. )
  1272. (uuid "9c0d04ca-36bc-48eb-b8a7-075ff9e9d9f0")
  1273. )
  1274. (wire
  1275. (pts
  1276. (xy 138.43 63.5) (xy 138.43 64.77)
  1277. )
  1278. (stroke
  1279. (width 0)
  1280. (type default)
  1281. )
  1282. (uuid "9c9cf609-9a76-4401-b4a0-8cefbed9d9d3")
  1283. )
  1284. (wire
  1285. (pts
  1286. (xy 181.61 78.74) (xy 181.61 80.01)
  1287. )
  1288. (stroke
  1289. (width 0)
  1290. (type default)
  1291. )
  1292. (uuid "9e80265d-8519-4281-8b24-61d4b0b30695")
  1293. )
  1294. (wire
  1295. (pts
  1296. (xy 118.11 107.95) (xy 118.11 110.49)
  1297. )
  1298. (stroke
  1299. (width 0)
  1300. (type default)
  1301. )
  1302. (uuid "a288bf11-b593-4c97-a9f7-ad3f4fa92356")
  1303. )
  1304. (wire
  1305. (pts
  1306. (xy 190.5 87.63) (xy 190.5 92.71)
  1307. )
  1308. (stroke
  1309. (width 0)
  1310. (type default)
  1311. )
  1312. (uuid "ae31cea1-2a78-4d8e-80a2-096b7581cfca")
  1313. )
  1314. (wire
  1315. (pts
  1316. (xy 138.43 63.5) (xy 146.05 63.5)
  1317. )
  1318. (stroke
  1319. (width 0)
  1320. (type default)
  1321. )
  1322. (uuid "b1260bd6-e4dd-444b-b3ca-34e50d7fc3b1")
  1323. )
  1324. (wire
  1325. (pts
  1326. (xy 170.18 64.77) (xy 170.18 63.5)
  1327. )
  1328. (stroke
  1329. (width 0)
  1330. (type default)
  1331. )
  1332. (uuid "c4768a9a-dec3-4437-945c-3f6408b4fa57")
  1333. )
  1334. (wire
  1335. (pts
  1336. (xy 167.64 90.17) (xy 181.61 90.17)
  1337. )
  1338. (stroke
  1339. (width 0)
  1340. (type default)
  1341. )
  1342. (uuid "cafe27ea-4960-47bb-993c-968e4332499e")
  1343. )
  1344. (wire
  1345. (pts
  1346. (xy 118.11 110.49) (xy 132.08 110.49)
  1347. )
  1348. (stroke
  1349. (width 0)
  1350. (type default)
  1351. )
  1352. (uuid "d51d0999-0ce3-4692-ba4f-bd703d14da03")
  1353. )
  1354. (wire
  1355. (pts
  1356. (xy 128.27 73.66) (xy 138.43 73.66)
  1357. )
  1358. (stroke
  1359. (width 0)
  1360. (type default)
  1361. )
  1362. (uuid "fee4fbbf-1ac4-4203-aedf-52954e7a26e2")
  1363. )
  1364. (hierarchical_label "SCL"
  1365. (shape input)
  1366. (at 130.81 90.17 180)
  1367. (effects
  1368. (font
  1369. (size 1.27 1.27)
  1370. )
  1371. (justify right)
  1372. )
  1373. (uuid "28bcbda9-96a0-4cd7-a9f4-bd17293021d0")
  1374. )
  1375. (hierarchical_label "INT"
  1376. (shape output)
  1377. (at 106.68 110.49 180)
  1378. (effects
  1379. (font
  1380. (size 1.27 1.27)
  1381. )
  1382. (justify right)
  1383. )
  1384. (uuid "4dc6c514-edca-4677-a689-e8d113f42f61")
  1385. )
  1386. (hierarchical_label "SDA"
  1387. (shape bidirectional)
  1388. (at 130.81 92.71 180)
  1389. (effects
  1390. (font
  1391. (size 1.27 1.27)
  1392. )
  1393. (justify right)
  1394. )
  1395. (uuid "a787416d-a12e-4092-98ef-c9a2d49d9d8e")
  1396. )
  1397. (symbol
  1398. (lib_id "imu:GY-LSM6DS3_module")
  1399. (at 149.86 101.6 0)
  1400. (unit 1)
  1401. (body_style 1)
  1402. (exclude_from_sim no)
  1403. (in_bom yes)
  1404. (on_board yes)
  1405. (in_pos_files yes)
  1406. (dnp no)
  1407. (uuid "07c2cf97-3481-44bb-8692-563367e450cf")
  1408. (property "Reference" "U1"
  1409. (at 134.366 85.344 0)
  1410. (show_name no)
  1411. (do_not_autoplace no)
  1412. (effects
  1413. (font
  1414. (size 1.27 1.27)
  1415. )
  1416. (justify left)
  1417. )
  1418. )
  1419. (property "Value" "LSM6DS3"
  1420. (at 156.718 85.344 0)
  1421. (show_name no)
  1422. (do_not_autoplace no)
  1423. (effects
  1424. (font
  1425. (size 1.27 1.27)
  1426. )
  1427. (justify left)
  1428. )
  1429. )
  1430. (property "Footprint" "imu:GY-LSM6DS3"
  1431. (at 149.86 101.6 0)
  1432. (hide yes)
  1433. (show_name no)
  1434. (do_not_autoplace no)
  1435. (effects
  1436. (font
  1437. (size 1.27 1.27)
  1438. )
  1439. )
  1440. )
  1441. (property "Datasheet" "https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf"
  1442. (at 134.366 39.37 0)
  1443. (hide yes)
  1444. (show_name no)
  1445. (do_not_autoplace no)
  1446. (effects
  1447. (font
  1448. (size 1.27 1.27)
  1449. )
  1450. )
  1451. )
  1452. (property "Description" ""
  1453. (at 149.86 101.6 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. (pin "12"
  1464. (uuid "fb2d315d-15ba-4833-bee6-365c010c1c23")
  1465. )
  1466. (pin "3"
  1467. (uuid "726f181b-380e-4940-9fcc-7ae7a311bf7f")
  1468. )
  1469. (pin "2"
  1470. (uuid "8c14f20f-0de1-4665-80af-c21be5e7346d")
  1471. )
  1472. (pin "1"
  1473. (uuid "bebc5e8c-1913-4fdf-a0d8-d7b9a3f8d2de")
  1474. )
  1475. (pin "10"
  1476. (uuid "0368fbca-043f-4989-a59e-3bf83577c053")
  1477. )
  1478. (pin "11"
  1479. (uuid "dea28432-004d-43a2-80dd-685308a193b9")
  1480. )
  1481. (pin "9"
  1482. (uuid "62dbdae8-df95-4c9c-8b12-b1958834130a")
  1483. )
  1484. (pin "8"
  1485. (uuid "50afb81f-3925-41b8-a5e9-160e70288c87")
  1486. )
  1487. (pin "7"
  1488. (uuid "ddcf9346-b660-4290-b02d-a31d534c4fdc")
  1489. )
  1490. (pin "6"
  1491. (uuid "b495052a-55cb-4dd1-9875-3b4dca43b163")
  1492. )
  1493. (pin "5"
  1494. (uuid "ce9af66b-975d-49ad-889e-98b8fe78097f")
  1495. )
  1496. (pin "4"
  1497. (uuid "f3f7db22-84e9-4412-8829-2bfb5596c30e")
  1498. )
  1499. (instances
  1500. (project "cx-copter-schematic"
  1501. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  1502. (reference "U1")
  1503. (unit 1)
  1504. )
  1505. )
  1506. )
  1507. )
  1508. (symbol
  1509. (lib_id "Device:C")
  1510. (at 128.27 68.58 0)
  1511. (unit 1)
  1512. (body_style 1)
  1513. (exclude_from_sim no)
  1514. (in_bom yes)
  1515. (on_board yes)
  1516. (in_pos_files yes)
  1517. (dnp no)
  1518. (uuid "0a947b9a-a72b-4b60-a724-e4ed5f1d3a8a")
  1519. (property "Reference" "C1"
  1520. (at 128.27 66.548 0)
  1521. (show_name no)
  1522. (do_not_autoplace no)
  1523. (effects
  1524. (font
  1525. (size 1.27 1.27)
  1526. )
  1527. (justify left)
  1528. )
  1529. )
  1530. (property "Value" "100n"
  1531. (at 128.27 70.612 0)
  1532. (show_name no)
  1533. (do_not_autoplace no)
  1534. (effects
  1535. (font
  1536. (size 1.27 1.27)
  1537. )
  1538. (justify left)
  1539. )
  1540. )
  1541. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric"
  1542. (at 129.2352 72.39 0)
  1543. (hide yes)
  1544. (show_name no)
  1545. (do_not_autoplace no)
  1546. (effects
  1547. (font
  1548. (size 1.27 1.27)
  1549. )
  1550. )
  1551. )
  1552. (property "Datasheet" ""
  1553. (at 128.27 68.58 0)
  1554. (hide yes)
  1555. (show_name no)
  1556. (do_not_autoplace no)
  1557. (effects
  1558. (font
  1559. (size 1.27 1.27)
  1560. )
  1561. )
  1562. )
  1563. (property "Description" "Unpolarized capacitor"
  1564. (at 128.27 68.58 0)
  1565. (hide yes)
  1566. (show_name no)
  1567. (do_not_autoplace no)
  1568. (effects
  1569. (font
  1570. (size 1.27 1.27)
  1571. )
  1572. )
  1573. )
  1574. (pin "2"
  1575. (uuid "07606da1-2bbb-404c-b931-886a8259abab")
  1576. )
  1577. (pin "1"
  1578. (uuid "edf575ab-179e-47f2-908e-295d2347b29c")
  1579. )
  1580. (instances
  1581. (project "cx-copter-schematic"
  1582. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  1583. (reference "C1")
  1584. (unit 1)
  1585. )
  1586. )
  1587. )
  1588. )
  1589. (symbol
  1590. (lib_id "power:+3V3")
  1591. (at 190.5 78.74 0)
  1592. (unit 1)
  1593. (body_style 1)
  1594. (exclude_from_sim no)
  1595. (in_bom yes)
  1596. (on_board yes)
  1597. (in_pos_files yes)
  1598. (dnp no)
  1599. (fields_autoplaced yes)
  1600. (uuid "10dbde59-fe60-4d4a-949d-6fb11a2dbe68")
  1601. (property "Reference" "#PWR019"
  1602. (at 190.5 82.55 0)
  1603. (hide yes)
  1604. (show_name no)
  1605. (do_not_autoplace no)
  1606. (effects
  1607. (font
  1608. (size 1.27 1.27)
  1609. )
  1610. )
  1611. )
  1612. (property "Value" "+3V3"
  1613. (at 190.5 73.66 0)
  1614. (show_name no)
  1615. (do_not_autoplace no)
  1616. (effects
  1617. (font
  1618. (size 1.27 1.27)
  1619. )
  1620. )
  1621. )
  1622. (property "Footprint" ""
  1623. (at 190.5 78.74 0)
  1624. (hide yes)
  1625. (show_name no)
  1626. (do_not_autoplace no)
  1627. (effects
  1628. (font
  1629. (size 1.27 1.27)
  1630. )
  1631. )
  1632. )
  1633. (property "Datasheet" ""
  1634. (at 190.5 78.74 0)
  1635. (hide yes)
  1636. (show_name no)
  1637. (do_not_autoplace no)
  1638. (effects
  1639. (font
  1640. (size 1.27 1.27)
  1641. )
  1642. )
  1643. )
  1644. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1645. (at 190.5 78.74 0)
  1646. (hide yes)
  1647. (show_name no)
  1648. (do_not_autoplace no)
  1649. (effects
  1650. (font
  1651. (size 1.27 1.27)
  1652. )
  1653. )
  1654. )
  1655. (pin "1"
  1656. (uuid "aabe045a-cc2b-4039-bc8d-122c7b6a399e")
  1657. )
  1658. (instances
  1659. (project "cx-copter-schematic"
  1660. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  1661. (reference "#PWR019")
  1662. (unit 1)
  1663. )
  1664. )
  1665. )
  1666. )
  1667. (symbol
  1668. (lib_id "Device:R")
  1669. (at 111.76 110.49 90)
  1670. (unit 1)
  1671. (body_style 1)
  1672. (exclude_from_sim no)
  1673. (in_bom yes)
  1674. (on_board yes)
  1675. (in_pos_files yes)
  1676. (dnp no)
  1677. (uuid "5635af60-efdf-4593-a4ef-6f47e3befcfb")
  1678. (property "Reference" "R13"
  1679. (at 111.76 108.458 90)
  1680. (show_name no)
  1681. (do_not_autoplace no)
  1682. (effects
  1683. (font
  1684. (size 1.27 1.27)
  1685. )
  1686. )
  1687. )
  1688. (property "Value" "100"
  1689. (at 111.76 112.522 90)
  1690. (show_name no)
  1691. (do_not_autoplace no)
  1692. (effects
  1693. (font
  1694. (size 1.27 1.27)
  1695. )
  1696. )
  1697. )
  1698. (property "Footprint" "Resistor_SMD:R_1206_3216Metric"
  1699. (at 111.76 112.268 90)
  1700. (hide yes)
  1701. (show_name no)
  1702. (do_not_autoplace no)
  1703. (effects
  1704. (font
  1705. (size 1.27 1.27)
  1706. )
  1707. )
  1708. )
  1709. (property "Datasheet" ""
  1710. (at 111.76 110.49 0)
  1711. (hide yes)
  1712. (show_name no)
  1713. (do_not_autoplace no)
  1714. (effects
  1715. (font
  1716. (size 1.27 1.27)
  1717. )
  1718. )
  1719. )
  1720. (property "Description" "Resistor"
  1721. (at 111.76 110.49 0)
  1722. (hide yes)
  1723. (show_name no)
  1724. (do_not_autoplace no)
  1725. (effects
  1726. (font
  1727. (size 1.27 1.27)
  1728. )
  1729. )
  1730. )
  1731. (pin "2"
  1732. (uuid "502ace4d-9e66-41e4-8686-4590ff01e7d7")
  1733. )
  1734. (pin "1"
  1735. (uuid "92fc6e47-a985-4e1f-a493-86f40eabf1ad")
  1736. )
  1737. (instances
  1738. (project "cx-copter-schematic"
  1739. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  1740. (reference "R13")
  1741. (unit 1)
  1742. )
  1743. )
  1744. )
  1745. )
  1746. (symbol
  1747. (lib_id "power:+3V3")
  1748. (at 118.11 99.06 0)
  1749. (unit 1)
  1750. (body_style 1)
  1751. (exclude_from_sim no)
  1752. (in_bom yes)
  1753. (on_board yes)
  1754. (in_pos_files yes)
  1755. (dnp no)
  1756. (fields_autoplaced yes)
  1757. (uuid "5b2c717e-81e7-49ef-91c8-9d06dabb6a18")
  1758. (property "Reference" "#PWR020"
  1759. (at 118.11 102.87 0)
  1760. (hide yes)
  1761. (show_name no)
  1762. (do_not_autoplace no)
  1763. (effects
  1764. (font
  1765. (size 1.27 1.27)
  1766. )
  1767. )
  1768. )
  1769. (property "Value" "+3V3"
  1770. (at 118.11 93.98 0)
  1771. (show_name no)
  1772. (do_not_autoplace no)
  1773. (effects
  1774. (font
  1775. (size 1.27 1.27)
  1776. )
  1777. )
  1778. )
  1779. (property "Footprint" ""
  1780. (at 118.11 99.06 0)
  1781. (hide yes)
  1782. (show_name no)
  1783. (do_not_autoplace no)
  1784. (effects
  1785. (font
  1786. (size 1.27 1.27)
  1787. )
  1788. )
  1789. )
  1790. (property "Datasheet" ""
  1791. (at 118.11 99.06 0)
  1792. (hide yes)
  1793. (show_name no)
  1794. (do_not_autoplace no)
  1795. (effects
  1796. (font
  1797. (size 1.27 1.27)
  1798. )
  1799. )
  1800. )
  1801. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1802. (at 118.11 99.06 0)
  1803. (hide yes)
  1804. (show_name no)
  1805. (do_not_autoplace no)
  1806. (effects
  1807. (font
  1808. (size 1.27 1.27)
  1809. )
  1810. )
  1811. )
  1812. (pin "1"
  1813. (uuid "387d68be-8341-4f95-9c55-0eaeb7da4b1b")
  1814. )
  1815. (instances
  1816. (project "cx-copter-schematic"
  1817. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  1818. (reference "#PWR020")
  1819. (unit 1)
  1820. )
  1821. )
  1822. )
  1823. )
  1824. (symbol
  1825. (lib_id "power:GND")
  1826. (at 170.18 74.93 0)
  1827. (unit 1)
  1828. (body_style 1)
  1829. (exclude_from_sim no)
  1830. (in_bom yes)
  1831. (on_board yes)
  1832. (in_pos_files yes)
  1833. (dnp no)
  1834. (fields_autoplaced yes)
  1835. (uuid "636c0070-25d4-4145-aae8-57a6b521f25c")
  1836. (property "Reference" "#PWR015"
  1837. (at 170.18 81.28 0)
  1838. (hide yes)
  1839. (show_name no)
  1840. (do_not_autoplace no)
  1841. (effects
  1842. (font
  1843. (size 1.27 1.27)
  1844. )
  1845. )
  1846. )
  1847. (property "Value" "GND"
  1848. (at 170.18 80.01 0)
  1849. (show_name no)
  1850. (do_not_autoplace no)
  1851. (effects
  1852. (font
  1853. (size 1.27 1.27)
  1854. )
  1855. )
  1856. )
  1857. (property "Footprint" ""
  1858. (at 170.18 74.93 0)
  1859. (hide yes)
  1860. (show_name no)
  1861. (do_not_autoplace no)
  1862. (effects
  1863. (font
  1864. (size 1.27 1.27)
  1865. )
  1866. )
  1867. )
  1868. (property "Datasheet" ""
  1869. (at 170.18 74.93 0)
  1870. (hide yes)
  1871. (show_name no)
  1872. (do_not_autoplace no)
  1873. (effects
  1874. (font
  1875. (size 1.27 1.27)
  1876. )
  1877. )
  1878. )
  1879. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1880. (at 170.18 74.93 0)
  1881. (hide yes)
  1882. (show_name no)
  1883. (do_not_autoplace no)
  1884. (effects
  1885. (font
  1886. (size 1.27 1.27)
  1887. )
  1888. )
  1889. )
  1890. (pin "1"
  1891. (uuid "9d1e9949-04d0-4ebb-a5e8-b11cf0375d36")
  1892. )
  1893. (instances
  1894. (project "cx-copter-schematic"
  1895. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  1896. (reference "#PWR015")
  1897. (unit 1)
  1898. )
  1899. )
  1900. )
  1901. )
  1902. (symbol
  1903. (lib_id "power:+3V3")
  1904. (at 181.61 78.74 0)
  1905. (unit 1)
  1906. (body_style 1)
  1907. (exclude_from_sim no)
  1908. (in_bom yes)
  1909. (on_board yes)
  1910. (in_pos_files yes)
  1911. (dnp no)
  1912. (fields_autoplaced yes)
  1913. (uuid "a516b4a6-657b-4bc9-9429-184798489807")
  1914. (property "Reference" "#PWR018"
  1915. (at 181.61 82.55 0)
  1916. (hide yes)
  1917. (show_name no)
  1918. (do_not_autoplace no)
  1919. (effects
  1920. (font
  1921. (size 1.27 1.27)
  1922. )
  1923. )
  1924. )
  1925. (property "Value" "+3V3"
  1926. (at 181.61 73.66 0)
  1927. (show_name no)
  1928. (do_not_autoplace no)
  1929. (effects
  1930. (font
  1931. (size 1.27 1.27)
  1932. )
  1933. )
  1934. )
  1935. (property "Footprint" ""
  1936. (at 181.61 78.74 0)
  1937. (hide yes)
  1938. (show_name no)
  1939. (do_not_autoplace no)
  1940. (effects
  1941. (font
  1942. (size 1.27 1.27)
  1943. )
  1944. )
  1945. )
  1946. (property "Datasheet" ""
  1947. (at 181.61 78.74 0)
  1948. (hide yes)
  1949. (show_name no)
  1950. (do_not_autoplace no)
  1951. (effects
  1952. (font
  1953. (size 1.27 1.27)
  1954. )
  1955. )
  1956. )
  1957. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1958. (at 181.61 78.74 0)
  1959. (hide yes)
  1960. (show_name no)
  1961. (do_not_autoplace no)
  1962. (effects
  1963. (font
  1964. (size 1.27 1.27)
  1965. )
  1966. )
  1967. )
  1968. (pin "1"
  1969. (uuid "56427488-506d-4c4b-8be3-8fee65781c26")
  1970. )
  1971. (instances
  1972. (project "cx-copter-schematic"
  1973. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  1974. (reference "#PWR018")
  1975. (unit 1)
  1976. )
  1977. )
  1978. )
  1979. )
  1980. (symbol
  1981. (lib_id "Device:C")
  1982. (at 170.18 68.58 0)
  1983. (unit 1)
  1984. (body_style 1)
  1985. (exclude_from_sim no)
  1986. (in_bom yes)
  1987. (on_board yes)
  1988. (in_pos_files yes)
  1989. (dnp no)
  1990. (uuid "a6891180-05af-473d-9b09-fb294a012578")
  1991. (property "Reference" "C4"
  1992. (at 170.18 66.548 0)
  1993. (show_name no)
  1994. (do_not_autoplace no)
  1995. (effects
  1996. (font
  1997. (size 1.27 1.27)
  1998. )
  1999. (justify left)
  2000. )
  2001. )
  2002. (property "Value" "100n"
  2003. (at 170.18 70.612 0)
  2004. (show_name no)
  2005. (do_not_autoplace no)
  2006. (effects
  2007. (font
  2008. (size 1.27 1.27)
  2009. )
  2010. (justify left)
  2011. )
  2012. )
  2013. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric"
  2014. (at 171.1452 72.39 0)
  2015. (hide yes)
  2016. (show_name no)
  2017. (do_not_autoplace no)
  2018. (effects
  2019. (font
  2020. (size 1.27 1.27)
  2021. )
  2022. )
  2023. )
  2024. (property "Datasheet" ""
  2025. (at 170.18 68.58 0)
  2026. (hide yes)
  2027. (show_name no)
  2028. (do_not_autoplace no)
  2029. (effects
  2030. (font
  2031. (size 1.27 1.27)
  2032. )
  2033. )
  2034. )
  2035. (property "Description" "Unpolarized capacitor"
  2036. (at 170.18 68.58 0)
  2037. (hide yes)
  2038. (show_name no)
  2039. (do_not_autoplace no)
  2040. (effects
  2041. (font
  2042. (size 1.27 1.27)
  2043. )
  2044. )
  2045. )
  2046. (pin "2"
  2047. (uuid "0a445cca-35db-47ce-9acb-b8e34870cf04")
  2048. )
  2049. (pin "1"
  2050. (uuid "205c6dca-58e4-4f3a-a84d-f10af6525b5f")
  2051. )
  2052. (instances
  2053. (project "cx-copter-schematic"
  2054. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2055. (reference "C4")
  2056. (unit 1)
  2057. )
  2058. )
  2059. )
  2060. )
  2061. (symbol
  2062. (lib_id "Device:C")
  2063. (at 138.43 68.58 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. (uuid "ab472f43-3e84-4407-ae75-9b07a0723f3c")
  2072. (property "Reference" "C2"
  2073. (at 138.43 66.548 0)
  2074. (show_name no)
  2075. (do_not_autoplace no)
  2076. (effects
  2077. (font
  2078. (size 1.27 1.27)
  2079. )
  2080. (justify left)
  2081. )
  2082. )
  2083. (property "Value" "100n"
  2084. (at 138.43 70.612 0)
  2085. (show_name no)
  2086. (do_not_autoplace no)
  2087. (effects
  2088. (font
  2089. (size 1.27 1.27)
  2090. )
  2091. (justify left)
  2092. )
  2093. )
  2094. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric"
  2095. (at 139.3952 72.39 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 138.43 68.58 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" "Unpolarized capacitor"
  2117. (at 138.43 68.58 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 "2"
  2128. (uuid "210eddc6-6cd8-4d9e-bde4-60f6fcd4e703")
  2129. )
  2130. (pin "1"
  2131. (uuid "6de393a4-0d7a-436d-b6b2-8c051ebd5cc5")
  2132. )
  2133. (instances
  2134. (project "cx-copter-schematic"
  2135. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2136. (reference "C2")
  2137. (unit 1)
  2138. )
  2139. )
  2140. )
  2141. )
  2142. (symbol
  2143. (lib_id "Device:R")
  2144. (at 118.11 104.14 180)
  2145. (unit 1)
  2146. (body_style 1)
  2147. (exclude_from_sim no)
  2148. (in_bom yes)
  2149. (on_board yes)
  2150. (in_pos_files yes)
  2151. (dnp no)
  2152. (uuid "c6780fe0-69b5-4c98-9c69-5353ce8fdd74")
  2153. (property "Reference" "R14"
  2154. (at 116.078 104.14 90)
  2155. (show_name no)
  2156. (do_not_autoplace no)
  2157. (effects
  2158. (font
  2159. (size 1.27 1.27)
  2160. )
  2161. )
  2162. )
  2163. (property "Value" "100k"
  2164. (at 120.142 104.14 90)
  2165. (show_name no)
  2166. (do_not_autoplace no)
  2167. (effects
  2168. (font
  2169. (size 1.27 1.27)
  2170. )
  2171. )
  2172. )
  2173. (property "Footprint" "Resistor_SMD:R_1206_3216Metric"
  2174. (at 119.888 104.14 90)
  2175. (hide yes)
  2176. (show_name no)
  2177. (do_not_autoplace no)
  2178. (effects
  2179. (font
  2180. (size 1.27 1.27)
  2181. )
  2182. )
  2183. )
  2184. (property "Datasheet" ""
  2185. (at 118.11 104.14 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 "Description" "Resistor"
  2196. (at 118.11 104.14 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. (pin "2"
  2207. (uuid "73f2a820-397d-479d-8b6d-1ccf5a9d700e")
  2208. )
  2209. (pin "1"
  2210. (uuid "ee3a062f-aaa8-4c35-b3ff-d2e2897be8cc")
  2211. )
  2212. (instances
  2213. (project "cx-copter-schematic"
  2214. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2215. (reference "R14")
  2216. (unit 1)
  2217. )
  2218. )
  2219. )
  2220. )
  2221. (symbol
  2222. (lib_id "Device:C")
  2223. (at 161.29 68.58 0)
  2224. (unit 1)
  2225. (body_style 1)
  2226. (exclude_from_sim no)
  2227. (in_bom yes)
  2228. (on_board yes)
  2229. (in_pos_files yes)
  2230. (dnp no)
  2231. (uuid "cd50288a-6859-4122-90ec-bd0a3d8cbf13")
  2232. (property "Reference" "C3"
  2233. (at 161.29 66.548 0)
  2234. (show_name no)
  2235. (do_not_autoplace no)
  2236. (effects
  2237. (font
  2238. (size 1.27 1.27)
  2239. )
  2240. (justify left)
  2241. )
  2242. )
  2243. (property "Value" "100n"
  2244. (at 161.29 70.612 0)
  2245. (show_name no)
  2246. (do_not_autoplace no)
  2247. (effects
  2248. (font
  2249. (size 1.27 1.27)
  2250. )
  2251. (justify left)
  2252. )
  2253. )
  2254. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric"
  2255. (at 162.2552 72.39 0)
  2256. (hide yes)
  2257. (show_name no)
  2258. (do_not_autoplace no)
  2259. (effects
  2260. (font
  2261. (size 1.27 1.27)
  2262. )
  2263. )
  2264. )
  2265. (property "Datasheet" ""
  2266. (at 161.29 68.58 0)
  2267. (hide yes)
  2268. (show_name no)
  2269. (do_not_autoplace no)
  2270. (effects
  2271. (font
  2272. (size 1.27 1.27)
  2273. )
  2274. )
  2275. )
  2276. (property "Description" "Unpolarized capacitor"
  2277. (at 161.29 68.58 0)
  2278. (hide yes)
  2279. (show_name no)
  2280. (do_not_autoplace no)
  2281. (effects
  2282. (font
  2283. (size 1.27 1.27)
  2284. )
  2285. )
  2286. )
  2287. (pin "2"
  2288. (uuid "dcbb4423-6a5a-454d-957b-0103d8d54831")
  2289. )
  2290. (pin "1"
  2291. (uuid "8f50bb42-b761-4df5-a789-a21b2132349a")
  2292. )
  2293. (instances
  2294. (project "cx-copter-schematic"
  2295. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2296. (reference "C3")
  2297. (unit 1)
  2298. )
  2299. )
  2300. )
  2301. )
  2302. (symbol
  2303. (lib_id "power:GND")
  2304. (at 149.86 120.65 0)
  2305. (unit 1)
  2306. (body_style 1)
  2307. (exclude_from_sim no)
  2308. (in_bom yes)
  2309. (on_board yes)
  2310. (in_pos_files yes)
  2311. (dnp no)
  2312. (fields_autoplaced yes)
  2313. (uuid "d3e67987-38fa-4b7d-9d41-026912a0d5b9")
  2314. (property "Reference" "#PWR013"
  2315. (at 149.86 127 0)
  2316. (hide yes)
  2317. (show_name no)
  2318. (do_not_autoplace no)
  2319. (effects
  2320. (font
  2321. (size 1.27 1.27)
  2322. )
  2323. )
  2324. )
  2325. (property "Value" "GND"
  2326. (at 149.86 125.73 0)
  2327. (show_name no)
  2328. (do_not_autoplace no)
  2329. (effects
  2330. (font
  2331. (size 1.27 1.27)
  2332. )
  2333. )
  2334. )
  2335. (property "Footprint" ""
  2336. (at 149.86 120.65 0)
  2337. (hide yes)
  2338. (show_name no)
  2339. (do_not_autoplace no)
  2340. (effects
  2341. (font
  2342. (size 1.27 1.27)
  2343. )
  2344. )
  2345. )
  2346. (property "Datasheet" ""
  2347. (at 149.86 120.65 0)
  2348. (hide yes)
  2349. (show_name no)
  2350. (do_not_autoplace no)
  2351. (effects
  2352. (font
  2353. (size 1.27 1.27)
  2354. )
  2355. )
  2356. )
  2357. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2358. (at 149.86 120.65 0)
  2359. (hide yes)
  2360. (show_name no)
  2361. (do_not_autoplace no)
  2362. (effects
  2363. (font
  2364. (size 1.27 1.27)
  2365. )
  2366. )
  2367. )
  2368. (pin "1"
  2369. (uuid "c823a7b1-69fa-47ec-95ab-27fb43f6d21a")
  2370. )
  2371. (instances
  2372. (project "cx-copter-schematic"
  2373. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2374. (reference "#PWR013")
  2375. (unit 1)
  2376. )
  2377. )
  2378. )
  2379. )
  2380. (symbol
  2381. (lib_id "power:GND")
  2382. (at 128.27 74.93 0)
  2383. (unit 1)
  2384. (body_style 1)
  2385. (exclude_from_sim no)
  2386. (in_bom yes)
  2387. (on_board yes)
  2388. (in_pos_files yes)
  2389. (dnp no)
  2390. (fields_autoplaced yes)
  2391. (uuid "d7e47bf5-9b94-4ad3-a269-fe3b14ae843c")
  2392. (property "Reference" "#PWR016"
  2393. (at 128.27 81.28 0)
  2394. (hide yes)
  2395. (show_name no)
  2396. (do_not_autoplace no)
  2397. (effects
  2398. (font
  2399. (size 1.27 1.27)
  2400. )
  2401. )
  2402. )
  2403. (property "Value" "GND"
  2404. (at 128.27 80.01 0)
  2405. (show_name no)
  2406. (do_not_autoplace no)
  2407. (effects
  2408. (font
  2409. (size 1.27 1.27)
  2410. )
  2411. )
  2412. )
  2413. (property "Footprint" ""
  2414. (at 128.27 74.93 0)
  2415. (hide yes)
  2416. (show_name no)
  2417. (do_not_autoplace no)
  2418. (effects
  2419. (font
  2420. (size 1.27 1.27)
  2421. )
  2422. )
  2423. )
  2424. (property "Datasheet" ""
  2425. (at 128.27 74.93 0)
  2426. (hide yes)
  2427. (show_name no)
  2428. (do_not_autoplace no)
  2429. (effects
  2430. (font
  2431. (size 1.27 1.27)
  2432. )
  2433. )
  2434. )
  2435. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2436. (at 128.27 74.93 0)
  2437. (hide yes)
  2438. (show_name no)
  2439. (do_not_autoplace no)
  2440. (effects
  2441. (font
  2442. (size 1.27 1.27)
  2443. )
  2444. )
  2445. )
  2446. (pin "1"
  2447. (uuid "71c57af0-5160-4fe7-b77e-5ca38288a8bd")
  2448. )
  2449. (instances
  2450. (project "cx-copter-schematic"
  2451. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2452. (reference "#PWR016")
  2453. (unit 1)
  2454. )
  2455. )
  2456. )
  2457. )
  2458. (symbol
  2459. (lib_id "Device:R")
  2460. (at 181.61 83.82 180)
  2461. (unit 1)
  2462. (body_style 1)
  2463. (exclude_from_sim no)
  2464. (in_bom yes)
  2465. (on_board yes)
  2466. (in_pos_files yes)
  2467. (dnp no)
  2468. (uuid "e1afb771-4374-41af-bae9-a0bb359c970a")
  2469. (property "Reference" "R11"
  2470. (at 179.578 83.82 90)
  2471. (show_name no)
  2472. (do_not_autoplace no)
  2473. (effects
  2474. (font
  2475. (size 1.27 1.27)
  2476. )
  2477. )
  2478. )
  2479. (property "Value" "10k"
  2480. (at 183.642 83.82 90)
  2481. (show_name no)
  2482. (do_not_autoplace no)
  2483. (effects
  2484. (font
  2485. (size 1.27 1.27)
  2486. )
  2487. )
  2488. )
  2489. (property "Footprint" "Resistor_SMD:R_1206_3216Metric"
  2490. (at 183.388 83.82 90)
  2491. (hide yes)
  2492. (show_name no)
  2493. (do_not_autoplace no)
  2494. (effects
  2495. (font
  2496. (size 1.27 1.27)
  2497. )
  2498. )
  2499. )
  2500. (property "Datasheet" ""
  2501. (at 181.61 83.82 0)
  2502. (hide yes)
  2503. (show_name no)
  2504. (do_not_autoplace no)
  2505. (effects
  2506. (font
  2507. (size 1.27 1.27)
  2508. )
  2509. )
  2510. )
  2511. (property "Description" "Resistor"
  2512. (at 181.61 83.82 0)
  2513. (hide yes)
  2514. (show_name no)
  2515. (do_not_autoplace no)
  2516. (effects
  2517. (font
  2518. (size 1.27 1.27)
  2519. )
  2520. )
  2521. )
  2522. (pin "2"
  2523. (uuid "dafac79e-7fd9-4aa3-bfec-1dbd95c50d4a")
  2524. )
  2525. (pin "1"
  2526. (uuid "9bd05d7d-2aa9-472f-88e6-691309d5bf5c")
  2527. )
  2528. (instances
  2529. (project "cx-copter-schematic"
  2530. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2531. (reference "R11")
  2532. (unit 1)
  2533. )
  2534. )
  2535. )
  2536. )
  2537. (symbol
  2538. (lib_id "power:VDD")
  2539. (at 146.05 62.23 0)
  2540. (unit 1)
  2541. (body_style 1)
  2542. (exclude_from_sim no)
  2543. (in_bom yes)
  2544. (on_board yes)
  2545. (in_pos_files yes)
  2546. (dnp no)
  2547. (fields_autoplaced yes)
  2548. (uuid "f10ecb3d-0932-4618-84ec-650ba87cfe7e")
  2549. (property "Reference" "#PWR014"
  2550. (at 146.05 66.04 0)
  2551. (hide yes)
  2552. (show_name no)
  2553. (do_not_autoplace no)
  2554. (effects
  2555. (font
  2556. (size 1.27 1.27)
  2557. )
  2558. )
  2559. )
  2560. (property "Value" "VDD"
  2561. (at 146.05 57.15 0)
  2562. (show_name no)
  2563. (do_not_autoplace no)
  2564. (effects
  2565. (font
  2566. (size 1.27 1.27)
  2567. )
  2568. )
  2569. )
  2570. (property "Footprint" ""
  2571. (at 146.05 62.23 0)
  2572. (hide yes)
  2573. (show_name no)
  2574. (do_not_autoplace no)
  2575. (effects
  2576. (font
  2577. (size 1.27 1.27)
  2578. )
  2579. )
  2580. )
  2581. (property "Datasheet" ""
  2582. (at 146.05 62.23 0)
  2583. (hide yes)
  2584. (show_name no)
  2585. (do_not_autoplace no)
  2586. (effects
  2587. (font
  2588. (size 1.27 1.27)
  2589. )
  2590. )
  2591. )
  2592. (property "Description" "Power symbol creates a global label with name \"VDD\""
  2593. (at 146.05 62.23 0)
  2594. (hide yes)
  2595. (show_name no)
  2596. (do_not_autoplace no)
  2597. (effects
  2598. (font
  2599. (size 1.27 1.27)
  2600. )
  2601. )
  2602. )
  2603. (pin "1"
  2604. (uuid "d9a85706-0720-413b-9e74-2a303dfac144")
  2605. )
  2606. (instances
  2607. (project "cx-copter-schematic"
  2608. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2609. (reference "#PWR014")
  2610. (unit 1)
  2611. )
  2612. )
  2613. )
  2614. )
  2615. (symbol
  2616. (lib_id "Device:R")
  2617. (at 190.5 83.82 180)
  2618. (unit 1)
  2619. (body_style 1)
  2620. (exclude_from_sim no)
  2621. (in_bom yes)
  2622. (on_board yes)
  2623. (in_pos_files yes)
  2624. (dnp no)
  2625. (uuid "fe972164-2535-42b9-a61e-7910dcd4106f")
  2626. (property "Reference" "R12"
  2627. (at 188.468 83.82 90)
  2628. (show_name no)
  2629. (do_not_autoplace no)
  2630. (effects
  2631. (font
  2632. (size 1.27 1.27)
  2633. )
  2634. )
  2635. )
  2636. (property "Value" "10k"
  2637. (at 192.532 83.82 90)
  2638. (show_name no)
  2639. (do_not_autoplace no)
  2640. (effects
  2641. (font
  2642. (size 1.27 1.27)
  2643. )
  2644. )
  2645. )
  2646. (property "Footprint" "Resistor_SMD:R_1206_3216Metric"
  2647. (at 192.278 83.82 90)
  2648. (hide yes)
  2649. (show_name no)
  2650. (do_not_autoplace no)
  2651. (effects
  2652. (font
  2653. (size 1.27 1.27)
  2654. )
  2655. )
  2656. )
  2657. (property "Datasheet" ""
  2658. (at 190.5 83.82 0)
  2659. (hide yes)
  2660. (show_name no)
  2661. (do_not_autoplace no)
  2662. (effects
  2663. (font
  2664. (size 1.27 1.27)
  2665. )
  2666. )
  2667. )
  2668. (property "Description" "Resistor"
  2669. (at 190.5 83.82 0)
  2670. (hide yes)
  2671. (show_name no)
  2672. (do_not_autoplace no)
  2673. (effects
  2674. (font
  2675. (size 1.27 1.27)
  2676. )
  2677. )
  2678. )
  2679. (pin "2"
  2680. (uuid "cbad1bde-58e1-4dc0-aecb-93557a27f72d")
  2681. )
  2682. (pin "1"
  2683. (uuid "11fa1f49-7893-480a-89b4-938e20ad25da")
  2684. )
  2685. (instances
  2686. (project "cx-copter-schematic"
  2687. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
  2688. (reference "R12")
  2689. (unit 1)
  2690. )
  2691. )
  2692. )
  2693. )
  2694. )