cx-copter-top-board.kicad_sch 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "4e86fa64-e1b6-4eca-936b-6df5bcb43437")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Connector_Generic:Conn_01x03"
  9. (pin_names
  10. (offset 1.016)
  11. (hide yes)
  12. )
  13. (exclude_from_sim no)
  14. (in_bom yes)
  15. (on_board yes)
  16. (in_pos_files yes)
  17. (duplicate_pin_numbers_are_jumpers no)
  18. (property "Reference" "J"
  19. (at 0 5.08 0)
  20. (show_name no)
  21. (do_not_autoplace no)
  22. (effects
  23. (font
  24. (size 1.27 1.27)
  25. )
  26. )
  27. )
  28. (property "Value" "Conn_01x03"
  29. (at 0 -5.08 0)
  30. (show_name no)
  31. (do_not_autoplace no)
  32. (effects
  33. (font
  34. (size 1.27 1.27)
  35. )
  36. )
  37. )
  38. (property "Footprint" ""
  39. (at 0 0 0)
  40. (show_name no)
  41. (do_not_autoplace no)
  42. (hide yes)
  43. (effects
  44. (font
  45. (size 1.27 1.27)
  46. )
  47. )
  48. )
  49. (property "Datasheet" ""
  50. (at 0 0 0)
  51. (show_name no)
  52. (do_not_autoplace no)
  53. (hide yes)
  54. (effects
  55. (font
  56. (size 1.27 1.27)
  57. )
  58. )
  59. )
  60. (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
  61. (at 0 0 0)
  62. (show_name no)
  63. (do_not_autoplace no)
  64. (hide yes)
  65. (effects
  66. (font
  67. (size 1.27 1.27)
  68. )
  69. )
  70. )
  71. (property "ki_keywords" "connector"
  72. (at 0 0 0)
  73. (show_name no)
  74. (do_not_autoplace no)
  75. (hide yes)
  76. (effects
  77. (font
  78. (size 1.27 1.27)
  79. )
  80. )
  81. )
  82. (property "ki_fp_filters" "Connector*:*_1x??_*"
  83. (at 0 0 0)
  84. (show_name no)
  85. (do_not_autoplace no)
  86. (hide yes)
  87. (effects
  88. (font
  89. (size 1.27 1.27)
  90. )
  91. )
  92. )
  93. (symbol "Conn_01x03_1_1"
  94. (rectangle
  95. (start -1.27 3.81)
  96. (end 1.27 -3.81)
  97. (stroke
  98. (width 0.254)
  99. (type default)
  100. )
  101. (fill
  102. (type background)
  103. )
  104. )
  105. (rectangle
  106. (start -1.27 2.667)
  107. (end 0 2.413)
  108. (stroke
  109. (width 0.1524)
  110. (type default)
  111. )
  112. (fill
  113. (type none)
  114. )
  115. )
  116. (rectangle
  117. (start -1.27 0.127)
  118. (end 0 -0.127)
  119. (stroke
  120. (width 0.1524)
  121. (type default)
  122. )
  123. (fill
  124. (type none)
  125. )
  126. )
  127. (rectangle
  128. (start -1.27 -2.413)
  129. (end 0 -2.667)
  130. (stroke
  131. (width 0.1524)
  132. (type default)
  133. )
  134. (fill
  135. (type none)
  136. )
  137. )
  138. (pin passive line
  139. (at -5.08 2.54 0)
  140. (length 3.81)
  141. (name "Pin_1"
  142. (effects
  143. (font
  144. (size 1.27 1.27)
  145. )
  146. )
  147. )
  148. (number "1"
  149. (effects
  150. (font
  151. (size 1.27 1.27)
  152. )
  153. )
  154. )
  155. )
  156. (pin passive line
  157. (at -5.08 0 0)
  158. (length 3.81)
  159. (name "Pin_2"
  160. (effects
  161. (font
  162. (size 1.27 1.27)
  163. )
  164. )
  165. )
  166. (number "2"
  167. (effects
  168. (font
  169. (size 1.27 1.27)
  170. )
  171. )
  172. )
  173. )
  174. (pin passive line
  175. (at -5.08 -2.54 0)
  176. (length 3.81)
  177. (name "Pin_3"
  178. (effects
  179. (font
  180. (size 1.27 1.27)
  181. )
  182. )
  183. )
  184. (number "3"
  185. (effects
  186. (font
  187. (size 1.27 1.27)
  188. )
  189. )
  190. )
  191. )
  192. )
  193. (embedded_fonts no)
  194. )
  195. (symbol "Connector_Generic:Conn_01x04"
  196. (pin_names
  197. (offset 1.016)
  198. (hide yes)
  199. )
  200. (exclude_from_sim no)
  201. (in_bom yes)
  202. (on_board yes)
  203. (in_pos_files yes)
  204. (duplicate_pin_numbers_are_jumpers no)
  205. (property "Reference" "J"
  206. (at 0 5.08 0)
  207. (show_name no)
  208. (do_not_autoplace no)
  209. (effects
  210. (font
  211. (size 1.27 1.27)
  212. )
  213. )
  214. )
  215. (property "Value" "Conn_01x04"
  216. (at 0 -7.62 0)
  217. (show_name no)
  218. (do_not_autoplace no)
  219. (effects
  220. (font
  221. (size 1.27 1.27)
  222. )
  223. )
  224. )
  225. (property "Footprint" ""
  226. (at 0 0 0)
  227. (show_name no)
  228. (do_not_autoplace no)
  229. (hide yes)
  230. (effects
  231. (font
  232. (size 1.27 1.27)
  233. )
  234. )
  235. )
  236. (property "Datasheet" ""
  237. (at 0 0 0)
  238. (show_name no)
  239. (do_not_autoplace no)
  240. (hide yes)
  241. (effects
  242. (font
  243. (size 1.27 1.27)
  244. )
  245. )
  246. )
  247. (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"
  248. (at 0 0 0)
  249. (show_name no)
  250. (do_not_autoplace no)
  251. (hide yes)
  252. (effects
  253. (font
  254. (size 1.27 1.27)
  255. )
  256. )
  257. )
  258. (property "ki_keywords" "connector"
  259. (at 0 0 0)
  260. (show_name no)
  261. (do_not_autoplace no)
  262. (hide yes)
  263. (effects
  264. (font
  265. (size 1.27 1.27)
  266. )
  267. )
  268. )
  269. (property "ki_fp_filters" "Connector*:*_1x??_*"
  270. (at 0 0 0)
  271. (show_name no)
  272. (do_not_autoplace no)
  273. (hide yes)
  274. (effects
  275. (font
  276. (size 1.27 1.27)
  277. )
  278. )
  279. )
  280. (symbol "Conn_01x04_1_1"
  281. (rectangle
  282. (start -1.27 3.81)
  283. (end 1.27 -6.35)
  284. (stroke
  285. (width 0.254)
  286. (type default)
  287. )
  288. (fill
  289. (type background)
  290. )
  291. )
  292. (rectangle
  293. (start -1.27 2.667)
  294. (end 0 2.413)
  295. (stroke
  296. (width 0.1524)
  297. (type default)
  298. )
  299. (fill
  300. (type none)
  301. )
  302. )
  303. (rectangle
  304. (start -1.27 0.127)
  305. (end 0 -0.127)
  306. (stroke
  307. (width 0.1524)
  308. (type default)
  309. )
  310. (fill
  311. (type none)
  312. )
  313. )
  314. (rectangle
  315. (start -1.27 -2.413)
  316. (end 0 -2.667)
  317. (stroke
  318. (width 0.1524)
  319. (type default)
  320. )
  321. (fill
  322. (type none)
  323. )
  324. )
  325. (rectangle
  326. (start -1.27 -4.953)
  327. (end 0 -5.207)
  328. (stroke
  329. (width 0.1524)
  330. (type default)
  331. )
  332. (fill
  333. (type none)
  334. )
  335. )
  336. (pin passive line
  337. (at -5.08 2.54 0)
  338. (length 3.81)
  339. (name "Pin_1"
  340. (effects
  341. (font
  342. (size 1.27 1.27)
  343. )
  344. )
  345. )
  346. (number "1"
  347. (effects
  348. (font
  349. (size 1.27 1.27)
  350. )
  351. )
  352. )
  353. )
  354. (pin passive line
  355. (at -5.08 0 0)
  356. (length 3.81)
  357. (name "Pin_2"
  358. (effects
  359. (font
  360. (size 1.27 1.27)
  361. )
  362. )
  363. )
  364. (number "2"
  365. (effects
  366. (font
  367. (size 1.27 1.27)
  368. )
  369. )
  370. )
  371. )
  372. (pin passive line
  373. (at -5.08 -2.54 0)
  374. (length 3.81)
  375. (name "Pin_3"
  376. (effects
  377. (font
  378. (size 1.27 1.27)
  379. )
  380. )
  381. )
  382. (number "3"
  383. (effects
  384. (font
  385. (size 1.27 1.27)
  386. )
  387. )
  388. )
  389. )
  390. (pin passive line
  391. (at -5.08 -5.08 0)
  392. (length 3.81)
  393. (name "Pin_4"
  394. (effects
  395. (font
  396. (size 1.27 1.27)
  397. )
  398. )
  399. )
  400. (number "4"
  401. (effects
  402. (font
  403. (size 1.27 1.27)
  404. )
  405. )
  406. )
  407. )
  408. )
  409. (embedded_fonts no)
  410. )
  411. (symbol "Connector_Generic:Conn_02x10_Odd_Even"
  412. (pin_names
  413. (offset 1.016)
  414. (hide yes)
  415. )
  416. (exclude_from_sim no)
  417. (in_bom yes)
  418. (on_board yes)
  419. (in_pos_files yes)
  420. (duplicate_pin_numbers_are_jumpers no)
  421. (property "Reference" "J2"
  422. (at 1.27 16.51 0)
  423. (show_name no)
  424. (do_not_autoplace no)
  425. (effects
  426. (font
  427. (size 1.27 1.27)
  428. )
  429. )
  430. )
  431. (property "Value" "INTERCONNECT"
  432. (at 1.27 13.97 0)
  433. (show_name no)
  434. (do_not_autoplace no)
  435. (effects
  436. (font
  437. (size 1.27 1.27)
  438. )
  439. )
  440. )
  441. (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_2x10_P2.54mm_Vertical"
  442. (at 2.286 -34.29 0)
  443. (show_name no)
  444. (do_not_autoplace no)
  445. (hide yes)
  446. (effects
  447. (font
  448. (size 1.27 1.27)
  449. )
  450. )
  451. )
  452. (property "Datasheet" ""
  453. (at 0 0 0)
  454. (show_name no)
  455. (do_not_autoplace no)
  456. (hide yes)
  457. (effects
  458. (font
  459. (size 1.27 1.27)
  460. )
  461. )
  462. )
  463. (property "Description" "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"
  464. (at -1.016 -33.528 0)
  465. (show_name no)
  466. (do_not_autoplace no)
  467. (hide yes)
  468. (effects
  469. (font
  470. (size 1.27 1.27)
  471. )
  472. )
  473. )
  474. (property "ki_keywords" "connector"
  475. (at 0 0 0)
  476. (show_name no)
  477. (do_not_autoplace no)
  478. (hide yes)
  479. (effects
  480. (font
  481. (size 1.27 1.27)
  482. )
  483. )
  484. )
  485. (property "ki_fp_filters" "Connector*:*_2x??_*"
  486. (at 0 0 0)
  487. (show_name no)
  488. (do_not_autoplace no)
  489. (hide yes)
  490. (effects
  491. (font
  492. (size 1.27 1.27)
  493. )
  494. )
  495. )
  496. (symbol "Conn_02x10_Odd_Even_1_1"
  497. (rectangle
  498. (start -1.27 17.78)
  499. (end 3.81 -17.78)
  500. (stroke
  501. (width 0.254)
  502. (type default)
  503. )
  504. (fill
  505. (type background)
  506. )
  507. )
  508. (pin passive line
  509. (at -5.08 13.97 0)
  510. (length 3.81)
  511. (name "Pin_1"
  512. (effects
  513. (font
  514. (size 1.27 1.27)
  515. )
  516. )
  517. )
  518. (number "1"
  519. (effects
  520. (font
  521. (size 1.27 1.27)
  522. )
  523. )
  524. )
  525. )
  526. (pin passive line
  527. (at -5.08 11.43 0)
  528. (length 3.81)
  529. (name "Pin_2"
  530. (effects
  531. (font
  532. (size 1.27 1.27)
  533. )
  534. )
  535. )
  536. (number "2"
  537. (effects
  538. (font
  539. (size 1.27 1.27)
  540. )
  541. )
  542. )
  543. )
  544. (pin passive line
  545. (at -5.08 8.89 0)
  546. (length 3.81)
  547. (name "Pin_3"
  548. (effects
  549. (font
  550. (size 1.27 1.27)
  551. )
  552. )
  553. )
  554. (number "3"
  555. (effects
  556. (font
  557. (size 1.27 1.27)
  558. )
  559. )
  560. )
  561. )
  562. (pin passive line
  563. (at -5.08 6.35 0)
  564. (length 3.81)
  565. (name "Pin_4"
  566. (effects
  567. (font
  568. (size 1.27 1.27)
  569. )
  570. )
  571. )
  572. (number "4"
  573. (effects
  574. (font
  575. (size 1.27 1.27)
  576. )
  577. )
  578. )
  579. )
  580. (pin passive line
  581. (at -5.08 3.81 0)
  582. (length 3.81)
  583. (name "Pin_5"
  584. (effects
  585. (font
  586. (size 1.27 1.27)
  587. )
  588. )
  589. )
  590. (number "5"
  591. (effects
  592. (font
  593. (size 1.27 1.27)
  594. )
  595. )
  596. )
  597. )
  598. (pin passive line
  599. (at -5.08 1.27 0)
  600. (length 3.81)
  601. (name "Pin_6"
  602. (effects
  603. (font
  604. (size 1.27 1.27)
  605. )
  606. )
  607. )
  608. (number "6"
  609. (effects
  610. (font
  611. (size 1.27 1.27)
  612. )
  613. )
  614. )
  615. )
  616. (pin passive line
  617. (at -5.08 -1.27 0)
  618. (length 3.81)
  619. (name "Pin_7"
  620. (effects
  621. (font
  622. (size 1.27 1.27)
  623. )
  624. )
  625. )
  626. (number "7"
  627. (effects
  628. (font
  629. (size 1.27 1.27)
  630. )
  631. )
  632. )
  633. )
  634. (pin passive line
  635. (at -5.08 -3.81 0)
  636. (length 3.81)
  637. (name "Pin_8"
  638. (effects
  639. (font
  640. (size 1.27 1.27)
  641. )
  642. )
  643. )
  644. (number "8"
  645. (effects
  646. (font
  647. (size 1.27 1.27)
  648. )
  649. )
  650. )
  651. )
  652. (pin passive line
  653. (at -5.08 -6.35 0)
  654. (length 3.81)
  655. (name "Pin_9"
  656. (effects
  657. (font
  658. (size 1.27 1.27)
  659. )
  660. )
  661. )
  662. (number "9"
  663. (effects
  664. (font
  665. (size 1.27 1.27)
  666. )
  667. )
  668. )
  669. )
  670. (pin passive line
  671. (at -5.08 -8.89 0)
  672. (length 3.81)
  673. (name "Pin_10"
  674. (effects
  675. (font
  676. (size 1.27 1.27)
  677. )
  678. )
  679. )
  680. (number "10"
  681. (effects
  682. (font
  683. (size 1.27 1.27)
  684. )
  685. )
  686. )
  687. )
  688. (pin passive line
  689. (at -5.08 -11.43 0)
  690. (length 3.81)
  691. (name "Pin_11"
  692. (effects
  693. (font
  694. (size 1.27 1.27)
  695. )
  696. )
  697. )
  698. (number "11"
  699. (effects
  700. (font
  701. (size 1.27 1.27)
  702. )
  703. )
  704. )
  705. )
  706. (pin passive line
  707. (at -5.08 -13.97 0)
  708. (length 3.81)
  709. (name "Pin_12"
  710. (effects
  711. (font
  712. (size 1.27 1.27)
  713. )
  714. )
  715. )
  716. (number "12"
  717. (effects
  718. (font
  719. (size 1.27 1.27)
  720. )
  721. )
  722. )
  723. )
  724. (pin passive line
  725. (at 7.62 13.97 180)
  726. (length 3.81)
  727. (name "Pin_13"
  728. (effects
  729. (font
  730. (size 1.27 1.27)
  731. )
  732. )
  733. )
  734. (number "13"
  735. (effects
  736. (font
  737. (size 1.27 1.27)
  738. )
  739. )
  740. )
  741. )
  742. (pin passive line
  743. (at 7.62 11.43 180)
  744. (length 3.81)
  745. (name "Pin_14"
  746. (effects
  747. (font
  748. (size 1.27 1.27)
  749. )
  750. )
  751. )
  752. (number "14"
  753. (effects
  754. (font
  755. (size 1.27 1.27)
  756. )
  757. )
  758. )
  759. )
  760. (pin passive line
  761. (at 7.62 8.89 180)
  762. (length 3.81)
  763. (name "Pin_15"
  764. (effects
  765. (font
  766. (size 1.27 1.27)
  767. )
  768. )
  769. )
  770. (number "15"
  771. (effects
  772. (font
  773. (size 1.27 1.27)
  774. )
  775. )
  776. )
  777. )
  778. (pin passive line
  779. (at 7.62 6.35 180)
  780. (length 3.81)
  781. (name "Pin_16"
  782. (effects
  783. (font
  784. (size 1.27 1.27)
  785. )
  786. )
  787. )
  788. (number "16"
  789. (effects
  790. (font
  791. (size 1.27 1.27)
  792. )
  793. )
  794. )
  795. )
  796. (pin passive line
  797. (at 7.62 -6.35 180)
  798. (length 3.81)
  799. (name "Pin_17"
  800. (effects
  801. (font
  802. (size 1.27 1.27)
  803. )
  804. )
  805. )
  806. (number "17"
  807. (effects
  808. (font
  809. (size 1.27 1.27)
  810. )
  811. )
  812. )
  813. )
  814. (pin passive line
  815. (at 7.62 -8.89 180)
  816. (length 3.81)
  817. (name "Pin_18"
  818. (effects
  819. (font
  820. (size 1.27 1.27)
  821. )
  822. )
  823. )
  824. (number "18"
  825. (effects
  826. (font
  827. (size 1.27 1.27)
  828. )
  829. )
  830. )
  831. )
  832. (pin passive line
  833. (at 7.62 -11.43 180)
  834. (length 3.81)
  835. (name "Pin_19"
  836. (effects
  837. (font
  838. (size 1.27 1.27)
  839. )
  840. )
  841. )
  842. (number "19"
  843. (effects
  844. (font
  845. (size 1.27 1.27)
  846. )
  847. )
  848. )
  849. )
  850. (pin passive line
  851. (at 7.62 -13.97 180)
  852. (length 3.81)
  853. (name "Pin_20"
  854. (effects
  855. (font
  856. (size 1.27 1.27)
  857. )
  858. )
  859. )
  860. (number "20"
  861. (effects
  862. (font
  863. (size 1.27 1.27)
  864. )
  865. )
  866. )
  867. )
  868. )
  869. (embedded_fonts no)
  870. )
  871. (symbol "power:+5V"
  872. (power global)
  873. (pin_numbers
  874. (hide yes)
  875. )
  876. (pin_names
  877. (offset 0)
  878. (hide yes)
  879. )
  880. (exclude_from_sim no)
  881. (in_bom yes)
  882. (on_board yes)
  883. (in_pos_files yes)
  884. (duplicate_pin_numbers_are_jumpers no)
  885. (property "Reference" "#PWR"
  886. (at 0 -3.81 0)
  887. (show_name no)
  888. (do_not_autoplace no)
  889. (hide yes)
  890. (effects
  891. (font
  892. (size 1.27 1.27)
  893. )
  894. )
  895. )
  896. (property "Value" "+5V"
  897. (at 0 3.556 0)
  898. (show_name no)
  899. (do_not_autoplace no)
  900. (effects
  901. (font
  902. (size 1.27 1.27)
  903. )
  904. )
  905. )
  906. (property "Footprint" ""
  907. (at 0 0 0)
  908. (show_name no)
  909. (do_not_autoplace no)
  910. (hide yes)
  911. (effects
  912. (font
  913. (size 1.27 1.27)
  914. )
  915. )
  916. )
  917. (property "Datasheet" ""
  918. (at 0 0 0)
  919. (show_name no)
  920. (do_not_autoplace no)
  921. (hide yes)
  922. (effects
  923. (font
  924. (size 1.27 1.27)
  925. )
  926. )
  927. )
  928. (property "Description" "Power symbol creates a global label with name \"+5V\""
  929. (at 0 0 0)
  930. (show_name no)
  931. (do_not_autoplace no)
  932. (hide yes)
  933. (effects
  934. (font
  935. (size 1.27 1.27)
  936. )
  937. )
  938. )
  939. (property "ki_keywords" "global power"
  940. (at 0 0 0)
  941. (show_name no)
  942. (do_not_autoplace no)
  943. (hide yes)
  944. (effects
  945. (font
  946. (size 1.27 1.27)
  947. )
  948. )
  949. )
  950. (symbol "+5V_0_1"
  951. (polyline
  952. (pts
  953. (xy -0.762 1.27) (xy 0 2.54)
  954. )
  955. (stroke
  956. (width 0)
  957. (type default)
  958. )
  959. (fill
  960. (type none)
  961. )
  962. )
  963. (polyline
  964. (pts
  965. (xy 0 2.54) (xy 0.762 1.27)
  966. )
  967. (stroke
  968. (width 0)
  969. (type default)
  970. )
  971. (fill
  972. (type none)
  973. )
  974. )
  975. (polyline
  976. (pts
  977. (xy 0 0) (xy 0 2.54)
  978. )
  979. (stroke
  980. (width 0)
  981. (type default)
  982. )
  983. (fill
  984. (type none)
  985. )
  986. )
  987. )
  988. (symbol "+5V_1_1"
  989. (pin power_in line
  990. (at 0 0 90)
  991. (length 0)
  992. (name ""
  993. (effects
  994. (font
  995. (size 1.27 1.27)
  996. )
  997. )
  998. )
  999. (number "1"
  1000. (effects
  1001. (font
  1002. (size 1.27 1.27)
  1003. )
  1004. )
  1005. )
  1006. )
  1007. )
  1008. (embedded_fonts no)
  1009. )
  1010. (symbol "power:GND"
  1011. (power global)
  1012. (pin_numbers
  1013. (hide yes)
  1014. )
  1015. (pin_names
  1016. (offset 0)
  1017. (hide yes)
  1018. )
  1019. (exclude_from_sim no)
  1020. (in_bom yes)
  1021. (on_board yes)
  1022. (in_pos_files yes)
  1023. (duplicate_pin_numbers_are_jumpers no)
  1024. (property "Reference" "#PWR"
  1025. (at 0 -6.35 0)
  1026. (show_name no)
  1027. (do_not_autoplace no)
  1028. (hide yes)
  1029. (effects
  1030. (font
  1031. (size 1.27 1.27)
  1032. )
  1033. )
  1034. )
  1035. (property "Value" "GND"
  1036. (at 0 -3.81 0)
  1037. (show_name no)
  1038. (do_not_autoplace no)
  1039. (effects
  1040. (font
  1041. (size 1.27 1.27)
  1042. )
  1043. )
  1044. )
  1045. (property "Footprint" ""
  1046. (at 0 0 0)
  1047. (show_name no)
  1048. (do_not_autoplace no)
  1049. (hide yes)
  1050. (effects
  1051. (font
  1052. (size 1.27 1.27)
  1053. )
  1054. )
  1055. )
  1056. (property "Datasheet" ""
  1057. (at 0 0 0)
  1058. (show_name no)
  1059. (do_not_autoplace no)
  1060. (hide yes)
  1061. (effects
  1062. (font
  1063. (size 1.27 1.27)
  1064. )
  1065. )
  1066. )
  1067. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1068. (at 0 0 0)
  1069. (show_name no)
  1070. (do_not_autoplace no)
  1071. (hide yes)
  1072. (effects
  1073. (font
  1074. (size 1.27 1.27)
  1075. )
  1076. )
  1077. )
  1078. (property "ki_keywords" "global power"
  1079. (at 0 0 0)
  1080. (show_name no)
  1081. (do_not_autoplace no)
  1082. (hide yes)
  1083. (effects
  1084. (font
  1085. (size 1.27 1.27)
  1086. )
  1087. )
  1088. )
  1089. (symbol "GND_0_1"
  1090. (polyline
  1091. (pts
  1092. (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)
  1093. )
  1094. (stroke
  1095. (width 0)
  1096. (type default)
  1097. )
  1098. (fill
  1099. (type none)
  1100. )
  1101. )
  1102. )
  1103. (symbol "GND_1_1"
  1104. (pin power_in line
  1105. (at 0 0 270)
  1106. (length 0)
  1107. (name ""
  1108. (effects
  1109. (font
  1110. (size 1.27 1.27)
  1111. )
  1112. )
  1113. )
  1114. (number "1"
  1115. (effects
  1116. (font
  1117. (size 1.27 1.27)
  1118. )
  1119. )
  1120. )
  1121. )
  1122. )
  1123. (embedded_fonts no)
  1124. )
  1125. )
  1126. (junction
  1127. (at 194.31 100.33)
  1128. (diameter 0)
  1129. (color 0 0 0 0)
  1130. (uuid "00f631e7-662a-4f9f-b2f0-533bc4a866dc")
  1131. )
  1132. (junction
  1133. (at 194.31 80.01)
  1134. (diameter 0)
  1135. (color 0 0 0 0)
  1136. (uuid "0e65480b-595f-4710-ad5d-66f1a5229de0")
  1137. )
  1138. (junction
  1139. (at 213.36 80.01)
  1140. (diameter 0)
  1141. (color 0 0 0 0)
  1142. (uuid "2f4bcd34-711b-4d87-9aaa-257e62698954")
  1143. )
  1144. (junction
  1145. (at 194.31 105.41)
  1146. (diameter 0)
  1147. (color 0 0 0 0)
  1148. (uuid "64c98f25-0f2f-4e25-90b3-de6286e19182")
  1149. )
  1150. (junction
  1151. (at 194.31 90.17)
  1152. (diameter 0)
  1153. (color 0 0 0 0)
  1154. (uuid "71358ec8-4be5-463e-9d5e-835cc82a40c8")
  1155. )
  1156. (junction
  1157. (at 132.08 107.95)
  1158. (diameter 0)
  1159. (color 0 0 0 0)
  1160. (uuid "89003193-d02f-45eb-8490-6a2c374e3d2a")
  1161. )
  1162. (junction
  1163. (at 194.31 85.09)
  1164. (diameter 0)
  1165. (color 0 0 0 0)
  1166. (uuid "8ca3a110-d7d8-4c95-9374-073da9f277f6")
  1167. )
  1168. (junction
  1169. (at 129.54 110.49)
  1170. (diameter 0)
  1171. (color 0 0 0 0)
  1172. (uuid "adf9c5a1-f7dd-4072-a5df-3e24239967a1")
  1173. )
  1174. (junction
  1175. (at 213.36 107.95)
  1176. (diameter 0)
  1177. (color 0 0 0 0)
  1178. (uuid "ca8711e4-869e-4e8a-93f9-2e4030101da7")
  1179. )
  1180. (junction
  1181. (at 194.31 95.25)
  1182. (diameter 0)
  1183. (color 0 0 0 0)
  1184. (uuid "cc19ce00-cfe7-444c-b616-d97b5e8ecdf9")
  1185. )
  1186. (junction
  1187. (at 213.36 85.09)
  1188. (diameter 0)
  1189. (color 0 0 0 0)
  1190. (uuid "d61c27a2-d470-44ec-b4c1-f51aaede846a")
  1191. )
  1192. (junction
  1193. (at 213.36 82.55)
  1194. (diameter 0)
  1195. (color 0 0 0 0)
  1196. (uuid "e82a73b3-a32b-4cc9-ba02-630d832f05c6")
  1197. )
  1198. (junction
  1199. (at 213.36 102.87)
  1200. (diameter 0)
  1201. (color 0 0 0 0)
  1202. (uuid "e8337ab2-f2e8-4e1a-a9f3-065d363fb70f")
  1203. )
  1204. (junction
  1205. (at 213.36 105.41)
  1206. (diameter 0)
  1207. (color 0 0 0 0)
  1208. (uuid "efd10979-0747-49da-ac93-375b40ec717a")
  1209. )
  1210. (wire
  1211. (pts
  1212. (xy 162.56 113.03) (xy 162.56 115.57)
  1213. )
  1214. (stroke
  1215. (width 0)
  1216. (type default)
  1217. )
  1218. (uuid "02b54b99-32e5-4f1c-a640-3615e8331aa9")
  1219. )
  1220. (wire
  1221. (pts
  1222. (xy 127 87.63) (xy 127 88.9)
  1223. )
  1224. (stroke
  1225. (width 0)
  1226. (type default)
  1227. )
  1228. (uuid "03f15758-78bd-4271-ad7b-5987c958d60d")
  1229. )
  1230. (wire
  1231. (pts
  1232. (xy 194.31 92.71) (xy 194.31 90.17)
  1233. )
  1234. (stroke
  1235. (width 0)
  1236. (type default)
  1237. )
  1238. (uuid "05eb8507-8145-45a7-86bc-87bb7d4c0da6")
  1239. )
  1240. (wire
  1241. (pts
  1242. (xy 142.24 113.03) (xy 142.24 115.57)
  1243. )
  1244. (stroke
  1245. (width 0)
  1246. (type default)
  1247. )
  1248. (uuid "08e7d2a7-0ed2-4d1e-9e18-ad02bae4932c")
  1249. )
  1250. (wire
  1251. (pts
  1252. (xy 191.77 95.25) (xy 194.31 95.25)
  1253. )
  1254. (stroke
  1255. (width 0)
  1256. (type default)
  1257. )
  1258. (uuid "0c634e75-2b91-4595-9b07-fad0c40f67ff")
  1259. )
  1260. (wire
  1261. (pts
  1262. (xy 127 107.95) (xy 132.08 107.95)
  1263. )
  1264. (stroke
  1265. (width 0)
  1266. (type default)
  1267. )
  1268. (uuid "0f985e9a-3142-4e1b-9701-b642be4aac59")
  1269. )
  1270. (wire
  1271. (pts
  1272. (xy 191.77 105.41) (xy 194.31 105.41)
  1273. )
  1274. (stroke
  1275. (width 0)
  1276. (type default)
  1277. )
  1278. (uuid "140e2ffd-6754-4c91-843d-51d539d6ebe2")
  1279. )
  1280. (wire
  1281. (pts
  1282. (xy 209.55 82.55) (xy 213.36 82.55)
  1283. )
  1284. (stroke
  1285. (width 0)
  1286. (type default)
  1287. )
  1288. (uuid "153f7312-13ef-4f7b-8952-898d15cacef6")
  1289. )
  1290. (wire
  1291. (pts
  1292. (xy 196.85 87.63) (xy 194.31 87.63)
  1293. )
  1294. (stroke
  1295. (width 0)
  1296. (type default)
  1297. )
  1298. (uuid "175554ac-ba3c-4a40-9fa0-e25592c3b8ee")
  1299. )
  1300. (wire
  1301. (pts
  1302. (xy 209.55 107.95) (xy 213.36 107.95)
  1303. )
  1304. (stroke
  1305. (width 0)
  1306. (type default)
  1307. )
  1308. (uuid "1cc9f42d-1d07-4bc6-827a-4fab7bf89069")
  1309. )
  1310. (wire
  1311. (pts
  1312. (xy 194.31 80.01) (xy 196.85 80.01)
  1313. )
  1314. (stroke
  1315. (width 0)
  1316. (type default)
  1317. )
  1318. (uuid "1d34a5f5-02b1-4ffa-a41c-a2df88c4e83e")
  1319. )
  1320. (wire
  1321. (pts
  1322. (xy 116.84 113.03) (xy 116.84 115.57)
  1323. )
  1324. (stroke
  1325. (width 0)
  1326. (type default)
  1327. )
  1328. (uuid "21a819fa-6e05-4dcd-9108-faa1dc52a0b5")
  1329. )
  1330. (wire
  1331. (pts
  1332. (xy 191.77 80.01) (xy 194.31 80.01)
  1333. )
  1334. (stroke
  1335. (width 0)
  1336. (type default)
  1337. )
  1338. (uuid "2a167988-fe53-477f-a047-c83481d0486a")
  1339. )
  1340. (wire
  1341. (pts
  1342. (xy 194.31 102.87) (xy 194.31 100.33)
  1343. )
  1344. (stroke
  1345. (width 0)
  1346. (type default)
  1347. )
  1348. (uuid "2c919e45-3e54-4d31-a677-a812bd962dd9")
  1349. )
  1350. (wire
  1351. (pts
  1352. (xy 194.31 105.41) (xy 196.85 105.41)
  1353. )
  1354. (stroke
  1355. (width 0)
  1356. (type default)
  1357. )
  1358. (uuid "39259f1d-5188-4b3e-b033-9b7b505adec9")
  1359. )
  1360. (wire
  1361. (pts
  1362. (xy 191.77 100.33) (xy 194.31 100.33)
  1363. )
  1364. (stroke
  1365. (width 0)
  1366. (type default)
  1367. )
  1368. (uuid "39545cf4-a07d-4518-b8f0-d48b7aeadb94")
  1369. )
  1370. (wire
  1371. (pts
  1372. (xy 213.36 107.95) (xy 213.36 105.41)
  1373. )
  1374. (stroke
  1375. (width 0)
  1376. (type default)
  1377. )
  1378. (uuid "3b808f94-c1f3-41b5-adbf-08c3f87047c7")
  1379. )
  1380. (wire
  1381. (pts
  1382. (xy 132.08 107.95) (xy 134.62 107.95)
  1383. )
  1384. (stroke
  1385. (width 0)
  1386. (type default)
  1387. )
  1388. (uuid "3e7cee25-f082-4e99-8544-6f965c2fa33d")
  1389. )
  1390. (wire
  1391. (pts
  1392. (xy 129.54 110.49) (xy 134.62 110.49)
  1393. )
  1394. (stroke
  1395. (width 0)
  1396. (type default)
  1397. )
  1398. (uuid "3f9b025d-40cc-4ace-86b9-4e8f9203192f")
  1399. )
  1400. (wire
  1401. (pts
  1402. (xy 194.31 85.09) (xy 196.85 85.09)
  1403. )
  1404. (stroke
  1405. (width 0)
  1406. (type default)
  1407. )
  1408. (uuid "431af423-16fd-4388-a411-b3c19a90a22c")
  1409. )
  1410. (wire
  1411. (pts
  1412. (xy 194.31 87.63) (xy 194.31 85.09)
  1413. )
  1414. (stroke
  1415. (width 0)
  1416. (type default)
  1417. )
  1418. (uuid "4ef17d23-7592-4b2f-a166-9999edffe7d8")
  1419. )
  1420. (wire
  1421. (pts
  1422. (xy 213.36 82.55) (xy 213.36 85.09)
  1423. )
  1424. (stroke
  1425. (width 0)
  1426. (type default)
  1427. )
  1428. (uuid "50b78583-19dd-49bc-9e74-2aee56e514cb")
  1429. )
  1430. (wire
  1431. (pts
  1432. (xy 213.36 110.49) (xy 213.36 107.95)
  1433. )
  1434. (stroke
  1435. (width 0)
  1436. (type default)
  1437. )
  1438. (uuid "568e7d57-cbee-4049-b85e-930bd5724c88")
  1439. )
  1440. (wire
  1441. (pts
  1442. (xy 128.27 66.04) (xy 127 66.04)
  1443. )
  1444. (stroke
  1445. (width 0)
  1446. (type default)
  1447. )
  1448. (uuid "57171355-6f39-4117-8f77-0c24e3c38f2f")
  1449. )
  1450. (wire
  1451. (pts
  1452. (xy 132.08 82.55) (xy 132.08 107.95)
  1453. )
  1454. (stroke
  1455. (width 0)
  1456. (type default)
  1457. )
  1458. (uuid "5cafc3be-96d3-4fec-8e1c-9dc9b9f837a2")
  1459. )
  1460. (wire
  1461. (pts
  1462. (xy 194.31 90.17) (xy 196.85 90.17)
  1463. )
  1464. (stroke
  1465. (width 0)
  1466. (type default)
  1467. )
  1468. (uuid "652c1f46-fbdc-4e2e-9cce-34f2da24e815")
  1469. )
  1470. (wire
  1471. (pts
  1472. (xy 194.31 95.25) (xy 194.31 97.79)
  1473. )
  1474. (stroke
  1475. (width 0)
  1476. (type default)
  1477. )
  1478. (uuid "67916a07-365b-4e09-97da-3c02764071e6")
  1479. )
  1480. (wire
  1481. (pts
  1482. (xy 165.1 113.03) (xy 165.1 115.57)
  1483. )
  1484. (stroke
  1485. (width 0)
  1486. (type default)
  1487. )
  1488. (uuid "67e6ac53-40df-4992-887a-4e383ce61750")
  1489. )
  1490. (wire
  1491. (pts
  1492. (xy 213.36 102.87) (xy 213.36 100.33)
  1493. )
  1494. (stroke
  1495. (width 0)
  1496. (type default)
  1497. )
  1498. (uuid "6e0bbbb2-1eb6-4b92-8f8c-7e2ba52061b5")
  1499. )
  1500. (wire
  1501. (pts
  1502. (xy 194.31 85.09) (xy 191.77 85.09)
  1503. )
  1504. (stroke
  1505. (width 0)
  1506. (type default)
  1507. )
  1508. (uuid "79a36819-1efb-481a-829d-7a3db2c83057")
  1509. )
  1510. (wire
  1511. (pts
  1512. (xy 128.27 60.96) (xy 127 60.96)
  1513. )
  1514. (stroke
  1515. (width 0)
  1516. (type default)
  1517. )
  1518. (uuid "84caec50-31ee-4f76-8aed-c19f4b5f1e4a")
  1519. )
  1520. (wire
  1521. (pts
  1522. (xy 127 85.09) (xy 129.54 85.09)
  1523. )
  1524. (stroke
  1525. (width 0)
  1526. (type default)
  1527. )
  1528. (uuid "8a3a42b0-9006-4d27-a7fb-c265f466a95f")
  1529. )
  1530. (wire
  1531. (pts
  1532. (xy 127 78.74) (xy 127 80.01)
  1533. )
  1534. (stroke
  1535. (width 0)
  1536. (type default)
  1537. )
  1538. (uuid "92f1026e-b62e-40a1-845f-a24009b954cd")
  1539. )
  1540. (wire
  1541. (pts
  1542. (xy 128.27 67.31) (xy 128.27 66.04)
  1543. )
  1544. (stroke
  1545. (width 0)
  1546. (type default)
  1547. )
  1548. (uuid "97a4e045-3472-4e89-b805-84869cccd35f")
  1549. )
  1550. (wire
  1551. (pts
  1552. (xy 213.36 77.47) (xy 213.36 80.01)
  1553. )
  1554. (stroke
  1555. (width 0)
  1556. (type default)
  1557. )
  1558. (uuid "a66d056f-ccb0-4d1d-9855-f6a27c81cb33")
  1559. )
  1560. (wire
  1561. (pts
  1562. (xy 196.85 92.71) (xy 194.31 92.71)
  1563. )
  1564. (stroke
  1565. (width 0)
  1566. (type default)
  1567. )
  1568. (uuid "a987fec9-9074-4d14-bcb5-a6a1504818ef")
  1569. )
  1570. (wire
  1571. (pts
  1572. (xy 196.85 82.55) (xy 194.31 82.55)
  1573. )
  1574. (stroke
  1575. (width 0)
  1576. (type default)
  1577. )
  1578. (uuid "af88c4bc-70b2-4078-853a-31eb9c0ff00d")
  1579. )
  1580. (wire
  1581. (pts
  1582. (xy 196.85 107.95) (xy 194.31 107.95)
  1583. )
  1584. (stroke
  1585. (width 0)
  1586. (type default)
  1587. )
  1588. (uuid "b4fb500b-83a3-4e46-b9dd-1e6bb56c79e6")
  1589. )
  1590. (wire
  1591. (pts
  1592. (xy 213.36 80.01) (xy 213.36 82.55)
  1593. )
  1594. (stroke
  1595. (width 0)
  1596. (type default)
  1597. )
  1598. (uuid "b7e4c506-79ab-40e5-a735-f796f1ea416b")
  1599. )
  1600. (wire
  1601. (pts
  1602. (xy 196.85 102.87) (xy 194.31 102.87)
  1603. )
  1604. (stroke
  1605. (width 0)
  1606. (type default)
  1607. )
  1608. (uuid "b9a10cfd-c96c-47c1-8eba-8fbe2c3e4602")
  1609. )
  1610. (wire
  1611. (pts
  1612. (xy 129.54 85.09) (xy 129.54 110.49)
  1613. )
  1614. (stroke
  1615. (width 0)
  1616. (type default)
  1617. )
  1618. (uuid "bbb9cdd7-2a83-4869-8e1e-d77345d0ebee")
  1619. )
  1620. (wire
  1621. (pts
  1622. (xy 167.64 113.03) (xy 167.64 115.57)
  1623. )
  1624. (stroke
  1625. (width 0)
  1626. (type default)
  1627. )
  1628. (uuid "bbf39943-8759-47db-8866-208143b34193")
  1629. )
  1630. (wire
  1631. (pts
  1632. (xy 119.38 113.03) (xy 119.38 115.57)
  1633. )
  1634. (stroke
  1635. (width 0)
  1636. (type default)
  1637. )
  1638. (uuid "bc94fdd4-2196-4566-9a42-1a20a0444eee")
  1639. )
  1640. (wire
  1641. (pts
  1642. (xy 144.78 113.03) (xy 144.78 115.57)
  1643. )
  1644. (stroke
  1645. (width 0)
  1646. (type default)
  1647. )
  1648. (uuid "bf41f2aa-3ddb-45e9-9f5b-dd53e0dc680c")
  1649. )
  1650. (wire
  1651. (pts
  1652. (xy 213.36 100.33) (xy 209.55 100.33)
  1653. )
  1654. (stroke
  1655. (width 0)
  1656. (type default)
  1657. )
  1658. (uuid "c180f581-c81b-45ae-a071-5a659ad8ef64")
  1659. )
  1660. (wire
  1661. (pts
  1662. (xy 194.31 90.17) (xy 191.77 90.17)
  1663. )
  1664. (stroke
  1665. (width 0)
  1666. (type default)
  1667. )
  1668. (uuid "c279050a-00c7-4cba-bd94-4a50c0f4b4ae")
  1669. )
  1670. (wire
  1671. (pts
  1672. (xy 213.36 85.09) (xy 213.36 87.63)
  1673. )
  1674. (stroke
  1675. (width 0)
  1676. (type default)
  1677. )
  1678. (uuid "c3da8fb3-a817-4a7b-92a0-a5585fffbb20")
  1679. )
  1680. (wire
  1681. (pts
  1682. (xy 209.55 105.41) (xy 213.36 105.41)
  1683. )
  1684. (stroke
  1685. (width 0)
  1686. (type default)
  1687. )
  1688. (uuid "c619c41f-083c-48fa-9304-8ef93f0790e8")
  1689. )
  1690. (wire
  1691. (pts
  1692. (xy 213.36 87.63) (xy 209.55 87.63)
  1693. )
  1694. (stroke
  1695. (width 0)
  1696. (type default)
  1697. )
  1698. (uuid "c8bfe172-3a22-46e5-abc1-2ed04db3e025")
  1699. )
  1700. (wire
  1701. (pts
  1702. (xy 194.31 82.55) (xy 194.31 80.01)
  1703. )
  1704. (stroke
  1705. (width 0)
  1706. (type default)
  1707. )
  1708. (uuid "ca052c4c-3b53-4d46-b9c4-9539ed216224")
  1709. )
  1710. (wire
  1711. (pts
  1712. (xy 127 110.49) (xy 129.54 110.49)
  1713. )
  1714. (stroke
  1715. (width 0)
  1716. (type default)
  1717. )
  1718. (uuid "cada5776-6a32-42af-b6c3-4a3bc0d4c384")
  1719. )
  1720. (wire
  1721. (pts
  1722. (xy 209.55 80.01) (xy 213.36 80.01)
  1723. )
  1724. (stroke
  1725. (width 0)
  1726. (type default)
  1727. )
  1728. (uuid "d2d3bb82-d62f-45ae-afcc-bc4629a43c1c")
  1729. )
  1730. (wire
  1731. (pts
  1732. (xy 127 82.55) (xy 132.08 82.55)
  1733. )
  1734. (stroke
  1735. (width 0)
  1736. (type default)
  1737. )
  1738. (uuid "d3510624-b5e0-493e-83a5-1f3bbe58a95e")
  1739. )
  1740. (wire
  1741. (pts
  1742. (xy 209.55 85.09) (xy 213.36 85.09)
  1743. )
  1744. (stroke
  1745. (width 0)
  1746. (type default)
  1747. )
  1748. (uuid "d8d913c8-cf99-442a-9a99-a64f2f347eac")
  1749. )
  1750. (wire
  1751. (pts
  1752. (xy 196.85 97.79) (xy 194.31 97.79)
  1753. )
  1754. (stroke
  1755. (width 0)
  1756. (type default)
  1757. )
  1758. (uuid "d90de8e1-296f-49ee-8060-63e9a25713d5")
  1759. )
  1760. (wire
  1761. (pts
  1762. (xy 127 63.5) (xy 134.62 63.5)
  1763. )
  1764. (stroke
  1765. (width 0)
  1766. (type default)
  1767. )
  1768. (uuid "e0dd8ae1-3975-43ca-8d10-8e71f61ccff2")
  1769. )
  1770. (wire
  1771. (pts
  1772. (xy 213.36 105.41) (xy 213.36 102.87)
  1773. )
  1774. (stroke
  1775. (width 0)
  1776. (type default)
  1777. )
  1778. (uuid "e7b88594-0ee3-43c9-9d5f-2cdb406fa7cf")
  1779. )
  1780. (wire
  1781. (pts
  1782. (xy 209.55 102.87) (xy 213.36 102.87)
  1783. )
  1784. (stroke
  1785. (width 0)
  1786. (type default)
  1787. )
  1788. (uuid "f0c7b1a5-cab8-4b9e-ab11-5b6af9d868a3")
  1789. )
  1790. (wire
  1791. (pts
  1792. (xy 194.31 105.41) (xy 194.31 107.95)
  1793. )
  1794. (stroke
  1795. (width 0)
  1796. (type default)
  1797. )
  1798. (uuid "f90a7570-6457-4573-b264-72af480e7ee3")
  1799. )
  1800. (wire
  1801. (pts
  1802. (xy 128.27 59.69) (xy 128.27 60.96)
  1803. )
  1804. (stroke
  1805. (width 0)
  1806. (type default)
  1807. )
  1808. (uuid "fa4b2669-8c6f-4b06-be1e-09b48037b6c4")
  1809. )
  1810. (wire
  1811. (pts
  1812. (xy 194.31 100.33) (xy 196.85 100.33)
  1813. )
  1814. (stroke
  1815. (width 0)
  1816. (type default)
  1817. )
  1818. (uuid "fab53a33-b523-4900-b7cf-d7027647455f")
  1819. )
  1820. (wire
  1821. (pts
  1822. (xy 194.31 95.25) (xy 196.85 95.25)
  1823. )
  1824. (stroke
  1825. (width 0)
  1826. (type default)
  1827. )
  1828. (uuid "fe92bcb8-18c8-499e-8d7e-d5f3e7cdb853")
  1829. )
  1830. (symbol
  1831. (lib_id "Connector_Generic:Conn_02x10_Odd_Even")
  1832. (at 201.93 93.98 0)
  1833. (unit 1)
  1834. (body_style 1)
  1835. (exclude_from_sim no)
  1836. (in_bom yes)
  1837. (on_board yes)
  1838. (in_pos_files yes)
  1839. (dnp no)
  1840. (uuid "1d656654-79c3-4ea0-a0ef-a1b117b17d34")
  1841. (property "Reference" "J2"
  1842. (at 203.2 75.184 0)
  1843. (show_name no)
  1844. (do_not_autoplace no)
  1845. (effects
  1846. (font
  1847. (size 1.27 1.27)
  1848. )
  1849. )
  1850. )
  1851. (property "Value" "INTERCONNECT"
  1852. (at 202.946 113.03 0)
  1853. (show_name no)
  1854. (do_not_autoplace no)
  1855. (effects
  1856. (font
  1857. (size 1.27 1.27)
  1858. )
  1859. )
  1860. )
  1861. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical"
  1862. (at 204.216 128.27 0)
  1863. (hide yes)
  1864. (show_name no)
  1865. (do_not_autoplace no)
  1866. (effects
  1867. (font
  1868. (size 1.27 1.27)
  1869. )
  1870. )
  1871. )
  1872. (property "Datasheet" ""
  1873. (at 201.93 93.98 0)
  1874. (hide yes)
  1875. (show_name no)
  1876. (do_not_autoplace no)
  1877. (effects
  1878. (font
  1879. (size 1.27 1.27)
  1880. )
  1881. )
  1882. )
  1883. (property "Description" "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"
  1884. (at 200.914 127.508 0)
  1885. (hide yes)
  1886. (show_name no)
  1887. (do_not_autoplace no)
  1888. (effects
  1889. (font
  1890. (size 1.27 1.27)
  1891. )
  1892. )
  1893. )
  1894. (pin "16"
  1895. (uuid "a680cc0f-77fa-4dc5-ad13-bf1e1b21f2c6")
  1896. )
  1897. (pin "14"
  1898. (uuid "e24026b3-05c1-49c4-ba63-10036c41122e")
  1899. )
  1900. (pin "12"
  1901. (uuid "039fd7c9-d7fb-4f17-9e54-de13af6b8369")
  1902. )
  1903. (pin "19"
  1904. (uuid "8cbf0e80-3f50-439e-b1c3-61b1747db7cc")
  1905. )
  1906. (pin "18"
  1907. (uuid "1ff8b2d4-8a09-4d97-88c0-acd954c6dff1")
  1908. )
  1909. (pin "15"
  1910. (uuid "d3c048ef-d159-435c-a174-1d9032b7c3c4")
  1911. )
  1912. (pin "17"
  1913. (uuid "df8f69df-6f28-4628-9500-3e62e9efbfa6")
  1914. )
  1915. (pin "20"
  1916. (uuid "02319c60-4691-4a13-90dd-9d463ca2e774")
  1917. )
  1918. (pin "13"
  1919. (uuid "6b4af19d-3431-4737-bc1e-b2381e177f42")
  1920. )
  1921. (pin "11"
  1922. (uuid "194d9eab-a708-4684-9b1b-1cdb7957450d")
  1923. )
  1924. (pin "10"
  1925. (uuid "c6d65237-5520-49d7-840c-230bd0abc1ab")
  1926. )
  1927. (pin "9"
  1928. (uuid "dad981bf-9691-4059-955e-86778c477e5b")
  1929. )
  1930. (pin "8"
  1931. (uuid "901aa373-5a87-4d77-a836-162408519a51")
  1932. )
  1933. (pin "7"
  1934. (uuid "70844594-e301-44c9-9b0a-ad632fe022ca")
  1935. )
  1936. (pin "6"
  1937. (uuid "8983c7e9-b058-4fa6-b1fe-51274332b594")
  1938. )
  1939. (pin "5"
  1940. (uuid "0025b112-3658-423a-a2f1-8235449bcf6e")
  1941. )
  1942. (pin "4"
  1943. (uuid "ceae09b8-03b4-4fbe-8ecb-5a54510bc32a")
  1944. )
  1945. (pin "3"
  1946. (uuid "4dcb5dd5-4af1-4774-bafb-24ae84231246")
  1947. )
  1948. (pin "2"
  1949. (uuid "c4405ce9-1076-4cf7-8e5e-c28832f81a67")
  1950. )
  1951. (pin "1"
  1952. (uuid "0ea50459-2d13-45bc-965c-f0686c6b6bc4")
  1953. )
  1954. (instances
  1955. (project "cx-copter-top-board"
  1956. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  1957. (reference "J2")
  1958. (unit 1)
  1959. )
  1960. )
  1961. )
  1962. )
  1963. (symbol
  1964. (lib_id "power:GND")
  1965. (at 127 88.9 0)
  1966. (unit 1)
  1967. (body_style 1)
  1968. (exclude_from_sim no)
  1969. (in_bom yes)
  1970. (on_board yes)
  1971. (in_pos_files yes)
  1972. (dnp no)
  1973. (uuid "26eb3369-bb91-4391-a559-1998ab9d1ac9")
  1974. (property "Reference" "#PWR036"
  1975. (at 127 95.25 0)
  1976. (hide yes)
  1977. (show_name no)
  1978. (do_not_autoplace no)
  1979. (effects
  1980. (font
  1981. (size 1.27 1.27)
  1982. )
  1983. )
  1984. )
  1985. (property "Value" "GND"
  1986. (at 126.492 92.71 0)
  1987. (show_name no)
  1988. (do_not_autoplace no)
  1989. (effects
  1990. (font
  1991. (size 1.27 1.27)
  1992. )
  1993. )
  1994. )
  1995. (property "Footprint" ""
  1996. (at 127 88.9 0)
  1997. (hide yes)
  1998. (show_name no)
  1999. (do_not_autoplace no)
  2000. (effects
  2001. (font
  2002. (size 1.27 1.27)
  2003. )
  2004. )
  2005. )
  2006. (property "Datasheet" ""
  2007. (at 127 88.9 0)
  2008. (hide yes)
  2009. (show_name no)
  2010. (do_not_autoplace no)
  2011. (effects
  2012. (font
  2013. (size 1.27 1.27)
  2014. )
  2015. )
  2016. )
  2017. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2018. (at 127 88.9 0)
  2019. (hide yes)
  2020. (show_name no)
  2021. (do_not_autoplace no)
  2022. (effects
  2023. (font
  2024. (size 1.27 1.27)
  2025. )
  2026. )
  2027. )
  2028. (pin "1"
  2029. (uuid "73529393-f484-4430-8582-1ddb32f4b73e")
  2030. )
  2031. (instances
  2032. (project "cx-copter-top-board"
  2033. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2034. (reference "#PWR036")
  2035. (unit 1)
  2036. )
  2037. )
  2038. )
  2039. )
  2040. (symbol
  2041. (lib_id "power:+5V")
  2042. (at 127 78.74 0)
  2043. (unit 1)
  2044. (body_style 1)
  2045. (exclude_from_sim no)
  2046. (in_bom yes)
  2047. (on_board yes)
  2048. (in_pos_files yes)
  2049. (dnp no)
  2050. (uuid "35004220-89a1-404d-b67d-ec16e10f713e")
  2051. (property "Reference" "#PWR037"
  2052. (at 127 82.55 0)
  2053. (hide yes)
  2054. (show_name no)
  2055. (do_not_autoplace no)
  2056. (effects
  2057. (font
  2058. (size 1.27 1.27)
  2059. )
  2060. )
  2061. )
  2062. (property "Value" "+5V"
  2063. (at 129.794 76.708 0)
  2064. (show_name no)
  2065. (do_not_autoplace no)
  2066. (effects
  2067. (font
  2068. (size 1.27 1.27)
  2069. )
  2070. )
  2071. )
  2072. (property "Footprint" ""
  2073. (at 127 78.74 0)
  2074. (hide yes)
  2075. (show_name no)
  2076. (do_not_autoplace no)
  2077. (effects
  2078. (font
  2079. (size 1.27 1.27)
  2080. )
  2081. )
  2082. )
  2083. (property "Datasheet" ""
  2084. (at 127 78.74 0)
  2085. (hide yes)
  2086. (show_name no)
  2087. (do_not_autoplace no)
  2088. (effects
  2089. (font
  2090. (size 1.27 1.27)
  2091. )
  2092. )
  2093. )
  2094. (property "Description" "Power symbol creates a global label with name \"+5V\""
  2095. (at 127 78.74 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. (pin "1"
  2106. (uuid "d78b3da6-10e5-4728-9a01-2444003fb7f7")
  2107. )
  2108. (instances
  2109. (project "cx-copter-top-board"
  2110. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2111. (reference "#PWR037")
  2112. (unit 1)
  2113. )
  2114. )
  2115. )
  2116. )
  2117. (symbol
  2118. (lib_id "Connector_Generic:Conn_01x04")
  2119. (at 121.92 85.09 180)
  2120. (unit 1)
  2121. (body_style 1)
  2122. (exclude_from_sim no)
  2123. (in_bom yes)
  2124. (on_board yes)
  2125. (in_pos_files yes)
  2126. (dnp no)
  2127. (uuid "51f45ef6-2e8a-4659-ae57-1dde9dfb83e4")
  2128. (property "Reference" "J5"
  2129. (at 121.92 77.724 0)
  2130. (show_name no)
  2131. (do_not_autoplace no)
  2132. (effects
  2133. (font
  2134. (size 1.27 1.27)
  2135. )
  2136. )
  2137. )
  2138. (property "Value" "ESP_DEBUG"
  2139. (at 118.11 90.17 0)
  2140. (show_name no)
  2141. (do_not_autoplace no)
  2142. (effects
  2143. (font
  2144. (size 1.27 1.27)
  2145. )
  2146. )
  2147. )
  2148. (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical"
  2149. (at 121.92 85.09 0)
  2150. (hide yes)
  2151. (show_name no)
  2152. (do_not_autoplace no)
  2153. (effects
  2154. (font
  2155. (size 1.27 1.27)
  2156. )
  2157. )
  2158. )
  2159. (property "Datasheet" ""
  2160. (at 121.92 85.09 0)
  2161. (hide yes)
  2162. (show_name no)
  2163. (do_not_autoplace no)
  2164. (effects
  2165. (font
  2166. (size 1.27 1.27)
  2167. )
  2168. )
  2169. )
  2170. (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"
  2171. (at 121.92 85.09 0)
  2172. (hide yes)
  2173. (show_name no)
  2174. (do_not_autoplace no)
  2175. (effects
  2176. (font
  2177. (size 1.27 1.27)
  2178. )
  2179. )
  2180. )
  2181. (pin "4"
  2182. (uuid "d289fa0d-7d21-4c56-bc4b-9195172c27f4")
  2183. )
  2184. (pin "3"
  2185. (uuid "98703764-4180-4840-aeb5-12aabfb3a556")
  2186. )
  2187. (pin "1"
  2188. (uuid "fc4ef588-0d16-4f12-9efb-627c2a75c1eb")
  2189. )
  2190. (pin "2"
  2191. (uuid "65a1b4af-55fe-4556-b2e4-112d8dcb7067")
  2192. )
  2193. (instances
  2194. (project "cx-copter-top-board"
  2195. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2196. (reference "J5")
  2197. (unit 1)
  2198. )
  2199. )
  2200. )
  2201. )
  2202. (symbol
  2203. (lib_id "power:+5V")
  2204. (at 128.27 59.69 0)
  2205. (unit 1)
  2206. (body_style 1)
  2207. (exclude_from_sim no)
  2208. (in_bom yes)
  2209. (on_board yes)
  2210. (in_pos_files yes)
  2211. (dnp no)
  2212. (fields_autoplaced yes)
  2213. (uuid "71bd101d-1652-45e1-97c1-1429299903b5")
  2214. (property "Reference" "#PWR025"
  2215. (at 128.27 63.5 0)
  2216. (hide yes)
  2217. (show_name no)
  2218. (do_not_autoplace no)
  2219. (effects
  2220. (font
  2221. (size 1.27 1.27)
  2222. )
  2223. )
  2224. )
  2225. (property "Value" "+5V"
  2226. (at 128.27 54.61 0)
  2227. (show_name no)
  2228. (do_not_autoplace no)
  2229. (effects
  2230. (font
  2231. (size 1.27 1.27)
  2232. )
  2233. )
  2234. )
  2235. (property "Footprint" ""
  2236. (at 128.27 59.69 0)
  2237. (hide yes)
  2238. (show_name no)
  2239. (do_not_autoplace no)
  2240. (effects
  2241. (font
  2242. (size 1.27 1.27)
  2243. )
  2244. )
  2245. )
  2246. (property "Datasheet" ""
  2247. (at 128.27 59.69 0)
  2248. (hide yes)
  2249. (show_name no)
  2250. (do_not_autoplace no)
  2251. (effects
  2252. (font
  2253. (size 1.27 1.27)
  2254. )
  2255. )
  2256. )
  2257. (property "Description" "Power symbol creates a global label with name \"+5V\""
  2258. (at 128.27 59.69 0)
  2259. (hide yes)
  2260. (show_name no)
  2261. (do_not_autoplace no)
  2262. (effects
  2263. (font
  2264. (size 1.27 1.27)
  2265. )
  2266. )
  2267. )
  2268. (pin "1"
  2269. (uuid "d0c6a2f0-5085-40a7-b129-d6a700237a3c")
  2270. )
  2271. (instances
  2272. (project "cx-copter-top-board"
  2273. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2274. (reference "#PWR025")
  2275. (unit 1)
  2276. )
  2277. )
  2278. )
  2279. )
  2280. (symbol
  2281. (lib_id "power:GND")
  2282. (at 128.27 67.31 0)
  2283. (unit 1)
  2284. (body_style 1)
  2285. (exclude_from_sim no)
  2286. (in_bom yes)
  2287. (on_board yes)
  2288. (in_pos_files yes)
  2289. (dnp no)
  2290. (fields_autoplaced yes)
  2291. (uuid "8f1f1d64-670a-4618-b192-c5563fb2442c")
  2292. (property "Reference" "#PWR024"
  2293. (at 128.27 73.66 0)
  2294. (hide yes)
  2295. (show_name no)
  2296. (do_not_autoplace no)
  2297. (effects
  2298. (font
  2299. (size 1.27 1.27)
  2300. )
  2301. )
  2302. )
  2303. (property "Value" "GND"
  2304. (at 128.27 72.39 0)
  2305. (show_name no)
  2306. (do_not_autoplace no)
  2307. (effects
  2308. (font
  2309. (size 1.27 1.27)
  2310. )
  2311. )
  2312. )
  2313. (property "Footprint" ""
  2314. (at 128.27 67.31 0)
  2315. (hide yes)
  2316. (show_name no)
  2317. (do_not_autoplace no)
  2318. (effects
  2319. (font
  2320. (size 1.27 1.27)
  2321. )
  2322. )
  2323. )
  2324. (property "Datasheet" ""
  2325. (at 128.27 67.31 0)
  2326. (hide yes)
  2327. (show_name no)
  2328. (do_not_autoplace no)
  2329. (effects
  2330. (font
  2331. (size 1.27 1.27)
  2332. )
  2333. )
  2334. )
  2335. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2336. (at 128.27 67.31 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. (pin "1"
  2347. (uuid "027f5821-3c3b-4302-beee-bcde32081c3d")
  2348. )
  2349. (instances
  2350. (project "cx-copter-top-board"
  2351. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2352. (reference "#PWR024")
  2353. (unit 1)
  2354. )
  2355. )
  2356. )
  2357. )
  2358. (symbol
  2359. (lib_id "Connector_Generic:Conn_01x03")
  2360. (at 121.92 63.5 180)
  2361. (unit 1)
  2362. (body_style 1)
  2363. (exclude_from_sim no)
  2364. (in_bom yes)
  2365. (on_board yes)
  2366. (in_pos_files yes)
  2367. (dnp no)
  2368. (uuid "91d73b68-c713-4883-b94f-98d861d6ee19")
  2369. (property "Reference" "J4"
  2370. (at 119.126 61.214 0)
  2371. (show_name no)
  2372. (do_not_autoplace no)
  2373. (effects
  2374. (font
  2375. (size 1.27 1.27)
  2376. )
  2377. )
  2378. )
  2379. (property "Value" "CORE_DEBUG"
  2380. (at 117.602 68.834 0)
  2381. (show_name no)
  2382. (do_not_autoplace no)
  2383. (effects
  2384. (font
  2385. (size 1.27 1.27)
  2386. )
  2387. )
  2388. )
  2389. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical"
  2390. (at 121.92 63.5 0)
  2391. (hide yes)
  2392. (show_name no)
  2393. (do_not_autoplace no)
  2394. (effects
  2395. (font
  2396. (size 1.27 1.27)
  2397. )
  2398. )
  2399. )
  2400. (property "Datasheet" ""
  2401. (at 121.92 63.5 0)
  2402. (hide yes)
  2403. (show_name no)
  2404. (do_not_autoplace no)
  2405. (effects
  2406. (font
  2407. (size 1.27 1.27)
  2408. )
  2409. )
  2410. )
  2411. (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
  2412. (at 121.92 63.5 0)
  2413. (hide yes)
  2414. (show_name no)
  2415. (do_not_autoplace no)
  2416. (effects
  2417. (font
  2418. (size 1.27 1.27)
  2419. )
  2420. )
  2421. )
  2422. (pin "1"
  2423. (uuid "b46e267b-e7bf-4449-b491-5b20f6368270")
  2424. )
  2425. (pin "2"
  2426. (uuid "ae2d415d-f9d1-4a5a-a098-8bc6f7fa4c18")
  2427. )
  2428. (pin "3"
  2429. (uuid "d93267b8-e546-4aff-972f-411cdcf915fe")
  2430. )
  2431. (instances
  2432. (project "cx-copter-top-board"
  2433. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2434. (reference "J4")
  2435. (unit 1)
  2436. )
  2437. )
  2438. )
  2439. )
  2440. (symbol
  2441. (lib_id "power:+5V")
  2442. (at 213.36 77.47 0)
  2443. (unit 1)
  2444. (body_style 1)
  2445. (exclude_from_sim no)
  2446. (in_bom yes)
  2447. (on_board yes)
  2448. (in_pos_files yes)
  2449. (dnp no)
  2450. (fields_autoplaced yes)
  2451. (uuid "b1af2c26-5a8c-461c-a28c-cc4ccd0630ed")
  2452. (property "Reference" "#PWR022"
  2453. (at 213.36 81.28 0)
  2454. (hide yes)
  2455. (show_name no)
  2456. (do_not_autoplace no)
  2457. (effects
  2458. (font
  2459. (size 1.27 1.27)
  2460. )
  2461. )
  2462. )
  2463. (property "Value" "+5V"
  2464. (at 213.36 72.39 0)
  2465. (show_name no)
  2466. (do_not_autoplace no)
  2467. (effects
  2468. (font
  2469. (size 1.27 1.27)
  2470. )
  2471. )
  2472. )
  2473. (property "Footprint" ""
  2474. (at 213.36 77.47 0)
  2475. (hide yes)
  2476. (show_name no)
  2477. (do_not_autoplace no)
  2478. (effects
  2479. (font
  2480. (size 1.27 1.27)
  2481. )
  2482. )
  2483. )
  2484. (property "Datasheet" ""
  2485. (at 213.36 77.47 0)
  2486. (hide yes)
  2487. (show_name no)
  2488. (do_not_autoplace no)
  2489. (effects
  2490. (font
  2491. (size 1.27 1.27)
  2492. )
  2493. )
  2494. )
  2495. (property "Description" "Power symbol creates a global label with name \"+5V\""
  2496. (at 213.36 77.47 0)
  2497. (hide yes)
  2498. (show_name no)
  2499. (do_not_autoplace no)
  2500. (effects
  2501. (font
  2502. (size 1.27 1.27)
  2503. )
  2504. )
  2505. )
  2506. (pin "1"
  2507. (uuid "4f393888-04fe-4ccb-8684-a532844878d0")
  2508. )
  2509. (instances
  2510. (project "cx-copter-top-board"
  2511. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2512. (reference "#PWR022")
  2513. (unit 1)
  2514. )
  2515. )
  2516. )
  2517. )
  2518. (symbol
  2519. (lib_id "power:GND")
  2520. (at 213.36 110.49 0)
  2521. (unit 1)
  2522. (body_style 1)
  2523. (exclude_from_sim no)
  2524. (in_bom yes)
  2525. (on_board yes)
  2526. (in_pos_files yes)
  2527. (dnp no)
  2528. (fields_autoplaced yes)
  2529. (uuid "b5f3d8ac-b53b-4d6b-9253-09bfca119d57")
  2530. (property "Reference" "#PWR021"
  2531. (at 213.36 116.84 0)
  2532. (hide yes)
  2533. (show_name no)
  2534. (do_not_autoplace no)
  2535. (effects
  2536. (font
  2537. (size 1.27 1.27)
  2538. )
  2539. )
  2540. )
  2541. (property "Value" "GND"
  2542. (at 213.36 115.57 0)
  2543. (show_name no)
  2544. (do_not_autoplace no)
  2545. (effects
  2546. (font
  2547. (size 1.27 1.27)
  2548. )
  2549. )
  2550. )
  2551. (property "Footprint" ""
  2552. (at 213.36 110.49 0)
  2553. (hide yes)
  2554. (show_name no)
  2555. (do_not_autoplace no)
  2556. (effects
  2557. (font
  2558. (size 1.27 1.27)
  2559. )
  2560. )
  2561. )
  2562. (property "Datasheet" ""
  2563. (at 213.36 110.49 0)
  2564. (hide yes)
  2565. (show_name no)
  2566. (do_not_autoplace no)
  2567. (effects
  2568. (font
  2569. (size 1.27 1.27)
  2570. )
  2571. )
  2572. )
  2573. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2574. (at 213.36 110.49 0)
  2575. (hide yes)
  2576. (show_name no)
  2577. (do_not_autoplace no)
  2578. (effects
  2579. (font
  2580. (size 1.27 1.27)
  2581. )
  2582. )
  2583. )
  2584. (pin "1"
  2585. (uuid "295c8a99-dc8f-46f1-8062-1d51b1e5f38e")
  2586. )
  2587. (instances
  2588. (project "cx-copter-top-board"
  2589. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2590. (reference "#PWR021")
  2591. (unit 1)
  2592. )
  2593. )
  2594. )
  2595. )
  2596. (sheet
  2597. (at 107.95 97.79)
  2598. (size 19.05 15.24)
  2599. (exclude_from_sim no)
  2600. (in_bom yes)
  2601. (on_board yes)
  2602. (dnp no)
  2603. (stroke
  2604. (width 0.1524)
  2605. (type solid)
  2606. )
  2607. (fill
  2608. (color 0 0 0 0)
  2609. )
  2610. (uuid "03838cc8-391e-46f2-8224-1d1d9049a339")
  2611. (property "Sheetname" "Communication"
  2612. (at 107.95 97.536 0)
  2613. (show_name no)
  2614. (do_not_autoplace no)
  2615. (effects
  2616. (font
  2617. (size 1.27 1.27)
  2618. )
  2619. (justify left bottom)
  2620. )
  2621. )
  2622. (property "Sheetfile" "communication.kicad_sch"
  2623. (at 107.95 114.8846 0)
  2624. (hide yes)
  2625. (show_name no)
  2626. (do_not_autoplace no)
  2627. (effects
  2628. (font
  2629. (size 1.27 1.27)
  2630. )
  2631. (justify left top)
  2632. )
  2633. )
  2634. (pin "RX" input
  2635. (at 127 110.49 0)
  2636. (uuid "b198de7d-05f4-4298-80dd-13e95eef8342")
  2637. (effects
  2638. (font
  2639. (size 1.27 1.27)
  2640. )
  2641. (justify right)
  2642. )
  2643. )
  2644. (pin "TX" output
  2645. (at 127 107.95 0)
  2646. (uuid "b2ca374f-15b9-4e19-b4b7-884df36936f0")
  2647. (effects
  2648. (font
  2649. (size 1.27 1.27)
  2650. )
  2651. (justify right)
  2652. )
  2653. )
  2654. (pin "WIFI_SETUP" input
  2655. (at 119.38 113.03 270)
  2656. (uuid "5e8aa2ef-0268-483d-8e13-030d90b3756e")
  2657. (effects
  2658. (font
  2659. (size 1.27 1.27)
  2660. )
  2661. (justify left)
  2662. )
  2663. )
  2664. (pin "WIFI_STATUS" output
  2665. (at 116.84 113.03 270)
  2666. (uuid "0d83a983-b58d-4ce8-af29-06bdaf41397e")
  2667. (effects
  2668. (font
  2669. (size 1.27 1.27)
  2670. )
  2671. (justify left)
  2672. )
  2673. )
  2674. (instances
  2675. (project "cx-copter-top-board"
  2676. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2677. (page "4")
  2678. )
  2679. )
  2680. )
  2681. )
  2682. (sheet
  2683. (at 64.77 72.39)
  2684. (size 27.94 11.43)
  2685. (exclude_from_sim no)
  2686. (in_bom yes)
  2687. (on_board yes)
  2688. (dnp no)
  2689. (fields_autoplaced yes)
  2690. (stroke
  2691. (width 0.1524)
  2692. (type solid)
  2693. )
  2694. (fill
  2695. (color 0 0 0 0)
  2696. )
  2697. (uuid "099e6a5f-293d-4040-872a-be842998c40e")
  2698. (property "Sheetname" "Power section"
  2699. (at 64.77 71.6784 0)
  2700. (show_name no)
  2701. (do_not_autoplace no)
  2702. (effects
  2703. (font
  2704. (size 1.27 1.27)
  2705. )
  2706. (justify left bottom)
  2707. )
  2708. )
  2709. (property "Sheetfile" "power_section.kicad_sch"
  2710. (at 64.77 84.4046 0)
  2711. (hide yes)
  2712. (show_name no)
  2713. (do_not_autoplace no)
  2714. (effects
  2715. (font
  2716. (size 1.27 1.27)
  2717. )
  2718. (justify left top)
  2719. )
  2720. )
  2721. (instances
  2722. (project "cx-copter-top-board"
  2723. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2724. (page "2")
  2725. )
  2726. )
  2727. )
  2728. )
  2729. (sheet
  2730. (at 152.4 115.57)
  2731. (size 24.13 15.24)
  2732. (exclude_from_sim no)
  2733. (in_bom yes)
  2734. (on_board yes)
  2735. (dnp no)
  2736. (stroke
  2737. (width 0.1524)
  2738. (type solid)
  2739. )
  2740. (fill
  2741. (color 0 0 0 0)
  2742. )
  2743. (uuid "101e7ced-41a1-4d57-98f2-f2dbc17087da")
  2744. (property "Sheetname" "Accelerometer"
  2745. (at 152.4 132.588 0)
  2746. (show_name no)
  2747. (do_not_autoplace no)
  2748. (effects
  2749. (font
  2750. (size 1.27 1.27)
  2751. )
  2752. (justify left bottom)
  2753. )
  2754. )
  2755. (property "Sheetfile" "accelerometer.kicad_sch"
  2756. (at 152.4 131.3946 0)
  2757. (hide yes)
  2758. (show_name no)
  2759. (do_not_autoplace no)
  2760. (effects
  2761. (font
  2762. (size 1.27 1.27)
  2763. )
  2764. (justify left top)
  2765. )
  2766. )
  2767. (pin "INT" output
  2768. (at 167.64 115.57 90)
  2769. (uuid "8d3a1355-2648-4708-a7eb-14abad55a763")
  2770. (effects
  2771. (font
  2772. (size 1.27 1.27)
  2773. )
  2774. (justify right)
  2775. )
  2776. )
  2777. (pin "SCL" input
  2778. (at 162.56 115.57 90)
  2779. (uuid "30616e8a-7a5b-4275-8035-3438afb8ae9a")
  2780. (effects
  2781. (font
  2782. (size 1.27 1.27)
  2783. )
  2784. (justify right)
  2785. )
  2786. )
  2787. (pin "SDA" bidirectional
  2788. (at 165.1 115.57 90)
  2789. (uuid "3ff6f07b-01ed-41b4-83e9-e9730d19d320")
  2790. (effects
  2791. (font
  2792. (size 1.27 1.27)
  2793. )
  2794. (justify right)
  2795. )
  2796. )
  2797. (instances
  2798. (project "cx-copter-top-board"
  2799. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2800. (page "6")
  2801. )
  2802. )
  2803. )
  2804. )
  2805. (sheet
  2806. (at 107.95 115.57)
  2807. (size 41.91 15.24)
  2808. (exclude_from_sim no)
  2809. (in_bom yes)
  2810. (on_board yes)
  2811. (dnp no)
  2812. (stroke
  2813. (width 0.1524)
  2814. (type solid)
  2815. )
  2816. (fill
  2817. (color 0 0 0 0)
  2818. )
  2819. (uuid "69973ae6-e09a-4674-bfbb-cb51ddb6668c")
  2820. (property "Sheetname" "Panel"
  2821. (at 107.95 115.316 0)
  2822. (show_name no)
  2823. (do_not_autoplace no)
  2824. (effects
  2825. (font
  2826. (size 1.27 1.27)
  2827. )
  2828. (justify left bottom)
  2829. )
  2830. )
  2831. (property "Sheetfile" "panel.kicad_sch"
  2832. (at 150.4446 130.81 90)
  2833. (hide yes)
  2834. (show_name no)
  2835. (do_not_autoplace no)
  2836. (effects
  2837. (font
  2838. (size 1.27 1.27)
  2839. )
  2840. (justify left top)
  2841. )
  2842. )
  2843. (pin "STATUS_LED" input
  2844. (at 142.24 115.57 90)
  2845. (uuid "94e2f275-9d8e-4476-b4f3-1ea3600e8c69")
  2846. (effects
  2847. (font
  2848. (size 1.27 1.27)
  2849. )
  2850. (justify right)
  2851. )
  2852. )
  2853. (pin "SWITCH_A" output
  2854. (at 144.78 115.57 90)
  2855. (uuid "38bca49b-203c-4327-aa90-30aa5ecc9db6")
  2856. (effects
  2857. (font
  2858. (size 1.27 1.27)
  2859. )
  2860. (justify right)
  2861. )
  2862. )
  2863. (pin "WIFI_SETUP" output
  2864. (at 119.38 115.57 90)
  2865. (uuid "dd64cbc8-d22d-465d-b57b-f2678ceaae0b")
  2866. (effects
  2867. (font
  2868. (size 1.27 1.27)
  2869. )
  2870. (justify right)
  2871. )
  2872. )
  2873. (pin "WIFI_STATUS" input
  2874. (at 116.84 115.57 90)
  2875. (uuid "6ac9a12a-da1c-4beb-96ae-41653e298318")
  2876. (effects
  2877. (font
  2878. (size 1.27 1.27)
  2879. )
  2880. (justify right)
  2881. )
  2882. )
  2883. (instances
  2884. (project "cx-copter-top-board"
  2885. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  2886. (page "5")
  2887. )
  2888. )
  2889. )
  2890. )
  2891. (sheet
  2892. (at 134.62 60.96)
  2893. (size 57.15 52.07)
  2894. (exclude_from_sim no)
  2895. (in_bom yes)
  2896. (on_board yes)
  2897. (dnp no)
  2898. (fields_autoplaced yes)
  2899. (stroke
  2900. (width 0.1524)
  2901. (type solid)
  2902. )
  2903. (fill
  2904. (color 0 0 0 0)
  2905. )
  2906. (uuid "d5214527-e615-4c43-aac9-59efc9e0662c")
  2907. (property "Sheetname" "Controller"
  2908. (at 134.62 60.2484 0)
  2909. (show_name no)
  2910. (do_not_autoplace no)
  2911. (effects
  2912. (font
  2913. (size 1.27 1.27)
  2914. )
  2915. (justify left bottom)
  2916. )
  2917. )
  2918. (property "Sheetfile" "controller.kicad_sch"
  2919. (at 134.62 113.6146 0)
  2920. (hide yes)
  2921. (show_name no)
  2922. (do_not_autoplace no)
  2923. (effects
  2924. (font
  2925. (size 1.27 1.27)
  2926. )
  2927. (justify left top)
  2928. )
  2929. )
  2930. (pin "BATTERY_LEVEL" input
  2931. (at 191.77 105.41 0)
  2932. (uuid "c6191088-f6c5-4eb8-852d-9ef02c420370")
  2933. (effects
  2934. (font
  2935. (size 1.27 1.27)
  2936. )
  2937. (justify right)
  2938. )
  2939. )
  2940. (pin "INT" input
  2941. (at 167.64 113.03 270)
  2942. (uuid "2f9805b5-e4b2-413e-9314-e9f46f6dd8ea")
  2943. (effects
  2944. (font
  2945. (size 1.27 1.27)
  2946. )
  2947. (justify left)
  2948. )
  2949. )
  2950. (pin "LEDS_CHAIN" output
  2951. (at 191.77 80.01 0)
  2952. (uuid "504770f6-2b8c-486b-80c8-09e45a8d576c")
  2953. (effects
  2954. (font
  2955. (size 1.27 1.27)
  2956. )
  2957. (justify right)
  2958. )
  2959. )
  2960. (pin "PWM_M1A" output
  2961. (at 191.77 85.09 0)
  2962. (uuid "b068cee1-5a54-4111-aea0-38efe33d2d2c")
  2963. (effects
  2964. (font
  2965. (size 1.27 1.27)
  2966. )
  2967. (justify right)
  2968. )
  2969. )
  2970. (pin "PWM_M1B" output
  2971. (at 191.77 90.17 0)
  2972. (uuid "13554208-76b1-4787-bcc7-cebc2fbb2d67")
  2973. (effects
  2974. (font
  2975. (size 1.27 1.27)
  2976. )
  2977. (justify right)
  2978. )
  2979. )
  2980. (pin "PWM_M2A" output
  2981. (at 191.77 95.25 0)
  2982. (uuid "5e1e2ea2-bd8e-4299-855a-47158cc7fb3d")
  2983. (effects
  2984. (font
  2985. (size 1.27 1.27)
  2986. )
  2987. (justify right)
  2988. )
  2989. )
  2990. (pin "PWM_M2B" output
  2991. (at 191.77 100.33 0)
  2992. (uuid "7189feb9-10b2-4d49-a4b2-da0f38626474")
  2993. (effects
  2994. (font
  2995. (size 1.27 1.27)
  2996. )
  2997. (justify right)
  2998. )
  2999. )
  3000. (pin "RX" input
  3001. (at 134.62 107.95 180)
  3002. (uuid "ff335021-ba67-48b0-826e-f4c0a618e071")
  3003. (effects
  3004. (font
  3005. (size 1.27 1.27)
  3006. )
  3007. (justify left)
  3008. )
  3009. )
  3010. (pin "SCL" output
  3011. (at 162.56 113.03 270)
  3012. (uuid "18523a37-510a-410b-9ba6-d80d23ac132d")
  3013. (effects
  3014. (font
  3015. (size 1.27 1.27)
  3016. )
  3017. (justify left)
  3018. )
  3019. )
  3020. (pin "SDA" bidirectional
  3021. (at 165.1 113.03 270)
  3022. (uuid "9247c2a7-9fd9-434d-919f-3ea5decb6b56")
  3023. (effects
  3024. (font
  3025. (size 1.27 1.27)
  3026. )
  3027. (justify left)
  3028. )
  3029. )
  3030. (pin "STATUS_LED" output
  3031. (at 142.24 113.03 270)
  3032. (uuid "3cf23474-b34a-4e46-8482-d6eb391e354d")
  3033. (effects
  3034. (font
  3035. (size 1.27 1.27)
  3036. )
  3037. (justify left)
  3038. )
  3039. )
  3040. (pin "SWIO" bidirectional
  3041. (at 134.62 63.5 180)
  3042. (uuid "d855b4f7-2e81-4f6d-9325-86e1fb6e6cde")
  3043. (effects
  3044. (font
  3045. (size 1.27 1.27)
  3046. )
  3047. (justify left)
  3048. )
  3049. )
  3050. (pin "SWITCH_A" input
  3051. (at 144.78 113.03 270)
  3052. (uuid "1a8a5d56-977e-4a33-b198-afbfde4976ec")
  3053. (effects
  3054. (font
  3055. (size 1.27 1.27)
  3056. )
  3057. (justify left)
  3058. )
  3059. )
  3060. (pin "TX" output
  3061. (at 134.62 110.49 180)
  3062. (uuid "27e4853f-985e-4bb0-9cae-7322dcf7549f")
  3063. (effects
  3064. (font
  3065. (size 1.27 1.27)
  3066. )
  3067. (justify left)
  3068. )
  3069. )
  3070. (instances
  3071. (project "cx-copter-top-board"
  3072. (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
  3073. (page "3")
  3074. )
  3075. )
  3076. )
  3077. )
  3078. (sheet_instances
  3079. (path "/"
  3080. (page "1")
  3081. )
  3082. )
  3083. (embedded_fonts no)
  3084. )