power_section.kicad_sch 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "a50430db-3406-49fa-80df-4a5162de1e78")
  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:L"
  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" "L"
  177. (at -1.27 0 90)
  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" "L"
  187. (at 1.905 0 90)
  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" "Inductor"
  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 "ki_keywords" "inductor choke coil reactor magnetic"
  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_fp_filters" "Choke_* *Coil* Inductor_* L_*"
  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. (symbol "L_0_1"
  252. (arc
  253. (start 0 2.54)
  254. (mid 0.6323 1.905)
  255. (end 0 1.27)
  256. (stroke
  257. (width 0)
  258. (type default)
  259. )
  260. (fill
  261. (type none)
  262. )
  263. )
  264. (arc
  265. (start 0 1.27)
  266. (mid 0.6323 0.635)
  267. (end 0 0)
  268. (stroke
  269. (width 0)
  270. (type default)
  271. )
  272. (fill
  273. (type none)
  274. )
  275. )
  276. (arc
  277. (start 0 0)
  278. (mid 0.6323 -0.635)
  279. (end 0 -1.27)
  280. (stroke
  281. (width 0)
  282. (type default)
  283. )
  284. (fill
  285. (type none)
  286. )
  287. )
  288. (arc
  289. (start 0 -1.27)
  290. (mid 0.6323 -1.905)
  291. (end 0 -2.54)
  292. (stroke
  293. (width 0)
  294. (type default)
  295. )
  296. (fill
  297. (type none)
  298. )
  299. )
  300. )
  301. (symbol "L_1_1"
  302. (pin passive line
  303. (at 0 3.81 270)
  304. (length 1.27)
  305. (name "1"
  306. (effects
  307. (font
  308. (size 1.27 1.27)
  309. )
  310. )
  311. )
  312. (number "1"
  313. (effects
  314. (font
  315. (size 1.27 1.27)
  316. )
  317. )
  318. )
  319. )
  320. (pin passive line
  321. (at 0 -3.81 90)
  322. (length 1.27)
  323. (name "2"
  324. (effects
  325. (font
  326. (size 1.27 1.27)
  327. )
  328. )
  329. )
  330. (number "2"
  331. (effects
  332. (font
  333. (size 1.27 1.27)
  334. )
  335. )
  336. )
  337. )
  338. )
  339. (embedded_fonts no)
  340. )
  341. (symbol "Device:R"
  342. (pin_numbers
  343. (hide yes)
  344. )
  345. (pin_names
  346. (offset 0)
  347. )
  348. (exclude_from_sim no)
  349. (in_bom yes)
  350. (on_board yes)
  351. (in_pos_files yes)
  352. (duplicate_pin_numbers_are_jumpers no)
  353. (property "Reference" "R"
  354. (at 2.032 0 90)
  355. (show_name no)
  356. (do_not_autoplace no)
  357. (effects
  358. (font
  359. (size 1.27 1.27)
  360. )
  361. )
  362. )
  363. (property "Value" "R"
  364. (at 0 0 90)
  365. (show_name no)
  366. (do_not_autoplace no)
  367. (effects
  368. (font
  369. (size 1.27 1.27)
  370. )
  371. )
  372. )
  373. (property "Footprint" ""
  374. (at -1.778 0 90)
  375. (show_name no)
  376. (do_not_autoplace no)
  377. (hide yes)
  378. (effects
  379. (font
  380. (size 1.27 1.27)
  381. )
  382. )
  383. )
  384. (property "Datasheet" ""
  385. (at 0 0 0)
  386. (show_name no)
  387. (do_not_autoplace no)
  388. (hide yes)
  389. (effects
  390. (font
  391. (size 1.27 1.27)
  392. )
  393. )
  394. )
  395. (property "Description" "Resistor"
  396. (at 0 0 0)
  397. (show_name no)
  398. (do_not_autoplace no)
  399. (hide yes)
  400. (effects
  401. (font
  402. (size 1.27 1.27)
  403. )
  404. )
  405. )
  406. (property "ki_keywords" "R res resistor"
  407. (at 0 0 0)
  408. (show_name no)
  409. (do_not_autoplace no)
  410. (hide yes)
  411. (effects
  412. (font
  413. (size 1.27 1.27)
  414. )
  415. )
  416. )
  417. (property "ki_fp_filters" "R_*"
  418. (at 0 0 0)
  419. (show_name no)
  420. (do_not_autoplace no)
  421. (hide yes)
  422. (effects
  423. (font
  424. (size 1.27 1.27)
  425. )
  426. )
  427. )
  428. (symbol "R_0_1"
  429. (rectangle
  430. (start -1.016 -2.54)
  431. (end 1.016 2.54)
  432. (stroke
  433. (width 0.254)
  434. (type default)
  435. )
  436. (fill
  437. (type none)
  438. )
  439. )
  440. )
  441. (symbol "R_1_1"
  442. (pin passive line
  443. (at 0 3.81 270)
  444. (length 1.27)
  445. (name ""
  446. (effects
  447. (font
  448. (size 1.27 1.27)
  449. )
  450. )
  451. )
  452. (number "1"
  453. (effects
  454. (font
  455. (size 1.27 1.27)
  456. )
  457. )
  458. )
  459. )
  460. (pin passive line
  461. (at 0 -3.81 90)
  462. (length 1.27)
  463. (name ""
  464. (effects
  465. (font
  466. (size 1.27 1.27)
  467. )
  468. )
  469. )
  470. (number "2"
  471. (effects
  472. (font
  473. (size 1.27 1.27)
  474. )
  475. )
  476. )
  477. )
  478. )
  479. (embedded_fonts no)
  480. )
  481. (symbol "Diode:B120-E3"
  482. (pin_numbers
  483. (hide yes)
  484. )
  485. (pin_names
  486. (hide yes)
  487. )
  488. (exclude_from_sim no)
  489. (in_bom yes)
  490. (on_board yes)
  491. (in_pos_files yes)
  492. (duplicate_pin_numbers_are_jumpers no)
  493. (property "Reference" "D"
  494. (at 0 2.54 0)
  495. (show_name no)
  496. (do_not_autoplace no)
  497. (effects
  498. (font
  499. (size 1.27 1.27)
  500. )
  501. )
  502. )
  503. (property "Value" "B120-E3"
  504. (at 0 -2.54 0)
  505. (show_name no)
  506. (do_not_autoplace no)
  507. (effects
  508. (font
  509. (size 1.27 1.27)
  510. )
  511. )
  512. )
  513. (property "Footprint" "Diode_SMD:D_SMA"
  514. (at 0 -4.445 0)
  515. (show_name no)
  516. (do_not_autoplace no)
  517. (hide yes)
  518. (effects
  519. (font
  520. (size 1.27 1.27)
  521. )
  522. )
  523. )
  524. (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
  525. (at 0 0 0)
  526. (show_name no)
  527. (do_not_autoplace no)
  528. (hide yes)
  529. (effects
  530. (font
  531. (size 1.27 1.27)
  532. )
  533. )
  534. )
  535. (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
  536. (at 0 0 0)
  537. (show_name no)
  538. (do_not_autoplace no)
  539. (hide yes)
  540. (effects
  541. (font
  542. (size 1.27 1.27)
  543. )
  544. )
  545. )
  546. (property "ki_keywords" "diode Schottky"
  547. (at 0 0 0)
  548. (show_name no)
  549. (do_not_autoplace no)
  550. (hide yes)
  551. (effects
  552. (font
  553. (size 1.27 1.27)
  554. )
  555. )
  556. )
  557. (property "ki_fp_filters" "D*SMA*"
  558. (at 0 0 0)
  559. (show_name no)
  560. (do_not_autoplace no)
  561. (hide yes)
  562. (effects
  563. (font
  564. (size 1.27 1.27)
  565. )
  566. )
  567. )
  568. (symbol "B120-E3_0_1"
  569. (polyline
  570. (pts
  571. (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635)
  572. )
  573. (stroke
  574. (width 0.254)
  575. (type default)
  576. )
  577. (fill
  578. (type none)
  579. )
  580. )
  581. (polyline
  582. (pts
  583. (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
  584. )
  585. (stroke
  586. (width 0.254)
  587. (type default)
  588. )
  589. (fill
  590. (type none)
  591. )
  592. )
  593. (polyline
  594. (pts
  595. (xy 1.27 0) (xy -1.27 0)
  596. )
  597. (stroke
  598. (width 0)
  599. (type default)
  600. )
  601. (fill
  602. (type none)
  603. )
  604. )
  605. )
  606. (symbol "B120-E3_1_1"
  607. (pin passive line
  608. (at -3.81 0 0)
  609. (length 2.54)
  610. (name "K"
  611. (effects
  612. (font
  613. (size 1.27 1.27)
  614. )
  615. )
  616. )
  617. (number "1"
  618. (effects
  619. (font
  620. (size 1.27 1.27)
  621. )
  622. )
  623. )
  624. )
  625. (pin passive line
  626. (at 3.81 0 180)
  627. (length 2.54)
  628. (name "A"
  629. (effects
  630. (font
  631. (size 1.27 1.27)
  632. )
  633. )
  634. )
  635. (number "2"
  636. (effects
  637. (font
  638. (size 1.27 1.27)
  639. )
  640. )
  641. )
  642. )
  643. )
  644. (embedded_fonts no)
  645. )
  646. (symbol "Regulator_Linear:LM1117MP-3.3"
  647. (exclude_from_sim no)
  648. (in_bom yes)
  649. (on_board yes)
  650. (in_pos_files yes)
  651. (duplicate_pin_numbers_are_jumpers no)
  652. (property "Reference" "U"
  653. (at -3.81 3.175 0)
  654. (show_name no)
  655. (do_not_autoplace no)
  656. (effects
  657. (font
  658. (size 1.27 1.27)
  659. )
  660. )
  661. )
  662. (property "Value" "LM1117MP-3.3"
  663. (at 0 3.175 0)
  664. (show_name no)
  665. (do_not_autoplace no)
  666. (effects
  667. (font
  668. (size 1.27 1.27)
  669. )
  670. (justify left)
  671. )
  672. )
  673. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
  674. (at 0 0 0)
  675. (show_name no)
  676. (do_not_autoplace no)
  677. (hide yes)
  678. (effects
  679. (font
  680. (size 1.27 1.27)
  681. )
  682. )
  683. )
  684. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  685. (at 0 0 0)
  686. (show_name no)
  687. (do_not_autoplace no)
  688. (hide yes)
  689. (effects
  690. (font
  691. (size 1.27 1.27)
  692. )
  693. )
  694. )
  695. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
  696. (at 0 0 0)
  697. (show_name no)
  698. (do_not_autoplace no)
  699. (hide yes)
  700. (effects
  701. (font
  702. (size 1.27 1.27)
  703. )
  704. )
  705. )
  706. (property "ki_keywords" "linear regulator ldo fixed positive"
  707. (at 0 0 0)
  708. (show_name no)
  709. (do_not_autoplace no)
  710. (hide yes)
  711. (effects
  712. (font
  713. (size 1.27 1.27)
  714. )
  715. )
  716. )
  717. (property "ki_fp_filters" "SOT?223*"
  718. (at 0 0 0)
  719. (show_name no)
  720. (do_not_autoplace no)
  721. (hide yes)
  722. (effects
  723. (font
  724. (size 1.27 1.27)
  725. )
  726. )
  727. )
  728. (symbol "LM1117MP-3.3_0_1"
  729. (rectangle
  730. (start -5.08 -5.08)
  731. (end 5.08 1.905)
  732. (stroke
  733. (width 0.254)
  734. (type default)
  735. )
  736. (fill
  737. (type background)
  738. )
  739. )
  740. )
  741. (symbol "LM1117MP-3.3_1_1"
  742. (pin power_in line
  743. (at 0 -7.62 90)
  744. (length 2.54)
  745. (name "GND"
  746. (effects
  747. (font
  748. (size 1.27 1.27)
  749. )
  750. )
  751. )
  752. (number "1"
  753. (effects
  754. (font
  755. (size 1.27 1.27)
  756. )
  757. )
  758. )
  759. )
  760. (pin power_out line
  761. (at 7.62 0 180)
  762. (length 2.54)
  763. (name "VO"
  764. (effects
  765. (font
  766. (size 1.27 1.27)
  767. )
  768. )
  769. )
  770. (number "2"
  771. (effects
  772. (font
  773. (size 1.27 1.27)
  774. )
  775. )
  776. )
  777. )
  778. (pin power_in line
  779. (at -7.62 0 0)
  780. (length 2.54)
  781. (name "VI"
  782. (effects
  783. (font
  784. (size 1.27 1.27)
  785. )
  786. )
  787. )
  788. (number "3"
  789. (effects
  790. (font
  791. (size 1.27 1.27)
  792. )
  793. )
  794. )
  795. )
  796. )
  797. (embedded_fonts no)
  798. )
  799. (symbol "Regulator_Switching:MT3608"
  800. (exclude_from_sim no)
  801. (in_bom yes)
  802. (on_board yes)
  803. (in_pos_files yes)
  804. (duplicate_pin_numbers_are_jumpers no)
  805. (property "Reference" "U"
  806. (at -2.54 8.89 0)
  807. (show_name no)
  808. (do_not_autoplace no)
  809. (effects
  810. (font
  811. (size 1.27 1.27)
  812. )
  813. (justify left)
  814. )
  815. )
  816. (property "Value" "MT3608"
  817. (at -3.81 6.35 0)
  818. (show_name no)
  819. (do_not_autoplace no)
  820. (effects
  821. (font
  822. (size 1.27 1.27)
  823. )
  824. (justify left)
  825. )
  826. )
  827. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6"
  828. (at 1.27 -6.35 0)
  829. (show_name no)
  830. (do_not_autoplace no)
  831. (hide yes)
  832. (effects
  833. (font
  834. (size 1.27 1.27)
  835. (italic yes)
  836. )
  837. (justify left)
  838. )
  839. )
  840. (property "Datasheet" "https://www.olimex.com/Products/Breadboarding/BB-PWR-3608/resources/MT3608.pdf"
  841. (at -6.35 11.43 0)
  842. (show_name no)
  843. (do_not_autoplace no)
  844. (hide yes)
  845. (effects
  846. (font
  847. (size 1.27 1.27)
  848. )
  849. )
  850. )
  851. (property "Description" "High Efficiency 1.2MHz 2A Step Up Converter, 2-24V Vin, 28V Vout, 4A current limit, 1.2MHz, SOT23-6"
  852. (at 0 0 0)
  853. (show_name no)
  854. (do_not_autoplace no)
  855. (hide yes)
  856. (effects
  857. (font
  858. (size 1.27 1.27)
  859. )
  860. )
  861. )
  862. (property "ki_keywords" "Step-Up Boost DC-DC Regulator Adjustable"
  863. (at 0 0 0)
  864. (show_name no)
  865. (do_not_autoplace no)
  866. (hide yes)
  867. (effects
  868. (font
  869. (size 1.27 1.27)
  870. )
  871. )
  872. )
  873. (property "ki_fp_filters" "SOT*23*"
  874. (at 0 0 0)
  875. (show_name no)
  876. (do_not_autoplace no)
  877. (hide yes)
  878. (effects
  879. (font
  880. (size 1.27 1.27)
  881. )
  882. )
  883. )
  884. (symbol "MT3608_0_1"
  885. (rectangle
  886. (start -5.08 5.08)
  887. (end 5.08 -5.08)
  888. (stroke
  889. (width 0.254)
  890. (type default)
  891. )
  892. (fill
  893. (type background)
  894. )
  895. )
  896. )
  897. (symbol "MT3608_1_1"
  898. (pin passive line
  899. (at 7.62 2.54 180)
  900. (length 2.54)
  901. (name "SW"
  902. (effects
  903. (font
  904. (size 1.27 1.27)
  905. )
  906. )
  907. )
  908. (number "1"
  909. (effects
  910. (font
  911. (size 1.27 1.27)
  912. )
  913. )
  914. )
  915. )
  916. (pin power_in line
  917. (at 0 -7.62 90)
  918. (length 2.54)
  919. (name "GND"
  920. (effects
  921. (font
  922. (size 1.27 1.27)
  923. )
  924. )
  925. )
  926. (number "2"
  927. (effects
  928. (font
  929. (size 1.27 1.27)
  930. )
  931. )
  932. )
  933. )
  934. (pin input line
  935. (at 7.62 -2.54 180)
  936. (length 2.54)
  937. (name "FB"
  938. (effects
  939. (font
  940. (size 1.27 1.27)
  941. )
  942. )
  943. )
  944. (number "3"
  945. (effects
  946. (font
  947. (size 1.27 1.27)
  948. )
  949. )
  950. )
  951. )
  952. (pin input line
  953. (at -7.62 -2.54 0)
  954. (length 2.54)
  955. (name "EN"
  956. (effects
  957. (font
  958. (size 1.27 1.27)
  959. )
  960. )
  961. )
  962. (number "4"
  963. (effects
  964. (font
  965. (size 1.27 1.27)
  966. )
  967. )
  968. )
  969. )
  970. (pin power_in line
  971. (at -7.62 2.54 0)
  972. (length 2.54)
  973. (name "IN"
  974. (effects
  975. (font
  976. (size 1.27 1.27)
  977. )
  978. )
  979. )
  980. (number "5"
  981. (effects
  982. (font
  983. (size 1.27 1.27)
  984. )
  985. )
  986. )
  987. )
  988. (pin no_connect line
  989. (at 5.08 0 180)
  990. (length 2.54)
  991. (hide yes)
  992. (name "NC"
  993. (effects
  994. (font
  995. (size 1.27 1.27)
  996. )
  997. )
  998. )
  999. (number "6"
  1000. (effects
  1001. (font
  1002. (size 1.27 1.27)
  1003. )
  1004. )
  1005. )
  1006. )
  1007. )
  1008. (embedded_fonts no)
  1009. )
  1010. (symbol "power:+3V3"
  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 -3.81 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" "+3V3"
  1036. (at 0 3.556 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 \"+3V3\""
  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 "+3V3_0_1"
  1090. (polyline
  1091. (pts
  1092. (xy -0.762 1.27) (xy 0 2.54)
  1093. )
  1094. (stroke
  1095. (width 0)
  1096. (type default)
  1097. )
  1098. (fill
  1099. (type none)
  1100. )
  1101. )
  1102. (polyline
  1103. (pts
  1104. (xy 0 2.54) (xy 0.762 1.27)
  1105. )
  1106. (stroke
  1107. (width 0)
  1108. (type default)
  1109. )
  1110. (fill
  1111. (type none)
  1112. )
  1113. )
  1114. (polyline
  1115. (pts
  1116. (xy 0 0) (xy 0 2.54)
  1117. )
  1118. (stroke
  1119. (width 0)
  1120. (type default)
  1121. )
  1122. (fill
  1123. (type none)
  1124. )
  1125. )
  1126. )
  1127. (symbol "+3V3_1_1"
  1128. (pin power_in line
  1129. (at 0 0 90)
  1130. (length 0)
  1131. (name ""
  1132. (effects
  1133. (font
  1134. (size 1.27 1.27)
  1135. )
  1136. )
  1137. )
  1138. (number "1"
  1139. (effects
  1140. (font
  1141. (size 1.27 1.27)
  1142. )
  1143. )
  1144. )
  1145. )
  1146. )
  1147. (embedded_fonts no)
  1148. )
  1149. (symbol "power:+5V"
  1150. (power global)
  1151. (pin_numbers
  1152. (hide yes)
  1153. )
  1154. (pin_names
  1155. (offset 0)
  1156. (hide yes)
  1157. )
  1158. (exclude_from_sim no)
  1159. (in_bom yes)
  1160. (on_board yes)
  1161. (in_pos_files yes)
  1162. (duplicate_pin_numbers_are_jumpers no)
  1163. (property "Reference" "#PWR"
  1164. (at 0 -3.81 0)
  1165. (show_name no)
  1166. (do_not_autoplace no)
  1167. (hide yes)
  1168. (effects
  1169. (font
  1170. (size 1.27 1.27)
  1171. )
  1172. )
  1173. )
  1174. (property "Value" "+5V"
  1175. (at 0 3.556 0)
  1176. (show_name no)
  1177. (do_not_autoplace no)
  1178. (effects
  1179. (font
  1180. (size 1.27 1.27)
  1181. )
  1182. )
  1183. )
  1184. (property "Footprint" ""
  1185. (at 0 0 0)
  1186. (show_name no)
  1187. (do_not_autoplace no)
  1188. (hide yes)
  1189. (effects
  1190. (font
  1191. (size 1.27 1.27)
  1192. )
  1193. )
  1194. )
  1195. (property "Datasheet" ""
  1196. (at 0 0 0)
  1197. (show_name no)
  1198. (do_not_autoplace no)
  1199. (hide yes)
  1200. (effects
  1201. (font
  1202. (size 1.27 1.27)
  1203. )
  1204. )
  1205. )
  1206. (property "Description" "Power symbol creates a global label with name \"+5V\""
  1207. (at 0 0 0)
  1208. (show_name no)
  1209. (do_not_autoplace no)
  1210. (hide yes)
  1211. (effects
  1212. (font
  1213. (size 1.27 1.27)
  1214. )
  1215. )
  1216. )
  1217. (property "ki_keywords" "global power"
  1218. (at 0 0 0)
  1219. (show_name no)
  1220. (do_not_autoplace no)
  1221. (hide yes)
  1222. (effects
  1223. (font
  1224. (size 1.27 1.27)
  1225. )
  1226. )
  1227. )
  1228. (symbol "+5V_0_1"
  1229. (polyline
  1230. (pts
  1231. (xy -0.762 1.27) (xy 0 2.54)
  1232. )
  1233. (stroke
  1234. (width 0)
  1235. (type default)
  1236. )
  1237. (fill
  1238. (type none)
  1239. )
  1240. )
  1241. (polyline
  1242. (pts
  1243. (xy 0 2.54) (xy 0.762 1.27)
  1244. )
  1245. (stroke
  1246. (width 0)
  1247. (type default)
  1248. )
  1249. (fill
  1250. (type none)
  1251. )
  1252. )
  1253. (polyline
  1254. (pts
  1255. (xy 0 0) (xy 0 2.54)
  1256. )
  1257. (stroke
  1258. (width 0)
  1259. (type default)
  1260. )
  1261. (fill
  1262. (type none)
  1263. )
  1264. )
  1265. )
  1266. (symbol "+5V_1_1"
  1267. (pin power_in line
  1268. (at 0 0 90)
  1269. (length 0)
  1270. (name ""
  1271. (effects
  1272. (font
  1273. (size 1.27 1.27)
  1274. )
  1275. )
  1276. )
  1277. (number "1"
  1278. (effects
  1279. (font
  1280. (size 1.27 1.27)
  1281. )
  1282. )
  1283. )
  1284. )
  1285. )
  1286. (embedded_fonts no)
  1287. )
  1288. (symbol "power:GND"
  1289. (power global)
  1290. (pin_numbers
  1291. (hide yes)
  1292. )
  1293. (pin_names
  1294. (offset 0)
  1295. (hide yes)
  1296. )
  1297. (exclude_from_sim no)
  1298. (in_bom yes)
  1299. (on_board yes)
  1300. (in_pos_files yes)
  1301. (duplicate_pin_numbers_are_jumpers no)
  1302. (property "Reference" "#PWR"
  1303. (at 0 -6.35 0)
  1304. (show_name no)
  1305. (do_not_autoplace no)
  1306. (hide yes)
  1307. (effects
  1308. (font
  1309. (size 1.27 1.27)
  1310. )
  1311. )
  1312. )
  1313. (property "Value" "GND"
  1314. (at 0 -3.81 0)
  1315. (show_name no)
  1316. (do_not_autoplace no)
  1317. (effects
  1318. (font
  1319. (size 1.27 1.27)
  1320. )
  1321. )
  1322. )
  1323. (property "Footprint" ""
  1324. (at 0 0 0)
  1325. (show_name no)
  1326. (do_not_autoplace no)
  1327. (hide yes)
  1328. (effects
  1329. (font
  1330. (size 1.27 1.27)
  1331. )
  1332. )
  1333. )
  1334. (property "Datasheet" ""
  1335. (at 0 0 0)
  1336. (show_name no)
  1337. (do_not_autoplace no)
  1338. (hide yes)
  1339. (effects
  1340. (font
  1341. (size 1.27 1.27)
  1342. )
  1343. )
  1344. )
  1345. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1346. (at 0 0 0)
  1347. (show_name no)
  1348. (do_not_autoplace no)
  1349. (hide yes)
  1350. (effects
  1351. (font
  1352. (size 1.27 1.27)
  1353. )
  1354. )
  1355. )
  1356. (property "ki_keywords" "global power"
  1357. (at 0 0 0)
  1358. (show_name no)
  1359. (do_not_autoplace no)
  1360. (hide yes)
  1361. (effects
  1362. (font
  1363. (size 1.27 1.27)
  1364. )
  1365. )
  1366. )
  1367. (symbol "GND_0_1"
  1368. (polyline
  1369. (pts
  1370. (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)
  1371. )
  1372. (stroke
  1373. (width 0)
  1374. (type default)
  1375. )
  1376. (fill
  1377. (type none)
  1378. )
  1379. )
  1380. )
  1381. (symbol "GND_1_1"
  1382. (pin power_in line
  1383. (at 0 0 270)
  1384. (length 0)
  1385. (name ""
  1386. (effects
  1387. (font
  1388. (size 1.27 1.27)
  1389. )
  1390. )
  1391. )
  1392. (number "1"
  1393. (effects
  1394. (font
  1395. (size 1.27 1.27)
  1396. )
  1397. )
  1398. )
  1399. )
  1400. )
  1401. (embedded_fonts no)
  1402. )
  1403. (symbol "power:VDD"
  1404. (power global)
  1405. (pin_numbers
  1406. (hide yes)
  1407. )
  1408. (pin_names
  1409. (offset 0)
  1410. (hide yes)
  1411. )
  1412. (exclude_from_sim no)
  1413. (in_bom yes)
  1414. (on_board yes)
  1415. (in_pos_files yes)
  1416. (duplicate_pin_numbers_are_jumpers no)
  1417. (property "Reference" "#PWR"
  1418. (at 0 -3.81 0)
  1419. (show_name no)
  1420. (do_not_autoplace no)
  1421. (hide yes)
  1422. (effects
  1423. (font
  1424. (size 1.27 1.27)
  1425. )
  1426. )
  1427. )
  1428. (property "Value" "VDD"
  1429. (at 0 3.556 0)
  1430. (show_name no)
  1431. (do_not_autoplace no)
  1432. (effects
  1433. (font
  1434. (size 1.27 1.27)
  1435. )
  1436. )
  1437. )
  1438. (property "Footprint" ""
  1439. (at 0 0 0)
  1440. (show_name no)
  1441. (do_not_autoplace no)
  1442. (hide yes)
  1443. (effects
  1444. (font
  1445. (size 1.27 1.27)
  1446. )
  1447. )
  1448. )
  1449. (property "Datasheet" ""
  1450. (at 0 0 0)
  1451. (show_name no)
  1452. (do_not_autoplace no)
  1453. (hide yes)
  1454. (effects
  1455. (font
  1456. (size 1.27 1.27)
  1457. )
  1458. )
  1459. )
  1460. (property "Description" "Power symbol creates a global label with name \"VDD\""
  1461. (at 0 0 0)
  1462. (show_name no)
  1463. (do_not_autoplace no)
  1464. (hide yes)
  1465. (effects
  1466. (font
  1467. (size 1.27 1.27)
  1468. )
  1469. )
  1470. )
  1471. (property "ki_keywords" "global power"
  1472. (at 0 0 0)
  1473. (show_name no)
  1474. (do_not_autoplace no)
  1475. (hide yes)
  1476. (effects
  1477. (font
  1478. (size 1.27 1.27)
  1479. )
  1480. )
  1481. )
  1482. (symbol "VDD_0_1"
  1483. (polyline
  1484. (pts
  1485. (xy -0.762 1.27) (xy 0 2.54)
  1486. )
  1487. (stroke
  1488. (width 0)
  1489. (type default)
  1490. )
  1491. (fill
  1492. (type none)
  1493. )
  1494. )
  1495. (polyline
  1496. (pts
  1497. (xy 0 2.54) (xy 0.762 1.27)
  1498. )
  1499. (stroke
  1500. (width 0)
  1501. (type default)
  1502. )
  1503. (fill
  1504. (type none)
  1505. )
  1506. )
  1507. (polyline
  1508. (pts
  1509. (xy 0 0) (xy 0 2.54)
  1510. )
  1511. (stroke
  1512. (width 0)
  1513. (type default)
  1514. )
  1515. (fill
  1516. (type none)
  1517. )
  1518. )
  1519. )
  1520. (symbol "VDD_1_1"
  1521. (pin power_in line
  1522. (at 0 0 90)
  1523. (length 0)
  1524. (name ""
  1525. (effects
  1526. (font
  1527. (size 1.27 1.27)
  1528. )
  1529. )
  1530. )
  1531. (number "1"
  1532. (effects
  1533. (font
  1534. (size 1.27 1.27)
  1535. )
  1536. )
  1537. )
  1538. )
  1539. )
  1540. (embedded_fonts no)
  1541. )
  1542. )
  1543. (text_box "The capacitance of the capacitors at the input should be greater than or equal to 22uF. The coil should have an inductance above 4.7uH. The system requires 5V, the converter input will not drop below 3V. The current consumption of the systems is a maximum of 1A, Vripple should be approximately 10mV,"
  1544. (exclude_from_sim no)
  1545. (at 30.48 14.48 0)
  1546. (size 36.83 22.35)
  1547. (margins 0.9525 0.9525 0.9525 0.9525)
  1548. (stroke
  1549. (width 0)
  1550. (type solid)
  1551. )
  1552. (fill
  1553. (type none)
  1554. )
  1555. (effects
  1556. (font
  1557. (size 1.27 1.27)
  1558. )
  1559. (justify top)
  1560. )
  1561. (uuid "e64a22ae-7f17-4d06-92e5-f0d475950599")
  1562. )
  1563. (junction
  1564. (at 125.73 48.26)
  1565. (diameter 0)
  1566. (color 0 0 0 0)
  1567. (uuid "00e10ca3-c325-49b9-85b7-7ca9b1edfd0a")
  1568. )
  1569. (junction
  1570. (at 125.73 58.42)
  1571. (diameter 0)
  1572. (color 0 0 0 0)
  1573. (uuid "04fdaa6a-79f7-4697-866e-f1cfc5a30dfd")
  1574. )
  1575. (junction
  1576. (at 208.28 80.01)
  1577. (diameter 0)
  1578. (color 0 0 0 0)
  1579. (uuid "1d2b552f-655b-4bde-a598-d1c57f0de899")
  1580. )
  1581. (junction
  1582. (at 67.31 48.26)
  1583. (diameter 0)
  1584. (color 0 0 0 0)
  1585. (uuid "312721a8-f102-4c9a-95c1-ffe068653bb9")
  1586. )
  1587. (junction
  1588. (at 137.16 48.26)
  1589. (diameter 0)
  1590. (color 0 0 0 0)
  1591. (uuid "312e33b3-ffd5-426b-bb1f-c7e027d3870e")
  1592. )
  1593. (junction
  1594. (at 45.72 48.26)
  1595. (diameter 0)
  1596. (color 0 0 0 0)
  1597. (uuid "39696836-06bd-44fd-a909-fd555d9b3af2")
  1598. )
  1599. (junction
  1600. (at 58.42 48.26)
  1601. (diameter 0)
  1602. (color 0 0 0 0)
  1603. (uuid "3eb7ba24-966b-4505-bb99-375bac96c917")
  1604. )
  1605. (junction
  1606. (at 179.07 80.01)
  1607. (diameter 0)
  1608. (color 0 0 0 0)
  1609. (uuid "46651edd-f51c-478a-a896-c4a8a7e938b5")
  1610. )
  1611. (junction
  1612. (at 165.1 64.77)
  1613. (diameter 0)
  1614. (color 0 0 0 0)
  1615. (uuid "4d410129-a726-4c73-9b38-2f418625dfed")
  1616. )
  1617. (junction
  1618. (at 165.1 80.01)
  1619. (diameter 0)
  1620. (color 0 0 0 0)
  1621. (uuid "7026c490-8c23-4aa0-a5a1-de32b9ecc2f0")
  1622. )
  1623. (junction
  1624. (at 220.98 90.17)
  1625. (diameter 0)
  1626. (color 0 0 0 0)
  1627. (uuid "96b25933-7e88-44b3-9162-b0ce08378436")
  1628. )
  1629. (junction
  1630. (at 33.02 48.26)
  1631. (diameter 0)
  1632. (color 0 0 0 0)
  1633. (uuid "979f2df1-e34b-4b06-9d6c-dfddf1302258")
  1634. )
  1635. (junction
  1636. (at 165.1 90.17)
  1637. (diameter 0)
  1638. (color 0 0 0 0)
  1639. (uuid "9caf5bd5-d8fb-4c2b-bade-4f9de47a5040")
  1640. )
  1641. (junction
  1642. (at 232.41 64.77)
  1643. (diameter 0)
  1644. (color 0 0 0 0)
  1645. (uuid "a7649594-c2f8-4f70-9eec-6ddfe7b6252f")
  1646. )
  1647. (junction
  1648. (at 232.41 90.17)
  1649. (diameter 0)
  1650. (color 0 0 0 0)
  1651. (uuid "abba3e74-97dd-4ac2-9104-42fce95ec71d")
  1652. )
  1653. (junction
  1654. (at 220.98 80.01)
  1655. (diameter 0)
  1656. (color 0 0 0 0)
  1657. (uuid "be0865be-f822-40ac-b1b6-d718d862af3b")
  1658. )
  1659. (junction
  1660. (at 232.41 80.01)
  1661. (diameter 0)
  1662. (color 0 0 0 0)
  1663. (uuid "c23d57ba-7472-4799-a6c5-62cfb3ec8220")
  1664. )
  1665. (junction
  1666. (at 106.68 80.01)
  1667. (diameter 0)
  1668. (color 0 0 0 0)
  1669. (uuid "d34d4e03-b9cd-472e-80bf-0fa48c9e09a7")
  1670. )
  1671. (junction
  1672. (at 67.31 74.93)
  1673. (diameter 0)
  1674. (color 0 0 0 0)
  1675. (uuid "d4112dee-0ae9-46ba-bee4-ac4c795a2106")
  1676. )
  1677. (junction
  1678. (at 45.72 58.42)
  1679. (diameter 0)
  1680. (color 0 0 0 0)
  1681. (uuid "e89cab14-ecce-44be-85ca-227b4482c0f6")
  1682. )
  1683. (junction
  1684. (at 113.03 48.26)
  1685. (diameter 0)
  1686. (color 0 0 0 0)
  1687. (uuid "ead10abc-d72c-4d90-85b2-87bb2e5f0294")
  1688. )
  1689. (junction
  1690. (at 137.16 58.42)
  1691. (diameter 0)
  1692. (color 0 0 0 0)
  1693. (uuid "eb58c1f6-e623-42c1-a4d1-45254522969b")
  1694. )
  1695. (junction
  1696. (at 33.02 58.42)
  1697. (diameter 0)
  1698. (color 0 0 0 0)
  1699. (uuid "f411dff1-ea60-4c89-971c-2cc5e412b104")
  1700. )
  1701. (junction
  1702. (at 106.68 48.26)
  1703. (diameter 0)
  1704. (color 0 0 0 0)
  1705. (uuid "f72e252c-4235-4067-9da4-4740f55f6686")
  1706. )
  1707. (junction
  1708. (at 87.63 48.26)
  1709. (diameter 0)
  1710. (color 0 0 0 0)
  1711. (uuid "fe580f24-9259-4d0e-a646-112e7cf82e81")
  1712. )
  1713. (wire
  1714. (pts
  1715. (xy 85.09 80.01) (xy 106.68 80.01)
  1716. )
  1717. (stroke
  1718. (width 0)
  1719. (type default)
  1720. )
  1721. (uuid "01d1daec-bf4c-4947-9f73-0cc8a88b8a41")
  1722. )
  1723. (wire
  1724. (pts
  1725. (xy 165.1 64.77) (xy 191.77 64.77)
  1726. )
  1727. (stroke
  1728. (width 0)
  1729. (type default)
  1730. )
  1731. (uuid "07eae717-1b43-4be7-a511-31bf0cd6822e")
  1732. )
  1733. (wire
  1734. (pts
  1735. (xy 125.73 57.15) (xy 125.73 58.42)
  1736. )
  1737. (stroke
  1738. (width 0)
  1739. (type default)
  1740. )
  1741. (uuid "0cc169fb-f1b8-4ca4-bd71-744a0e907d32")
  1742. )
  1743. (wire
  1744. (pts
  1745. (xy 67.31 48.26) (xy 72.39 48.26)
  1746. )
  1747. (stroke
  1748. (width 0)
  1749. (type default)
  1750. )
  1751. (uuid "0cfe9f0c-a8ed-4264-9959-f4c2d6f4818b")
  1752. )
  1753. (wire
  1754. (pts
  1755. (xy 232.41 91.44) (xy 232.41 90.17)
  1756. )
  1757. (stroke
  1758. (width 0)
  1759. (type default)
  1760. )
  1761. (uuid "0edac52f-bffa-4045-af1c-ca5486b22721")
  1762. )
  1763. (wire
  1764. (pts
  1765. (xy 137.16 48.26) (xy 140.97 48.26)
  1766. )
  1767. (stroke
  1768. (width 0)
  1769. (type default)
  1770. )
  1771. (uuid "0f8c6b49-1eb1-47bc-bef8-46c43d56801c")
  1772. )
  1773. (wire
  1774. (pts
  1775. (xy 203.2 80.01) (xy 208.28 80.01)
  1776. )
  1777. (stroke
  1778. (width 0)
  1779. (type default)
  1780. )
  1781. (uuid "0ffd4927-7a4f-414f-a967-317948e66913")
  1782. )
  1783. (wire
  1784. (pts
  1785. (xy 33.02 48.26) (xy 45.72 48.26)
  1786. )
  1787. (stroke
  1788. (width 0)
  1789. (type default)
  1790. )
  1791. (uuid "1e312507-ff91-4ff1-a696-0213d7c53163")
  1792. )
  1793. (wire
  1794. (pts
  1795. (xy 45.72 48.26) (xy 45.72 49.53)
  1796. )
  1797. (stroke
  1798. (width 0)
  1799. (type default)
  1800. )
  1801. (uuid "21ce7289-19d8-4a85-96dd-8e2fd3a92008")
  1802. )
  1803. (wire
  1804. (pts
  1805. (xy 67.31 74.93) (xy 67.31 80.01)
  1806. )
  1807. (stroke
  1808. (width 0)
  1809. (type default)
  1810. )
  1811. (uuid "27d3a472-31fe-4563-862d-a3c5a108fb18")
  1812. )
  1813. (wire
  1814. (pts
  1815. (xy 87.63 74.93) (xy 85.09 74.93)
  1816. )
  1817. (stroke
  1818. (width 0)
  1819. (type default)
  1820. )
  1821. (uuid "28549bf6-6975-47b2-893a-674668729aa8")
  1822. )
  1823. (wire
  1824. (pts
  1825. (xy 58.42 57.15) (xy 58.42 58.42)
  1826. )
  1827. (stroke
  1828. (width 0)
  1829. (type default)
  1830. )
  1831. (uuid "2ae6eed4-5a13-47ac-a2cd-ca2f9580d0ce")
  1832. )
  1833. (wire
  1834. (pts
  1835. (xy 80.01 48.26) (xy 87.63 48.26)
  1836. )
  1837. (stroke
  1838. (width 0)
  1839. (type default)
  1840. )
  1841. (uuid "2d72b476-6280-4d66-a347-191fc648e15e")
  1842. )
  1843. (wire
  1844. (pts
  1845. (xy 208.28 80.01) (xy 220.98 80.01)
  1846. )
  1847. (stroke
  1848. (width 0)
  1849. (type default)
  1850. )
  1851. (uuid "347484db-7740-421b-a8b0-b1be4706f6d6")
  1852. )
  1853. (wire
  1854. (pts
  1855. (xy 106.68 48.26) (xy 106.68 71.12)
  1856. )
  1857. (stroke
  1858. (width 0)
  1859. (type default)
  1860. )
  1861. (uuid "36055fd1-0470-4470-921e-319ef6f4a88e")
  1862. )
  1863. (wire
  1864. (pts
  1865. (xy 208.28 90.17) (xy 220.98 90.17)
  1866. )
  1867. (stroke
  1868. (width 0)
  1869. (type default)
  1870. )
  1871. (uuid "3ab63b9e-7af6-4671-99c4-3af00fc859a6")
  1872. )
  1873. (wire
  1874. (pts
  1875. (xy 165.1 88.9) (xy 165.1 90.17)
  1876. )
  1877. (stroke
  1878. (width 0)
  1879. (type default)
  1880. )
  1881. (uuid "3c659545-97a9-48d1-99a0-9904c7cbb1ee")
  1882. )
  1883. (wire
  1884. (pts
  1885. (xy 199.39 64.77) (xy 232.41 64.77)
  1886. )
  1887. (stroke
  1888. (width 0)
  1889. (type default)
  1890. )
  1891. (uuid "45fc1ab3-2107-417c-98ab-51eb09cdba4c")
  1892. )
  1893. (wire
  1894. (pts
  1895. (xy 45.72 58.42) (xy 58.42 58.42)
  1896. )
  1897. (stroke
  1898. (width 0)
  1899. (type default)
  1900. )
  1901. (uuid "49eaebca-fa5d-447e-95e8-ed1293fe3f91")
  1902. )
  1903. (wire
  1904. (pts
  1905. (xy 67.31 48.26) (xy 67.31 74.93)
  1906. )
  1907. (stroke
  1908. (width 0)
  1909. (type default)
  1910. )
  1911. (uuid "4f1c5bc6-1389-46c4-9499-84b25e9638f9")
  1912. )
  1913. (wire
  1914. (pts
  1915. (xy 208.28 88.9) (xy 208.28 90.17)
  1916. )
  1917. (stroke
  1918. (width 0)
  1919. (type default)
  1920. )
  1921. (uuid "51b3bd12-fcd7-48af-843e-eb537dcd651d")
  1922. )
  1923. (wire
  1924. (pts
  1925. (xy 100.33 48.26) (xy 106.68 48.26)
  1926. )
  1927. (stroke
  1928. (width 0)
  1929. (type default)
  1930. )
  1931. (uuid "55dfe7e5-b854-4103-a576-32a17e17432c")
  1932. )
  1933. (wire
  1934. (pts
  1935. (xy 232.41 63.5) (xy 232.41 64.77)
  1936. )
  1937. (stroke
  1938. (width 0)
  1939. (type default)
  1940. )
  1941. (uuid "56601203-f376-4607-a2d8-fe9d4596392d")
  1942. )
  1943. (wire
  1944. (pts
  1945. (xy 220.98 80.01) (xy 220.98 81.28)
  1946. )
  1947. (stroke
  1948. (width 0)
  1949. (type default)
  1950. )
  1951. (uuid "58047417-a95b-484e-8edf-3c6117a2da88")
  1952. )
  1953. (wire
  1954. (pts
  1955. (xy 179.07 80.01) (xy 187.96 80.01)
  1956. )
  1957. (stroke
  1958. (width 0)
  1959. (type default)
  1960. )
  1961. (uuid "5887e244-2833-487c-b538-6e3fe3b6c920")
  1962. )
  1963. (wire
  1964. (pts
  1965. (xy 125.73 48.26) (xy 137.16 48.26)
  1966. )
  1967. (stroke
  1968. (width 0)
  1969. (type default)
  1970. )
  1971. (uuid "5cd837b2-c072-45eb-8360-50c6acf1ab44")
  1972. )
  1973. (wire
  1974. (pts
  1975. (xy 92.71 48.26) (xy 87.63 48.26)
  1976. )
  1977. (stroke
  1978. (width 0)
  1979. (type default)
  1980. )
  1981. (uuid "61aea54e-b9a3-4fe4-94ea-3c63a7fffa06")
  1982. )
  1983. (wire
  1984. (pts
  1985. (xy 165.1 80.01) (xy 179.07 80.01)
  1986. )
  1987. (stroke
  1988. (width 0)
  1989. (type default)
  1990. )
  1991. (uuid "6e75301a-60f1-42a3-9c6c-7296fc53c060")
  1992. )
  1993. (wire
  1994. (pts
  1995. (xy 77.47 85.09) (xy 77.47 86.36)
  1996. )
  1997. (stroke
  1998. (width 0)
  1999. (type default)
  2000. )
  2001. (uuid "724802fa-10e5-4882-8526-7352a6e45a18")
  2002. )
  2003. (wire
  2004. (pts
  2005. (xy 33.02 49.53) (xy 33.02 48.26)
  2006. )
  2007. (stroke
  2008. (width 0)
  2009. (type default)
  2010. )
  2011. (uuid "73552125-948d-4fda-9b2b-077d5ffd8106")
  2012. )
  2013. (wire
  2014. (pts
  2015. (xy 113.03 57.15) (xy 113.03 58.42)
  2016. )
  2017. (stroke
  2018. (width 0)
  2019. (type default)
  2020. )
  2021. (uuid "746bc8b7-5b10-493d-a65c-397c9a319dec")
  2022. )
  2023. (wire
  2024. (pts
  2025. (xy 232.41 88.9) (xy 232.41 90.17)
  2026. )
  2027. (stroke
  2028. (width 0)
  2029. (type default)
  2030. )
  2031. (uuid "7650d1fb-26c7-462b-b629-cc51d6ccf300")
  2032. )
  2033. (wire
  2034. (pts
  2035. (xy 106.68 88.9) (xy 106.68 90.17)
  2036. )
  2037. (stroke
  2038. (width 0)
  2039. (type default)
  2040. )
  2041. (uuid "7c82c8cd-3d60-4925-bbe0-fc7e6d0955a4")
  2042. )
  2043. (wire
  2044. (pts
  2045. (xy 113.03 58.42) (xy 125.73 58.42)
  2046. )
  2047. (stroke
  2048. (width 0)
  2049. (type default)
  2050. )
  2051. (uuid "7e5c3f55-38b3-4150-b01e-a6a74f4a6fad")
  2052. )
  2053. (wire
  2054. (pts
  2055. (xy 140.97 46.99) (xy 140.97 48.26)
  2056. )
  2057. (stroke
  2058. (width 0)
  2059. (type default)
  2060. )
  2061. (uuid "84062ac4-5722-465f-8486-3820b1d61bd3")
  2062. )
  2063. (wire
  2064. (pts
  2065. (xy 106.68 78.74) (xy 106.68 80.01)
  2066. )
  2067. (stroke
  2068. (width 0)
  2069. (type default)
  2070. )
  2071. (uuid "84a289c1-054b-4ece-be97-30d8b07a5560")
  2072. )
  2073. (wire
  2074. (pts
  2075. (xy 58.42 48.26) (xy 67.31 48.26)
  2076. )
  2077. (stroke
  2078. (width 0)
  2079. (type default)
  2080. )
  2081. (uuid "918d4e54-837f-4fb2-9bbc-d613426d36dc")
  2082. )
  2083. (wire
  2084. (pts
  2085. (xy 106.68 48.26) (xy 113.03 48.26)
  2086. )
  2087. (stroke
  2088. (width 0)
  2089. (type default)
  2090. )
  2091. (uuid "9449ec74-2f2d-48f2-9fae-3d44ce2cd6b7")
  2092. )
  2093. (wire
  2094. (pts
  2095. (xy 113.03 49.53) (xy 113.03 48.26)
  2096. )
  2097. (stroke
  2098. (width 0)
  2099. (type default)
  2100. )
  2101. (uuid "9766c07d-4208-4e13-ac6b-a956d91ab8ad")
  2102. )
  2103. (wire
  2104. (pts
  2105. (xy 165.1 64.77) (xy 165.1 80.01)
  2106. )
  2107. (stroke
  2108. (width 0)
  2109. (type default)
  2110. )
  2111. (uuid "9ab4eea7-6a37-4cf7-a078-e4195a406a41")
  2112. )
  2113. (wire
  2114. (pts
  2115. (xy 137.16 59.69) (xy 137.16 58.42)
  2116. )
  2117. (stroke
  2118. (width 0)
  2119. (type default)
  2120. )
  2121. (uuid "a4078427-d4c5-451c-bcdc-693dc34599d3")
  2122. )
  2123. (wire
  2124. (pts
  2125. (xy 137.16 49.53) (xy 137.16 48.26)
  2126. )
  2127. (stroke
  2128. (width 0)
  2129. (type default)
  2130. )
  2131. (uuid "a7b4cafe-a25d-4812-8d36-29531dfa4abb")
  2132. )
  2133. (wire
  2134. (pts
  2135. (xy 58.42 48.26) (xy 58.42 49.53)
  2136. )
  2137. (stroke
  2138. (width 0)
  2139. (type default)
  2140. )
  2141. (uuid "a7feae94-71b4-41b5-9f77-5606b4b479d2")
  2142. )
  2143. (wire
  2144. (pts
  2145. (xy 232.41 64.77) (xy 232.41 80.01)
  2146. )
  2147. (stroke
  2148. (width 0)
  2149. (type default)
  2150. )
  2151. (uuid "a986449c-a1d5-453c-a567-5bdee7102405")
  2152. )
  2153. (wire
  2154. (pts
  2155. (xy 45.72 48.26) (xy 58.42 48.26)
  2156. )
  2157. (stroke
  2158. (width 0)
  2159. (type default)
  2160. )
  2161. (uuid "b4a13bf3-db9d-4e39-a089-62ff3aa9e8d1")
  2162. )
  2163. (wire
  2164. (pts
  2165. (xy 165.1 63.5) (xy 165.1 64.77)
  2166. )
  2167. (stroke
  2168. (width 0)
  2169. (type default)
  2170. )
  2171. (uuid "b4cb950c-365e-430c-9bf0-385971a13176")
  2172. )
  2173. (wire
  2174. (pts
  2175. (xy 220.98 88.9) (xy 220.98 90.17)
  2176. )
  2177. (stroke
  2178. (width 0)
  2179. (type default)
  2180. )
  2181. (uuid "b61fb0c4-94ff-4d8b-8ed6-ce48746d7ed4")
  2182. )
  2183. (wire
  2184. (pts
  2185. (xy 179.07 80.01) (xy 179.07 81.28)
  2186. )
  2187. (stroke
  2188. (width 0)
  2189. (type default)
  2190. )
  2191. (uuid "c07604f6-814c-4675-bd1a-129ca523b6c1")
  2192. )
  2193. (wire
  2194. (pts
  2195. (xy 220.98 80.01) (xy 232.41 80.01)
  2196. )
  2197. (stroke
  2198. (width 0)
  2199. (type default)
  2200. )
  2201. (uuid "c587cbfd-2a62-4661-bf4f-d87947ebf8a3")
  2202. )
  2203. (wire
  2204. (pts
  2205. (xy 137.16 57.15) (xy 137.16 58.42)
  2206. )
  2207. (stroke
  2208. (width 0)
  2209. (type default)
  2210. )
  2211. (uuid "c6448e94-f07d-4671-8955-b0436ddf2d0a")
  2212. )
  2213. (wire
  2214. (pts
  2215. (xy 33.02 57.15) (xy 33.02 58.42)
  2216. )
  2217. (stroke
  2218. (width 0)
  2219. (type default)
  2220. )
  2221. (uuid "c6d0233a-bc61-4a9e-b6bf-470536b315dc")
  2222. )
  2223. (wire
  2224. (pts
  2225. (xy 125.73 58.42) (xy 137.16 58.42)
  2226. )
  2227. (stroke
  2228. (width 0)
  2229. (type default)
  2230. )
  2231. (uuid "c845f24e-94eb-4362-82d0-c89290b6923d")
  2232. )
  2233. (wire
  2234. (pts
  2235. (xy 33.02 46.99) (xy 33.02 48.26)
  2236. )
  2237. (stroke
  2238. (width 0)
  2239. (type default)
  2240. )
  2241. (uuid "cc3b5a60-2f6c-49cd-b601-1c3f9fcfcd1d")
  2242. )
  2243. (wire
  2244. (pts
  2245. (xy 87.63 48.26) (xy 87.63 74.93)
  2246. )
  2247. (stroke
  2248. (width 0)
  2249. (type default)
  2250. )
  2251. (uuid "cc47423f-5c8a-447c-9341-1d8646536932")
  2252. )
  2253. (wire
  2254. (pts
  2255. (xy 67.31 80.01) (xy 69.85 80.01)
  2256. )
  2257. (stroke
  2258. (width 0)
  2259. (type default)
  2260. )
  2261. (uuid "cce21436-c8db-4f58-bbbb-32520bd83670")
  2262. )
  2263. (wire
  2264. (pts
  2265. (xy 165.1 91.44) (xy 165.1 90.17)
  2266. )
  2267. (stroke
  2268. (width 0)
  2269. (type default)
  2270. )
  2271. (uuid "cfc646ae-5ca5-4da9-840e-05314e9be526")
  2272. )
  2273. (wire
  2274. (pts
  2275. (xy 179.07 88.9) (xy 179.07 90.17)
  2276. )
  2277. (stroke
  2278. (width 0)
  2279. (type default)
  2280. )
  2281. (uuid "d7a243ba-68d0-4fee-9726-d109d2984922")
  2282. )
  2283. (wire
  2284. (pts
  2285. (xy 106.68 81.28) (xy 106.68 80.01)
  2286. )
  2287. (stroke
  2288. (width 0)
  2289. (type default)
  2290. )
  2291. (uuid "d7c3029a-e883-494c-a147-5404469c5d8a")
  2292. )
  2293. (wire
  2294. (pts
  2295. (xy 45.72 57.15) (xy 45.72 58.42)
  2296. )
  2297. (stroke
  2298. (width 0)
  2299. (type default)
  2300. )
  2301. (uuid "da27eefb-91d2-4023-be92-1c847c00635b")
  2302. )
  2303. (wire
  2304. (pts
  2305. (xy 113.03 48.26) (xy 125.73 48.26)
  2306. )
  2307. (stroke
  2308. (width 0)
  2309. (type default)
  2310. )
  2311. (uuid "dd292dc2-0257-4309-87b8-455c28cd63b5")
  2312. )
  2313. (wire
  2314. (pts
  2315. (xy 195.58 87.63) (xy 195.58 88.9)
  2316. )
  2317. (stroke
  2318. (width 0)
  2319. (type default)
  2320. )
  2321. (uuid "de2a1553-2803-4b5e-b8ac-0f275262c2c1")
  2322. )
  2323. (wire
  2324. (pts
  2325. (xy 208.28 81.28) (xy 208.28 80.01)
  2326. )
  2327. (stroke
  2328. (width 0)
  2329. (type default)
  2330. )
  2331. (uuid "e0ac2c96-8db7-47b3-a60d-721af21fafa9")
  2332. )
  2333. (wire
  2334. (pts
  2335. (xy 232.41 81.28) (xy 232.41 80.01)
  2336. )
  2337. (stroke
  2338. (width 0)
  2339. (type default)
  2340. )
  2341. (uuid "e0cef1e8-8940-4466-8598-ca50e86e645e")
  2342. )
  2343. (wire
  2344. (pts
  2345. (xy 33.02 58.42) (xy 45.72 58.42)
  2346. )
  2347. (stroke
  2348. (width 0)
  2349. (type default)
  2350. )
  2351. (uuid "e197e811-387c-493f-91d2-dc86346ff52e")
  2352. )
  2353. (wire
  2354. (pts
  2355. (xy 33.02 58.42) (xy 33.02 59.69)
  2356. )
  2357. (stroke
  2358. (width 0)
  2359. (type default)
  2360. )
  2361. (uuid "e45c34e1-7fe2-4d35-85cc-5b15b46d6163")
  2362. )
  2363. (wire
  2364. (pts
  2365. (xy 165.1 90.17) (xy 179.07 90.17)
  2366. )
  2367. (stroke
  2368. (width 0)
  2369. (type default)
  2370. )
  2371. (uuid "e4b4f864-2b26-4bfe-913c-14e44e86375a")
  2372. )
  2373. (wire
  2374. (pts
  2375. (xy 165.1 80.01) (xy 165.1 81.28)
  2376. )
  2377. (stroke
  2378. (width 0)
  2379. (type default)
  2380. )
  2381. (uuid "e75cba08-96a0-4d8e-ba62-3b06d5a1cf1c")
  2382. )
  2383. (wire
  2384. (pts
  2385. (xy 125.73 49.53) (xy 125.73 48.26)
  2386. )
  2387. (stroke
  2388. (width 0)
  2389. (type default)
  2390. )
  2391. (uuid "f9a4836c-3768-45b8-8dd9-6ea1a0937935")
  2392. )
  2393. (wire
  2394. (pts
  2395. (xy 69.85 74.93) (xy 67.31 74.93)
  2396. )
  2397. (stroke
  2398. (width 0)
  2399. (type default)
  2400. )
  2401. (uuid "f9f83b96-7900-474d-b86b-53fe51467eb4")
  2402. )
  2403. (wire
  2404. (pts
  2405. (xy 220.98 90.17) (xy 232.41 90.17)
  2406. )
  2407. (stroke
  2408. (width 0)
  2409. (type default)
  2410. )
  2411. (uuid "fd094545-1777-4eb2-9602-2336267fbf24")
  2412. )
  2413. (symbol
  2414. (lib_id "Regulator_Linear:LM1117MP-3.3")
  2415. (at 195.58 80.01 0)
  2416. (unit 1)
  2417. (body_style 1)
  2418. (exclude_from_sim no)
  2419. (in_bom yes)
  2420. (on_board yes)
  2421. (in_pos_files yes)
  2422. (dnp no)
  2423. (fields_autoplaced yes)
  2424. (uuid "074f378b-4cdd-42da-a951-dc4d0cecc676")
  2425. (property "Reference" "U5"
  2426. (at 195.58 73.66 0)
  2427. (show_name no)
  2428. (do_not_autoplace no)
  2429. (effects
  2430. (font
  2431. (size 1.27 1.27)
  2432. )
  2433. )
  2434. )
  2435. (property "Value" "LM1117MP-3.3"
  2436. (at 195.58 76.2 0)
  2437. (show_name no)
  2438. (do_not_autoplace no)
  2439. (effects
  2440. (font
  2441. (size 1.27 1.27)
  2442. )
  2443. )
  2444. )
  2445. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
  2446. (at 195.58 80.01 0)
  2447. (hide yes)
  2448. (show_name no)
  2449. (do_not_autoplace no)
  2450. (effects
  2451. (font
  2452. (size 1.27 1.27)
  2453. )
  2454. )
  2455. )
  2456. (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
  2457. (at 195.58 80.01 0)
  2458. (hide yes)
  2459. (show_name no)
  2460. (do_not_autoplace no)
  2461. (effects
  2462. (font
  2463. (size 1.27 1.27)
  2464. )
  2465. )
  2466. )
  2467. (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
  2468. (at 195.58 80.01 0)
  2469. (hide yes)
  2470. (show_name no)
  2471. (do_not_autoplace no)
  2472. (effects
  2473. (font
  2474. (size 1.27 1.27)
  2475. )
  2476. )
  2477. )
  2478. (pin "3"
  2479. (uuid "0699578b-7bba-43e5-abb0-427c38eddc0e")
  2480. )
  2481. (pin "1"
  2482. (uuid "cd4b05b5-1c88-4237-b270-ac553fc3283d")
  2483. )
  2484. (pin "2"
  2485. (uuid "3856baa0-558b-4fef-8d0d-3aced8863b23")
  2486. )
  2487. (instances
  2488. (project "cx-copter-schematic"
  2489. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  2490. (reference "U5")
  2491. (unit 1)
  2492. )
  2493. )
  2494. )
  2495. )
  2496. (symbol
  2497. (lib_id "Device:C")
  2498. (at 58.42 53.34 0)
  2499. (unit 1)
  2500. (body_style 1)
  2501. (exclude_from_sim no)
  2502. (in_bom yes)
  2503. (on_board yes)
  2504. (in_pos_files yes)
  2505. (dnp no)
  2506. (uuid "08b3a57d-0d2e-44f6-b8d1-6f265d059bfa")
  2507. (property "Reference" "C11"
  2508. (at 58.42 51.308 0)
  2509. (show_name no)
  2510. (do_not_autoplace no)
  2511. (effects
  2512. (font
  2513. (size 1.27 1.27)
  2514. )
  2515. (justify left)
  2516. )
  2517. )
  2518. (property "Value" "100n"
  2519. (at 58.42 55.372 0)
  2520. (show_name no)
  2521. (do_not_autoplace no)
  2522. (effects
  2523. (font
  2524. (size 1.27 1.27)
  2525. )
  2526. (justify left)
  2527. )
  2528. )
  2529. (property "Footprint" ""
  2530. (at 59.3852 57.15 0)
  2531. (hide yes)
  2532. (show_name no)
  2533. (do_not_autoplace no)
  2534. (effects
  2535. (font
  2536. (size 1.27 1.27)
  2537. )
  2538. )
  2539. )
  2540. (property "Datasheet" ""
  2541. (at 58.42 53.34 0)
  2542. (hide yes)
  2543. (show_name no)
  2544. (do_not_autoplace no)
  2545. (effects
  2546. (font
  2547. (size 1.27 1.27)
  2548. )
  2549. )
  2550. )
  2551. (property "Description" "Unpolarized capacitor"
  2552. (at 58.42 53.34 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. (pin "2"
  2563. (uuid "c2bb98d1-f72a-4058-b473-dc97d186d1ca")
  2564. )
  2565. (pin "1"
  2566. (uuid "e686d349-ee1c-4203-bc42-245842d8e833")
  2567. )
  2568. (instances
  2569. (project "cx-copter-schematic"
  2570. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  2571. (reference "C11")
  2572. (unit 1)
  2573. )
  2574. )
  2575. )
  2576. )
  2577. (symbol
  2578. (lib_id "Device:L")
  2579. (at 76.2 48.26 90)
  2580. (unit 1)
  2581. (body_style 1)
  2582. (exclude_from_sim no)
  2583. (in_bom yes)
  2584. (on_board yes)
  2585. (in_pos_files yes)
  2586. (dnp no)
  2587. (uuid "134e94ef-bc5f-4c51-940d-b6b18dbb5e8b")
  2588. (property "Reference" "L1"
  2589. (at 76.2 46.482 90)
  2590. (show_name no)
  2591. (do_not_autoplace no)
  2592. (effects
  2593. (font
  2594. (size 1.27 1.27)
  2595. )
  2596. )
  2597. )
  2598. (property "Value" "10u"
  2599. (at 76.2 49.53 90)
  2600. (show_name no)
  2601. (do_not_autoplace no)
  2602. (effects
  2603. (font
  2604. (size 1.27 1.27)
  2605. )
  2606. )
  2607. )
  2608. (property "Footprint" ""
  2609. (at 76.2 48.26 0)
  2610. (hide yes)
  2611. (show_name no)
  2612. (do_not_autoplace no)
  2613. (effects
  2614. (font
  2615. (size 1.27 1.27)
  2616. )
  2617. )
  2618. )
  2619. (property "Datasheet" ""
  2620. (at 76.2 48.26 0)
  2621. (hide yes)
  2622. (show_name no)
  2623. (do_not_autoplace no)
  2624. (effects
  2625. (font
  2626. (size 1.27 1.27)
  2627. )
  2628. )
  2629. )
  2630. (property "Description" "Inductor"
  2631. (at 76.2 48.26 0)
  2632. (hide yes)
  2633. (show_name no)
  2634. (do_not_autoplace no)
  2635. (effects
  2636. (font
  2637. (size 1.27 1.27)
  2638. )
  2639. )
  2640. )
  2641. (pin "1"
  2642. (uuid "c2a57cce-7c7e-4ff2-8405-2f58cf543a3d")
  2643. )
  2644. (pin "2"
  2645. (uuid "0bb47341-ffdb-42e7-9627-8a5591110b25")
  2646. )
  2647. (instances
  2648. (project "cx-copter-schematic"
  2649. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  2650. (reference "L1")
  2651. (unit 1)
  2652. )
  2653. )
  2654. )
  2655. )
  2656. (symbol
  2657. (lib_id "power:GND")
  2658. (at 232.41 91.44 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. (fields_autoplaced yes)
  2667. (uuid "1cdcac76-4125-46f1-8791-b00186374ad3")
  2668. (property "Reference" "#PWR040"
  2669. (at 232.41 97.79 0)
  2670. (hide yes)
  2671. (show_name no)
  2672. (do_not_autoplace no)
  2673. (effects
  2674. (font
  2675. (size 1.27 1.27)
  2676. )
  2677. )
  2678. )
  2679. (property "Value" "GND"
  2680. (at 232.41 96.52 0)
  2681. (show_name no)
  2682. (do_not_autoplace no)
  2683. (effects
  2684. (font
  2685. (size 1.27 1.27)
  2686. )
  2687. )
  2688. )
  2689. (property "Footprint" ""
  2690. (at 232.41 91.44 0)
  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 232.41 91.44 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" "Power symbol creates a global label with name \"GND\" , ground"
  2712. (at 232.41 91.44 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 "1"
  2723. (uuid "61896994-a27e-4209-9575-321d6d27d311")
  2724. )
  2725. (instances
  2726. (project "cx-copter-schematic"
  2727. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  2728. (reference "#PWR040")
  2729. (unit 1)
  2730. )
  2731. )
  2732. )
  2733. )
  2734. (symbol
  2735. (lib_id "Device:C")
  2736. (at 220.98 85.09 0)
  2737. (unit 1)
  2738. (body_style 1)
  2739. (exclude_from_sim no)
  2740. (in_bom yes)
  2741. (on_board yes)
  2742. (in_pos_files yes)
  2743. (dnp no)
  2744. (uuid "1e63ec5b-509f-44c6-a748-6985dada4347")
  2745. (property "Reference" "C17"
  2746. (at 223.266 83.82 0)
  2747. (show_name no)
  2748. (do_not_autoplace no)
  2749. (effects
  2750. (font
  2751. (size 1.27 1.27)
  2752. )
  2753. (justify left)
  2754. )
  2755. )
  2756. (property "Value" "47u"
  2757. (at 223.266 86.36 0)
  2758. (show_name no)
  2759. (do_not_autoplace no)
  2760. (effects
  2761. (font
  2762. (size 1.27 1.27)
  2763. )
  2764. (justify left)
  2765. )
  2766. )
  2767. (property "Footprint" ""
  2768. (at 221.9452 88.9 0)
  2769. (hide yes)
  2770. (show_name no)
  2771. (do_not_autoplace no)
  2772. (effects
  2773. (font
  2774. (size 1.27 1.27)
  2775. )
  2776. )
  2777. )
  2778. (property "Datasheet" ""
  2779. (at 220.98 85.09 0)
  2780. (hide yes)
  2781. (show_name no)
  2782. (do_not_autoplace no)
  2783. (effects
  2784. (font
  2785. (size 1.27 1.27)
  2786. )
  2787. )
  2788. )
  2789. (property "Description" "Unpolarized capacitor"
  2790. (at 220.98 85.09 0)
  2791. (hide yes)
  2792. (show_name no)
  2793. (do_not_autoplace no)
  2794. (effects
  2795. (font
  2796. (size 1.27 1.27)
  2797. )
  2798. )
  2799. )
  2800. (pin "2"
  2801. (uuid "c052fcb1-fae5-490a-9d91-50d52a2e432f")
  2802. )
  2803. (pin "1"
  2804. (uuid "3bfd2211-eb49-4c46-92e1-649fc46c26ec")
  2805. )
  2806. (instances
  2807. (project "cx-copter-schematic"
  2808. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  2809. (reference "C17")
  2810. (unit 1)
  2811. )
  2812. )
  2813. )
  2814. )
  2815. (symbol
  2816. (lib_id "Device:R")
  2817. (at 106.68 74.93 0)
  2818. (unit 1)
  2819. (body_style 1)
  2820. (exclude_from_sim no)
  2821. (in_bom yes)
  2822. (on_board yes)
  2823. (in_pos_files yes)
  2824. (dnp no)
  2825. (uuid "31d6e509-6e43-4bd9-95c8-db37d0a7a17d")
  2826. (property "Reference" "R9"
  2827. (at 107.95 73.914 0)
  2828. (show_name no)
  2829. (do_not_autoplace no)
  2830. (effects
  2831. (font
  2832. (size 1.27 1.27)
  2833. )
  2834. (justify left)
  2835. )
  2836. )
  2837. (property "Value" "22k"
  2838. (at 107.95 75.946 0)
  2839. (show_name no)
  2840. (do_not_autoplace no)
  2841. (effects
  2842. (font
  2843. (size 1.27 1.27)
  2844. )
  2845. (justify left)
  2846. )
  2847. )
  2848. (property "Footprint" ""
  2849. (at 104.902 74.93 90)
  2850. (hide yes)
  2851. (show_name no)
  2852. (do_not_autoplace no)
  2853. (effects
  2854. (font
  2855. (size 1.27 1.27)
  2856. )
  2857. )
  2858. )
  2859. (property "Datasheet" ""
  2860. (at 106.68 74.93 0)
  2861. (hide yes)
  2862. (show_name no)
  2863. (do_not_autoplace no)
  2864. (effects
  2865. (font
  2866. (size 1.27 1.27)
  2867. )
  2868. )
  2869. )
  2870. (property "Description" "Resistor"
  2871. (at 106.68 74.93 0)
  2872. (hide yes)
  2873. (show_name no)
  2874. (do_not_autoplace no)
  2875. (effects
  2876. (font
  2877. (size 1.27 1.27)
  2878. )
  2879. )
  2880. )
  2881. (pin "2"
  2882. (uuid "5755a038-a94a-40c2-a87b-dba2aa7b6356")
  2883. )
  2884. (pin "1"
  2885. (uuid "cd5141f4-d031-457c-8f48-dcfb2eb32215")
  2886. )
  2887. (instances
  2888. (project "cx-copter-schematic"
  2889. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  2890. (reference "R9")
  2891. (unit 1)
  2892. )
  2893. )
  2894. )
  2895. )
  2896. (symbol
  2897. (lib_id "Device:C")
  2898. (at 125.73 53.34 0)
  2899. (unit 1)
  2900. (body_style 1)
  2901. (exclude_from_sim no)
  2902. (in_bom yes)
  2903. (on_board yes)
  2904. (in_pos_files yes)
  2905. (dnp no)
  2906. (uuid "33ddbf14-611e-466f-b34a-6b7195d921e7")
  2907. (property "Reference" "C15"
  2908. (at 128.016 52.07 0)
  2909. (show_name no)
  2910. (do_not_autoplace no)
  2911. (effects
  2912. (font
  2913. (size 1.27 1.27)
  2914. )
  2915. (justify left)
  2916. )
  2917. )
  2918. (property "Value" "47u"
  2919. (at 128.016 54.61 0)
  2920. (show_name no)
  2921. (do_not_autoplace no)
  2922. (effects
  2923. (font
  2924. (size 1.27 1.27)
  2925. )
  2926. (justify left)
  2927. )
  2928. )
  2929. (property "Footprint" ""
  2930. (at 126.6952 57.15 0)
  2931. (hide yes)
  2932. (show_name no)
  2933. (do_not_autoplace no)
  2934. (effects
  2935. (font
  2936. (size 1.27 1.27)
  2937. )
  2938. )
  2939. )
  2940. (property "Datasheet" ""
  2941. (at 125.73 53.34 0)
  2942. (hide yes)
  2943. (show_name no)
  2944. (do_not_autoplace no)
  2945. (effects
  2946. (font
  2947. (size 1.27 1.27)
  2948. )
  2949. )
  2950. )
  2951. (property "Description" "Unpolarized capacitor"
  2952. (at 125.73 53.34 0)
  2953. (hide yes)
  2954. (show_name no)
  2955. (do_not_autoplace no)
  2956. (effects
  2957. (font
  2958. (size 1.27 1.27)
  2959. )
  2960. )
  2961. )
  2962. (pin "2"
  2963. (uuid "7150b84b-bfa1-420a-9864-ddceafc592db")
  2964. )
  2965. (pin "1"
  2966. (uuid "4ab81462-2be8-4571-8af9-f2a3ec86825b")
  2967. )
  2968. (instances
  2969. (project "cx-copter-schematic"
  2970. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  2971. (reference "C15")
  2972. (unit 1)
  2973. )
  2974. )
  2975. )
  2976. )
  2977. (symbol
  2978. (lib_id "Device:C")
  2979. (at 179.07 85.09 0)
  2980. (unit 1)
  2981. (body_style 1)
  2982. (exclude_from_sim no)
  2983. (in_bom yes)
  2984. (on_board yes)
  2985. (in_pos_files yes)
  2986. (dnp no)
  2987. (uuid "34ad7cfd-4334-4019-8928-7c73fd783572")
  2988. (property "Reference" "C21"
  2989. (at 181.356 83.82 0)
  2990. (show_name no)
  2991. (do_not_autoplace no)
  2992. (effects
  2993. (font
  2994. (size 1.27 1.27)
  2995. )
  2996. (justify left)
  2997. )
  2998. )
  2999. (property "Value" "100n"
  3000. (at 181.356 86.36 0)
  3001. (show_name no)
  3002. (do_not_autoplace no)
  3003. (effects
  3004. (font
  3005. (size 1.27 1.27)
  3006. )
  3007. (justify left)
  3008. )
  3009. )
  3010. (property "Footprint" ""
  3011. (at 180.0352 88.9 0)
  3012. (hide yes)
  3013. (show_name no)
  3014. (do_not_autoplace no)
  3015. (effects
  3016. (font
  3017. (size 1.27 1.27)
  3018. )
  3019. )
  3020. )
  3021. (property "Datasheet" ""
  3022. (at 179.07 85.09 0)
  3023. (hide yes)
  3024. (show_name no)
  3025. (do_not_autoplace no)
  3026. (effects
  3027. (font
  3028. (size 1.27 1.27)
  3029. )
  3030. )
  3031. )
  3032. (property "Description" "Unpolarized capacitor"
  3033. (at 179.07 85.09 0)
  3034. (hide yes)
  3035. (show_name no)
  3036. (do_not_autoplace no)
  3037. (effects
  3038. (font
  3039. (size 1.27 1.27)
  3040. )
  3041. )
  3042. )
  3043. (pin "2"
  3044. (uuid "da06076b-530e-4934-a16b-4edfa754b6a5")
  3045. )
  3046. (pin "1"
  3047. (uuid "61c1b4a9-0787-45f2-8aee-61ea3a40169d")
  3048. )
  3049. (instances
  3050. (project "cx-copter-schematic"
  3051. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3052. (reference "C21")
  3053. (unit 1)
  3054. )
  3055. )
  3056. )
  3057. )
  3058. (symbol
  3059. (lib_id "power:GND")
  3060. (at 137.16 59.69 0)
  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. (fields_autoplaced yes)
  3069. (uuid "34cc8666-ca81-4979-a4b0-4d85845e7c9a")
  3070. (property "Reference" "#PWR036"
  3071. (at 137.16 66.04 0)
  3072. (hide yes)
  3073. (show_name no)
  3074. (do_not_autoplace no)
  3075. (effects
  3076. (font
  3077. (size 1.27 1.27)
  3078. )
  3079. )
  3080. )
  3081. (property "Value" "GND"
  3082. (at 137.16 64.77 0)
  3083. (show_name no)
  3084. (do_not_autoplace no)
  3085. (effects
  3086. (font
  3087. (size 1.27 1.27)
  3088. )
  3089. )
  3090. )
  3091. (property "Footprint" ""
  3092. (at 137.16 59.69 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 137.16 59.69 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" "Power symbol creates a global label with name \"GND\" , ground"
  3114. (at 137.16 59.69 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. (pin "1"
  3125. (uuid "882b9aa4-00e5-4834-a18b-1da84683491f")
  3126. )
  3127. (instances
  3128. (project "cx-copter-schematic"
  3129. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3130. (reference "#PWR036")
  3131. (unit 1)
  3132. )
  3133. )
  3134. )
  3135. )
  3136. (symbol
  3137. (lib_id "Regulator_Switching:MT3608")
  3138. (at 77.47 77.47 0)
  3139. (unit 1)
  3140. (body_style 1)
  3141. (exclude_from_sim no)
  3142. (in_bom yes)
  3143. (on_board yes)
  3144. (in_pos_files yes)
  3145. (dnp no)
  3146. (uuid "469668b8-6aa1-47a6-8f6f-9dbf7933d215")
  3147. (property "Reference" "U4"
  3148. (at 73.152 71.374 0)
  3149. (show_name no)
  3150. (do_not_autoplace no)
  3151. (effects
  3152. (font
  3153. (size 1.27 1.27)
  3154. )
  3155. )
  3156. )
  3157. (property "Value" "MT3608"
  3158. (at 79.248 71.374 0)
  3159. (show_name no)
  3160. (do_not_autoplace no)
  3161. (effects
  3162. (font
  3163. (size 1.27 1.27)
  3164. )
  3165. )
  3166. )
  3167. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6"
  3168. (at 78.74 83.82 0)
  3169. (hide yes)
  3170. (show_name no)
  3171. (do_not_autoplace no)
  3172. (effects
  3173. (font
  3174. (size 1.27 1.27)
  3175. (italic yes)
  3176. )
  3177. (justify left)
  3178. )
  3179. )
  3180. (property "Datasheet" "https://www.olimex.com/Products/Breadboarding/BB-PWR-3608/resources/MT3608.pdf"
  3181. (at 71.12 66.04 0)
  3182. (hide yes)
  3183. (show_name no)
  3184. (do_not_autoplace no)
  3185. (effects
  3186. (font
  3187. (size 1.27 1.27)
  3188. )
  3189. )
  3190. )
  3191. (property "Description" "High Efficiency 1.2MHz 2A Step Up Converter, 2-24V Vin, 28V Vout, 4A current limit, 1.2MHz, SOT23-6"
  3192. (at 77.47 77.47 0)
  3193. (hide yes)
  3194. (show_name no)
  3195. (do_not_autoplace no)
  3196. (effects
  3197. (font
  3198. (size 1.27 1.27)
  3199. )
  3200. )
  3201. )
  3202. (pin "1"
  3203. (uuid "707e797d-f220-4188-84fe-93c969337ec7")
  3204. )
  3205. (pin "2"
  3206. (uuid "7ee2d6fd-d736-4283-bf9f-c6ba9806f3f2")
  3207. )
  3208. (pin "4"
  3209. (uuid "9296bb1c-4ad5-4e07-b1b8-24d1deba8d4f")
  3210. )
  3211. (pin "3"
  3212. (uuid "39986e10-fc18-4846-bfb6-412da1806c90")
  3213. )
  3214. (pin "5"
  3215. (uuid "24f5f035-e203-43fe-a1d5-780019e692d3")
  3216. )
  3217. (pin "6"
  3218. (uuid "8e702423-619f-44b9-89ff-9c42287ae528")
  3219. )
  3220. (instances
  3221. (project "cx-copter-schematic"
  3222. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3223. (reference "U4")
  3224. (unit 1)
  3225. )
  3226. )
  3227. )
  3228. )
  3229. (symbol
  3230. (lib_id "power:VDD")
  3231. (at 33.02 46.99 0)
  3232. (unit 1)
  3233. (body_style 1)
  3234. (exclude_from_sim no)
  3235. (in_bom yes)
  3236. (on_board yes)
  3237. (in_pos_files yes)
  3238. (dnp no)
  3239. (fields_autoplaced yes)
  3240. (uuid "6e906538-6a10-423b-ae89-dcf7f4d24b38")
  3241. (property "Reference" "#PWR033"
  3242. (at 33.02 50.8 0)
  3243. (hide yes)
  3244. (show_name no)
  3245. (do_not_autoplace no)
  3246. (effects
  3247. (font
  3248. (size 1.27 1.27)
  3249. )
  3250. )
  3251. )
  3252. (property "Value" "VDD"
  3253. (at 33.02 41.91 0)
  3254. (show_name no)
  3255. (do_not_autoplace no)
  3256. (effects
  3257. (font
  3258. (size 1.27 1.27)
  3259. )
  3260. )
  3261. )
  3262. (property "Footprint" ""
  3263. (at 33.02 46.99 0)
  3264. (hide yes)
  3265. (show_name no)
  3266. (do_not_autoplace no)
  3267. (effects
  3268. (font
  3269. (size 1.27 1.27)
  3270. )
  3271. )
  3272. )
  3273. (property "Datasheet" ""
  3274. (at 33.02 46.99 0)
  3275. (hide yes)
  3276. (show_name no)
  3277. (do_not_autoplace no)
  3278. (effects
  3279. (font
  3280. (size 1.27 1.27)
  3281. )
  3282. )
  3283. )
  3284. (property "Description" "Power symbol creates a global label with name \"VDD\""
  3285. (at 33.02 46.99 0)
  3286. (hide yes)
  3287. (show_name no)
  3288. (do_not_autoplace no)
  3289. (effects
  3290. (font
  3291. (size 1.27 1.27)
  3292. )
  3293. )
  3294. )
  3295. (pin "1"
  3296. (uuid "2407c567-1c68-4bbd-94a3-0248aa1baebd")
  3297. )
  3298. (instances
  3299. (project "cx-copter-schematic"
  3300. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3301. (reference "#PWR033")
  3302. (unit 1)
  3303. )
  3304. )
  3305. )
  3306. )
  3307. (symbol
  3308. (lib_id "Device:C")
  3309. (at 113.03 53.34 0)
  3310. (unit 1)
  3311. (body_style 1)
  3312. (exclude_from_sim no)
  3313. (in_bom yes)
  3314. (on_board yes)
  3315. (in_pos_files yes)
  3316. (dnp no)
  3317. (uuid "781da082-3824-47e7-b816-9c1c5b4d0cb9")
  3318. (property "Reference" "C12"
  3319. (at 115.316 52.07 0)
  3320. (show_name no)
  3321. (do_not_autoplace no)
  3322. (effects
  3323. (font
  3324. (size 1.27 1.27)
  3325. )
  3326. (justify left)
  3327. )
  3328. )
  3329. (property "Value" "100n"
  3330. (at 115.316 54.61 0)
  3331. (show_name no)
  3332. (do_not_autoplace no)
  3333. (effects
  3334. (font
  3335. (size 1.27 1.27)
  3336. )
  3337. (justify left)
  3338. )
  3339. )
  3340. (property "Footprint" ""
  3341. (at 113.9952 57.15 0)
  3342. (hide yes)
  3343. (show_name no)
  3344. (do_not_autoplace no)
  3345. (effects
  3346. (font
  3347. (size 1.27 1.27)
  3348. )
  3349. )
  3350. )
  3351. (property "Datasheet" ""
  3352. (at 113.03 53.34 0)
  3353. (hide yes)
  3354. (show_name no)
  3355. (do_not_autoplace no)
  3356. (effects
  3357. (font
  3358. (size 1.27 1.27)
  3359. )
  3360. )
  3361. )
  3362. (property "Description" "Unpolarized capacitor"
  3363. (at 113.03 53.34 0)
  3364. (hide yes)
  3365. (show_name no)
  3366. (do_not_autoplace no)
  3367. (effects
  3368. (font
  3369. (size 1.27 1.27)
  3370. )
  3371. )
  3372. )
  3373. (pin "2"
  3374. (uuid "1ab16171-5eef-44fe-b079-91ddc7ab85c4")
  3375. )
  3376. (pin "1"
  3377. (uuid "82aaa68d-eb5d-4e08-9656-c91e1f91bf54")
  3378. )
  3379. (instances
  3380. (project "cx-copter-schematic"
  3381. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3382. (reference "C12")
  3383. (unit 1)
  3384. )
  3385. )
  3386. )
  3387. )
  3388. (symbol
  3389. (lib_id "Device:C")
  3390. (at 137.16 53.34 0)
  3391. (unit 1)
  3392. (body_style 1)
  3393. (exclude_from_sim no)
  3394. (in_bom yes)
  3395. (on_board yes)
  3396. (in_pos_files yes)
  3397. (dnp no)
  3398. (uuid "7acbddfd-8298-47c4-8d0a-7df1c5c22a00")
  3399. (property "Reference" "C16"
  3400. (at 139.446 52.07 0)
  3401. (show_name no)
  3402. (do_not_autoplace no)
  3403. (effects
  3404. (font
  3405. (size 1.27 1.27)
  3406. )
  3407. (justify left)
  3408. )
  3409. )
  3410. (property "Value" "100u"
  3411. (at 139.446 54.61 0)
  3412. (show_name no)
  3413. (do_not_autoplace no)
  3414. (effects
  3415. (font
  3416. (size 1.27 1.27)
  3417. )
  3418. (justify left)
  3419. )
  3420. )
  3421. (property "Footprint" ""
  3422. (at 138.1252 57.15 0)
  3423. (hide yes)
  3424. (show_name no)
  3425. (do_not_autoplace no)
  3426. (effects
  3427. (font
  3428. (size 1.27 1.27)
  3429. )
  3430. )
  3431. )
  3432. (property "Datasheet" ""
  3433. (at 137.16 53.34 0)
  3434. (hide yes)
  3435. (show_name no)
  3436. (do_not_autoplace no)
  3437. (effects
  3438. (font
  3439. (size 1.27 1.27)
  3440. )
  3441. )
  3442. )
  3443. (property "Description" "Unpolarized capacitor"
  3444. (at 137.16 53.34 0)
  3445. (hide yes)
  3446. (show_name no)
  3447. (do_not_autoplace no)
  3448. (effects
  3449. (font
  3450. (size 1.27 1.27)
  3451. )
  3452. )
  3453. )
  3454. (pin "2"
  3455. (uuid "1b23a7d5-0ea1-4e3d-b999-f2dc8d2e11aa")
  3456. )
  3457. (pin "1"
  3458. (uuid "20a54eb6-5976-41dd-b175-028d8c9a0c68")
  3459. )
  3460. (instances
  3461. (project "cx-copter-schematic"
  3462. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3463. (reference "C16")
  3464. (unit 1)
  3465. )
  3466. )
  3467. )
  3468. )
  3469. (symbol
  3470. (lib_id "power:GND")
  3471. (at 106.68 90.17 0)
  3472. (unit 1)
  3473. (body_style 1)
  3474. (exclude_from_sim no)
  3475. (in_bom yes)
  3476. (on_board yes)
  3477. (in_pos_files yes)
  3478. (dnp no)
  3479. (fields_autoplaced yes)
  3480. (uuid "844c821c-48ce-4440-9bfc-1b94e48cedf2")
  3481. (property "Reference" "#PWR038"
  3482. (at 106.68 96.52 0)
  3483. (hide yes)
  3484. (show_name no)
  3485. (do_not_autoplace no)
  3486. (effects
  3487. (font
  3488. (size 1.27 1.27)
  3489. )
  3490. )
  3491. )
  3492. (property "Value" "GND"
  3493. (at 106.68 95.25 0)
  3494. (show_name no)
  3495. (do_not_autoplace no)
  3496. (effects
  3497. (font
  3498. (size 1.27 1.27)
  3499. )
  3500. )
  3501. )
  3502. (property "Footprint" ""
  3503. (at 106.68 90.17 0)
  3504. (hide yes)
  3505. (show_name no)
  3506. (do_not_autoplace no)
  3507. (effects
  3508. (font
  3509. (size 1.27 1.27)
  3510. )
  3511. )
  3512. )
  3513. (property "Datasheet" ""
  3514. (at 106.68 90.17 0)
  3515. (hide yes)
  3516. (show_name no)
  3517. (do_not_autoplace no)
  3518. (effects
  3519. (font
  3520. (size 1.27 1.27)
  3521. )
  3522. )
  3523. )
  3524. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3525. (at 106.68 90.17 0)
  3526. (hide yes)
  3527. (show_name no)
  3528. (do_not_autoplace no)
  3529. (effects
  3530. (font
  3531. (size 1.27 1.27)
  3532. )
  3533. )
  3534. )
  3535. (pin "1"
  3536. (uuid "d864f2ad-fa4f-4da7-922c-873d416c269a")
  3537. )
  3538. (instances
  3539. (project "cx-copter-schematic"
  3540. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3541. (reference "#PWR038")
  3542. (unit 1)
  3543. )
  3544. )
  3545. )
  3546. )
  3547. (symbol
  3548. (lib_id "Device:C")
  3549. (at 232.41 85.09 0)
  3550. (unit 1)
  3551. (body_style 1)
  3552. (exclude_from_sim no)
  3553. (in_bom yes)
  3554. (on_board yes)
  3555. (in_pos_files yes)
  3556. (dnp no)
  3557. (uuid "89a0b5e2-7ff7-45ee-a0bc-a05c9103360a")
  3558. (property "Reference" "C18"
  3559. (at 234.696 83.82 0)
  3560. (show_name no)
  3561. (do_not_autoplace no)
  3562. (effects
  3563. (font
  3564. (size 1.27 1.27)
  3565. )
  3566. (justify left)
  3567. )
  3568. )
  3569. (property "Value" "100u"
  3570. (at 234.95 86.36 0)
  3571. (show_name no)
  3572. (do_not_autoplace no)
  3573. (effects
  3574. (font
  3575. (size 1.27 1.27)
  3576. )
  3577. (justify left)
  3578. )
  3579. )
  3580. (property "Footprint" ""
  3581. (at 233.3752 88.9 0)
  3582. (hide yes)
  3583. (show_name no)
  3584. (do_not_autoplace no)
  3585. (effects
  3586. (font
  3587. (size 1.27 1.27)
  3588. )
  3589. )
  3590. )
  3591. (property "Datasheet" ""
  3592. (at 232.41 85.09 0)
  3593. (hide yes)
  3594. (show_name no)
  3595. (do_not_autoplace no)
  3596. (effects
  3597. (font
  3598. (size 1.27 1.27)
  3599. )
  3600. )
  3601. )
  3602. (property "Description" "Unpolarized capacitor"
  3603. (at 232.41 85.09 0)
  3604. (hide yes)
  3605. (show_name no)
  3606. (do_not_autoplace no)
  3607. (effects
  3608. (font
  3609. (size 1.27 1.27)
  3610. )
  3611. )
  3612. )
  3613. (pin "2"
  3614. (uuid "83a1be4c-0f70-473a-9378-5172733e7b67")
  3615. )
  3616. (pin "1"
  3617. (uuid "59f6148e-b416-4d95-98bc-a53a80a8ab0d")
  3618. )
  3619. (instances
  3620. (project "cx-copter-schematic"
  3621. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3622. (reference "C18")
  3623. (unit 1)
  3624. )
  3625. )
  3626. )
  3627. )
  3628. (symbol
  3629. (lib_id "power:GND")
  3630. (at 77.47 86.36 0)
  3631. (unit 1)
  3632. (body_style 1)
  3633. (exclude_from_sim no)
  3634. (in_bom yes)
  3635. (on_board yes)
  3636. (in_pos_files yes)
  3637. (dnp no)
  3638. (fields_autoplaced yes)
  3639. (uuid "9fc29423-6d4a-41e1-b233-f3c3710a4750")
  3640. (property "Reference" "#PWR032"
  3641. (at 77.47 92.71 0)
  3642. (hide yes)
  3643. (show_name no)
  3644. (do_not_autoplace no)
  3645. (effects
  3646. (font
  3647. (size 1.27 1.27)
  3648. )
  3649. )
  3650. )
  3651. (property "Value" "GND"
  3652. (at 77.47 91.44 0)
  3653. (show_name no)
  3654. (do_not_autoplace no)
  3655. (effects
  3656. (font
  3657. (size 1.27 1.27)
  3658. )
  3659. )
  3660. )
  3661. (property "Footprint" ""
  3662. (at 77.47 86.36 0)
  3663. (hide yes)
  3664. (show_name no)
  3665. (do_not_autoplace no)
  3666. (effects
  3667. (font
  3668. (size 1.27 1.27)
  3669. )
  3670. )
  3671. )
  3672. (property "Datasheet" ""
  3673. (at 77.47 86.36 0)
  3674. (hide yes)
  3675. (show_name no)
  3676. (do_not_autoplace no)
  3677. (effects
  3678. (font
  3679. (size 1.27 1.27)
  3680. )
  3681. )
  3682. )
  3683. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3684. (at 77.47 86.36 0)
  3685. (hide yes)
  3686. (show_name no)
  3687. (do_not_autoplace no)
  3688. (effects
  3689. (font
  3690. (size 1.27 1.27)
  3691. )
  3692. )
  3693. )
  3694. (pin "1"
  3695. (uuid "2060cceb-9125-4905-8760-58ab790c034a")
  3696. )
  3697. (instances
  3698. (project "cx-copter-schematic"
  3699. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3700. (reference "#PWR032")
  3701. (unit 1)
  3702. )
  3703. )
  3704. )
  3705. )
  3706. (symbol
  3707. (lib_id "Device:C")
  3708. (at 165.1 85.09 0)
  3709. (unit 1)
  3710. (body_style 1)
  3711. (exclude_from_sim no)
  3712. (in_bom yes)
  3713. (on_board yes)
  3714. (in_pos_files yes)
  3715. (dnp no)
  3716. (uuid "aa25698e-0b1c-4074-a616-83d3b90ebf58")
  3717. (property "Reference" "C19"
  3718. (at 167.386 83.82 0)
  3719. (show_name no)
  3720. (do_not_autoplace no)
  3721. (effects
  3722. (font
  3723. (size 1.27 1.27)
  3724. )
  3725. (justify left)
  3726. )
  3727. )
  3728. (property "Value" "100u"
  3729. (at 167.386 86.36 0)
  3730. (show_name no)
  3731. (do_not_autoplace no)
  3732. (effects
  3733. (font
  3734. (size 1.27 1.27)
  3735. )
  3736. (justify left)
  3737. )
  3738. )
  3739. (property "Footprint" ""
  3740. (at 166.0652 88.9 0)
  3741. (hide yes)
  3742. (show_name no)
  3743. (do_not_autoplace no)
  3744. (effects
  3745. (font
  3746. (size 1.27 1.27)
  3747. )
  3748. )
  3749. )
  3750. (property "Datasheet" ""
  3751. (at 165.1 85.09 0)
  3752. (hide yes)
  3753. (show_name no)
  3754. (do_not_autoplace no)
  3755. (effects
  3756. (font
  3757. (size 1.27 1.27)
  3758. )
  3759. )
  3760. )
  3761. (property "Description" "Unpolarized capacitor"
  3762. (at 165.1 85.09 0)
  3763. (hide yes)
  3764. (show_name no)
  3765. (do_not_autoplace no)
  3766. (effects
  3767. (font
  3768. (size 1.27 1.27)
  3769. )
  3770. )
  3771. )
  3772. (pin "2"
  3773. (uuid "6d51e3df-ec8b-4698-8196-34286ee50da3")
  3774. )
  3775. (pin "1"
  3776. (uuid "64b0e74d-33a5-40ee-a863-4de08d392b08")
  3777. )
  3778. (instances
  3779. (project "cx-copter-schematic"
  3780. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3781. (reference "C19")
  3782. (unit 1)
  3783. )
  3784. )
  3785. )
  3786. )
  3787. (symbol
  3788. (lib_id "power:GND")
  3789. (at 195.58 88.9 0)
  3790. (unit 1)
  3791. (body_style 1)
  3792. (exclude_from_sim no)
  3793. (in_bom yes)
  3794. (on_board yes)
  3795. (in_pos_files yes)
  3796. (dnp no)
  3797. (fields_autoplaced yes)
  3798. (uuid "aa3956fa-cea4-4ed2-8668-5ce8d5006ddb")
  3799. (property "Reference" "#PWR042"
  3800. (at 195.58 95.25 0)
  3801. (hide yes)
  3802. (show_name no)
  3803. (do_not_autoplace no)
  3804. (effects
  3805. (font
  3806. (size 1.27 1.27)
  3807. )
  3808. )
  3809. )
  3810. (property "Value" "GND"
  3811. (at 195.58 93.98 0)
  3812. (show_name no)
  3813. (do_not_autoplace no)
  3814. (effects
  3815. (font
  3816. (size 1.27 1.27)
  3817. )
  3818. )
  3819. )
  3820. (property "Footprint" ""
  3821. (at 195.58 88.9 0)
  3822. (hide yes)
  3823. (show_name no)
  3824. (do_not_autoplace no)
  3825. (effects
  3826. (font
  3827. (size 1.27 1.27)
  3828. )
  3829. )
  3830. )
  3831. (property "Datasheet" ""
  3832. (at 195.58 88.9 0)
  3833. (hide yes)
  3834. (show_name no)
  3835. (do_not_autoplace no)
  3836. (effects
  3837. (font
  3838. (size 1.27 1.27)
  3839. )
  3840. )
  3841. )
  3842. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3843. (at 195.58 88.9 0)
  3844. (hide yes)
  3845. (show_name no)
  3846. (do_not_autoplace no)
  3847. (effects
  3848. (font
  3849. (size 1.27 1.27)
  3850. )
  3851. )
  3852. )
  3853. (pin "1"
  3854. (uuid "8db7b72f-7220-4d8e-a885-7c46c5e945cd")
  3855. )
  3856. (instances
  3857. (project "cx-copter-schematic"
  3858. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3859. (reference "#PWR042")
  3860. (unit 1)
  3861. )
  3862. )
  3863. )
  3864. )
  3865. (symbol
  3866. (lib_id "Device:R")
  3867. (at 106.68 85.09 0)
  3868. (unit 1)
  3869. (body_style 1)
  3870. (exclude_from_sim no)
  3871. (in_bom yes)
  3872. (on_board yes)
  3873. (in_pos_files yes)
  3874. (dnp no)
  3875. (uuid "af8a85c0-dbde-4123-b152-421e54025dc3")
  3876. (property "Reference" "R10"
  3877. (at 107.95 84.582 0)
  3878. (show_name no)
  3879. (do_not_autoplace no)
  3880. (effects
  3881. (font
  3882. (size 1.27 1.27)
  3883. )
  3884. (justify left)
  3885. )
  3886. )
  3887. (property "Value" "3k"
  3888. (at 108.204 86.614 0)
  3889. (show_name no)
  3890. (do_not_autoplace no)
  3891. (effects
  3892. (font
  3893. (size 1.27 1.27)
  3894. )
  3895. (justify left)
  3896. )
  3897. )
  3898. (property "Footprint" ""
  3899. (at 104.902 85.09 90)
  3900. (hide yes)
  3901. (show_name no)
  3902. (do_not_autoplace no)
  3903. (effects
  3904. (font
  3905. (size 1.27 1.27)
  3906. )
  3907. )
  3908. )
  3909. (property "Datasheet" ""
  3910. (at 106.68 85.09 0)
  3911. (hide yes)
  3912. (show_name no)
  3913. (do_not_autoplace no)
  3914. (effects
  3915. (font
  3916. (size 1.27 1.27)
  3917. )
  3918. )
  3919. )
  3920. (property "Description" "Resistor"
  3921. (at 106.68 85.09 0)
  3922. (hide yes)
  3923. (show_name no)
  3924. (do_not_autoplace no)
  3925. (effects
  3926. (font
  3927. (size 1.27 1.27)
  3928. )
  3929. )
  3930. )
  3931. (pin "2"
  3932. (uuid "981204c3-ed3c-4c53-b421-985ee8cf858d")
  3933. )
  3934. (pin "1"
  3935. (uuid "a17faad8-a690-4dd4-b8e5-ef42a75268a8")
  3936. )
  3937. (instances
  3938. (project "cx-copter-schematic"
  3939. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  3940. (reference "R10")
  3941. (unit 1)
  3942. )
  3943. )
  3944. )
  3945. )
  3946. (symbol
  3947. (lib_id "power:+5V")
  3948. (at 165.1 63.5 0)
  3949. (unit 1)
  3950. (body_style 1)
  3951. (exclude_from_sim no)
  3952. (in_bom yes)
  3953. (on_board yes)
  3954. (in_pos_files yes)
  3955. (dnp no)
  3956. (fields_autoplaced yes)
  3957. (uuid "b7e6e5af-66ea-480e-a2b4-7017f027a482")
  3958. (property "Reference" "#PWR039"
  3959. (at 165.1 67.31 0)
  3960. (hide yes)
  3961. (show_name no)
  3962. (do_not_autoplace no)
  3963. (effects
  3964. (font
  3965. (size 1.27 1.27)
  3966. )
  3967. )
  3968. )
  3969. (property "Value" "+5V"
  3970. (at 165.1 58.42 0)
  3971. (show_name no)
  3972. (do_not_autoplace no)
  3973. (effects
  3974. (font
  3975. (size 1.27 1.27)
  3976. )
  3977. )
  3978. )
  3979. (property "Footprint" ""
  3980. (at 165.1 63.5 0)
  3981. (hide yes)
  3982. (show_name no)
  3983. (do_not_autoplace no)
  3984. (effects
  3985. (font
  3986. (size 1.27 1.27)
  3987. )
  3988. )
  3989. )
  3990. (property "Datasheet" ""
  3991. (at 165.1 63.5 0)
  3992. (hide yes)
  3993. (show_name no)
  3994. (do_not_autoplace no)
  3995. (effects
  3996. (font
  3997. (size 1.27 1.27)
  3998. )
  3999. )
  4000. )
  4001. (property "Description" "Power symbol creates a global label with name \"+5V\""
  4002. (at 165.1 63.5 0)
  4003. (hide yes)
  4004. (show_name no)
  4005. (do_not_autoplace no)
  4006. (effects
  4007. (font
  4008. (size 1.27 1.27)
  4009. )
  4010. )
  4011. )
  4012. (pin "1"
  4013. (uuid "3a985d5a-7a6f-46d7-b8fb-471075b5ea0d")
  4014. )
  4015. (instances
  4016. (project "cx-copter-schematic"
  4017. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4018. (reference "#PWR039")
  4019. (unit 1)
  4020. )
  4021. )
  4022. )
  4023. )
  4024. (symbol
  4025. (lib_id "Device:C")
  4026. (at 33.02 53.34 0)
  4027. (unit 1)
  4028. (body_style 1)
  4029. (exclude_from_sim no)
  4030. (in_bom yes)
  4031. (on_board yes)
  4032. (in_pos_files yes)
  4033. (dnp no)
  4034. (uuid "c5f69fd9-e329-4222-bde7-c405c32fe8f2")
  4035. (property "Reference" "C20"
  4036. (at 33.02 51.308 0)
  4037. (show_name no)
  4038. (do_not_autoplace no)
  4039. (effects
  4040. (font
  4041. (size 1.27 1.27)
  4042. )
  4043. (justify left)
  4044. )
  4045. )
  4046. (property "Value" "100u"
  4047. (at 33.02 55.372 0)
  4048. (show_name no)
  4049. (do_not_autoplace no)
  4050. (effects
  4051. (font
  4052. (size 1.27 1.27)
  4053. )
  4054. (justify left)
  4055. )
  4056. )
  4057. (property "Footprint" ""
  4058. (at 33.9852 57.15 0)
  4059. (hide yes)
  4060. (show_name no)
  4061. (do_not_autoplace no)
  4062. (effects
  4063. (font
  4064. (size 1.27 1.27)
  4065. )
  4066. )
  4067. )
  4068. (property "Datasheet" ""
  4069. (at 33.02 53.34 0)
  4070. (hide yes)
  4071. (show_name no)
  4072. (do_not_autoplace no)
  4073. (effects
  4074. (font
  4075. (size 1.27 1.27)
  4076. )
  4077. )
  4078. )
  4079. (property "Description" "Unpolarized capacitor"
  4080. (at 33.02 53.34 0)
  4081. (hide yes)
  4082. (show_name no)
  4083. (do_not_autoplace no)
  4084. (effects
  4085. (font
  4086. (size 1.27 1.27)
  4087. )
  4088. )
  4089. )
  4090. (pin "2"
  4091. (uuid "195b4ea3-8585-4297-b220-edac75b7f5ef")
  4092. )
  4093. (pin "1"
  4094. (uuid "9e554d9b-841f-4ccc-8f75-8fcc3286872e")
  4095. )
  4096. (instances
  4097. (project "cx-copter-schematic"
  4098. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4099. (reference "C20")
  4100. (unit 1)
  4101. )
  4102. )
  4103. )
  4104. )
  4105. (symbol
  4106. (lib_id "Diode:B120-E3")
  4107. (at 96.52 48.26 180)
  4108. (unit 1)
  4109. (body_style 1)
  4110. (exclude_from_sim no)
  4111. (in_bom yes)
  4112. (on_board yes)
  4113. (in_pos_files yes)
  4114. (dnp no)
  4115. (uuid "cb82c858-08a2-4359-b888-cf9dc4211733")
  4116. (property "Reference" "D5"
  4117. (at 96.52 45.72 0)
  4118. (show_name no)
  4119. (do_not_autoplace no)
  4120. (effects
  4121. (font
  4122. (size 1.27 1.27)
  4123. )
  4124. )
  4125. )
  4126. (property "Value" "B120-13-F"
  4127. (at 96.52 50.8 0)
  4128. (show_name no)
  4129. (do_not_autoplace no)
  4130. (effects
  4131. (font
  4132. (size 1.27 1.27)
  4133. )
  4134. )
  4135. )
  4136. (property "Footprint" "Diode_SMD:D_SMA"
  4137. (at 96.52 43.815 0)
  4138. (hide yes)
  4139. (show_name no)
  4140. (do_not_autoplace no)
  4141. (effects
  4142. (font
  4143. (size 1.27 1.27)
  4144. )
  4145. )
  4146. )
  4147. (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
  4148. (at 96.52 48.26 0)
  4149. (hide yes)
  4150. (show_name no)
  4151. (do_not_autoplace no)
  4152. (effects
  4153. (font
  4154. (size 1.27 1.27)
  4155. )
  4156. )
  4157. )
  4158. (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
  4159. (at 96.52 48.26 0)
  4160. (hide yes)
  4161. (show_name no)
  4162. (do_not_autoplace no)
  4163. (effects
  4164. (font
  4165. (size 1.27 1.27)
  4166. )
  4167. )
  4168. )
  4169. (pin "1"
  4170. (uuid "6ffba1c9-6fc2-4076-8c71-e931eb42a19b")
  4171. )
  4172. (pin "2"
  4173. (uuid "b99b3331-f1f3-46ff-869b-ca0a964cc463")
  4174. )
  4175. (instances
  4176. (project "cx-copter-schematic"
  4177. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4178. (reference "D5")
  4179. (unit 1)
  4180. )
  4181. )
  4182. )
  4183. )
  4184. (symbol
  4185. (lib_id "power:GND")
  4186. (at 165.1 91.44 0)
  4187. (unit 1)
  4188. (body_style 1)
  4189. (exclude_from_sim no)
  4190. (in_bom yes)
  4191. (on_board yes)
  4192. (in_pos_files yes)
  4193. (dnp no)
  4194. (fields_autoplaced yes)
  4195. (uuid "cc1d4daa-dbf6-4935-af4d-00c99fa6f013")
  4196. (property "Reference" "#PWR041"
  4197. (at 165.1 97.79 0)
  4198. (hide yes)
  4199. (show_name no)
  4200. (do_not_autoplace no)
  4201. (effects
  4202. (font
  4203. (size 1.27 1.27)
  4204. )
  4205. )
  4206. )
  4207. (property "Value" "GND"
  4208. (at 165.1 96.52 0)
  4209. (show_name no)
  4210. (do_not_autoplace no)
  4211. (effects
  4212. (font
  4213. (size 1.27 1.27)
  4214. )
  4215. )
  4216. )
  4217. (property "Footprint" ""
  4218. (at 165.1 91.44 0)
  4219. (hide yes)
  4220. (show_name no)
  4221. (do_not_autoplace no)
  4222. (effects
  4223. (font
  4224. (size 1.27 1.27)
  4225. )
  4226. )
  4227. )
  4228. (property "Datasheet" ""
  4229. (at 165.1 91.44 0)
  4230. (hide yes)
  4231. (show_name no)
  4232. (do_not_autoplace no)
  4233. (effects
  4234. (font
  4235. (size 1.27 1.27)
  4236. )
  4237. )
  4238. )
  4239. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  4240. (at 165.1 91.44 0)
  4241. (hide yes)
  4242. (show_name no)
  4243. (do_not_autoplace no)
  4244. (effects
  4245. (font
  4246. (size 1.27 1.27)
  4247. )
  4248. )
  4249. )
  4250. (pin "1"
  4251. (uuid "eac67ccb-eaaa-43d8-a49f-7b243cb92e3f")
  4252. )
  4253. (instances
  4254. (project "cx-copter-schematic"
  4255. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4256. (reference "#PWR041")
  4257. (unit 1)
  4258. )
  4259. )
  4260. )
  4261. )
  4262. (symbol
  4263. (lib_id "power:+3V3")
  4264. (at 232.41 63.5 0)
  4265. (unit 1)
  4266. (body_style 1)
  4267. (exclude_from_sim no)
  4268. (in_bom yes)
  4269. (on_board yes)
  4270. (in_pos_files yes)
  4271. (dnp no)
  4272. (fields_autoplaced yes)
  4273. (uuid "dbb1b0ac-0635-408c-8cf8-bd0596125bab")
  4274. (property "Reference" "#PWR037"
  4275. (at 232.41 67.31 0)
  4276. (hide yes)
  4277. (show_name no)
  4278. (do_not_autoplace no)
  4279. (effects
  4280. (font
  4281. (size 1.27 1.27)
  4282. )
  4283. )
  4284. )
  4285. (property "Value" "+3V3"
  4286. (at 232.41 58.42 0)
  4287. (show_name no)
  4288. (do_not_autoplace no)
  4289. (effects
  4290. (font
  4291. (size 1.27 1.27)
  4292. )
  4293. )
  4294. )
  4295. (property "Footprint" ""
  4296. (at 232.41 63.5 0)
  4297. (hide yes)
  4298. (show_name no)
  4299. (do_not_autoplace no)
  4300. (effects
  4301. (font
  4302. (size 1.27 1.27)
  4303. )
  4304. )
  4305. )
  4306. (property "Datasheet" ""
  4307. (at 232.41 63.5 0)
  4308. (hide yes)
  4309. (show_name no)
  4310. (do_not_autoplace no)
  4311. (effects
  4312. (font
  4313. (size 1.27 1.27)
  4314. )
  4315. )
  4316. )
  4317. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  4318. (at 232.41 63.5 0)
  4319. (hide yes)
  4320. (show_name no)
  4321. (do_not_autoplace no)
  4322. (effects
  4323. (font
  4324. (size 1.27 1.27)
  4325. )
  4326. )
  4327. )
  4328. (pin "1"
  4329. (uuid "b4c0f497-c0ed-42f6-b4c0-640c196a35df")
  4330. )
  4331. (instances
  4332. (project "cx-copter-schematic"
  4333. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4334. (reference "#PWR037")
  4335. (unit 1)
  4336. )
  4337. )
  4338. )
  4339. )
  4340. (symbol
  4341. (lib_id "Diode:B120-E3")
  4342. (at 195.58 64.77 0)
  4343. (unit 1)
  4344. (body_style 1)
  4345. (exclude_from_sim no)
  4346. (in_bom yes)
  4347. (on_board yes)
  4348. (in_pos_files yes)
  4349. (dnp no)
  4350. (uuid "e7f3c491-36d1-477d-891d-f0b98117b140")
  4351. (property "Reference" "D6"
  4352. (at 195.58 67.31 0)
  4353. (show_name no)
  4354. (do_not_autoplace no)
  4355. (effects
  4356. (font
  4357. (size 1.27 1.27)
  4358. )
  4359. )
  4360. )
  4361. (property "Value" "B120-13-F"
  4362. (at 195.58 62.23 0)
  4363. (show_name no)
  4364. (do_not_autoplace no)
  4365. (effects
  4366. (font
  4367. (size 1.27 1.27)
  4368. )
  4369. )
  4370. )
  4371. (property "Footprint" "Diode_SMD:D_SMA"
  4372. (at 195.58 69.215 0)
  4373. (hide yes)
  4374. (show_name no)
  4375. (do_not_autoplace no)
  4376. (effects
  4377. (font
  4378. (size 1.27 1.27)
  4379. )
  4380. )
  4381. )
  4382. (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
  4383. (at 195.58 64.77 0)
  4384. (hide yes)
  4385. (show_name no)
  4386. (do_not_autoplace no)
  4387. (effects
  4388. (font
  4389. (size 1.27 1.27)
  4390. )
  4391. )
  4392. )
  4393. (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
  4394. (at 195.58 64.77 0)
  4395. (hide yes)
  4396. (show_name no)
  4397. (do_not_autoplace no)
  4398. (effects
  4399. (font
  4400. (size 1.27 1.27)
  4401. )
  4402. )
  4403. )
  4404. (pin "1"
  4405. (uuid "25515f0a-9088-45b7-ae1d-a1abf061f0dd")
  4406. )
  4407. (pin "2"
  4408. (uuid "2a226209-7679-47eb-9173-af108a95f1dc")
  4409. )
  4410. (instances
  4411. (project "cx-copter-schematic"
  4412. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4413. (reference "D6")
  4414. (unit 1)
  4415. )
  4416. )
  4417. )
  4418. )
  4419. (symbol
  4420. (lib_id "Device:C")
  4421. (at 208.28 85.09 0)
  4422. (unit 1)
  4423. (body_style 1)
  4424. (exclude_from_sim no)
  4425. (in_bom yes)
  4426. (on_board yes)
  4427. (in_pos_files yes)
  4428. (dnp no)
  4429. (uuid "eae08c15-ef1d-41a6-bf9d-b9fe7c0ccd98")
  4430. (property "Reference" "C13"
  4431. (at 210.566 83.82 0)
  4432. (show_name no)
  4433. (do_not_autoplace no)
  4434. (effects
  4435. (font
  4436. (size 1.27 1.27)
  4437. )
  4438. (justify left)
  4439. )
  4440. )
  4441. (property "Value" "100n"
  4442. (at 210.566 86.36 0)
  4443. (show_name no)
  4444. (do_not_autoplace no)
  4445. (effects
  4446. (font
  4447. (size 1.27 1.27)
  4448. )
  4449. (justify left)
  4450. )
  4451. )
  4452. (property "Footprint" ""
  4453. (at 209.2452 88.9 0)
  4454. (hide yes)
  4455. (show_name no)
  4456. (do_not_autoplace no)
  4457. (effects
  4458. (font
  4459. (size 1.27 1.27)
  4460. )
  4461. )
  4462. )
  4463. (property "Datasheet" ""
  4464. (at 208.28 85.09 0)
  4465. (hide yes)
  4466. (show_name no)
  4467. (do_not_autoplace no)
  4468. (effects
  4469. (font
  4470. (size 1.27 1.27)
  4471. )
  4472. )
  4473. )
  4474. (property "Description" "Unpolarized capacitor"
  4475. (at 208.28 85.09 0)
  4476. (hide yes)
  4477. (show_name no)
  4478. (do_not_autoplace no)
  4479. (effects
  4480. (font
  4481. (size 1.27 1.27)
  4482. )
  4483. )
  4484. )
  4485. (pin "2"
  4486. (uuid "3cd8a567-2e77-4eb9-94a0-5930d4be94ca")
  4487. )
  4488. (pin "1"
  4489. (uuid "f597a381-a992-42c8-a3ee-bf52d19a9339")
  4490. )
  4491. (instances
  4492. (project "cx-copter-schematic"
  4493. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4494. (reference "C13")
  4495. (unit 1)
  4496. )
  4497. )
  4498. )
  4499. )
  4500. (symbol
  4501. (lib_id "Device:C")
  4502. (at 45.72 53.34 0)
  4503. (unit 1)
  4504. (body_style 1)
  4505. (exclude_from_sim no)
  4506. (in_bom yes)
  4507. (on_board yes)
  4508. (in_pos_files yes)
  4509. (dnp no)
  4510. (uuid "f650e7a5-0185-4e51-a241-5b6a60e499f9")
  4511. (property "Reference" "C14"
  4512. (at 45.72 51.308 0)
  4513. (show_name no)
  4514. (do_not_autoplace no)
  4515. (effects
  4516. (font
  4517. (size 1.27 1.27)
  4518. )
  4519. (justify left)
  4520. )
  4521. )
  4522. (property "Value" "47u"
  4523. (at 45.72 55.372 0)
  4524. (show_name no)
  4525. (do_not_autoplace no)
  4526. (effects
  4527. (font
  4528. (size 1.27 1.27)
  4529. )
  4530. (justify left)
  4531. )
  4532. )
  4533. (property "Footprint" ""
  4534. (at 46.6852 57.15 0)
  4535. (hide yes)
  4536. (show_name no)
  4537. (do_not_autoplace no)
  4538. (effects
  4539. (font
  4540. (size 1.27 1.27)
  4541. )
  4542. )
  4543. )
  4544. (property "Datasheet" ""
  4545. (at 45.72 53.34 0)
  4546. (hide yes)
  4547. (show_name no)
  4548. (do_not_autoplace no)
  4549. (effects
  4550. (font
  4551. (size 1.27 1.27)
  4552. )
  4553. )
  4554. )
  4555. (property "Description" "Unpolarized capacitor"
  4556. (at 45.72 53.34 0)
  4557. (hide yes)
  4558. (show_name no)
  4559. (do_not_autoplace no)
  4560. (effects
  4561. (font
  4562. (size 1.27 1.27)
  4563. )
  4564. )
  4565. )
  4566. (pin "2"
  4567. (uuid "9e49bd19-946c-4bcd-970a-856fa4423905")
  4568. )
  4569. (pin "1"
  4570. (uuid "47e3f963-dd30-47a1-93bc-7843ee318d29")
  4571. )
  4572. (instances
  4573. (project "cx-copter-schematic"
  4574. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4575. (reference "C14")
  4576. (unit 1)
  4577. )
  4578. )
  4579. )
  4580. )
  4581. (symbol
  4582. (lib_id "power:+5V")
  4583. (at 140.97 46.99 0)
  4584. (unit 1)
  4585. (body_style 1)
  4586. (exclude_from_sim no)
  4587. (in_bom yes)
  4588. (on_board yes)
  4589. (in_pos_files yes)
  4590. (dnp no)
  4591. (fields_autoplaced yes)
  4592. (uuid "f9cea24c-7f67-42ac-9796-a5c38aaaa550")
  4593. (property "Reference" "#PWR034"
  4594. (at 140.97 50.8 0)
  4595. (hide yes)
  4596. (show_name no)
  4597. (do_not_autoplace no)
  4598. (effects
  4599. (font
  4600. (size 1.27 1.27)
  4601. )
  4602. )
  4603. )
  4604. (property "Value" "+5V"
  4605. (at 140.97 41.91 0)
  4606. (show_name no)
  4607. (do_not_autoplace no)
  4608. (effects
  4609. (font
  4610. (size 1.27 1.27)
  4611. )
  4612. )
  4613. )
  4614. (property "Footprint" ""
  4615. (at 140.97 46.99 0)
  4616. (hide yes)
  4617. (show_name no)
  4618. (do_not_autoplace no)
  4619. (effects
  4620. (font
  4621. (size 1.27 1.27)
  4622. )
  4623. )
  4624. )
  4625. (property "Datasheet" ""
  4626. (at 140.97 46.99 0)
  4627. (hide yes)
  4628. (show_name no)
  4629. (do_not_autoplace no)
  4630. (effects
  4631. (font
  4632. (size 1.27 1.27)
  4633. )
  4634. )
  4635. )
  4636. (property "Description" "Power symbol creates a global label with name \"+5V\""
  4637. (at 140.97 46.99 0)
  4638. (hide yes)
  4639. (show_name no)
  4640. (do_not_autoplace no)
  4641. (effects
  4642. (font
  4643. (size 1.27 1.27)
  4644. )
  4645. )
  4646. )
  4647. (pin "1"
  4648. (uuid "060bb4da-1d57-4c34-867c-9c98cc5bdc37")
  4649. )
  4650. (instances
  4651. (project "cx-copter-schematic"
  4652. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4653. (reference "#PWR034")
  4654. (unit 1)
  4655. )
  4656. )
  4657. )
  4658. )
  4659. (symbol
  4660. (lib_id "power:GND")
  4661. (at 33.02 59.69 0)
  4662. (unit 1)
  4663. (body_style 1)
  4664. (exclude_from_sim no)
  4665. (in_bom yes)
  4666. (on_board yes)
  4667. (in_pos_files yes)
  4668. (dnp no)
  4669. (fields_autoplaced yes)
  4670. (uuid "ff6757bc-afc3-4ea0-8975-7482726980c2")
  4671. (property "Reference" "#PWR043"
  4672. (at 33.02 66.04 0)
  4673. (hide yes)
  4674. (show_name no)
  4675. (do_not_autoplace no)
  4676. (effects
  4677. (font
  4678. (size 1.27 1.27)
  4679. )
  4680. )
  4681. )
  4682. (property "Value" "GND"
  4683. (at 33.02 64.77 0)
  4684. (show_name no)
  4685. (do_not_autoplace no)
  4686. (effects
  4687. (font
  4688. (size 1.27 1.27)
  4689. )
  4690. )
  4691. )
  4692. (property "Footprint" ""
  4693. (at 33.02 59.69 0)
  4694. (hide yes)
  4695. (show_name no)
  4696. (do_not_autoplace no)
  4697. (effects
  4698. (font
  4699. (size 1.27 1.27)
  4700. )
  4701. )
  4702. )
  4703. (property "Datasheet" ""
  4704. (at 33.02 59.69 0)
  4705. (hide yes)
  4706. (show_name no)
  4707. (do_not_autoplace no)
  4708. (effects
  4709. (font
  4710. (size 1.27 1.27)
  4711. )
  4712. )
  4713. )
  4714. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  4715. (at 33.02 59.69 0)
  4716. (hide yes)
  4717. (show_name no)
  4718. (do_not_autoplace no)
  4719. (effects
  4720. (font
  4721. (size 1.27 1.27)
  4722. )
  4723. )
  4724. )
  4725. (pin "1"
  4726. (uuid "98a88c97-7664-43ae-a859-a4cd9bbdadac")
  4727. )
  4728. (instances
  4729. (project "cx-copter-schematic"
  4730. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe"
  4731. (reference "#PWR043")
  4732. (unit 1)
  4733. )
  4734. )
  4735. )
  4736. )
  4737. )