io.kicad_sch 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "c904e02d-8fa2-4c2d-aea0-a2d72c47965f")
  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:LED"
  164. (pin_numbers
  165. (hide yes)
  166. )
  167. (pin_names
  168. (offset 1.016)
  169. (hide yes)
  170. )
  171. (exclude_from_sim no)
  172. (in_bom yes)
  173. (on_board yes)
  174. (in_pos_files yes)
  175. (duplicate_pin_numbers_are_jumpers no)
  176. (property "Reference" "D"
  177. (at 0 2.54 0)
  178. (show_name no)
  179. (do_not_autoplace no)
  180. (effects
  181. (font
  182. (size 1.27 1.27)
  183. )
  184. )
  185. )
  186. (property "Value" "LED"
  187. (at 0 -2.54 0)
  188. (show_name no)
  189. (do_not_autoplace no)
  190. (effects
  191. (font
  192. (size 1.27 1.27)
  193. )
  194. )
  195. )
  196. (property "Footprint" ""
  197. (at 0 0 0)
  198. (show_name no)
  199. (do_not_autoplace no)
  200. (hide yes)
  201. (effects
  202. (font
  203. (size 1.27 1.27)
  204. )
  205. )
  206. )
  207. (property "Datasheet" ""
  208. (at 0 0 0)
  209. (show_name no)
  210. (do_not_autoplace no)
  211. (hide yes)
  212. (effects
  213. (font
  214. (size 1.27 1.27)
  215. )
  216. )
  217. )
  218. (property "Description" "Light emitting diode"
  219. (at 0 0 0)
  220. (show_name no)
  221. (do_not_autoplace no)
  222. (hide yes)
  223. (effects
  224. (font
  225. (size 1.27 1.27)
  226. )
  227. )
  228. )
  229. (property "Sim.Pins" "1=K 2=A"
  230. (at 0 0 0)
  231. (show_name no)
  232. (do_not_autoplace no)
  233. (hide yes)
  234. (effects
  235. (font
  236. (size 1.27 1.27)
  237. )
  238. )
  239. )
  240. (property "ki_keywords" "LED diode"
  241. (at 0 0 0)
  242. (show_name no)
  243. (do_not_autoplace no)
  244. (hide yes)
  245. (effects
  246. (font
  247. (size 1.27 1.27)
  248. )
  249. )
  250. )
  251. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*"
  252. (at 0 0 0)
  253. (show_name no)
  254. (do_not_autoplace no)
  255. (hide yes)
  256. (effects
  257. (font
  258. (size 1.27 1.27)
  259. )
  260. )
  261. )
  262. (symbol "LED_0_1"
  263. (polyline
  264. (pts
  265. (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524)
  266. )
  267. (stroke
  268. (width 0)
  269. (type default)
  270. )
  271. (fill
  272. (type none)
  273. )
  274. )
  275. (polyline
  276. (pts
  277. (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524)
  278. )
  279. (stroke
  280. (width 0)
  281. (type default)
  282. )
  283. (fill
  284. (type none)
  285. )
  286. )
  287. (polyline
  288. (pts
  289. (xy -1.27 0) (xy 1.27 0)
  290. )
  291. (stroke
  292. (width 0)
  293. (type default)
  294. )
  295. (fill
  296. (type none)
  297. )
  298. )
  299. (polyline
  300. (pts
  301. (xy -1.27 -1.27) (xy -1.27 1.27)
  302. )
  303. (stroke
  304. (width 0.254)
  305. (type default)
  306. )
  307. (fill
  308. (type none)
  309. )
  310. )
  311. (polyline
  312. (pts
  313. (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
  314. )
  315. (stroke
  316. (width 0.254)
  317. (type default)
  318. )
  319. (fill
  320. (type none)
  321. )
  322. )
  323. )
  324. (symbol "LED_1_1"
  325. (pin passive line
  326. (at -3.81 0 0)
  327. (length 2.54)
  328. (name "K"
  329. (effects
  330. (font
  331. (size 1.27 1.27)
  332. )
  333. )
  334. )
  335. (number "1"
  336. (effects
  337. (font
  338. (size 1.27 1.27)
  339. )
  340. )
  341. )
  342. )
  343. (pin passive line
  344. (at 3.81 0 180)
  345. (length 2.54)
  346. (name "A"
  347. (effects
  348. (font
  349. (size 1.27 1.27)
  350. )
  351. )
  352. )
  353. (number "2"
  354. (effects
  355. (font
  356. (size 1.27 1.27)
  357. )
  358. )
  359. )
  360. )
  361. )
  362. (embedded_fonts no)
  363. )
  364. (symbol "Device:R"
  365. (pin_numbers
  366. (hide yes)
  367. )
  368. (pin_names
  369. (offset 0)
  370. )
  371. (exclude_from_sim no)
  372. (in_bom yes)
  373. (on_board yes)
  374. (in_pos_files yes)
  375. (duplicate_pin_numbers_are_jumpers no)
  376. (property "Reference" "R"
  377. (at 2.032 0 90)
  378. (show_name no)
  379. (do_not_autoplace no)
  380. (effects
  381. (font
  382. (size 1.27 1.27)
  383. )
  384. )
  385. )
  386. (property "Value" "R"
  387. (at 0 0 90)
  388. (show_name no)
  389. (do_not_autoplace no)
  390. (effects
  391. (font
  392. (size 1.27 1.27)
  393. )
  394. )
  395. )
  396. (property "Footprint" ""
  397. (at -1.778 0 90)
  398. (show_name no)
  399. (do_not_autoplace no)
  400. (hide yes)
  401. (effects
  402. (font
  403. (size 1.27 1.27)
  404. )
  405. )
  406. )
  407. (property "Datasheet" ""
  408. (at 0 0 0)
  409. (show_name no)
  410. (do_not_autoplace no)
  411. (hide yes)
  412. (effects
  413. (font
  414. (size 1.27 1.27)
  415. )
  416. )
  417. )
  418. (property "Description" "Resistor"
  419. (at 0 0 0)
  420. (show_name no)
  421. (do_not_autoplace no)
  422. (hide yes)
  423. (effects
  424. (font
  425. (size 1.27 1.27)
  426. )
  427. )
  428. )
  429. (property "ki_keywords" "R res resistor"
  430. (at 0 0 0)
  431. (show_name no)
  432. (do_not_autoplace no)
  433. (hide yes)
  434. (effects
  435. (font
  436. (size 1.27 1.27)
  437. )
  438. )
  439. )
  440. (property "ki_fp_filters" "R_*"
  441. (at 0 0 0)
  442. (show_name no)
  443. (do_not_autoplace no)
  444. (hide yes)
  445. (effects
  446. (font
  447. (size 1.27 1.27)
  448. )
  449. )
  450. )
  451. (symbol "R_0_1"
  452. (rectangle
  453. (start -1.016 -2.54)
  454. (end 1.016 2.54)
  455. (stroke
  456. (width 0.254)
  457. (type default)
  458. )
  459. (fill
  460. (type none)
  461. )
  462. )
  463. )
  464. (symbol "R_1_1"
  465. (pin passive line
  466. (at 0 3.81 270)
  467. (length 1.27)
  468. (name ""
  469. (effects
  470. (font
  471. (size 1.27 1.27)
  472. )
  473. )
  474. )
  475. (number "1"
  476. (effects
  477. (font
  478. (size 1.27 1.27)
  479. )
  480. )
  481. )
  482. )
  483. (pin passive line
  484. (at 0 -3.81 90)
  485. (length 1.27)
  486. (name ""
  487. (effects
  488. (font
  489. (size 1.27 1.27)
  490. )
  491. )
  492. )
  493. (number "2"
  494. (effects
  495. (font
  496. (size 1.27 1.27)
  497. )
  498. )
  499. )
  500. )
  501. )
  502. (embedded_fonts no)
  503. )
  504. (symbol "Switch:SW_Push"
  505. (pin_numbers
  506. (hide yes)
  507. )
  508. (pin_names
  509. (offset 1.016)
  510. (hide yes)
  511. )
  512. (exclude_from_sim no)
  513. (in_bom yes)
  514. (on_board yes)
  515. (in_pos_files yes)
  516. (duplicate_pin_numbers_are_jumpers no)
  517. (property "Reference" "SW"
  518. (at 1.27 2.54 0)
  519. (show_name no)
  520. (do_not_autoplace no)
  521. (effects
  522. (font
  523. (size 1.27 1.27)
  524. )
  525. (justify left)
  526. )
  527. )
  528. (property "Value" "SW_Push"
  529. (at 0 -1.524 0)
  530. (show_name no)
  531. (do_not_autoplace no)
  532. (effects
  533. (font
  534. (size 1.27 1.27)
  535. )
  536. )
  537. )
  538. (property "Footprint" ""
  539. (at 0 5.08 0)
  540. (show_name no)
  541. (do_not_autoplace no)
  542. (hide yes)
  543. (effects
  544. (font
  545. (size 1.27 1.27)
  546. )
  547. )
  548. )
  549. (property "Datasheet" ""
  550. (at 0 5.08 0)
  551. (show_name no)
  552. (do_not_autoplace no)
  553. (hide yes)
  554. (effects
  555. (font
  556. (size 1.27 1.27)
  557. )
  558. )
  559. )
  560. (property "Description" "Push button switch, generic, two pins"
  561. (at 0 0 0)
  562. (show_name no)
  563. (do_not_autoplace no)
  564. (hide yes)
  565. (effects
  566. (font
  567. (size 1.27 1.27)
  568. )
  569. )
  570. )
  571. (property "ki_keywords" "switch normally-open pushbutton push-button"
  572. (at 0 0 0)
  573. (show_name no)
  574. (do_not_autoplace no)
  575. (hide yes)
  576. (effects
  577. (font
  578. (size 1.27 1.27)
  579. )
  580. )
  581. )
  582. (symbol "SW_Push_0_1"
  583. (circle
  584. (center -2.032 0)
  585. (radius 0.508)
  586. (stroke
  587. (width 0)
  588. (type default)
  589. )
  590. (fill
  591. (type none)
  592. )
  593. )
  594. (polyline
  595. (pts
  596. (xy 0 1.27) (xy 0 3.048)
  597. )
  598. (stroke
  599. (width 0)
  600. (type default)
  601. )
  602. (fill
  603. (type none)
  604. )
  605. )
  606. (circle
  607. (center 2.032 0)
  608. (radius 0.508)
  609. (stroke
  610. (width 0)
  611. (type default)
  612. )
  613. (fill
  614. (type none)
  615. )
  616. )
  617. (polyline
  618. (pts
  619. (xy 2.54 1.27) (xy -2.54 1.27)
  620. )
  621. (stroke
  622. (width 0)
  623. (type default)
  624. )
  625. (fill
  626. (type none)
  627. )
  628. )
  629. (pin passive line
  630. (at -5.08 0 0)
  631. (length 2.54)
  632. (name "1"
  633. (effects
  634. (font
  635. (size 1.27 1.27)
  636. )
  637. )
  638. )
  639. (number "1"
  640. (effects
  641. (font
  642. (size 1.27 1.27)
  643. )
  644. )
  645. )
  646. )
  647. (pin passive line
  648. (at 5.08 0 180)
  649. (length 2.54)
  650. (name "2"
  651. (effects
  652. (font
  653. (size 1.27 1.27)
  654. )
  655. )
  656. )
  657. (number "2"
  658. (effects
  659. (font
  660. (size 1.27 1.27)
  661. )
  662. )
  663. )
  664. )
  665. )
  666. (embedded_fonts no)
  667. )
  668. (symbol "power:+3V3"
  669. (power global)
  670. (pin_numbers
  671. (hide yes)
  672. )
  673. (pin_names
  674. (offset 0)
  675. (hide yes)
  676. )
  677. (exclude_from_sim no)
  678. (in_bom yes)
  679. (on_board yes)
  680. (in_pos_files yes)
  681. (duplicate_pin_numbers_are_jumpers no)
  682. (property "Reference" "#PWR"
  683. (at 0 -3.81 0)
  684. (show_name no)
  685. (do_not_autoplace no)
  686. (hide yes)
  687. (effects
  688. (font
  689. (size 1.27 1.27)
  690. )
  691. )
  692. )
  693. (property "Value" "+3V3"
  694. (at 0 3.556 0)
  695. (show_name no)
  696. (do_not_autoplace no)
  697. (effects
  698. (font
  699. (size 1.27 1.27)
  700. )
  701. )
  702. )
  703. (property "Footprint" ""
  704. (at 0 0 0)
  705. (show_name no)
  706. (do_not_autoplace no)
  707. (hide yes)
  708. (effects
  709. (font
  710. (size 1.27 1.27)
  711. )
  712. )
  713. )
  714. (property "Datasheet" ""
  715. (at 0 0 0)
  716. (show_name no)
  717. (do_not_autoplace no)
  718. (hide yes)
  719. (effects
  720. (font
  721. (size 1.27 1.27)
  722. )
  723. )
  724. )
  725. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  726. (at 0 0 0)
  727. (show_name no)
  728. (do_not_autoplace no)
  729. (hide yes)
  730. (effects
  731. (font
  732. (size 1.27 1.27)
  733. )
  734. )
  735. )
  736. (property "ki_keywords" "global power"
  737. (at 0 0 0)
  738. (show_name no)
  739. (do_not_autoplace no)
  740. (hide yes)
  741. (effects
  742. (font
  743. (size 1.27 1.27)
  744. )
  745. )
  746. )
  747. (symbol "+3V3_0_1"
  748. (polyline
  749. (pts
  750. (xy -0.762 1.27) (xy 0 2.54)
  751. )
  752. (stroke
  753. (width 0)
  754. (type default)
  755. )
  756. (fill
  757. (type none)
  758. )
  759. )
  760. (polyline
  761. (pts
  762. (xy 0 2.54) (xy 0.762 1.27)
  763. )
  764. (stroke
  765. (width 0)
  766. (type default)
  767. )
  768. (fill
  769. (type none)
  770. )
  771. )
  772. (polyline
  773. (pts
  774. (xy 0 0) (xy 0 2.54)
  775. )
  776. (stroke
  777. (width 0)
  778. (type default)
  779. )
  780. (fill
  781. (type none)
  782. )
  783. )
  784. )
  785. (symbol "+3V3_1_1"
  786. (pin power_in line
  787. (at 0 0 90)
  788. (length 0)
  789. (name ""
  790. (effects
  791. (font
  792. (size 1.27 1.27)
  793. )
  794. )
  795. )
  796. (number "1"
  797. (effects
  798. (font
  799. (size 1.27 1.27)
  800. )
  801. )
  802. )
  803. )
  804. )
  805. (embedded_fonts no)
  806. )
  807. (symbol "power:+5V"
  808. (power global)
  809. (pin_numbers
  810. (hide yes)
  811. )
  812. (pin_names
  813. (offset 0)
  814. (hide yes)
  815. )
  816. (exclude_from_sim no)
  817. (in_bom yes)
  818. (on_board yes)
  819. (in_pos_files yes)
  820. (duplicate_pin_numbers_are_jumpers no)
  821. (property "Reference" "#PWR"
  822. (at 0 -3.81 0)
  823. (show_name no)
  824. (do_not_autoplace no)
  825. (hide yes)
  826. (effects
  827. (font
  828. (size 1.27 1.27)
  829. )
  830. )
  831. )
  832. (property "Value" "+5V"
  833. (at 0 3.556 0)
  834. (show_name no)
  835. (do_not_autoplace no)
  836. (effects
  837. (font
  838. (size 1.27 1.27)
  839. )
  840. )
  841. )
  842. (property "Footprint" ""
  843. (at 0 0 0)
  844. (show_name no)
  845. (do_not_autoplace no)
  846. (hide yes)
  847. (effects
  848. (font
  849. (size 1.27 1.27)
  850. )
  851. )
  852. )
  853. (property "Datasheet" ""
  854. (at 0 0 0)
  855. (show_name no)
  856. (do_not_autoplace no)
  857. (hide yes)
  858. (effects
  859. (font
  860. (size 1.27 1.27)
  861. )
  862. )
  863. )
  864. (property "Description" "Power symbol creates a global label with name \"+5V\""
  865. (at 0 0 0)
  866. (show_name no)
  867. (do_not_autoplace no)
  868. (hide yes)
  869. (effects
  870. (font
  871. (size 1.27 1.27)
  872. )
  873. )
  874. )
  875. (property "ki_keywords" "global power"
  876. (at 0 0 0)
  877. (show_name no)
  878. (do_not_autoplace no)
  879. (hide yes)
  880. (effects
  881. (font
  882. (size 1.27 1.27)
  883. )
  884. )
  885. )
  886. (symbol "+5V_0_1"
  887. (polyline
  888. (pts
  889. (xy -0.762 1.27) (xy 0 2.54)
  890. )
  891. (stroke
  892. (width 0)
  893. (type default)
  894. )
  895. (fill
  896. (type none)
  897. )
  898. )
  899. (polyline
  900. (pts
  901. (xy 0 2.54) (xy 0.762 1.27)
  902. )
  903. (stroke
  904. (width 0)
  905. (type default)
  906. )
  907. (fill
  908. (type none)
  909. )
  910. )
  911. (polyline
  912. (pts
  913. (xy 0 0) (xy 0 2.54)
  914. )
  915. (stroke
  916. (width 0)
  917. (type default)
  918. )
  919. (fill
  920. (type none)
  921. )
  922. )
  923. )
  924. (symbol "+5V_1_1"
  925. (pin power_in line
  926. (at 0 0 90)
  927. (length 0)
  928. (name ""
  929. (effects
  930. (font
  931. (size 1.27 1.27)
  932. )
  933. )
  934. )
  935. (number "1"
  936. (effects
  937. (font
  938. (size 1.27 1.27)
  939. )
  940. )
  941. )
  942. )
  943. )
  944. (embedded_fonts no)
  945. )
  946. (symbol "power:GND"
  947. (power global)
  948. (pin_numbers
  949. (hide yes)
  950. )
  951. (pin_names
  952. (offset 0)
  953. (hide yes)
  954. )
  955. (exclude_from_sim no)
  956. (in_bom yes)
  957. (on_board yes)
  958. (in_pos_files yes)
  959. (duplicate_pin_numbers_are_jumpers no)
  960. (property "Reference" "#PWR"
  961. (at 0 -6.35 0)
  962. (show_name no)
  963. (do_not_autoplace no)
  964. (hide yes)
  965. (effects
  966. (font
  967. (size 1.27 1.27)
  968. )
  969. )
  970. )
  971. (property "Value" "GND"
  972. (at 0 -3.81 0)
  973. (show_name no)
  974. (do_not_autoplace no)
  975. (effects
  976. (font
  977. (size 1.27 1.27)
  978. )
  979. )
  980. )
  981. (property "Footprint" ""
  982. (at 0 0 0)
  983. (show_name no)
  984. (do_not_autoplace no)
  985. (hide yes)
  986. (effects
  987. (font
  988. (size 1.27 1.27)
  989. )
  990. )
  991. )
  992. (property "Datasheet" ""
  993. (at 0 0 0)
  994. (show_name no)
  995. (do_not_autoplace no)
  996. (hide yes)
  997. (effects
  998. (font
  999. (size 1.27 1.27)
  1000. )
  1001. )
  1002. )
  1003. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1004. (at 0 0 0)
  1005. (show_name no)
  1006. (do_not_autoplace no)
  1007. (hide yes)
  1008. (effects
  1009. (font
  1010. (size 1.27 1.27)
  1011. )
  1012. )
  1013. )
  1014. (property "ki_keywords" "global power"
  1015. (at 0 0 0)
  1016. (show_name no)
  1017. (do_not_autoplace no)
  1018. (hide yes)
  1019. (effects
  1020. (font
  1021. (size 1.27 1.27)
  1022. )
  1023. )
  1024. )
  1025. (symbol "GND_0_1"
  1026. (polyline
  1027. (pts
  1028. (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)
  1029. )
  1030. (stroke
  1031. (width 0)
  1032. (type default)
  1033. )
  1034. (fill
  1035. (type none)
  1036. )
  1037. )
  1038. )
  1039. (symbol "GND_1_1"
  1040. (pin power_in line
  1041. (at 0 0 270)
  1042. (length 0)
  1043. (name ""
  1044. (effects
  1045. (font
  1046. (size 1.27 1.27)
  1047. )
  1048. )
  1049. )
  1050. (number "1"
  1051. (effects
  1052. (font
  1053. (size 1.27 1.27)
  1054. )
  1055. )
  1056. )
  1057. )
  1058. )
  1059. (embedded_fonts no)
  1060. )
  1061. (symbol "transistors:YJL2312A"
  1062. (exclude_from_sim no)
  1063. (in_bom yes)
  1064. (on_board yes)
  1065. (in_pos_files yes)
  1066. (duplicate_pin_numbers_are_jumpers no)
  1067. (property "Reference" "Q"
  1068. (at 4.826 3.302 0)
  1069. (show_name no)
  1070. (do_not_autoplace no)
  1071. (effects
  1072. (font
  1073. (size 1.27 1.27)
  1074. )
  1075. )
  1076. )
  1077. (property "Value" "YJL2312A"
  1078. (at 0 0 0)
  1079. (show_name no)
  1080. (do_not_autoplace no)
  1081. (effects
  1082. (font
  1083. (size 1.27 1.27)
  1084. )
  1085. )
  1086. )
  1087. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  1088. (at 0 0 0)
  1089. (show_name no)
  1090. (do_not_autoplace no)
  1091. (hide yes)
  1092. (effects
  1093. (font
  1094. (size 1.27 1.27)
  1095. )
  1096. )
  1097. )
  1098. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  1099. (at 0 0 0)
  1100. (show_name no)
  1101. (do_not_autoplace no)
  1102. (hide yes)
  1103. (effects
  1104. (font
  1105. (size 1.27 1.27)
  1106. )
  1107. )
  1108. )
  1109. (property "Description" ""
  1110. (at 0 0 0)
  1111. (show_name no)
  1112. (do_not_autoplace no)
  1113. (hide yes)
  1114. (effects
  1115. (font
  1116. (size 1.27 1.27)
  1117. )
  1118. )
  1119. )
  1120. (symbol "YJL2312A_0_1"
  1121. (polyline
  1122. (pts
  1123. (xy -1.27 -2.54) (xy -1.27 2.54)
  1124. )
  1125. (stroke
  1126. (width 0)
  1127. (type default)
  1128. )
  1129. (fill
  1130. (type none)
  1131. )
  1132. )
  1133. )
  1134. (symbol "YJL2312A_1_1"
  1135. (polyline
  1136. (pts
  1137. (xy 0 3.175) (xy 0 -3.175)
  1138. )
  1139. (stroke
  1140. (width 0)
  1141. (type dash)
  1142. )
  1143. (fill
  1144. (type none)
  1145. )
  1146. )
  1147. (polyline
  1148. (pts
  1149. (xy 0 2.54) (xy 2.54 2.54) (xy 2.54 3.81)
  1150. )
  1151. (stroke
  1152. (width 0)
  1153. (type default)
  1154. )
  1155. (fill
  1156. (type none)
  1157. )
  1158. )
  1159. (polyline
  1160. (pts
  1161. (xy 0 0) (xy 2.54 0) (xy 2.54 -3.81)
  1162. )
  1163. (stroke
  1164. (width 0)
  1165. (type default)
  1166. )
  1167. (fill
  1168. (type none)
  1169. )
  1170. )
  1171. (polyline
  1172. (pts
  1173. (xy 0 0) (xy 1.27 -0.635) (xy 1.27 0.635) (xy 0 0)
  1174. )
  1175. (stroke
  1176. (width 0)
  1177. (type solid)
  1178. )
  1179. (fill
  1180. (type outline)
  1181. )
  1182. )
  1183. (polyline
  1184. (pts
  1185. (xy 2.54 -2.54) (xy 0 -2.54)
  1186. )
  1187. (stroke
  1188. (width 0)
  1189. (type default)
  1190. )
  1191. (fill
  1192. (type none)
  1193. )
  1194. )
  1195. (pin input line
  1196. (at -3.81 0 0)
  1197. (length 2.54)
  1198. (name ""
  1199. (effects
  1200. (font
  1201. (size 1.27 1.27)
  1202. )
  1203. )
  1204. )
  1205. (number "1"
  1206. (effects
  1207. (font
  1208. (size 1.27 1.27)
  1209. )
  1210. )
  1211. )
  1212. )
  1213. (pin power_in line
  1214. (at 2.54 -6.35 90)
  1215. (length 2.54)
  1216. (name ""
  1217. (effects
  1218. (font
  1219. (size 1.27 1.27)
  1220. )
  1221. )
  1222. )
  1223. (number "2"
  1224. (effects
  1225. (font
  1226. (size 1.27 1.27)
  1227. )
  1228. )
  1229. )
  1230. )
  1231. (pin power_out line
  1232. (at 2.54 6.35 270)
  1233. (length 2.54)
  1234. (name ""
  1235. (effects
  1236. (font
  1237. (size 1.27 1.27)
  1238. )
  1239. )
  1240. )
  1241. (number "3"
  1242. (effects
  1243. (font
  1244. (size 1.27 1.27)
  1245. )
  1246. )
  1247. )
  1248. )
  1249. )
  1250. (embedded_fonts no)
  1251. )
  1252. )
  1253. (junction
  1254. (at 189.23 125.73)
  1255. (diameter 0)
  1256. (color 0 0 0 0)
  1257. (uuid "17dc7e8a-ec90-4d97-83f7-39bc7c159a80")
  1258. )
  1259. (junction
  1260. (at 189.23 110.49)
  1261. (diameter 0)
  1262. (color 0 0 0 0)
  1263. (uuid "457b7dbe-8f14-49a9-ac83-384332e5dddb")
  1264. )
  1265. (junction
  1266. (at 209.55 110.49)
  1267. (diameter 0)
  1268. (color 0 0 0 0)
  1269. (uuid "fdffd77f-d750-4807-81ac-cf8f8e382611")
  1270. )
  1271. (wire
  1272. (pts
  1273. (xy 137.16 171.45) (xy 137.16 173.99)
  1274. )
  1275. (stroke
  1276. (width 0)
  1277. (type default)
  1278. )
  1279. (uuid "0ed3a22d-cace-4d50-a14e-d1a11923f6c6")
  1280. )
  1281. (wire
  1282. (pts
  1283. (xy 189.23 107.95) (xy 189.23 110.49)
  1284. )
  1285. (stroke
  1286. (width 0)
  1287. (type default)
  1288. )
  1289. (uuid "11195746-cfd7-4a15-8111-7d27af0c5dcd")
  1290. )
  1291. (wire
  1292. (pts
  1293. (xy 135.89 114.3) (xy 135.89 116.84)
  1294. )
  1295. (stroke
  1296. (width 0)
  1297. (type default)
  1298. )
  1299. (uuid "1e3bc241-3911-4ce1-84c1-93e2dd7895ce")
  1300. )
  1301. (wire
  1302. (pts
  1303. (xy 209.55 121.92) (xy 209.55 125.73)
  1304. )
  1305. (stroke
  1306. (width 0)
  1307. (type default)
  1308. )
  1309. (uuid "2166cb75-b3eb-4c1d-a077-365ea9e4147e")
  1310. )
  1311. (wire
  1312. (pts
  1313. (xy 209.55 110.49) (xy 217.17 110.49)
  1314. )
  1315. (stroke
  1316. (width 0)
  1317. (type default)
  1318. )
  1319. (uuid "21d2bf62-a32b-40b5-9fb9-5bcfbc4b429c")
  1320. )
  1321. (wire
  1322. (pts
  1323. (xy 189.23 125.73) (xy 189.23 128.27)
  1324. )
  1325. (stroke
  1326. (width 0)
  1327. (type default)
  1328. )
  1329. (uuid "22c4c854-0d00-4b18-81f3-b52b68b65203")
  1330. )
  1331. (wire
  1332. (pts
  1333. (xy 189.23 110.49) (xy 189.23 113.03)
  1334. )
  1335. (stroke
  1336. (width 0)
  1337. (type default)
  1338. )
  1339. (uuid "2809403c-bc16-4c62-9754-8b2303b8966a")
  1340. )
  1341. (wire
  1342. (pts
  1343. (xy 119.38 171.45) (xy 119.38 173.99)
  1344. )
  1345. (stroke
  1346. (width 0)
  1347. (type default)
  1348. )
  1349. (uuid "34b69455-ebb1-4f7d-827d-ff192a1ed97d")
  1350. )
  1351. (wire
  1352. (pts
  1353. (xy 119.38 161.29) (xy 119.38 163.83)
  1354. )
  1355. (stroke
  1356. (width 0)
  1357. (type default)
  1358. )
  1359. (uuid "36d2ad15-a870-4425-9666-e721da0e4b18")
  1360. )
  1361. (wire
  1362. (pts
  1363. (xy 189.23 110.49) (xy 198.12 110.49)
  1364. )
  1365. (stroke
  1366. (width 0)
  1367. (type default)
  1368. )
  1369. (uuid "3b860d23-e25a-484c-a15d-2f23c8bb0c2d")
  1370. )
  1371. (wire
  1372. (pts
  1373. (xy 189.23 97.79) (xy 189.23 100.33)
  1374. )
  1375. (stroke
  1376. (width 0)
  1377. (type default)
  1378. )
  1379. (uuid "5505ed6d-1113-45ea-9bd5-d06fd5e29b47")
  1380. )
  1381. (wire
  1382. (pts
  1383. (xy 95.25 63.5) (xy 95.25 68.58)
  1384. )
  1385. (stroke
  1386. (width 0)
  1387. (type default)
  1388. )
  1389. (uuid "59063e24-812c-425b-9605-f93057794a08")
  1390. )
  1391. (wire
  1392. (pts
  1393. (xy 130.81 99.06) (xy 153.67 99.06)
  1394. )
  1395. (stroke
  1396. (width 0)
  1397. (type default)
  1398. )
  1399. (uuid "5e1eb4d2-9617-48e6-ba58-9e5030ba1516")
  1400. )
  1401. (wire
  1402. (pts
  1403. (xy 205.74 110.49) (xy 209.55 110.49)
  1404. )
  1405. (stroke
  1406. (width 0)
  1407. (type default)
  1408. )
  1409. (uuid "612fac32-b1ee-4f01-b4bb-7686dda8a1ee")
  1410. )
  1411. (wire
  1412. (pts
  1413. (xy 209.55 110.49) (xy 209.55 114.3)
  1414. )
  1415. (stroke
  1416. (width 0)
  1417. (type default)
  1418. )
  1419. (uuid "6ec53e0f-722a-4f17-a4db-9c46231e34c4")
  1420. )
  1421. (wire
  1422. (pts
  1423. (xy 137.16 147.32) (xy 113.03 147.32)
  1424. )
  1425. (stroke
  1426. (width 0)
  1427. (type default)
  1428. )
  1429. (uuid "71950666-21e9-4382-978d-42aead53ec35")
  1430. )
  1431. (wire
  1432. (pts
  1433. (xy 135.89 124.46) (xy 135.89 127)
  1434. )
  1435. (stroke
  1436. (width 0)
  1437. (type default)
  1438. )
  1439. (uuid "7d90fafa-c72c-45bf-a19b-4aeba90f333d")
  1440. )
  1441. (wire
  1442. (pts
  1443. (xy 189.23 125.73) (xy 209.55 125.73)
  1444. )
  1445. (stroke
  1446. (width 0)
  1447. (type default)
  1448. )
  1449. (uuid "910e369c-4da4-4ede-a99b-c1857b8c1ef4")
  1450. )
  1451. (wire
  1452. (pts
  1453. (xy 137.16 161.29) (xy 137.16 163.83)
  1454. )
  1455. (stroke
  1456. (width 0)
  1457. (type default)
  1458. )
  1459. (uuid "9434abce-dac3-40a6-9a2d-8af2f19a4341")
  1460. )
  1461. (wire
  1462. (pts
  1463. (xy 137.16 153.67) (xy 137.16 147.32)
  1464. )
  1465. (stroke
  1466. (width 0)
  1467. (type default)
  1468. )
  1469. (uuid "9b43f3d6-a0c1-4990-a308-2f641940e284")
  1470. )
  1471. (wire
  1472. (pts
  1473. (xy 135.89 101.6) (xy 135.89 106.68)
  1474. )
  1475. (stroke
  1476. (width 0)
  1477. (type default)
  1478. )
  1479. (uuid "b3552d93-3e1d-4d8d-8bcc-0349fb5e35c0")
  1480. )
  1481. (wire
  1482. (pts
  1483. (xy 153.67 99.06) (xy 153.67 106.68)
  1484. )
  1485. (stroke
  1486. (width 0)
  1487. (type default)
  1488. )
  1489. (uuid "b8bfec2a-6d89-42ae-a0f9-bf1c9e5c8c30")
  1490. )
  1491. (wire
  1492. (pts
  1493. (xy 95.25 68.58) (xy 92.71 68.58)
  1494. )
  1495. (stroke
  1496. (width 0)
  1497. (type default)
  1498. )
  1499. (uuid "bb33bef5-f0d4-4642-b469-33ed694749b5")
  1500. )
  1501. (wire
  1502. (pts
  1503. (xy 95.25 48.26) (xy 95.25 55.88)
  1504. )
  1505. (stroke
  1506. (width 0)
  1507. (type default)
  1508. )
  1509. (uuid "bbbe2930-2c26-4143-9814-c05627c5d76e")
  1510. )
  1511. (wire
  1512. (pts
  1513. (xy 130.81 101.6) (xy 135.89 101.6)
  1514. )
  1515. (stroke
  1516. (width 0)
  1517. (type default)
  1518. )
  1519. (uuid "bcbedd8f-312c-4efa-ab46-a9c4c31e36c7")
  1520. )
  1521. (wire
  1522. (pts
  1523. (xy 189.23 123.19) (xy 189.23 125.73)
  1524. )
  1525. (stroke
  1526. (width 0)
  1527. (type default)
  1528. )
  1529. (uuid "c070e9ae-6ce3-40ba-b32e-63da85c4f74d")
  1530. )
  1531. (wire
  1532. (pts
  1533. (xy 113.03 149.86) (xy 119.38 149.86)
  1534. )
  1535. (stroke
  1536. (width 0)
  1537. (type default)
  1538. )
  1539. (uuid "c5b96db0-ff12-4a32-849e-d1609959b4f3")
  1540. )
  1541. (wire
  1542. (pts
  1543. (xy 86.36 48.26) (xy 86.36 62.23)
  1544. )
  1545. (stroke
  1546. (width 0)
  1547. (type default)
  1548. )
  1549. (uuid "daa52f17-d7d3-461d-b34e-bc176e4a52f1")
  1550. )
  1551. (wire
  1552. (pts
  1553. (xy 153.67 124.46) (xy 153.67 127)
  1554. )
  1555. (stroke
  1556. (width 0)
  1557. (type default)
  1558. )
  1559. (uuid "e123afa1-9810-4ee6-a8e6-223af49080e2")
  1560. )
  1561. (wire
  1562. (pts
  1563. (xy 119.38 149.86) (xy 119.38 153.67)
  1564. )
  1565. (stroke
  1566. (width 0)
  1567. (type default)
  1568. )
  1569. (uuid "e3e19d5b-5e96-45cf-a8ca-a14d38d758f3")
  1570. )
  1571. (wire
  1572. (pts
  1573. (xy 69.85 68.58) (xy 80.01 68.58)
  1574. )
  1575. (stroke
  1576. (width 0)
  1577. (type default)
  1578. )
  1579. (uuid "f60e5147-a5e3-4e24-809f-a42b16bbc8f4")
  1580. )
  1581. (wire
  1582. (pts
  1583. (xy 153.67 114.3) (xy 153.67 116.84)
  1584. )
  1585. (stroke
  1586. (width 0)
  1587. (type default)
  1588. )
  1589. (uuid "ff8eb437-63ab-4ed6-aefd-85baadb14877")
  1590. )
  1591. (hierarchical_label "RF_LED"
  1592. (shape input)
  1593. (at 130.81 101.6 180)
  1594. (effects
  1595. (font
  1596. (size 1.27 1.27)
  1597. )
  1598. (justify right)
  1599. )
  1600. (uuid "5ef59304-d2c2-4c35-88f5-4a7df343fa10")
  1601. )
  1602. (hierarchical_label "STATUS"
  1603. (shape input)
  1604. (at 130.81 99.06 180)
  1605. (effects
  1606. (font
  1607. (size 1.27 1.27)
  1608. )
  1609. (justify right)
  1610. )
  1611. (uuid "6f115004-3d16-4e15-8a8e-1fb9dee3d42a")
  1612. )
  1613. (hierarchical_label "SWIO"
  1614. (shape bidirectional)
  1615. (at 68.58 119.38 0)
  1616. (effects
  1617. (font
  1618. (size 1.27 1.27)
  1619. )
  1620. (justify left)
  1621. )
  1622. (uuid "99959d8e-e7df-4668-871e-f8dbd7784aa2")
  1623. )
  1624. (hierarchical_label "5V"
  1625. (shape input)
  1626. (at 113.03 147.32 180)
  1627. (effects
  1628. (font
  1629. (size 1.27 1.27)
  1630. )
  1631. (justify right)
  1632. )
  1633. (uuid "cfd62bb1-3c6a-4884-8182-d4ed948908fc")
  1634. )
  1635. (hierarchical_label "LEDS_CHAIN"
  1636. (shape input)
  1637. (at 69.85 68.58 180)
  1638. (effects
  1639. (font
  1640. (size 1.27 1.27)
  1641. )
  1642. (justify right)
  1643. )
  1644. (uuid "d1afcbb4-087a-4d8b-bc87-07950234d4ff")
  1645. )
  1646. (hierarchical_label "SWITCH"
  1647. (shape output)
  1648. (at 217.17 110.49 0)
  1649. (effects
  1650. (font
  1651. (size 1.27 1.27)
  1652. )
  1653. (justify left)
  1654. )
  1655. (uuid "e787c16d-3448-4e23-b3c3-baa04fa94efe")
  1656. )
  1657. (hierarchical_label "3V3"
  1658. (shape input)
  1659. (at 113.03 149.86 180)
  1660. (effects
  1661. (font
  1662. (size 1.27 1.27)
  1663. )
  1664. (justify right)
  1665. )
  1666. (uuid "fa72e497-15a4-4d56-bcc0-277125e33309")
  1667. )
  1668. (symbol
  1669. (lib_id "Device:LED")
  1670. (at 137.16 167.64 90)
  1671. (unit 1)
  1672. (body_style 1)
  1673. (exclude_from_sim no)
  1674. (in_bom yes)
  1675. (on_board yes)
  1676. (in_pos_files yes)
  1677. (dnp no)
  1678. (uuid "154576c5-719f-406b-ac11-072d7ee6136a")
  1679. (property "Reference" "D8"
  1680. (at 138.43 166.37 90)
  1681. (show_name no)
  1682. (do_not_autoplace no)
  1683. (effects
  1684. (font
  1685. (size 1.27 1.27)
  1686. )
  1687. (justify right)
  1688. )
  1689. )
  1690. (property "Value" "RED"
  1691. (at 138.43 168.91 90)
  1692. (show_name no)
  1693. (do_not_autoplace no)
  1694. (effects
  1695. (font
  1696. (size 1.27 1.27)
  1697. )
  1698. (justify right)
  1699. )
  1700. )
  1701. (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
  1702. (at 137.16 167.64 0)
  1703. (hide yes)
  1704. (show_name no)
  1705. (do_not_autoplace no)
  1706. (effects
  1707. (font
  1708. (size 1.27 1.27)
  1709. )
  1710. )
  1711. )
  1712. (property "Datasheet" ""
  1713. (at 137.16 167.64 0)
  1714. (hide yes)
  1715. (show_name no)
  1716. (do_not_autoplace no)
  1717. (effects
  1718. (font
  1719. (size 1.27 1.27)
  1720. )
  1721. )
  1722. )
  1723. (property "Description" "Light emitting diode"
  1724. (at 137.16 167.64 0)
  1725. (hide yes)
  1726. (show_name no)
  1727. (do_not_autoplace no)
  1728. (effects
  1729. (font
  1730. (size 1.27 1.27)
  1731. )
  1732. )
  1733. )
  1734. (property "Sim.Pins" "1=K 2=A"
  1735. (at 137.16 167.64 0)
  1736. (hide yes)
  1737. (show_name no)
  1738. (do_not_autoplace no)
  1739. (effects
  1740. (font
  1741. (size 1.27 1.27)
  1742. )
  1743. )
  1744. )
  1745. (pin "2"
  1746. (uuid "7effe012-641b-48e3-aaa8-7320fc48927b")
  1747. )
  1748. (pin "1"
  1749. (uuid "5e004c4e-76e8-4017-8050-82a3833ee8e6")
  1750. )
  1751. (instances
  1752. (project "cx-copter"
  1753. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  1754. (reference "D8")
  1755. (unit 1)
  1756. )
  1757. )
  1758. )
  1759. )
  1760. (symbol
  1761. (lib_id "power:+3V3")
  1762. (at 86.36 48.26 0)
  1763. (unit 1)
  1764. (body_style 1)
  1765. (exclude_from_sim no)
  1766. (in_bom yes)
  1767. (on_board yes)
  1768. (in_pos_files yes)
  1769. (dnp no)
  1770. (fields_autoplaced yes)
  1771. (uuid "15b42e87-12ff-4b2d-9af8-dd7cd2a40c1d")
  1772. (property "Reference" "#PWR050"
  1773. (at 86.36 52.07 0)
  1774. (hide yes)
  1775. (show_name no)
  1776. (do_not_autoplace no)
  1777. (effects
  1778. (font
  1779. (size 1.27 1.27)
  1780. )
  1781. )
  1782. )
  1783. (property "Value" "+3V3"
  1784. (at 86.36 43.18 0)
  1785. (show_name no)
  1786. (do_not_autoplace no)
  1787. (effects
  1788. (font
  1789. (size 1.27 1.27)
  1790. )
  1791. )
  1792. )
  1793. (property "Footprint" ""
  1794. (at 86.36 48.26 0)
  1795. (hide yes)
  1796. (show_name no)
  1797. (do_not_autoplace no)
  1798. (effects
  1799. (font
  1800. (size 1.27 1.27)
  1801. )
  1802. )
  1803. )
  1804. (property "Datasheet" ""
  1805. (at 86.36 48.26 0)
  1806. (hide yes)
  1807. (show_name no)
  1808. (do_not_autoplace no)
  1809. (effects
  1810. (font
  1811. (size 1.27 1.27)
  1812. )
  1813. )
  1814. )
  1815. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1816. (at 86.36 48.26 0)
  1817. (hide yes)
  1818. (show_name no)
  1819. (do_not_autoplace no)
  1820. (effects
  1821. (font
  1822. (size 1.27 1.27)
  1823. )
  1824. )
  1825. )
  1826. (pin "1"
  1827. (uuid "4148e362-fb61-43e8-8229-c1b48172082c")
  1828. )
  1829. (instances
  1830. (project "cx-copter"
  1831. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  1832. (reference "#PWR050")
  1833. (unit 1)
  1834. )
  1835. )
  1836. )
  1837. )
  1838. (symbol
  1839. (lib_id "power:+3V3")
  1840. (at 189.23 97.79 0)
  1841. (unit 1)
  1842. (body_style 1)
  1843. (exclude_from_sim no)
  1844. (in_bom yes)
  1845. (on_board yes)
  1846. (in_pos_files yes)
  1847. (dnp no)
  1848. (fields_autoplaced yes)
  1849. (uuid "480d7a46-8b84-4c31-b598-438af8fcf97e")
  1850. (property "Reference" "#PWR033"
  1851. (at 189.23 101.6 0)
  1852. (hide yes)
  1853. (show_name no)
  1854. (do_not_autoplace no)
  1855. (effects
  1856. (font
  1857. (size 1.27 1.27)
  1858. )
  1859. )
  1860. )
  1861. (property "Value" "+3V3"
  1862. (at 189.23 92.71 0)
  1863. (show_name no)
  1864. (do_not_autoplace no)
  1865. (effects
  1866. (font
  1867. (size 1.27 1.27)
  1868. )
  1869. )
  1870. )
  1871. (property "Footprint" ""
  1872. (at 189.23 97.79 0)
  1873. (hide yes)
  1874. (show_name no)
  1875. (do_not_autoplace no)
  1876. (effects
  1877. (font
  1878. (size 1.27 1.27)
  1879. )
  1880. )
  1881. )
  1882. (property "Datasheet" ""
  1883. (at 189.23 97.79 0)
  1884. (hide yes)
  1885. (show_name no)
  1886. (do_not_autoplace no)
  1887. (effects
  1888. (font
  1889. (size 1.27 1.27)
  1890. )
  1891. )
  1892. )
  1893. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1894. (at 189.23 97.79 0)
  1895. (hide yes)
  1896. (show_name no)
  1897. (do_not_autoplace no)
  1898. (effects
  1899. (font
  1900. (size 1.27 1.27)
  1901. )
  1902. )
  1903. )
  1904. (pin "1"
  1905. (uuid "06d54146-f05c-46c0-a4ee-18c48b280d25")
  1906. )
  1907. (instances
  1908. (project "cx-copter"
  1909. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  1910. (reference "#PWR033")
  1911. (unit 1)
  1912. )
  1913. )
  1914. )
  1915. )
  1916. (symbol
  1917. (lib_id "Switch:SW_Push")
  1918. (at 189.23 118.11 270)
  1919. (unit 1)
  1920. (body_style 1)
  1921. (exclude_from_sim no)
  1922. (in_bom yes)
  1923. (on_board yes)
  1924. (in_pos_files yes)
  1925. (dnp no)
  1926. (uuid "4a0ae14c-9858-4615-aed7-42f50662836d")
  1927. (property "Reference" "SW1"
  1928. (at 181.864 120.142 90)
  1929. (show_name no)
  1930. (do_not_autoplace no)
  1931. (effects
  1932. (font
  1933. (size 1.27 1.27)
  1934. )
  1935. (justify left)
  1936. )
  1937. )
  1938. (property "Value" "SWITCH"
  1939. (at 181.864 122.174 90)
  1940. (show_name no)
  1941. (do_not_autoplace no)
  1942. (effects
  1943. (font
  1944. (size 1.27 1.27)
  1945. )
  1946. (justify left)
  1947. )
  1948. )
  1949. (property "Footprint" "Button_Switch_SMD:SW_SPST_FSMSM"
  1950. (at 194.31 118.11 0)
  1951. (hide yes)
  1952. (show_name no)
  1953. (do_not_autoplace no)
  1954. (effects
  1955. (font
  1956. (size 1.27 1.27)
  1957. )
  1958. )
  1959. )
  1960. (property "Datasheet" ""
  1961. (at 194.31 118.11 0)
  1962. (hide yes)
  1963. (show_name no)
  1964. (do_not_autoplace no)
  1965. (effects
  1966. (font
  1967. (size 1.27 1.27)
  1968. )
  1969. )
  1970. )
  1971. (property "Description" "Push button switch, generic, two pins"
  1972. (at 189.23 118.11 0)
  1973. (hide yes)
  1974. (show_name no)
  1975. (do_not_autoplace no)
  1976. (effects
  1977. (font
  1978. (size 1.27 1.27)
  1979. )
  1980. )
  1981. )
  1982. (pin "1"
  1983. (uuid "fa0ad922-4ec5-4c5f-8954-edf2b27094cb")
  1984. )
  1985. (pin "2"
  1986. (uuid "9795c592-7135-4a7a-b61a-f6412779d4d7")
  1987. )
  1988. (instances
  1989. (project "cx-copter"
  1990. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  1991. (reference "SW1")
  1992. (unit 1)
  1993. )
  1994. )
  1995. )
  1996. )
  1997. (symbol
  1998. (lib_id "power:GND")
  1999. (at 137.16 173.99 0)
  2000. (unit 1)
  2001. (body_style 1)
  2002. (exclude_from_sim no)
  2003. (in_bom yes)
  2004. (on_board yes)
  2005. (in_pos_files yes)
  2006. (dnp no)
  2007. (fields_autoplaced yes)
  2008. (uuid "4d2dcc8d-0831-488d-a447-fe796b0f3602")
  2009. (property "Reference" "#PWR035"
  2010. (at 137.16 180.34 0)
  2011. (hide yes)
  2012. (show_name no)
  2013. (do_not_autoplace no)
  2014. (effects
  2015. (font
  2016. (size 1.27 1.27)
  2017. )
  2018. )
  2019. )
  2020. (property "Value" "GND"
  2021. (at 137.16 179.07 0)
  2022. (show_name no)
  2023. (do_not_autoplace no)
  2024. (effects
  2025. (font
  2026. (size 1.27 1.27)
  2027. )
  2028. )
  2029. )
  2030. (property "Footprint" ""
  2031. (at 137.16 173.99 0)
  2032. (hide yes)
  2033. (show_name no)
  2034. (do_not_autoplace no)
  2035. (effects
  2036. (font
  2037. (size 1.27 1.27)
  2038. )
  2039. )
  2040. )
  2041. (property "Datasheet" ""
  2042. (at 137.16 173.99 0)
  2043. (hide yes)
  2044. (show_name no)
  2045. (do_not_autoplace no)
  2046. (effects
  2047. (font
  2048. (size 1.27 1.27)
  2049. )
  2050. )
  2051. )
  2052. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2053. (at 137.16 173.99 0)
  2054. (hide yes)
  2055. (show_name no)
  2056. (do_not_autoplace no)
  2057. (effects
  2058. (font
  2059. (size 1.27 1.27)
  2060. )
  2061. )
  2062. )
  2063. (pin "1"
  2064. (uuid "58ebbd72-887b-4b74-96d4-a4cee3f55d50")
  2065. )
  2066. (instances
  2067. (project "cx-copter"
  2068. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2069. (reference "#PWR035")
  2070. (unit 1)
  2071. )
  2072. )
  2073. )
  2074. )
  2075. (symbol
  2076. (lib_id "power:GND")
  2077. (at 189.23 128.27 0)
  2078. (unit 1)
  2079. (body_style 1)
  2080. (exclude_from_sim no)
  2081. (in_bom yes)
  2082. (on_board yes)
  2083. (in_pos_files yes)
  2084. (dnp no)
  2085. (fields_autoplaced yes)
  2086. (uuid "5e8fe89d-a111-494d-9a44-fee88032bc39")
  2087. (property "Reference" "#PWR032"
  2088. (at 189.23 134.62 0)
  2089. (hide yes)
  2090. (show_name no)
  2091. (do_not_autoplace no)
  2092. (effects
  2093. (font
  2094. (size 1.27 1.27)
  2095. )
  2096. )
  2097. )
  2098. (property "Value" "GND"
  2099. (at 189.23 133.35 0)
  2100. (show_name no)
  2101. (do_not_autoplace no)
  2102. (effects
  2103. (font
  2104. (size 1.27 1.27)
  2105. )
  2106. )
  2107. )
  2108. (property "Footprint" ""
  2109. (at 189.23 128.27 0)
  2110. (hide yes)
  2111. (show_name no)
  2112. (do_not_autoplace no)
  2113. (effects
  2114. (font
  2115. (size 1.27 1.27)
  2116. )
  2117. )
  2118. )
  2119. (property "Datasheet" ""
  2120. (at 189.23 128.27 0)
  2121. (hide yes)
  2122. (show_name no)
  2123. (do_not_autoplace no)
  2124. (effects
  2125. (font
  2126. (size 1.27 1.27)
  2127. )
  2128. )
  2129. )
  2130. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2131. (at 189.23 128.27 0)
  2132. (hide yes)
  2133. (show_name no)
  2134. (do_not_autoplace no)
  2135. (effects
  2136. (font
  2137. (size 1.27 1.27)
  2138. )
  2139. )
  2140. )
  2141. (pin "1"
  2142. (uuid "de47c1c8-b178-4e74-bbda-8268d90eb2f3")
  2143. )
  2144. (instances
  2145. (project "cx-copter"
  2146. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2147. (reference "#PWR032")
  2148. (unit 1)
  2149. )
  2150. )
  2151. )
  2152. )
  2153. (symbol
  2154. (lib_id "transistors:YJL2312A")
  2155. (at 86.36 66.04 270)
  2156. (unit 1)
  2157. (body_style 1)
  2158. (exclude_from_sim no)
  2159. (in_bom yes)
  2160. (on_board yes)
  2161. (in_pos_files yes)
  2162. (dnp no)
  2163. (uuid "5ff12a34-a741-4ba7-8f77-42c62d064800")
  2164. (property "Reference" "Q5"
  2165. (at 88.138 63.5 90)
  2166. (show_name no)
  2167. (do_not_autoplace no)
  2168. (effects
  2169. (font
  2170. (size 1.27 1.27)
  2171. )
  2172. )
  2173. )
  2174. (property "Value" "YJL2312A"
  2175. (at 86.36 70.104 90)
  2176. (show_name no)
  2177. (do_not_autoplace no)
  2178. (effects
  2179. (font
  2180. (size 1.27 1.27)
  2181. )
  2182. )
  2183. )
  2184. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  2185. (at 86.36 66.04 0)
  2186. (hide yes)
  2187. (show_name no)
  2188. (do_not_autoplace no)
  2189. (effects
  2190. (font
  2191. (size 1.27 1.27)
  2192. )
  2193. )
  2194. )
  2195. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  2196. (at 86.36 66.04 0)
  2197. (hide yes)
  2198. (show_name no)
  2199. (do_not_autoplace no)
  2200. (effects
  2201. (font
  2202. (size 1.27 1.27)
  2203. )
  2204. )
  2205. )
  2206. (property "Description" ""
  2207. (at 86.36 66.04 0)
  2208. (hide yes)
  2209. (show_name no)
  2210. (do_not_autoplace no)
  2211. (effects
  2212. (font
  2213. (size 1.27 1.27)
  2214. )
  2215. )
  2216. )
  2217. (pin "2"
  2218. (uuid "fafc240c-4ecc-4b15-b9cc-d2d71a02b471")
  2219. )
  2220. (pin "3"
  2221. (uuid "552fe43b-33fb-4257-9336-61a973ea9a23")
  2222. )
  2223. (pin "1"
  2224. (uuid "9af83281-fcd5-46f0-bacd-ff010b1c7d92")
  2225. )
  2226. (instances
  2227. (project "cx-copter"
  2228. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2229. (reference "Q5")
  2230. (unit 1)
  2231. )
  2232. )
  2233. )
  2234. )
  2235. (symbol
  2236. (lib_id "power:GND")
  2237. (at 135.89 127 0)
  2238. (unit 1)
  2239. (body_style 1)
  2240. (exclude_from_sim no)
  2241. (in_bom yes)
  2242. (on_board yes)
  2243. (in_pos_files yes)
  2244. (dnp no)
  2245. (fields_autoplaced yes)
  2246. (uuid "6e9861f8-9ee9-4406-aa1f-ecc8f19e6547")
  2247. (property "Reference" "#PWR030"
  2248. (at 135.89 133.35 0)
  2249. (hide yes)
  2250. (show_name no)
  2251. (do_not_autoplace no)
  2252. (effects
  2253. (font
  2254. (size 1.27 1.27)
  2255. )
  2256. )
  2257. )
  2258. (property "Value" "GND"
  2259. (at 135.89 132.08 0)
  2260. (show_name no)
  2261. (do_not_autoplace no)
  2262. (effects
  2263. (font
  2264. (size 1.27 1.27)
  2265. )
  2266. )
  2267. )
  2268. (property "Footprint" ""
  2269. (at 135.89 127 0)
  2270. (hide yes)
  2271. (show_name no)
  2272. (do_not_autoplace no)
  2273. (effects
  2274. (font
  2275. (size 1.27 1.27)
  2276. )
  2277. )
  2278. )
  2279. (property "Datasheet" ""
  2280. (at 135.89 127 0)
  2281. (hide yes)
  2282. (show_name no)
  2283. (do_not_autoplace no)
  2284. (effects
  2285. (font
  2286. (size 1.27 1.27)
  2287. )
  2288. )
  2289. )
  2290. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2291. (at 135.89 127 0)
  2292. (hide yes)
  2293. (show_name no)
  2294. (do_not_autoplace no)
  2295. (effects
  2296. (font
  2297. (size 1.27 1.27)
  2298. )
  2299. )
  2300. )
  2301. (pin "1"
  2302. (uuid "152a6d92-0d60-43a9-9a70-b2a299aadcea")
  2303. )
  2304. (instances
  2305. (project "cx-copter"
  2306. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2307. (reference "#PWR030")
  2308. (unit 1)
  2309. )
  2310. )
  2311. )
  2312. )
  2313. (symbol
  2314. (lib_id "Device:C")
  2315. (at 209.55 118.11 0)
  2316. (unit 1)
  2317. (body_style 1)
  2318. (exclude_from_sim no)
  2319. (in_bom yes)
  2320. (on_board yes)
  2321. (in_pos_files yes)
  2322. (dnp no)
  2323. (uuid "79a630b4-d8c4-483a-b4f5-2f711f692ffb")
  2324. (property "Reference" "C11"
  2325. (at 209.55 116.078 0)
  2326. (show_name no)
  2327. (do_not_autoplace no)
  2328. (effects
  2329. (font
  2330. (size 1.27 1.27)
  2331. )
  2332. (justify left)
  2333. )
  2334. )
  2335. (property "Value" "100n"
  2336. (at 209.55 120.142 0)
  2337. (show_name no)
  2338. (do_not_autoplace no)
  2339. (effects
  2340. (font
  2341. (size 1.27 1.27)
  2342. )
  2343. (justify left)
  2344. )
  2345. )
  2346. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  2347. (at 210.5152 121.92 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 "Datasheet" ""
  2358. (at 209.55 118.11 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. (property "Description" "Unpolarized capacitor"
  2369. (at 209.55 118.11 0)
  2370. (hide yes)
  2371. (show_name no)
  2372. (do_not_autoplace no)
  2373. (effects
  2374. (font
  2375. (size 1.27 1.27)
  2376. )
  2377. )
  2378. )
  2379. (pin "2"
  2380. (uuid "b66e9192-64e2-4604-ada7-711f4a9b9888")
  2381. )
  2382. (pin "1"
  2383. (uuid "972cd201-327c-4f0e-aaa4-763931204924")
  2384. )
  2385. (instances
  2386. (project "cx-copter"
  2387. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2388. (reference "C11")
  2389. (unit 1)
  2390. )
  2391. )
  2392. )
  2393. )
  2394. (symbol
  2395. (lib_id "Device:LED")
  2396. (at 119.38 167.64 90)
  2397. (unit 1)
  2398. (body_style 1)
  2399. (exclude_from_sim no)
  2400. (in_bom yes)
  2401. (on_board yes)
  2402. (in_pos_files yes)
  2403. (dnp no)
  2404. (uuid "7fe37b18-2a36-4485-8765-1d22563b8507")
  2405. (property "Reference" "D7"
  2406. (at 120.65 166.37 90)
  2407. (show_name no)
  2408. (do_not_autoplace no)
  2409. (effects
  2410. (font
  2411. (size 1.27 1.27)
  2412. )
  2413. (justify right)
  2414. )
  2415. )
  2416. (property "Value" "RED"
  2417. (at 120.65 168.91 90)
  2418. (show_name no)
  2419. (do_not_autoplace no)
  2420. (effects
  2421. (font
  2422. (size 1.27 1.27)
  2423. )
  2424. (justify right)
  2425. )
  2426. )
  2427. (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
  2428. (at 119.38 167.64 0)
  2429. (hide yes)
  2430. (show_name no)
  2431. (do_not_autoplace no)
  2432. (effects
  2433. (font
  2434. (size 1.27 1.27)
  2435. )
  2436. )
  2437. )
  2438. (property "Datasheet" ""
  2439. (at 119.38 167.64 0)
  2440. (hide yes)
  2441. (show_name no)
  2442. (do_not_autoplace no)
  2443. (effects
  2444. (font
  2445. (size 1.27 1.27)
  2446. )
  2447. )
  2448. )
  2449. (property "Description" "Light emitting diode"
  2450. (at 119.38 167.64 0)
  2451. (hide yes)
  2452. (show_name no)
  2453. (do_not_autoplace no)
  2454. (effects
  2455. (font
  2456. (size 1.27 1.27)
  2457. )
  2458. )
  2459. )
  2460. (property "Sim.Pins" "1=K 2=A"
  2461. (at 119.38 167.64 0)
  2462. (hide yes)
  2463. (show_name no)
  2464. (do_not_autoplace no)
  2465. (effects
  2466. (font
  2467. (size 1.27 1.27)
  2468. )
  2469. )
  2470. )
  2471. (pin "2"
  2472. (uuid "ee829bf6-8844-4e6f-95f3-e067b6026ea6")
  2473. )
  2474. (pin "1"
  2475. (uuid "252038f6-829b-4588-867c-fa936b7fa6f6")
  2476. )
  2477. (instances
  2478. (project "cx-copter"
  2479. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2480. (reference "D7")
  2481. (unit 1)
  2482. )
  2483. )
  2484. )
  2485. )
  2486. (symbol
  2487. (lib_id "Device:LED")
  2488. (at 153.67 120.65 90)
  2489. (unit 1)
  2490. (body_style 1)
  2491. (exclude_from_sim no)
  2492. (in_bom yes)
  2493. (on_board yes)
  2494. (in_pos_files yes)
  2495. (dnp no)
  2496. (uuid "86e291a8-0b4d-4c19-8ee9-7e27b9d7c9a7")
  2497. (property "Reference" "D6"
  2498. (at 154.94 119.38 90)
  2499. (show_name no)
  2500. (do_not_autoplace no)
  2501. (effects
  2502. (font
  2503. (size 1.27 1.27)
  2504. )
  2505. (justify right)
  2506. )
  2507. )
  2508. (property "Value" "RED"
  2509. (at 154.94 121.92 90)
  2510. (show_name no)
  2511. (do_not_autoplace no)
  2512. (effects
  2513. (font
  2514. (size 1.27 1.27)
  2515. )
  2516. (justify right)
  2517. )
  2518. )
  2519. (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
  2520. (at 153.67 120.65 0)
  2521. (hide yes)
  2522. (show_name no)
  2523. (do_not_autoplace no)
  2524. (effects
  2525. (font
  2526. (size 1.27 1.27)
  2527. )
  2528. )
  2529. )
  2530. (property "Datasheet" ""
  2531. (at 153.67 120.65 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 "Description" "Light emitting diode"
  2542. (at 153.67 120.65 0)
  2543. (hide yes)
  2544. (show_name no)
  2545. (do_not_autoplace no)
  2546. (effects
  2547. (font
  2548. (size 1.27 1.27)
  2549. )
  2550. )
  2551. )
  2552. (property "Sim.Pins" "1=K 2=A"
  2553. (at 153.67 120.65 0)
  2554. (hide yes)
  2555. (show_name no)
  2556. (do_not_autoplace no)
  2557. (effects
  2558. (font
  2559. (size 1.27 1.27)
  2560. )
  2561. )
  2562. )
  2563. (pin "2"
  2564. (uuid "eba49ba6-ca67-41ff-aa6e-07cc53615f9c")
  2565. )
  2566. (pin "1"
  2567. (uuid "b44200e1-9b75-4bf4-8017-ec3822d7da26")
  2568. )
  2569. (instances
  2570. (project "cx-copter"
  2571. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2572. (reference "D6")
  2573. (unit 1)
  2574. )
  2575. )
  2576. )
  2577. )
  2578. (symbol
  2579. (lib_id "power:GND")
  2580. (at 119.38 173.99 0)
  2581. (unit 1)
  2582. (body_style 1)
  2583. (exclude_from_sim no)
  2584. (in_bom yes)
  2585. (on_board yes)
  2586. (in_pos_files yes)
  2587. (dnp no)
  2588. (fields_autoplaced yes)
  2589. (uuid "953a4ceb-b758-4198-a5dd-c71bdbecf84b")
  2590. (property "Reference" "#PWR034"
  2591. (at 119.38 180.34 0)
  2592. (hide yes)
  2593. (show_name no)
  2594. (do_not_autoplace no)
  2595. (effects
  2596. (font
  2597. (size 1.27 1.27)
  2598. )
  2599. )
  2600. )
  2601. (property "Value" "GND"
  2602. (at 119.38 179.07 0)
  2603. (show_name no)
  2604. (do_not_autoplace no)
  2605. (effects
  2606. (font
  2607. (size 1.27 1.27)
  2608. )
  2609. )
  2610. )
  2611. (property "Footprint" ""
  2612. (at 119.38 173.99 0)
  2613. (hide yes)
  2614. (show_name no)
  2615. (do_not_autoplace no)
  2616. (effects
  2617. (font
  2618. (size 1.27 1.27)
  2619. )
  2620. )
  2621. )
  2622. (property "Datasheet" ""
  2623. (at 119.38 173.99 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. )
  2632. )
  2633. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2634. (at 119.38 173.99 0)
  2635. (hide yes)
  2636. (show_name no)
  2637. (do_not_autoplace no)
  2638. (effects
  2639. (font
  2640. (size 1.27 1.27)
  2641. )
  2642. )
  2643. )
  2644. (pin "1"
  2645. (uuid "8fcfefb4-d8ee-4452-93c4-07f1a3ca5ca3")
  2646. )
  2647. (instances
  2648. (project "cx-copter"
  2649. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2650. (reference "#PWR034")
  2651. (unit 1)
  2652. )
  2653. )
  2654. )
  2655. )
  2656. (symbol
  2657. (lib_id "Device:R")
  2658. (at 137.16 157.48 0)
  2659. (unit 1)
  2660. (body_style 1)
  2661. (exclude_from_sim no)
  2662. (in_bom yes)
  2663. (on_board yes)
  2664. (in_pos_files yes)
  2665. (dnp no)
  2666. (uuid "a22f15db-8d8d-4b9a-a274-3a59aad77f53")
  2667. (property "Reference" "R24"
  2668. (at 138.176 156.21 0)
  2669. (show_name no)
  2670. (do_not_autoplace no)
  2671. (effects
  2672. (font
  2673. (size 1.27 1.27)
  2674. )
  2675. (justify left)
  2676. )
  2677. )
  2678. (property "Value" "330R"
  2679. (at 138.176 158.75 0)
  2680. (show_name no)
  2681. (do_not_autoplace no)
  2682. (effects
  2683. (font
  2684. (size 1.27 1.27)
  2685. )
  2686. (justify left)
  2687. )
  2688. )
  2689. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  2690. (at 135.382 157.48 90)
  2691. (hide yes)
  2692. (show_name no)
  2693. (do_not_autoplace no)
  2694. (effects
  2695. (font
  2696. (size 1.27 1.27)
  2697. )
  2698. )
  2699. )
  2700. (property "Datasheet" ""
  2701. (at 137.16 157.48 0)
  2702. (hide yes)
  2703. (show_name no)
  2704. (do_not_autoplace no)
  2705. (effects
  2706. (font
  2707. (size 1.27 1.27)
  2708. )
  2709. )
  2710. )
  2711. (property "Description" "Resistor"
  2712. (at 137.16 157.48 0)
  2713. (hide yes)
  2714. (show_name no)
  2715. (do_not_autoplace no)
  2716. (effects
  2717. (font
  2718. (size 1.27 1.27)
  2719. )
  2720. )
  2721. )
  2722. (pin "2"
  2723. (uuid "bb4779df-c256-4c46-ad6c-eaa940a82ee8")
  2724. )
  2725. (pin "1"
  2726. (uuid "230fa076-5be1-4fb2-b3ec-4537abe8226e")
  2727. )
  2728. (instances
  2729. (project "cx-copter"
  2730. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2731. (reference "R24")
  2732. (unit 1)
  2733. )
  2734. )
  2735. )
  2736. )
  2737. (symbol
  2738. (lib_id "Device:R")
  2739. (at 135.89 110.49 0)
  2740. (unit 1)
  2741. (body_style 1)
  2742. (exclude_from_sim no)
  2743. (in_bom yes)
  2744. (on_board yes)
  2745. (in_pos_files yes)
  2746. (dnp no)
  2747. (uuid "a637e21f-7207-4df0-af9f-3f5013c7c48c")
  2748. (property "Reference" "R20"
  2749. (at 136.906 109.22 0)
  2750. (show_name no)
  2751. (do_not_autoplace no)
  2752. (effects
  2753. (font
  2754. (size 1.27 1.27)
  2755. )
  2756. (justify left)
  2757. )
  2758. )
  2759. (property "Value" "330R"
  2760. (at 136.906 111.76 0)
  2761. (show_name no)
  2762. (do_not_autoplace no)
  2763. (effects
  2764. (font
  2765. (size 1.27 1.27)
  2766. )
  2767. (justify left)
  2768. )
  2769. )
  2770. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  2771. (at 134.112 110.49 90)
  2772. (hide yes)
  2773. (show_name no)
  2774. (do_not_autoplace no)
  2775. (effects
  2776. (font
  2777. (size 1.27 1.27)
  2778. )
  2779. )
  2780. )
  2781. (property "Datasheet" ""
  2782. (at 135.89 110.49 0)
  2783. (hide yes)
  2784. (show_name no)
  2785. (do_not_autoplace no)
  2786. (effects
  2787. (font
  2788. (size 1.27 1.27)
  2789. )
  2790. )
  2791. )
  2792. (property "Description" "Resistor"
  2793. (at 135.89 110.49 0)
  2794. (hide yes)
  2795. (show_name no)
  2796. (do_not_autoplace no)
  2797. (effects
  2798. (font
  2799. (size 1.27 1.27)
  2800. )
  2801. )
  2802. )
  2803. (pin "2"
  2804. (uuid "ac6e28fc-cb9e-45dc-a138-0703243cc007")
  2805. )
  2806. (pin "1"
  2807. (uuid "3b2ce436-9307-40ea-9f2f-7db19726a6a8")
  2808. )
  2809. (instances
  2810. (project "cx-copter"
  2811. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2812. (reference "R20")
  2813. (unit 1)
  2814. )
  2815. )
  2816. )
  2817. )
  2818. (symbol
  2819. (lib_id "Device:R")
  2820. (at 153.67 110.49 0)
  2821. (unit 1)
  2822. (body_style 1)
  2823. (exclude_from_sim no)
  2824. (in_bom yes)
  2825. (on_board yes)
  2826. (in_pos_files yes)
  2827. (dnp no)
  2828. (uuid "c164f6f6-38d0-4bb9-986e-34b227fe3e0f")
  2829. (property "Reference" "R19"
  2830. (at 154.686 109.22 0)
  2831. (show_name no)
  2832. (do_not_autoplace no)
  2833. (effects
  2834. (font
  2835. (size 1.27 1.27)
  2836. )
  2837. (justify left)
  2838. )
  2839. )
  2840. (property "Value" "330R"
  2841. (at 154.686 111.76 0)
  2842. (show_name no)
  2843. (do_not_autoplace no)
  2844. (effects
  2845. (font
  2846. (size 1.27 1.27)
  2847. )
  2848. (justify left)
  2849. )
  2850. )
  2851. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  2852. (at 151.892 110.49 90)
  2853. (hide yes)
  2854. (show_name no)
  2855. (do_not_autoplace no)
  2856. (effects
  2857. (font
  2858. (size 1.27 1.27)
  2859. )
  2860. )
  2861. )
  2862. (property "Datasheet" ""
  2863. (at 153.67 110.49 0)
  2864. (hide yes)
  2865. (show_name no)
  2866. (do_not_autoplace no)
  2867. (effects
  2868. (font
  2869. (size 1.27 1.27)
  2870. )
  2871. )
  2872. )
  2873. (property "Description" "Resistor"
  2874. (at 153.67 110.49 0)
  2875. (hide yes)
  2876. (show_name no)
  2877. (do_not_autoplace no)
  2878. (effects
  2879. (font
  2880. (size 1.27 1.27)
  2881. )
  2882. )
  2883. )
  2884. (pin "2"
  2885. (uuid "a4e5f47c-0e0b-4864-a398-1236d44f4b3b")
  2886. )
  2887. (pin "1"
  2888. (uuid "1ecfba3d-bf39-451b-b5dc-55fdc8848c27")
  2889. )
  2890. (instances
  2891. (project "cx-copter"
  2892. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2893. (reference "R19")
  2894. (unit 1)
  2895. )
  2896. )
  2897. )
  2898. )
  2899. (symbol
  2900. (lib_id "Device:R")
  2901. (at 119.38 157.48 0)
  2902. (unit 1)
  2903. (body_style 1)
  2904. (exclude_from_sim no)
  2905. (in_bom yes)
  2906. (on_board yes)
  2907. (in_pos_files yes)
  2908. (dnp no)
  2909. (uuid "d4c99743-9a99-4115-a4bb-58eb562a7f9d")
  2910. (property "Reference" "R23"
  2911. (at 120.396 156.21 0)
  2912. (show_name no)
  2913. (do_not_autoplace no)
  2914. (effects
  2915. (font
  2916. (size 1.27 1.27)
  2917. )
  2918. (justify left)
  2919. )
  2920. )
  2921. (property "Value" "330R"
  2922. (at 120.396 158.75 0)
  2923. (show_name no)
  2924. (do_not_autoplace no)
  2925. (effects
  2926. (font
  2927. (size 1.27 1.27)
  2928. )
  2929. (justify left)
  2930. )
  2931. )
  2932. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  2933. (at 117.602 157.48 90)
  2934. (hide yes)
  2935. (show_name no)
  2936. (do_not_autoplace no)
  2937. (effects
  2938. (font
  2939. (size 1.27 1.27)
  2940. )
  2941. )
  2942. )
  2943. (property "Datasheet" ""
  2944. (at 119.38 157.48 0)
  2945. (hide yes)
  2946. (show_name no)
  2947. (do_not_autoplace no)
  2948. (effects
  2949. (font
  2950. (size 1.27 1.27)
  2951. )
  2952. )
  2953. )
  2954. (property "Description" "Resistor"
  2955. (at 119.38 157.48 0)
  2956. (hide yes)
  2957. (show_name no)
  2958. (do_not_autoplace no)
  2959. (effects
  2960. (font
  2961. (size 1.27 1.27)
  2962. )
  2963. )
  2964. )
  2965. (pin "2"
  2966. (uuid "b9eae60a-0683-49bd-b14b-21086a06792e")
  2967. )
  2968. (pin "1"
  2969. (uuid "2c07a628-298c-47f1-8156-f468d1787060")
  2970. )
  2971. (instances
  2972. (project "cx-copter"
  2973. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  2974. (reference "R23")
  2975. (unit 1)
  2976. )
  2977. )
  2978. )
  2979. )
  2980. (symbol
  2981. (lib_id "power:GND")
  2982. (at 153.67 127 0)
  2983. (unit 1)
  2984. (body_style 1)
  2985. (exclude_from_sim no)
  2986. (in_bom yes)
  2987. (on_board yes)
  2988. (in_pos_files yes)
  2989. (dnp no)
  2990. (fields_autoplaced yes)
  2991. (uuid "d8e3c2c4-ecc1-4e72-9004-d53a79a146a0")
  2992. (property "Reference" "#PWR031"
  2993. (at 153.67 133.35 0)
  2994. (hide yes)
  2995. (show_name no)
  2996. (do_not_autoplace no)
  2997. (effects
  2998. (font
  2999. (size 1.27 1.27)
  3000. )
  3001. )
  3002. )
  3003. (property "Value" "GND"
  3004. (at 153.67 132.08 0)
  3005. (show_name no)
  3006. (do_not_autoplace no)
  3007. (effects
  3008. (font
  3009. (size 1.27 1.27)
  3010. )
  3011. )
  3012. )
  3013. (property "Footprint" ""
  3014. (at 153.67 127 0)
  3015. (hide yes)
  3016. (show_name no)
  3017. (do_not_autoplace no)
  3018. (effects
  3019. (font
  3020. (size 1.27 1.27)
  3021. )
  3022. )
  3023. )
  3024. (property "Datasheet" ""
  3025. (at 153.67 127 0)
  3026. (hide yes)
  3027. (show_name no)
  3028. (do_not_autoplace no)
  3029. (effects
  3030. (font
  3031. (size 1.27 1.27)
  3032. )
  3033. )
  3034. )
  3035. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3036. (at 153.67 127 0)
  3037. (hide yes)
  3038. (show_name no)
  3039. (do_not_autoplace no)
  3040. (effects
  3041. (font
  3042. (size 1.27 1.27)
  3043. )
  3044. )
  3045. )
  3046. (pin "1"
  3047. (uuid "032e755d-884d-4e3e-a2bd-c256d225510d")
  3048. )
  3049. (instances
  3050. (project "cx-copter"
  3051. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  3052. (reference "#PWR031")
  3053. (unit 1)
  3054. )
  3055. )
  3056. )
  3057. )
  3058. (symbol
  3059. (lib_id "Device:LED")
  3060. (at 135.89 120.65 90)
  3061. (unit 1)
  3062. (body_style 1)
  3063. (exclude_from_sim no)
  3064. (in_bom yes)
  3065. (on_board yes)
  3066. (in_pos_files yes)
  3067. (dnp no)
  3068. (uuid "e6d3ca9c-0801-4246-814c-e3f7068a13f4")
  3069. (property "Reference" "D1"
  3070. (at 137.16 119.38 90)
  3071. (show_name no)
  3072. (do_not_autoplace no)
  3073. (effects
  3074. (font
  3075. (size 1.27 1.27)
  3076. )
  3077. (justify right)
  3078. )
  3079. )
  3080. (property "Value" "RED"
  3081. (at 137.16 121.92 90)
  3082. (show_name no)
  3083. (do_not_autoplace no)
  3084. (effects
  3085. (font
  3086. (size 1.27 1.27)
  3087. )
  3088. (justify right)
  3089. )
  3090. )
  3091. (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
  3092. (at 135.89 120.65 0)
  3093. (hide yes)
  3094. (show_name no)
  3095. (do_not_autoplace no)
  3096. (effects
  3097. (font
  3098. (size 1.27 1.27)
  3099. )
  3100. )
  3101. )
  3102. (property "Datasheet" ""
  3103. (at 135.89 120.65 0)
  3104. (hide yes)
  3105. (show_name no)
  3106. (do_not_autoplace no)
  3107. (effects
  3108. (font
  3109. (size 1.27 1.27)
  3110. )
  3111. )
  3112. )
  3113. (property "Description" "Light emitting diode"
  3114. (at 135.89 120.65 0)
  3115. (hide yes)
  3116. (show_name no)
  3117. (do_not_autoplace no)
  3118. (effects
  3119. (font
  3120. (size 1.27 1.27)
  3121. )
  3122. )
  3123. )
  3124. (property "Sim.Pins" "1=K 2=A"
  3125. (at 135.89 120.65 0)
  3126. (hide yes)
  3127. (show_name no)
  3128. (do_not_autoplace no)
  3129. (effects
  3130. (font
  3131. (size 1.27 1.27)
  3132. )
  3133. )
  3134. )
  3135. (pin "2"
  3136. (uuid "102fe718-133c-4c72-96ad-a5525834c450")
  3137. )
  3138. (pin "1"
  3139. (uuid "4d10053b-be0d-4fc4-a7da-ef61d75d43db")
  3140. )
  3141. (instances
  3142. (project "cx-copter"
  3143. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  3144. (reference "D1")
  3145. (unit 1)
  3146. )
  3147. )
  3148. )
  3149. )
  3150. (symbol
  3151. (lib_id "power:+5V")
  3152. (at 95.25 48.26 0)
  3153. (unit 1)
  3154. (body_style 1)
  3155. (exclude_from_sim no)
  3156. (in_bom yes)
  3157. (on_board yes)
  3158. (in_pos_files yes)
  3159. (dnp no)
  3160. (fields_autoplaced yes)
  3161. (uuid "edc1a7d5-bb01-4549-b42e-4cddba5d39d6")
  3162. (property "Reference" "#PWR049"
  3163. (at 95.25 52.07 0)
  3164. (hide yes)
  3165. (show_name no)
  3166. (do_not_autoplace no)
  3167. (effects
  3168. (font
  3169. (size 1.27 1.27)
  3170. )
  3171. )
  3172. )
  3173. (property "Value" "+5V"
  3174. (at 95.25 43.18 0)
  3175. (show_name no)
  3176. (do_not_autoplace no)
  3177. (effects
  3178. (font
  3179. (size 1.27 1.27)
  3180. )
  3181. )
  3182. )
  3183. (property "Footprint" ""
  3184. (at 95.25 48.26 0)
  3185. (hide yes)
  3186. (show_name no)
  3187. (do_not_autoplace no)
  3188. (effects
  3189. (font
  3190. (size 1.27 1.27)
  3191. )
  3192. )
  3193. )
  3194. (property "Datasheet" ""
  3195. (at 95.25 48.26 0)
  3196. (hide yes)
  3197. (show_name no)
  3198. (do_not_autoplace no)
  3199. (effects
  3200. (font
  3201. (size 1.27 1.27)
  3202. )
  3203. )
  3204. )
  3205. (property "Description" "Power symbol creates a global label with name \"+5V\""
  3206. (at 95.25 48.26 0)
  3207. (hide yes)
  3208. (show_name no)
  3209. (do_not_autoplace no)
  3210. (effects
  3211. (font
  3212. (size 1.27 1.27)
  3213. )
  3214. )
  3215. )
  3216. (pin "1"
  3217. (uuid "00d82711-27b9-432c-8489-7c7e5299e581")
  3218. )
  3219. (instances
  3220. (project "cx-copter"
  3221. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  3222. (reference "#PWR049")
  3223. (unit 1)
  3224. )
  3225. )
  3226. )
  3227. )
  3228. (symbol
  3229. (lib_id "Device:R")
  3230. (at 189.23 104.14 0)
  3231. (unit 1)
  3232. (body_style 1)
  3233. (exclude_from_sim no)
  3234. (in_bom yes)
  3235. (on_board yes)
  3236. (in_pos_files yes)
  3237. (dnp no)
  3238. (uuid "f0d454f0-0b99-4ff6-b8b3-1620ea50c811")
  3239. (property "Reference" "R21"
  3240. (at 190.246 102.87 0)
  3241. (show_name no)
  3242. (do_not_autoplace no)
  3243. (effects
  3244. (font
  3245. (size 1.27 1.27)
  3246. )
  3247. (justify left)
  3248. )
  3249. )
  3250. (property "Value" "5k1"
  3251. (at 190.246 105.41 0)
  3252. (show_name no)
  3253. (do_not_autoplace no)
  3254. (effects
  3255. (font
  3256. (size 1.27 1.27)
  3257. )
  3258. (justify left)
  3259. )
  3260. )
  3261. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3262. (at 187.452 104.14 90)
  3263. (hide yes)
  3264. (show_name no)
  3265. (do_not_autoplace no)
  3266. (effects
  3267. (font
  3268. (size 1.27 1.27)
  3269. )
  3270. )
  3271. )
  3272. (property "Datasheet" ""
  3273. (at 189.23 104.14 0)
  3274. (hide yes)
  3275. (show_name no)
  3276. (do_not_autoplace no)
  3277. (effects
  3278. (font
  3279. (size 1.27 1.27)
  3280. )
  3281. )
  3282. )
  3283. (property "Description" "Resistor"
  3284. (at 189.23 104.14 0)
  3285. (hide yes)
  3286. (show_name no)
  3287. (do_not_autoplace no)
  3288. (effects
  3289. (font
  3290. (size 1.27 1.27)
  3291. )
  3292. )
  3293. )
  3294. (pin "2"
  3295. (uuid "81d50b19-98e4-4740-a2ee-8e580a300220")
  3296. )
  3297. (pin "1"
  3298. (uuid "3b63bfd3-ffb5-4973-af5c-22615568ec22")
  3299. )
  3300. (instances
  3301. (project "cx-copter"
  3302. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  3303. (reference "R21")
  3304. (unit 1)
  3305. )
  3306. )
  3307. )
  3308. )
  3309. (symbol
  3310. (lib_id "Device:R")
  3311. (at 201.93 110.49 90)
  3312. (unit 1)
  3313. (body_style 1)
  3314. (exclude_from_sim no)
  3315. (in_bom yes)
  3316. (on_board yes)
  3317. (in_pos_files yes)
  3318. (dnp no)
  3319. (uuid "f3bedac5-b99b-46e7-befc-165282a6c0c3")
  3320. (property "Reference" "R22"
  3321. (at 203.962 108.458 90)
  3322. (show_name no)
  3323. (do_not_autoplace no)
  3324. (effects
  3325. (font
  3326. (size 1.27 1.27)
  3327. )
  3328. (justify left)
  3329. )
  3330. )
  3331. (property "Value" "5k1"
  3332. (at 203.962 112.522 90)
  3333. (show_name no)
  3334. (do_not_autoplace no)
  3335. (effects
  3336. (font
  3337. (size 1.27 1.27)
  3338. )
  3339. (justify left)
  3340. )
  3341. )
  3342. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3343. (at 201.93 112.268 90)
  3344. (hide yes)
  3345. (show_name no)
  3346. (do_not_autoplace no)
  3347. (effects
  3348. (font
  3349. (size 1.27 1.27)
  3350. )
  3351. )
  3352. )
  3353. (property "Datasheet" ""
  3354. (at 201.93 110.49 0)
  3355. (hide yes)
  3356. (show_name no)
  3357. (do_not_autoplace no)
  3358. (effects
  3359. (font
  3360. (size 1.27 1.27)
  3361. )
  3362. )
  3363. )
  3364. (property "Description" "Resistor"
  3365. (at 201.93 110.49 0)
  3366. (hide yes)
  3367. (show_name no)
  3368. (do_not_autoplace no)
  3369. (effects
  3370. (font
  3371. (size 1.27 1.27)
  3372. )
  3373. )
  3374. )
  3375. (pin "2"
  3376. (uuid "5b79c302-a388-4a73-8c79-c3117e1bf1d4")
  3377. )
  3378. (pin "1"
  3379. (uuid "12c1285a-83ad-4f6f-94bb-cdd7ef4d9bd4")
  3380. )
  3381. (instances
  3382. (project "cx-copter"
  3383. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  3384. (reference "R22")
  3385. (unit 1)
  3386. )
  3387. )
  3388. )
  3389. )
  3390. (symbol
  3391. (lib_id "Device:R")
  3392. (at 95.25 59.69 0)
  3393. (unit 1)
  3394. (body_style 1)
  3395. (exclude_from_sim no)
  3396. (in_bom yes)
  3397. (on_board yes)
  3398. (in_pos_files yes)
  3399. (dnp no)
  3400. (uuid "fd04ddc7-5236-4f57-a5e2-e2d152620981")
  3401. (property "Reference" "R26"
  3402. (at 96.266 58.42 0)
  3403. (show_name no)
  3404. (do_not_autoplace no)
  3405. (effects
  3406. (font
  3407. (size 1.27 1.27)
  3408. )
  3409. (justify left)
  3410. )
  3411. )
  3412. (property "Value" "10k"
  3413. (at 96.266 60.96 0)
  3414. (show_name no)
  3415. (do_not_autoplace no)
  3416. (effects
  3417. (font
  3418. (size 1.27 1.27)
  3419. )
  3420. (justify left)
  3421. )
  3422. )
  3423. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3424. (at 93.472 59.69 90)
  3425. (hide yes)
  3426. (show_name no)
  3427. (do_not_autoplace no)
  3428. (effects
  3429. (font
  3430. (size 1.27 1.27)
  3431. )
  3432. )
  3433. )
  3434. (property "Datasheet" ""
  3435. (at 95.25 59.69 0)
  3436. (hide yes)
  3437. (show_name no)
  3438. (do_not_autoplace no)
  3439. (effects
  3440. (font
  3441. (size 1.27 1.27)
  3442. )
  3443. )
  3444. )
  3445. (property "Description" "Resistor"
  3446. (at 95.25 59.69 0)
  3447. (hide yes)
  3448. (show_name no)
  3449. (do_not_autoplace no)
  3450. (effects
  3451. (font
  3452. (size 1.27 1.27)
  3453. )
  3454. )
  3455. )
  3456. (pin "2"
  3457. (uuid "a4c304cc-6178-41f4-9c79-c4cbb8a5db31")
  3458. )
  3459. (pin "1"
  3460. (uuid "52f6f7fe-7328-41b2-9f83-514905b3556e")
  3461. )
  3462. (instances
  3463. (project "cx-copter"
  3464. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
  3465. (reference "R26")
  3466. (unit 1)
  3467. )
  3468. )
  3469. )
  3470. )
  3471. )