motor_controllers.kicad_sch 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "54c2503b-a635-476f-87a0-c389ee7b9d0b")
  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:D_Schottky"
  164. (pin_numbers
  165. (hide yes)
  166. )
  167. (pin_names
  168. (offset 1.016)
  169. (hide yes)
  170. )
  171. (exclude_from_sim no)
  172. (in_bom yes)
  173. (on_board yes)
  174. (in_pos_files yes)
  175. (duplicate_pin_numbers_are_jumpers no)
  176. (property "Reference" "D"
  177. (at 0 2.54 0)
  178. (show_name no)
  179. (do_not_autoplace no)
  180. (effects
  181. (font
  182. (size 1.27 1.27)
  183. )
  184. )
  185. )
  186. (property "Value" "D_Schottky"
  187. (at 0 -2.54 0)
  188. (show_name no)
  189. (do_not_autoplace no)
  190. (effects
  191. (font
  192. (size 1.27 1.27)
  193. )
  194. )
  195. )
  196. (property "Footprint" ""
  197. (at 0 0 0)
  198. (show_name no)
  199. (do_not_autoplace no)
  200. (hide yes)
  201. (effects
  202. (font
  203. (size 1.27 1.27)
  204. )
  205. )
  206. )
  207. (property "Datasheet" ""
  208. (at 0 0 0)
  209. (show_name no)
  210. (do_not_autoplace no)
  211. (hide yes)
  212. (effects
  213. (font
  214. (size 1.27 1.27)
  215. )
  216. )
  217. )
  218. (property "Description" "Schottky diode"
  219. (at 0 0 0)
  220. (show_name no)
  221. (do_not_autoplace no)
  222. (hide yes)
  223. (effects
  224. (font
  225. (size 1.27 1.27)
  226. )
  227. )
  228. )
  229. (property "ki_keywords" "diode Schottky"
  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" "TO-???* *_Diode_* *SingleDiode* D_*"
  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 "D_Schottky_0_1"
  252. (polyline
  253. (pts
  254. (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)
  255. )
  256. (stroke
  257. (width 0.254)
  258. (type default)
  259. )
  260. (fill
  261. (type none)
  262. )
  263. )
  264. (polyline
  265. (pts
  266. (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
  267. )
  268. (stroke
  269. (width 0.254)
  270. (type default)
  271. )
  272. (fill
  273. (type none)
  274. )
  275. )
  276. (polyline
  277. (pts
  278. (xy 1.27 0) (xy -1.27 0)
  279. )
  280. (stroke
  281. (width 0)
  282. (type default)
  283. )
  284. (fill
  285. (type none)
  286. )
  287. )
  288. )
  289. (symbol "D_Schottky_1_1"
  290. (pin passive line
  291. (at -3.81 0 0)
  292. (length 2.54)
  293. (name "K"
  294. (effects
  295. (font
  296. (size 1.27 1.27)
  297. )
  298. )
  299. )
  300. (number "1"
  301. (effects
  302. (font
  303. (size 1.27 1.27)
  304. )
  305. )
  306. )
  307. )
  308. (pin passive line
  309. (at 3.81 0 180)
  310. (length 2.54)
  311. (name "A"
  312. (effects
  313. (font
  314. (size 1.27 1.27)
  315. )
  316. )
  317. )
  318. (number "2"
  319. (effects
  320. (font
  321. (size 1.27 1.27)
  322. )
  323. )
  324. )
  325. )
  326. )
  327. (embedded_fonts no)
  328. )
  329. (symbol "Device:R"
  330. (pin_numbers
  331. (hide yes)
  332. )
  333. (pin_names
  334. (offset 0)
  335. )
  336. (exclude_from_sim no)
  337. (in_bom yes)
  338. (on_board yes)
  339. (in_pos_files yes)
  340. (duplicate_pin_numbers_are_jumpers no)
  341. (property "Reference" "R"
  342. (at 2.032 0 90)
  343. (show_name no)
  344. (do_not_autoplace no)
  345. (effects
  346. (font
  347. (size 1.27 1.27)
  348. )
  349. )
  350. )
  351. (property "Value" "R"
  352. (at 0 0 90)
  353. (show_name no)
  354. (do_not_autoplace no)
  355. (effects
  356. (font
  357. (size 1.27 1.27)
  358. )
  359. )
  360. )
  361. (property "Footprint" ""
  362. (at -1.778 0 90)
  363. (show_name no)
  364. (do_not_autoplace no)
  365. (hide yes)
  366. (effects
  367. (font
  368. (size 1.27 1.27)
  369. )
  370. )
  371. )
  372. (property "Datasheet" ""
  373. (at 0 0 0)
  374. (show_name no)
  375. (do_not_autoplace no)
  376. (hide yes)
  377. (effects
  378. (font
  379. (size 1.27 1.27)
  380. )
  381. )
  382. )
  383. (property "Description" "Resistor"
  384. (at 0 0 0)
  385. (show_name no)
  386. (do_not_autoplace no)
  387. (hide yes)
  388. (effects
  389. (font
  390. (size 1.27 1.27)
  391. )
  392. )
  393. )
  394. (property "ki_keywords" "R res resistor"
  395. (at 0 0 0)
  396. (show_name no)
  397. (do_not_autoplace no)
  398. (hide yes)
  399. (effects
  400. (font
  401. (size 1.27 1.27)
  402. )
  403. )
  404. )
  405. (property "ki_fp_filters" "R_*"
  406. (at 0 0 0)
  407. (show_name no)
  408. (do_not_autoplace no)
  409. (hide yes)
  410. (effects
  411. (font
  412. (size 1.27 1.27)
  413. )
  414. )
  415. )
  416. (symbol "R_0_1"
  417. (rectangle
  418. (start -1.016 -2.54)
  419. (end 1.016 2.54)
  420. (stroke
  421. (width 0.254)
  422. (type default)
  423. )
  424. (fill
  425. (type none)
  426. )
  427. )
  428. )
  429. (symbol "R_1_1"
  430. (pin passive line
  431. (at 0 3.81 270)
  432. (length 1.27)
  433. (name ""
  434. (effects
  435. (font
  436. (size 1.27 1.27)
  437. )
  438. )
  439. )
  440. (number "1"
  441. (effects
  442. (font
  443. (size 1.27 1.27)
  444. )
  445. )
  446. )
  447. )
  448. (pin passive line
  449. (at 0 -3.81 90)
  450. (length 1.27)
  451. (name ""
  452. (effects
  453. (font
  454. (size 1.27 1.27)
  455. )
  456. )
  457. )
  458. (number "2"
  459. (effects
  460. (font
  461. (size 1.27 1.27)
  462. )
  463. )
  464. )
  465. )
  466. )
  467. (embedded_fonts no)
  468. )
  469. (symbol "Motor:Motor_DC_ALT"
  470. (pin_names
  471. (offset 0)
  472. )
  473. (exclude_from_sim no)
  474. (in_bom yes)
  475. (on_board yes)
  476. (in_pos_files yes)
  477. (duplicate_pin_numbers_are_jumpers no)
  478. (property "Reference" "M"
  479. (at 2.54 2.54 0)
  480. (show_name no)
  481. (do_not_autoplace no)
  482. (effects
  483. (font
  484. (size 1.27 1.27)
  485. )
  486. (justify left)
  487. )
  488. )
  489. (property "Value" "Motor_DC_ALT"
  490. (at 2.54 -5.08 0)
  491. (show_name no)
  492. (do_not_autoplace no)
  493. (effects
  494. (font
  495. (size 1.27 1.27)
  496. )
  497. (justify left top)
  498. )
  499. )
  500. (property "Footprint" ""
  501. (at 0 -2.286 0)
  502. (show_name no)
  503. (do_not_autoplace no)
  504. (hide yes)
  505. (effects
  506. (font
  507. (size 1.27 1.27)
  508. )
  509. )
  510. )
  511. (property "Datasheet" ""
  512. (at 0 -2.286 0)
  513. (show_name no)
  514. (do_not_autoplace no)
  515. (hide yes)
  516. (effects
  517. (font
  518. (size 1.27 1.27)
  519. )
  520. )
  521. )
  522. (property "Description" "DC Motor, alternative symbol"
  523. (at 0 0 0)
  524. (show_name no)
  525. (do_not_autoplace no)
  526. (hide yes)
  527. (effects
  528. (font
  529. (size 1.27 1.27)
  530. )
  531. )
  532. )
  533. (property "ki_keywords" "DC Motor"
  534. (at 0 0 0)
  535. (show_name no)
  536. (do_not_autoplace no)
  537. (hide yes)
  538. (effects
  539. (font
  540. (size 1.27 1.27)
  541. )
  542. )
  543. )
  544. (property "ki_fp_filters" "PinHeader*P2.54mm* TerminalBlock*"
  545. (at 0 0 0)
  546. (show_name no)
  547. (do_not_autoplace no)
  548. (hide yes)
  549. (effects
  550. (font
  551. (size 1.27 1.27)
  552. )
  553. )
  554. )
  555. (symbol "Motor_DC_ALT_0_0"
  556. (polyline
  557. (pts
  558. (xy -1.27 1.27) (xy -1.27 2.032) (xy 1.27 2.032) (xy 1.27 1.27)
  559. )
  560. (stroke
  561. (width 0)
  562. (type default)
  563. )
  564. (fill
  565. (type none)
  566. )
  567. )
  568. (polyline
  569. (pts
  570. (xy -1.27 -3.302) (xy -1.27 0.508) (xy 0 -2.032) (xy 1.27 0.508) (xy 1.27 -3.302)
  571. )
  572. (stroke
  573. (width 0)
  574. (type default)
  575. )
  576. (fill
  577. (type none)
  578. )
  579. )
  580. (polyline
  581. (pts
  582. (xy -1.27 -4.318) (xy -1.27 -5.08) (xy 1.27 -5.08) (xy 1.27 -4.318)
  583. )
  584. (stroke
  585. (width 0)
  586. (type default)
  587. )
  588. (fill
  589. (type none)
  590. )
  591. )
  592. (circle
  593. (center 0 -1.524)
  594. (radius 2.9718)
  595. (stroke
  596. (width 0.254)
  597. (type default)
  598. )
  599. (fill
  600. (type none)
  601. )
  602. )
  603. )
  604. (symbol "Motor_DC_ALT_0_1"
  605. (polyline
  606. (pts
  607. (xy 0 2.032) (xy 0 2.54)
  608. )
  609. (stroke
  610. (width 0)
  611. (type default)
  612. )
  613. (fill
  614. (type none)
  615. )
  616. )
  617. )
  618. (symbol "Motor_DC_ALT_1_1"
  619. (pin passive line
  620. (at 0 5.08 270)
  621. (length 2.54)
  622. (name "+"
  623. (effects
  624. (font
  625. (size 1.27 1.27)
  626. )
  627. )
  628. )
  629. (number "1"
  630. (effects
  631. (font
  632. (size 1.27 1.27)
  633. )
  634. )
  635. )
  636. )
  637. (pin passive line
  638. (at 0 -7.62 90)
  639. (length 2.54)
  640. (name "-"
  641. (effects
  642. (font
  643. (size 1.27 1.27)
  644. )
  645. )
  646. )
  647. (number "2"
  648. (effects
  649. (font
  650. (size 1.27 1.27)
  651. )
  652. )
  653. )
  654. )
  655. )
  656. (embedded_fonts no)
  657. )
  658. (symbol "power:GND"
  659. (power global)
  660. (pin_numbers
  661. (hide yes)
  662. )
  663. (pin_names
  664. (offset 0)
  665. (hide yes)
  666. )
  667. (exclude_from_sim no)
  668. (in_bom yes)
  669. (on_board yes)
  670. (in_pos_files yes)
  671. (duplicate_pin_numbers_are_jumpers no)
  672. (property "Reference" "#PWR"
  673. (at 0 -6.35 0)
  674. (show_name no)
  675. (do_not_autoplace no)
  676. (hide yes)
  677. (effects
  678. (font
  679. (size 1.27 1.27)
  680. )
  681. )
  682. )
  683. (property "Value" "GND"
  684. (at 0 -3.81 0)
  685. (show_name no)
  686. (do_not_autoplace no)
  687. (effects
  688. (font
  689. (size 1.27 1.27)
  690. )
  691. )
  692. )
  693. (property "Footprint" ""
  694. (at 0 0 0)
  695. (show_name no)
  696. (do_not_autoplace no)
  697. (hide yes)
  698. (effects
  699. (font
  700. (size 1.27 1.27)
  701. )
  702. )
  703. )
  704. (property "Datasheet" ""
  705. (at 0 0 0)
  706. (show_name no)
  707. (do_not_autoplace no)
  708. (hide yes)
  709. (effects
  710. (font
  711. (size 1.27 1.27)
  712. )
  713. )
  714. )
  715. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  716. (at 0 0 0)
  717. (show_name no)
  718. (do_not_autoplace no)
  719. (hide yes)
  720. (effects
  721. (font
  722. (size 1.27 1.27)
  723. )
  724. )
  725. )
  726. (property "ki_keywords" "global power"
  727. (at 0 0 0)
  728. (show_name no)
  729. (do_not_autoplace no)
  730. (hide yes)
  731. (effects
  732. (font
  733. (size 1.27 1.27)
  734. )
  735. )
  736. )
  737. (symbol "GND_0_1"
  738. (polyline
  739. (pts
  740. (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)
  741. )
  742. (stroke
  743. (width 0)
  744. (type default)
  745. )
  746. (fill
  747. (type none)
  748. )
  749. )
  750. )
  751. (symbol "GND_1_1"
  752. (pin power_in line
  753. (at 0 0 270)
  754. (length 0)
  755. (name ""
  756. (effects
  757. (font
  758. (size 1.27 1.27)
  759. )
  760. )
  761. )
  762. (number "1"
  763. (effects
  764. (font
  765. (size 1.27 1.27)
  766. )
  767. )
  768. )
  769. )
  770. )
  771. (embedded_fonts no)
  772. )
  773. (symbol "power:GNDPWR"
  774. (power global)
  775. (pin_numbers
  776. (hide yes)
  777. )
  778. (pin_names
  779. (offset 0)
  780. (hide yes)
  781. )
  782. (exclude_from_sim no)
  783. (in_bom yes)
  784. (on_board yes)
  785. (in_pos_files yes)
  786. (duplicate_pin_numbers_are_jumpers no)
  787. (property "Reference" "#PWR"
  788. (at 0 -5.08 0)
  789. (show_name no)
  790. (do_not_autoplace no)
  791. (hide yes)
  792. (effects
  793. (font
  794. (size 1.27 1.27)
  795. )
  796. )
  797. )
  798. (property "Value" "GNDPWR"
  799. (at 0 -3.302 0)
  800. (show_name no)
  801. (do_not_autoplace no)
  802. (effects
  803. (font
  804. (size 1.27 1.27)
  805. )
  806. )
  807. )
  808. (property "Footprint" ""
  809. (at 0 -1.27 0)
  810. (show_name no)
  811. (do_not_autoplace no)
  812. (hide yes)
  813. (effects
  814. (font
  815. (size 1.27 1.27)
  816. )
  817. )
  818. )
  819. (property "Datasheet" ""
  820. (at 0 -1.27 0)
  821. (show_name no)
  822. (do_not_autoplace no)
  823. (hide yes)
  824. (effects
  825. (font
  826. (size 1.27 1.27)
  827. )
  828. )
  829. )
  830. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  831. (at 0 0 0)
  832. (show_name no)
  833. (do_not_autoplace no)
  834. (hide yes)
  835. (effects
  836. (font
  837. (size 1.27 1.27)
  838. )
  839. )
  840. )
  841. (property "ki_keywords" "global ground"
  842. (at 0 0 0)
  843. (show_name no)
  844. (do_not_autoplace no)
  845. (hide yes)
  846. (effects
  847. (font
  848. (size 1.27 1.27)
  849. )
  850. )
  851. )
  852. (symbol "GNDPWR_0_1"
  853. (polyline
  854. (pts
  855. (xy -1.016 -1.27) (xy -1.27 -2.032) (xy -1.27 -2.032)
  856. )
  857. (stroke
  858. (width 0.2032)
  859. (type default)
  860. )
  861. (fill
  862. (type none)
  863. )
  864. )
  865. (polyline
  866. (pts
  867. (xy -0.508 -1.27) (xy -0.762 -2.032) (xy -0.762 -2.032)
  868. )
  869. (stroke
  870. (width 0.2032)
  871. (type default)
  872. )
  873. (fill
  874. (type none)
  875. )
  876. )
  877. (polyline
  878. (pts
  879. (xy 0 -1.27) (xy 0 0)
  880. )
  881. (stroke
  882. (width 0)
  883. (type default)
  884. )
  885. (fill
  886. (type none)
  887. )
  888. )
  889. (polyline
  890. (pts
  891. (xy 0 -1.27) (xy -0.254 -2.032) (xy -0.254 -2.032)
  892. )
  893. (stroke
  894. (width 0.2032)
  895. (type default)
  896. )
  897. (fill
  898. (type none)
  899. )
  900. )
  901. (polyline
  902. (pts
  903. (xy 0.508 -1.27) (xy 0.254 -2.032) (xy 0.254 -2.032)
  904. )
  905. (stroke
  906. (width 0.2032)
  907. (type default)
  908. )
  909. (fill
  910. (type none)
  911. )
  912. )
  913. (polyline
  914. (pts
  915. (xy 1.016 -1.27) (xy -1.016 -1.27) (xy -1.016 -1.27)
  916. )
  917. (stroke
  918. (width 0.2032)
  919. (type default)
  920. )
  921. (fill
  922. (type none)
  923. )
  924. )
  925. (polyline
  926. (pts
  927. (xy 1.016 -1.27) (xy 0.762 -2.032) (xy 0.762 -2.032) (xy 0.762 -2.032)
  928. )
  929. (stroke
  930. (width 0.2032)
  931. (type default)
  932. )
  933. (fill
  934. (type none)
  935. )
  936. )
  937. )
  938. (symbol "GNDPWR_1_1"
  939. (pin power_in line
  940. (at 0 0 270)
  941. (length 0)
  942. (name ""
  943. (effects
  944. (font
  945. (size 1.27 1.27)
  946. )
  947. )
  948. )
  949. (number "1"
  950. (effects
  951. (font
  952. (size 1.27 1.27)
  953. )
  954. )
  955. )
  956. )
  957. )
  958. (embedded_fonts no)
  959. )
  960. (symbol "power:VCC"
  961. (power global)
  962. (pin_numbers
  963. (hide yes)
  964. )
  965. (pin_names
  966. (offset 0)
  967. (hide yes)
  968. )
  969. (exclude_from_sim no)
  970. (in_bom yes)
  971. (on_board yes)
  972. (in_pos_files yes)
  973. (duplicate_pin_numbers_are_jumpers no)
  974. (property "Reference" "#PWR"
  975. (at 0 -3.81 0)
  976. (show_name no)
  977. (do_not_autoplace no)
  978. (hide yes)
  979. (effects
  980. (font
  981. (size 1.27 1.27)
  982. )
  983. )
  984. )
  985. (property "Value" "VCC"
  986. (at 0 3.556 0)
  987. (show_name no)
  988. (do_not_autoplace no)
  989. (effects
  990. (font
  991. (size 1.27 1.27)
  992. )
  993. )
  994. )
  995. (property "Footprint" ""
  996. (at 0 0 0)
  997. (show_name no)
  998. (do_not_autoplace no)
  999. (hide yes)
  1000. (effects
  1001. (font
  1002. (size 1.27 1.27)
  1003. )
  1004. )
  1005. )
  1006. (property "Datasheet" ""
  1007. (at 0 0 0)
  1008. (show_name no)
  1009. (do_not_autoplace no)
  1010. (hide yes)
  1011. (effects
  1012. (font
  1013. (size 1.27 1.27)
  1014. )
  1015. )
  1016. )
  1017. (property "Description" "Power symbol creates a global label with name \"VCC\""
  1018. (at 0 0 0)
  1019. (show_name no)
  1020. (do_not_autoplace no)
  1021. (hide yes)
  1022. (effects
  1023. (font
  1024. (size 1.27 1.27)
  1025. )
  1026. )
  1027. )
  1028. (property "ki_keywords" "global power"
  1029. (at 0 0 0)
  1030. (show_name no)
  1031. (do_not_autoplace no)
  1032. (hide yes)
  1033. (effects
  1034. (font
  1035. (size 1.27 1.27)
  1036. )
  1037. )
  1038. )
  1039. (symbol "VCC_0_1"
  1040. (polyline
  1041. (pts
  1042. (xy -0.762 1.27) (xy 0 2.54)
  1043. )
  1044. (stroke
  1045. (width 0)
  1046. (type default)
  1047. )
  1048. (fill
  1049. (type none)
  1050. )
  1051. )
  1052. (polyline
  1053. (pts
  1054. (xy 0 2.54) (xy 0.762 1.27)
  1055. )
  1056. (stroke
  1057. (width 0)
  1058. (type default)
  1059. )
  1060. (fill
  1061. (type none)
  1062. )
  1063. )
  1064. (polyline
  1065. (pts
  1066. (xy 0 0) (xy 0 2.54)
  1067. )
  1068. (stroke
  1069. (width 0)
  1070. (type default)
  1071. )
  1072. (fill
  1073. (type none)
  1074. )
  1075. )
  1076. )
  1077. (symbol "VCC_1_1"
  1078. (pin power_in line
  1079. (at 0 0 90)
  1080. (length 0)
  1081. (name ""
  1082. (effects
  1083. (font
  1084. (size 1.27 1.27)
  1085. )
  1086. )
  1087. )
  1088. (number "1"
  1089. (effects
  1090. (font
  1091. (size 1.27 1.27)
  1092. )
  1093. )
  1094. )
  1095. )
  1096. )
  1097. (embedded_fonts no)
  1098. )
  1099. (symbol "transistors:YJL2312A"
  1100. (exclude_from_sim no)
  1101. (in_bom yes)
  1102. (on_board yes)
  1103. (in_pos_files yes)
  1104. (duplicate_pin_numbers_are_jumpers no)
  1105. (property "Reference" "Q"
  1106. (at 4.826 3.302 0)
  1107. (show_name no)
  1108. (do_not_autoplace no)
  1109. (effects
  1110. (font
  1111. (size 1.27 1.27)
  1112. )
  1113. )
  1114. )
  1115. (property "Value" "YJL2312A"
  1116. (at 0 0 0)
  1117. (show_name no)
  1118. (do_not_autoplace no)
  1119. (effects
  1120. (font
  1121. (size 1.27 1.27)
  1122. )
  1123. )
  1124. )
  1125. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  1126. (at 0 0 0)
  1127. (show_name no)
  1128. (do_not_autoplace no)
  1129. (hide yes)
  1130. (effects
  1131. (font
  1132. (size 1.27 1.27)
  1133. )
  1134. )
  1135. )
  1136. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  1137. (at 0 0 0)
  1138. (show_name no)
  1139. (do_not_autoplace no)
  1140. (hide yes)
  1141. (effects
  1142. (font
  1143. (size 1.27 1.27)
  1144. )
  1145. )
  1146. )
  1147. (property "Description" ""
  1148. (at 0 0 0)
  1149. (show_name no)
  1150. (do_not_autoplace no)
  1151. (hide yes)
  1152. (effects
  1153. (font
  1154. (size 1.27 1.27)
  1155. )
  1156. )
  1157. )
  1158. (symbol "YJL2312A_0_1"
  1159. (polyline
  1160. (pts
  1161. (xy -1.27 -2.54) (xy -1.27 2.54)
  1162. )
  1163. (stroke
  1164. (width 0)
  1165. (type default)
  1166. )
  1167. (fill
  1168. (type none)
  1169. )
  1170. )
  1171. )
  1172. (symbol "YJL2312A_1_1"
  1173. (polyline
  1174. (pts
  1175. (xy 0 3.175) (xy 0 -3.175)
  1176. )
  1177. (stroke
  1178. (width 0)
  1179. (type dash)
  1180. )
  1181. (fill
  1182. (type none)
  1183. )
  1184. )
  1185. (polyline
  1186. (pts
  1187. (xy 0 2.54) (xy 2.54 2.54) (xy 2.54 3.81)
  1188. )
  1189. (stroke
  1190. (width 0)
  1191. (type default)
  1192. )
  1193. (fill
  1194. (type none)
  1195. )
  1196. )
  1197. (polyline
  1198. (pts
  1199. (xy 0 0) (xy 2.54 0) (xy 2.54 -3.81)
  1200. )
  1201. (stroke
  1202. (width 0)
  1203. (type default)
  1204. )
  1205. (fill
  1206. (type none)
  1207. )
  1208. )
  1209. (polyline
  1210. (pts
  1211. (xy 0 0) (xy 1.27 -0.635) (xy 1.27 0.635) (xy 0 0)
  1212. )
  1213. (stroke
  1214. (width 0)
  1215. (type solid)
  1216. )
  1217. (fill
  1218. (type outline)
  1219. )
  1220. )
  1221. (polyline
  1222. (pts
  1223. (xy 2.54 -2.54) (xy 0 -2.54)
  1224. )
  1225. (stroke
  1226. (width 0)
  1227. (type default)
  1228. )
  1229. (fill
  1230. (type none)
  1231. )
  1232. )
  1233. (pin input line
  1234. (at -3.81 0 0)
  1235. (length 2.54)
  1236. (name ""
  1237. (effects
  1238. (font
  1239. (size 1.27 1.27)
  1240. )
  1241. )
  1242. )
  1243. (number "1"
  1244. (effects
  1245. (font
  1246. (size 1.27 1.27)
  1247. )
  1248. )
  1249. )
  1250. )
  1251. (pin power_in line
  1252. (at 2.54 -6.35 90)
  1253. (length 2.54)
  1254. (name ""
  1255. (effects
  1256. (font
  1257. (size 1.27 1.27)
  1258. )
  1259. )
  1260. )
  1261. (number "2"
  1262. (effects
  1263. (font
  1264. (size 1.27 1.27)
  1265. )
  1266. )
  1267. )
  1268. )
  1269. (pin power_out line
  1270. (at 2.54 6.35 270)
  1271. (length 2.54)
  1272. (name ""
  1273. (effects
  1274. (font
  1275. (size 1.27 1.27)
  1276. )
  1277. )
  1278. )
  1279. (number "3"
  1280. (effects
  1281. (font
  1282. (size 1.27 1.27)
  1283. )
  1284. )
  1285. )
  1286. )
  1287. )
  1288. (embedded_fonts no)
  1289. )
  1290. )
  1291. (junction
  1292. (at 172.72 130.81)
  1293. (diameter 0)
  1294. (color 0 0 0 0)
  1295. (uuid "0fd915fc-0958-40e3-aa95-fcb505698d77")
  1296. )
  1297. (junction
  1298. (at 121.92 104.14)
  1299. (diameter 0)
  1300. (color 0 0 0 0)
  1301. (uuid "177b9334-7f55-47c8-a561-1386ddc63cd3")
  1302. )
  1303. (junction
  1304. (at 102.87 63.5)
  1305. (diameter 0)
  1306. (color 0 0 0 0)
  1307. (uuid "2625b327-c34d-4d43-8f17-a6034951a1ea")
  1308. )
  1309. (junction
  1310. (at 102.87 130.81)
  1311. (diameter 0)
  1312. (color 0 0 0 0)
  1313. (uuid "27ee539b-73f1-4679-b5d1-155232e7d44e")
  1314. )
  1315. (junction
  1316. (at 191.77 121.92)
  1317. (diameter 0)
  1318. (color 0 0 0 0)
  1319. (uuid "3378e992-6740-48f6-8071-bbacf7e0aeb3")
  1320. )
  1321. (junction
  1322. (at 104.14 54.61)
  1323. (diameter 0)
  1324. (color 0 0 0 0)
  1325. (uuid "470cea07-bd19-4b12-a840-deef404a88b7")
  1326. )
  1327. (junction
  1328. (at 104.14 104.14)
  1329. (diameter 0)
  1330. (color 0 0 0 0)
  1331. (uuid "672ab61c-4ccd-4a8e-81c1-ed2e8480c409")
  1332. )
  1333. (junction
  1334. (at 191.77 54.61)
  1335. (diameter 0)
  1336. (color 0 0 0 0)
  1337. (uuid "79c13a80-3bf3-467d-8072-322c0807348f")
  1338. )
  1339. (junction
  1340. (at 121.92 54.61)
  1341. (diameter 0)
  1342. (color 0 0 0 0)
  1343. (uuid "9b8bbf77-74be-4616-8d27-8eba49d0b5d8")
  1344. )
  1345. (junction
  1346. (at 173.99 104.14)
  1347. (diameter 0)
  1348. (color 0 0 0 0)
  1349. (uuid "9dade2d4-5028-422f-b89d-5a864b056c6e")
  1350. )
  1351. (junction
  1352. (at 104.14 121.92)
  1353. (diameter 0)
  1354. (color 0 0 0 0)
  1355. (uuid "a6e2385b-91e3-43ba-83e4-acf60b719d07")
  1356. )
  1357. (junction
  1358. (at 173.99 121.92)
  1359. (diameter 0)
  1360. (color 0 0 0 0)
  1361. (uuid "ba5dcaff-d795-4f89-9e73-e28142116760")
  1362. )
  1363. (junction
  1364. (at 172.72 63.5)
  1365. (diameter 0)
  1366. (color 0 0 0 0)
  1367. (uuid "c75a78af-2082-413c-b582-4f60a4b1222c")
  1368. )
  1369. (junction
  1370. (at 104.14 36.83)
  1371. (diameter 0)
  1372. (color 0 0 0 0)
  1373. (uuid "e76849df-a73a-4664-98d2-45436259d1e9")
  1374. )
  1375. (junction
  1376. (at 121.92 121.92)
  1377. (diameter 0)
  1378. (color 0 0 0 0)
  1379. (uuid "e7db7248-8918-4d67-a8f0-b25932b2d81e")
  1380. )
  1381. (junction
  1382. (at 191.77 104.14)
  1383. (diameter 0)
  1384. (color 0 0 0 0)
  1385. (uuid "e7fc0e0b-acb0-4fb0-900d-a673c9f9bb2c")
  1386. )
  1387. (junction
  1388. (at 173.99 54.61)
  1389. (diameter 0)
  1390. (color 0 0 0 0)
  1391. (uuid "f6095b66-b7ca-467a-8abc-c5b96d4a3b0d")
  1392. )
  1393. (junction
  1394. (at 173.99 36.83)
  1395. (diameter 0)
  1396. (color 0 0 0 0)
  1397. (uuid "fa6df686-3c9a-4bd1-b1eb-7d87c40a1834")
  1398. )
  1399. (junction
  1400. (at 191.77 36.83)
  1401. (diameter 0)
  1402. (color 0 0 0 0)
  1403. (uuid "faedb42f-fd22-40b5-a704-d287ac5ed1a1")
  1404. )
  1405. (junction
  1406. (at 121.92 36.83)
  1407. (diameter 0)
  1408. (color 0 0 0 0)
  1409. (uuid "ff7f3b8c-5453-42d8-a3ac-84968f46c484")
  1410. )
  1411. (wire
  1412. (pts
  1413. (xy 173.99 109.22) (xy 173.99 104.14)
  1414. )
  1415. (stroke
  1416. (width 0)
  1417. (type default)
  1418. )
  1419. (uuid "03a09a53-fe7b-4d39-b982-57bf40070867")
  1420. )
  1421. (wire
  1422. (pts
  1423. (xy 191.77 101.6) (xy 191.77 104.14)
  1424. )
  1425. (stroke
  1426. (width 0)
  1427. (type default)
  1428. )
  1429. (uuid "091dcd52-39a6-4cab-b907-6cb195a97232")
  1430. )
  1431. (wire
  1432. (pts
  1433. (xy 104.14 49.53) (xy 104.14 54.61)
  1434. )
  1435. (stroke
  1436. (width 0)
  1437. (type default)
  1438. )
  1439. (uuid "0b5d8ec5-d022-45dc-9f8b-fa42fc06532d")
  1440. )
  1441. (wire
  1442. (pts
  1443. (xy 93.98 104.14) (xy 104.14 104.14)
  1444. )
  1445. (stroke
  1446. (width 0)
  1447. (type default)
  1448. )
  1449. (uuid "0e9d6f99-fa09-4736-9607-1e8357e1fb82")
  1450. )
  1451. (wire
  1452. (pts
  1453. (xy 121.92 69.85) (xy 121.92 78.74)
  1454. )
  1455. (stroke
  1456. (width 0)
  1457. (type default)
  1458. )
  1459. (uuid "1926a781-706f-4537-95c0-d4e97d8eddcf")
  1460. )
  1461. (wire
  1462. (pts
  1463. (xy 93.98 36.83) (xy 104.14 36.83)
  1464. )
  1465. (stroke
  1466. (width 0)
  1467. (type default)
  1468. )
  1469. (uuid "1a282e4c-e9e9-4247-a4e8-eb2854cbb2d5")
  1470. )
  1471. (wire
  1472. (pts
  1473. (xy 163.83 36.83) (xy 173.99 36.83)
  1474. )
  1475. (stroke
  1476. (width 0)
  1477. (type default)
  1478. )
  1479. (uuid "1b8f37fc-61b3-43fd-bc03-5f52e45b4d69")
  1480. )
  1481. (wire
  1482. (pts
  1483. (xy 173.99 36.83) (xy 191.77 36.83)
  1484. )
  1485. (stroke
  1486. (width 0)
  1487. (type default)
  1488. )
  1489. (uuid "20a55a15-a8ef-44f1-b266-fa126cbd3548")
  1490. )
  1491. (wire
  1492. (pts
  1493. (xy 121.92 121.92) (xy 121.92 124.46)
  1494. )
  1495. (stroke
  1496. (width 0)
  1497. (type default)
  1498. )
  1499. (uuid "262cf3a9-e54f-4434-acf6-1b6cb00531a3")
  1500. )
  1501. (wire
  1502. (pts
  1503. (xy 104.14 54.61) (xy 121.92 54.61)
  1504. )
  1505. (stroke
  1506. (width 0)
  1507. (type default)
  1508. )
  1509. (uuid "2944d4b9-ac4b-4b9d-a4e0-87e21de81d33")
  1510. )
  1511. (wire
  1512. (pts
  1513. (xy 102.87 74.93) (xy 102.87 77.47)
  1514. )
  1515. (stroke
  1516. (width 0)
  1517. (type default)
  1518. )
  1519. (uuid "2b4716af-ada9-492b-98d8-8679c347876f")
  1520. )
  1521. (wire
  1522. (pts
  1523. (xy 191.77 119.38) (xy 191.77 121.92)
  1524. )
  1525. (stroke
  1526. (width 0)
  1527. (type default)
  1528. )
  1529. (uuid "2d0b15c6-2ee0-473d-a478-98639e5c3983")
  1530. )
  1531. (wire
  1532. (pts
  1533. (xy 87.63 130.81) (xy 102.87 130.81)
  1534. )
  1535. (stroke
  1536. (width 0)
  1537. (type default)
  1538. )
  1539. (uuid "2e545b9b-5226-4fd3-8ddf-07b87790746d")
  1540. )
  1541. (wire
  1542. (pts
  1543. (xy 157.48 130.81) (xy 172.72 130.81)
  1544. )
  1545. (stroke
  1546. (width 0)
  1547. (type default)
  1548. )
  1549. (uuid "3038fa88-4f01-41c9-b79a-d24857720c91")
  1550. )
  1551. (wire
  1552. (pts
  1553. (xy 121.92 54.61) (xy 121.92 57.15)
  1554. )
  1555. (stroke
  1556. (width 0)
  1557. (type default)
  1558. )
  1559. (uuid "30d86fc2-89fe-4ea8-955c-b39cd765e2cc")
  1560. )
  1561. (wire
  1562. (pts
  1563. (xy 191.77 52.07) (xy 191.77 54.61)
  1564. )
  1565. (stroke
  1566. (width 0)
  1567. (type default)
  1568. )
  1569. (uuid "380bb599-68dc-4741-ae8f-7dfa044fc5c2")
  1570. )
  1571. (wire
  1572. (pts
  1573. (xy 121.92 137.16) (xy 121.92 146.05)
  1574. )
  1575. (stroke
  1576. (width 0)
  1577. (type default)
  1578. )
  1579. (uuid "3d5090c2-3e98-49ca-bc02-4242218ffa21")
  1580. )
  1581. (wire
  1582. (pts
  1583. (xy 191.77 137.16) (xy 191.77 146.05)
  1584. )
  1585. (stroke
  1586. (width 0)
  1587. (type default)
  1588. )
  1589. (uuid "3e9ad57b-25b8-4088-a1a3-f74b44d11737")
  1590. )
  1591. (wire
  1592. (pts
  1593. (xy 172.72 74.93) (xy 172.72 77.47)
  1594. )
  1595. (stroke
  1596. (width 0)
  1597. (type default)
  1598. )
  1599. (uuid "41485b68-2596-4f9d-825d-20b89decdc88")
  1600. )
  1601. (wire
  1602. (pts
  1603. (xy 173.99 116.84) (xy 173.99 121.92)
  1604. )
  1605. (stroke
  1606. (width 0)
  1607. (type default)
  1608. )
  1609. (uuid "45b9250f-e024-4488-916c-3f406ae1107f")
  1610. )
  1611. (wire
  1612. (pts
  1613. (xy 175.26 130.81) (xy 172.72 130.81)
  1614. )
  1615. (stroke
  1616. (width 0)
  1617. (type default)
  1618. )
  1619. (uuid "46648276-58fe-48bc-b530-14320e7382c5")
  1620. )
  1621. (wire
  1622. (pts
  1623. (xy 172.72 63.5) (xy 172.72 67.31)
  1624. )
  1625. (stroke
  1626. (width 0)
  1627. (type default)
  1628. )
  1629. (uuid "46efab2c-46b6-4832-8d32-08d7dfaf3a81")
  1630. )
  1631. (wire
  1632. (pts
  1633. (xy 93.98 54.61) (xy 104.14 54.61)
  1634. )
  1635. (stroke
  1636. (width 0)
  1637. (type default)
  1638. )
  1639. (uuid "48692262-032f-4f4e-a68e-e65959c26ed7")
  1640. )
  1641. (wire
  1642. (pts
  1643. (xy 191.77 69.85) (xy 191.77 78.74)
  1644. )
  1645. (stroke
  1646. (width 0)
  1647. (type default)
  1648. )
  1649. (uuid "4e8e81ff-ebba-46f4-98e9-f2bbe2d94fd4")
  1650. )
  1651. (wire
  1652. (pts
  1653. (xy 172.72 130.81) (xy 172.72 134.62)
  1654. )
  1655. (stroke
  1656. (width 0)
  1657. (type default)
  1658. )
  1659. (uuid "552ff8fc-b76f-45d5-a622-446798c54881")
  1660. )
  1661. (wire
  1662. (pts
  1663. (xy 157.48 63.5) (xy 172.72 63.5)
  1664. )
  1665. (stroke
  1666. (width 0)
  1667. (type default)
  1668. )
  1669. (uuid "577ab9f2-c798-4d2c-8b9d-6d53db6127ae")
  1670. )
  1671. (wire
  1672. (pts
  1673. (xy 93.98 41.91) (xy 93.98 36.83)
  1674. )
  1675. (stroke
  1676. (width 0)
  1677. (type default)
  1678. )
  1679. (uuid "57dbae57-4b00-4df0-939c-e586655b70c1")
  1680. )
  1681. (wire
  1682. (pts
  1683. (xy 163.83 116.84) (xy 163.83 121.92)
  1684. )
  1685. (stroke
  1686. (width 0)
  1687. (type default)
  1688. )
  1689. (uuid "587cf63d-9833-4589-a26e-20329b680298")
  1690. )
  1691. (wire
  1692. (pts
  1693. (xy 104.14 116.84) (xy 104.14 121.92)
  1694. )
  1695. (stroke
  1696. (width 0)
  1697. (type default)
  1698. )
  1699. (uuid "60c34cda-1721-47dd-b1c3-f08e45c6a1fa")
  1700. )
  1701. (wire
  1702. (pts
  1703. (xy 102.87 142.24) (xy 102.87 144.78)
  1704. )
  1705. (stroke
  1706. (width 0)
  1707. (type default)
  1708. )
  1709. (uuid "618438cf-8101-4eb9-886f-c069e8cfcf1a")
  1710. )
  1711. (wire
  1712. (pts
  1713. (xy 163.83 54.61) (xy 173.99 54.61)
  1714. )
  1715. (stroke
  1716. (width 0)
  1717. (type default)
  1718. )
  1719. (uuid "62204393-f8c6-4c73-bdbe-856e25cbc6bd")
  1720. )
  1721. (wire
  1722. (pts
  1723. (xy 182.88 63.5) (xy 185.42 63.5)
  1724. )
  1725. (stroke
  1726. (width 0)
  1727. (type default)
  1728. )
  1729. (uuid "646c4822-01f7-4d64-90e2-bc6974e9dea4")
  1730. )
  1731. (wire
  1732. (pts
  1733. (xy 104.14 104.14) (xy 121.92 104.14)
  1734. )
  1735. (stroke
  1736. (width 0)
  1737. (type default)
  1738. )
  1739. (uuid "65a86331-a764-4377-89b7-68198efe118a")
  1740. )
  1741. (wire
  1742. (pts
  1743. (xy 121.92 34.29) (xy 121.92 36.83)
  1744. )
  1745. (stroke
  1746. (width 0)
  1747. (type default)
  1748. )
  1749. (uuid "6f4d887b-3d64-43be-ad07-858f2654d3b7")
  1750. )
  1751. (wire
  1752. (pts
  1753. (xy 121.92 104.14) (xy 121.92 106.68)
  1754. )
  1755. (stroke
  1756. (width 0)
  1757. (type default)
  1758. )
  1759. (uuid "75aefda2-733a-490f-b6f4-0a9aed51cd64")
  1760. )
  1761. (wire
  1762. (pts
  1763. (xy 163.83 49.53) (xy 163.83 54.61)
  1764. )
  1765. (stroke
  1766. (width 0)
  1767. (type default)
  1768. )
  1769. (uuid "7844e8fe-a168-4543-aa92-0a82c1383b5d")
  1770. )
  1771. (wire
  1772. (pts
  1773. (xy 191.77 104.14) (xy 191.77 106.68)
  1774. )
  1775. (stroke
  1776. (width 0)
  1777. (type default)
  1778. )
  1779. (uuid "7c72bf0f-8b0c-4ea6-95a7-6111752bf794")
  1780. )
  1781. (wire
  1782. (pts
  1783. (xy 93.98 121.92) (xy 104.14 121.92)
  1784. )
  1785. (stroke
  1786. (width 0)
  1787. (type default)
  1788. )
  1789. (uuid "7d025244-c4e8-4bfa-bc2f-d24fe9787554")
  1790. )
  1791. (wire
  1792. (pts
  1793. (xy 163.83 41.91) (xy 163.83 36.83)
  1794. )
  1795. (stroke
  1796. (width 0)
  1797. (type default)
  1798. )
  1799. (uuid "8010c001-4833-4e15-a30f-dfb0f55c6720")
  1800. )
  1801. (wire
  1802. (pts
  1803. (xy 104.14 36.83) (xy 121.92 36.83)
  1804. )
  1805. (stroke
  1806. (width 0)
  1807. (type default)
  1808. )
  1809. (uuid "8a07473a-1351-4e1e-b115-309fc3b00174")
  1810. )
  1811. (wire
  1812. (pts
  1813. (xy 93.98 49.53) (xy 93.98 54.61)
  1814. )
  1815. (stroke
  1816. (width 0)
  1817. (type default)
  1818. )
  1819. (uuid "8f04d603-b1bc-4502-8e94-3fbef6ef0c61")
  1820. )
  1821. (wire
  1822. (pts
  1823. (xy 121.92 36.83) (xy 121.92 39.37)
  1824. )
  1825. (stroke
  1826. (width 0)
  1827. (type default)
  1828. )
  1829. (uuid "9709b788-427c-4ec1-a388-e1ae67ba00e4")
  1830. )
  1831. (wire
  1832. (pts
  1833. (xy 102.87 130.81) (xy 102.87 134.62)
  1834. )
  1835. (stroke
  1836. (width 0)
  1837. (type default)
  1838. )
  1839. (uuid "99540342-29e5-4476-880a-3396168f70a3")
  1840. )
  1841. (wire
  1842. (pts
  1843. (xy 121.92 119.38) (xy 121.92 121.92)
  1844. )
  1845. (stroke
  1846. (width 0)
  1847. (type default)
  1848. )
  1849. (uuid "9b52da6c-44ba-42c2-82ea-9b32c664f386")
  1850. )
  1851. (wire
  1852. (pts
  1853. (xy 105.41 63.5) (xy 102.87 63.5)
  1854. )
  1855. (stroke
  1856. (width 0)
  1857. (type default)
  1858. )
  1859. (uuid "9e688170-6671-46d5-a7b3-b7ddf0b4a40f")
  1860. )
  1861. (wire
  1862. (pts
  1863. (xy 113.03 130.81) (xy 115.57 130.81)
  1864. )
  1865. (stroke
  1866. (width 0)
  1867. (type default)
  1868. )
  1869. (uuid "9f50dba2-41e4-45d9-8613-2d9f5d04b6d5")
  1870. )
  1871. (wire
  1872. (pts
  1873. (xy 173.99 54.61) (xy 191.77 54.61)
  1874. )
  1875. (stroke
  1876. (width 0)
  1877. (type default)
  1878. )
  1879. (uuid "a397bc24-d262-443a-8c5a-466275d9e147")
  1880. )
  1881. (wire
  1882. (pts
  1883. (xy 173.99 49.53) (xy 173.99 54.61)
  1884. )
  1885. (stroke
  1886. (width 0)
  1887. (type default)
  1888. )
  1889. (uuid "a8045839-ad8f-4869-b4be-4510e02f3e30")
  1890. )
  1891. (wire
  1892. (pts
  1893. (xy 191.77 54.61) (xy 191.77 57.15)
  1894. )
  1895. (stroke
  1896. (width 0)
  1897. (type default)
  1898. )
  1899. (uuid "a8ae5a21-d2d1-462f-bc06-af2869d15ab7")
  1900. )
  1901. (wire
  1902. (pts
  1903. (xy 93.98 116.84) (xy 93.98 121.92)
  1904. )
  1905. (stroke
  1906. (width 0)
  1907. (type default)
  1908. )
  1909. (uuid "a9466078-51bc-4bf4-a232-d3591dcf75ac")
  1910. )
  1911. (wire
  1912. (pts
  1913. (xy 104.14 41.91) (xy 104.14 36.83)
  1914. )
  1915. (stroke
  1916. (width 0)
  1917. (type default)
  1918. )
  1919. (uuid "b2f029f7-9be4-4ff5-9036-65c9348c0ed8")
  1920. )
  1921. (wire
  1922. (pts
  1923. (xy 104.14 109.22) (xy 104.14 104.14)
  1924. )
  1925. (stroke
  1926. (width 0)
  1927. (type default)
  1928. )
  1929. (uuid "b5081875-c036-42c2-a1c3-e76975e09ba0")
  1930. )
  1931. (wire
  1932. (pts
  1933. (xy 173.99 121.92) (xy 191.77 121.92)
  1934. )
  1935. (stroke
  1936. (width 0)
  1937. (type default)
  1938. )
  1939. (uuid "b71f1ea1-5c60-45c1-8ade-34a63f048be8")
  1940. )
  1941. (wire
  1942. (pts
  1943. (xy 121.92 101.6) (xy 121.92 104.14)
  1944. )
  1945. (stroke
  1946. (width 0)
  1947. (type default)
  1948. )
  1949. (uuid "bfc8766e-3c28-4251-9ba0-3206da31d30d")
  1950. )
  1951. (wire
  1952. (pts
  1953. (xy 173.99 41.91) (xy 173.99 36.83)
  1954. )
  1955. (stroke
  1956. (width 0)
  1957. (type default)
  1958. )
  1959. (uuid "c5ecccaf-812c-49a2-842a-836afcedfe39")
  1960. )
  1961. (wire
  1962. (pts
  1963. (xy 105.41 130.81) (xy 102.87 130.81)
  1964. )
  1965. (stroke
  1966. (width 0)
  1967. (type default)
  1968. )
  1969. (uuid "c86449b5-a4f5-4c9c-b3f1-997b78adee3d")
  1970. )
  1971. (wire
  1972. (pts
  1973. (xy 87.63 63.5) (xy 102.87 63.5)
  1974. )
  1975. (stroke
  1976. (width 0)
  1977. (type default)
  1978. )
  1979. (uuid "c9111ef2-5c2e-4633-bc31-f194269e2787")
  1980. )
  1981. (wire
  1982. (pts
  1983. (xy 191.77 36.83) (xy 191.77 39.37)
  1984. )
  1985. (stroke
  1986. (width 0)
  1987. (type default)
  1988. )
  1989. (uuid "cae8cab2-e37f-4c22-9fc2-ffdce32079eb")
  1990. )
  1991. (wire
  1992. (pts
  1993. (xy 93.98 109.22) (xy 93.98 104.14)
  1994. )
  1995. (stroke
  1996. (width 0)
  1997. (type default)
  1998. )
  1999. (uuid "cd9c3364-18c6-4033-93ea-32db6cd57407")
  2000. )
  2001. (wire
  2002. (pts
  2003. (xy 102.87 63.5) (xy 102.87 67.31)
  2004. )
  2005. (stroke
  2006. (width 0)
  2007. (type default)
  2008. )
  2009. (uuid "d1589a67-ea38-4d18-85a5-b3399f47c0c9")
  2010. )
  2011. (wire
  2012. (pts
  2013. (xy 191.77 34.29) (xy 191.77 36.83)
  2014. )
  2015. (stroke
  2016. (width 0)
  2017. (type default)
  2018. )
  2019. (uuid "d191f427-d190-4bc8-a92a-91dd9e3ed52e")
  2020. )
  2021. (wire
  2022. (pts
  2023. (xy 172.72 142.24) (xy 172.72 144.78)
  2024. )
  2025. (stroke
  2026. (width 0)
  2027. (type default)
  2028. )
  2029. (uuid "d40c8a9f-ec75-4ad6-83ae-885cc602275e")
  2030. )
  2031. (wire
  2032. (pts
  2033. (xy 104.14 121.92) (xy 121.92 121.92)
  2034. )
  2035. (stroke
  2036. (width 0)
  2037. (type default)
  2038. )
  2039. (uuid "d5d13cfb-b5ab-4db5-90fa-95c7aff603e7")
  2040. )
  2041. (wire
  2042. (pts
  2043. (xy 113.03 63.5) (xy 115.57 63.5)
  2044. )
  2045. (stroke
  2046. (width 0)
  2047. (type default)
  2048. )
  2049. (uuid "d99c6ccf-d7c0-4563-a2a9-91761e175134")
  2050. )
  2051. (wire
  2052. (pts
  2053. (xy 163.83 109.22) (xy 163.83 104.14)
  2054. )
  2055. (stroke
  2056. (width 0)
  2057. (type default)
  2058. )
  2059. (uuid "da55eb30-1b70-43c5-b24b-c01fc0e74cc3")
  2060. )
  2061. (wire
  2062. (pts
  2063. (xy 163.83 104.14) (xy 173.99 104.14)
  2064. )
  2065. (stroke
  2066. (width 0)
  2067. (type default)
  2068. )
  2069. (uuid "e4ed958f-3e93-40aa-b0d5-bbb2091c5297")
  2070. )
  2071. (wire
  2072. (pts
  2073. (xy 175.26 63.5) (xy 172.72 63.5)
  2074. )
  2075. (stroke
  2076. (width 0)
  2077. (type default)
  2078. )
  2079. (uuid "e90bbde6-ea9e-4291-88b9-0e308ab90687")
  2080. )
  2081. (wire
  2082. (pts
  2083. (xy 173.99 104.14) (xy 191.77 104.14)
  2084. )
  2085. (stroke
  2086. (width 0)
  2087. (type default)
  2088. )
  2089. (uuid "ec6cbcc8-dd45-4f2a-a318-da1a25d3e702")
  2090. )
  2091. (wire
  2092. (pts
  2093. (xy 191.77 121.92) (xy 191.77 124.46)
  2094. )
  2095. (stroke
  2096. (width 0)
  2097. (type default)
  2098. )
  2099. (uuid "f0785100-4410-4d69-9b09-dbeed5b6acf1")
  2100. )
  2101. (wire
  2102. (pts
  2103. (xy 163.83 121.92) (xy 173.99 121.92)
  2104. )
  2105. (stroke
  2106. (width 0)
  2107. (type default)
  2108. )
  2109. (uuid "f4d06579-96aa-4a26-a48f-45b7f0f5e52d")
  2110. )
  2111. (wire
  2112. (pts
  2113. (xy 182.88 130.81) (xy 185.42 130.81)
  2114. )
  2115. (stroke
  2116. (width 0)
  2117. (type default)
  2118. )
  2119. (uuid "f980fb7e-da66-45c8-8d63-96c853b975c5")
  2120. )
  2121. (wire
  2122. (pts
  2123. (xy 121.92 52.07) (xy 121.92 54.61)
  2124. )
  2125. (stroke
  2126. (width 0)
  2127. (type default)
  2128. )
  2129. (uuid "fb736815-c158-47f8-ae6c-93cfc1e0dadb")
  2130. )
  2131. (hierarchical_label "PWM_M1B"
  2132. (shape input)
  2133. (at 87.63 130.81 180)
  2134. (effects
  2135. (font
  2136. (size 1.27 1.27)
  2137. )
  2138. (justify right)
  2139. )
  2140. (uuid "57394af2-90d3-4bf4-b9c7-af10854dc5df")
  2141. )
  2142. (hierarchical_label "PWM_M1A"
  2143. (shape input)
  2144. (at 87.63 63.5 180)
  2145. (effects
  2146. (font
  2147. (size 1.27 1.27)
  2148. )
  2149. (justify right)
  2150. )
  2151. (uuid "7e98ea96-49d4-4f49-af48-09da8b9cd43d")
  2152. )
  2153. (hierarchical_label "PWM_M2B"
  2154. (shape input)
  2155. (at 157.48 130.81 180)
  2156. (effects
  2157. (font
  2158. (size 1.27 1.27)
  2159. )
  2160. (justify right)
  2161. )
  2162. (uuid "b3f42605-958e-4fe3-8de4-a56bdb84018e")
  2163. )
  2164. (hierarchical_label "PWM_M2A"
  2165. (shape input)
  2166. (at 157.48 63.5 180)
  2167. (effects
  2168. (font
  2169. (size 1.27 1.27)
  2170. )
  2171. (justify right)
  2172. )
  2173. (uuid "de6d4bbc-7ddd-4c36-ab79-ed33ecafe81d")
  2174. )
  2175. (symbol
  2176. (lib_id "Device:C")
  2177. (at 93.98 45.72 0)
  2178. (unit 1)
  2179. (body_style 1)
  2180. (exclude_from_sim no)
  2181. (in_bom yes)
  2182. (on_board yes)
  2183. (in_pos_files yes)
  2184. (dnp no)
  2185. (uuid "07072cdd-fbd2-4d6b-8c55-39b5442abd1e")
  2186. (property "Reference" "C6"
  2187. (at 93.98 43.688 0)
  2188. (show_name no)
  2189. (do_not_autoplace no)
  2190. (effects
  2191. (font
  2192. (size 1.27 1.27)
  2193. )
  2194. (justify left)
  2195. )
  2196. )
  2197. (property "Value" "100n"
  2198. (at 93.98 47.752 0)
  2199. (show_name no)
  2200. (do_not_autoplace no)
  2201. (effects
  2202. (font
  2203. (size 1.27 1.27)
  2204. )
  2205. (justify left)
  2206. )
  2207. )
  2208. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  2209. (at 94.9452 49.53 0)
  2210. (hide yes)
  2211. (show_name no)
  2212. (do_not_autoplace no)
  2213. (effects
  2214. (font
  2215. (size 1.27 1.27)
  2216. )
  2217. )
  2218. )
  2219. (property "Datasheet" ""
  2220. (at 93.98 45.72 0)
  2221. (hide yes)
  2222. (show_name no)
  2223. (do_not_autoplace no)
  2224. (effects
  2225. (font
  2226. (size 1.27 1.27)
  2227. )
  2228. )
  2229. )
  2230. (property "Description" "Unpolarized capacitor"
  2231. (at 93.98 45.72 0)
  2232. (hide yes)
  2233. (show_name no)
  2234. (do_not_autoplace no)
  2235. (effects
  2236. (font
  2237. (size 1.27 1.27)
  2238. )
  2239. )
  2240. )
  2241. (pin "1"
  2242. (uuid "59d0eb43-badd-491a-a628-57086c76511c")
  2243. )
  2244. (pin "2"
  2245. (uuid "8a517d19-b440-4bb2-bde2-509845bc2324")
  2246. )
  2247. (instances
  2248. (project "cx-copter"
  2249. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2250. (reference "C6")
  2251. (unit 1)
  2252. )
  2253. )
  2254. )
  2255. )
  2256. (symbol
  2257. (lib_id "transistors:YJL2312A")
  2258. (at 189.23 63.5 0)
  2259. (unit 1)
  2260. (body_style 1)
  2261. (exclude_from_sim no)
  2262. (in_bom yes)
  2263. (on_board yes)
  2264. (in_pos_files yes)
  2265. (dnp no)
  2266. (fields_autoplaced yes)
  2267. (uuid "0e2d4f88-2ee0-4e0d-b77d-cf29976dcb8a")
  2268. (property "Reference" "Q3"
  2269. (at 193.04 62.2299 0)
  2270. (show_name no)
  2271. (do_not_autoplace no)
  2272. (effects
  2273. (font
  2274. (size 1.27 1.27)
  2275. )
  2276. (justify left)
  2277. )
  2278. )
  2279. (property "Value" "YJL2312A"
  2280. (at 193.04 64.7699 0)
  2281. (show_name no)
  2282. (do_not_autoplace no)
  2283. (effects
  2284. (font
  2285. (size 1.27 1.27)
  2286. )
  2287. (justify left)
  2288. )
  2289. )
  2290. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  2291. (at 189.23 63.5 0)
  2292. (hide yes)
  2293. (show_name no)
  2294. (do_not_autoplace no)
  2295. (effects
  2296. (font
  2297. (size 1.27 1.27)
  2298. )
  2299. )
  2300. )
  2301. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  2302. (at 189.23 63.5 0)
  2303. (hide yes)
  2304. (show_name no)
  2305. (do_not_autoplace no)
  2306. (effects
  2307. (font
  2308. (size 1.27 1.27)
  2309. )
  2310. )
  2311. )
  2312. (property "Description" ""
  2313. (at 189.23 63.5 0)
  2314. (hide yes)
  2315. (show_name no)
  2316. (do_not_autoplace no)
  2317. (effects
  2318. (font
  2319. (size 1.27 1.27)
  2320. )
  2321. )
  2322. )
  2323. (pin "2"
  2324. (uuid "3169bf86-76eb-4117-8f57-31397de97ee2")
  2325. )
  2326. (pin "3"
  2327. (uuid "56fa1f8f-d908-4b34-9558-d2dbf9506f61")
  2328. )
  2329. (pin "1"
  2330. (uuid "76858fbb-ff75-46bf-a3d6-0eecb9eb654a")
  2331. )
  2332. (instances
  2333. (project "cx-copter"
  2334. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2335. (reference "Q3")
  2336. (unit 1)
  2337. )
  2338. )
  2339. )
  2340. )
  2341. (symbol
  2342. (lib_id "Device:R")
  2343. (at 102.87 71.12 180)
  2344. (unit 1)
  2345. (body_style 1)
  2346. (exclude_from_sim no)
  2347. (in_bom yes)
  2348. (on_board yes)
  2349. (in_pos_files yes)
  2350. (dnp no)
  2351. (uuid "24560007-074e-48e1-bc2b-204324c8b78c")
  2352. (property "Reference" "R10"
  2353. (at 103.886 69.85 0)
  2354. (show_name no)
  2355. (do_not_autoplace no)
  2356. (effects
  2357. (font
  2358. (size 1.27 1.27)
  2359. )
  2360. (justify right)
  2361. )
  2362. )
  2363. (property "Value" "10k"
  2364. (at 103.886 72.39 0)
  2365. (show_name no)
  2366. (do_not_autoplace no)
  2367. (effects
  2368. (font
  2369. (size 1.27 1.27)
  2370. )
  2371. (justify right)
  2372. )
  2373. )
  2374. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  2375. (at 104.648 71.12 90)
  2376. (hide yes)
  2377. (show_name no)
  2378. (do_not_autoplace no)
  2379. (effects
  2380. (font
  2381. (size 1.27 1.27)
  2382. )
  2383. )
  2384. )
  2385. (property "Datasheet" ""
  2386. (at 102.87 71.12 0)
  2387. (hide yes)
  2388. (show_name no)
  2389. (do_not_autoplace no)
  2390. (effects
  2391. (font
  2392. (size 1.27 1.27)
  2393. )
  2394. )
  2395. )
  2396. (property "Description" "Resistor"
  2397. (at 102.87 71.12 0)
  2398. (hide yes)
  2399. (show_name no)
  2400. (do_not_autoplace no)
  2401. (effects
  2402. (font
  2403. (size 1.27 1.27)
  2404. )
  2405. )
  2406. )
  2407. (pin "1"
  2408. (uuid "5f0361f5-279b-4f58-bf05-4f9836e0a483")
  2409. )
  2410. (pin "2"
  2411. (uuid "1452be81-ce87-4830-9365-57a900d67850")
  2412. )
  2413. (instances
  2414. (project "cx-copter"
  2415. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2416. (reference "R10")
  2417. (unit 1)
  2418. )
  2419. )
  2420. )
  2421. )
  2422. (symbol
  2423. (lib_id "Device:C")
  2424. (at 163.83 113.03 0)
  2425. (unit 1)
  2426. (body_style 1)
  2427. (exclude_from_sim no)
  2428. (in_bom yes)
  2429. (on_board yes)
  2430. (in_pos_files yes)
  2431. (dnp no)
  2432. (uuid "3168d84c-3337-4a74-8e88-be2fced52d1a")
  2433. (property "Reference" "C9"
  2434. (at 163.83 110.998 0)
  2435. (show_name no)
  2436. (do_not_autoplace no)
  2437. (effects
  2438. (font
  2439. (size 1.27 1.27)
  2440. )
  2441. (justify left)
  2442. )
  2443. )
  2444. (property "Value" "100n"
  2445. (at 163.83 115.062 0)
  2446. (show_name no)
  2447. (do_not_autoplace no)
  2448. (effects
  2449. (font
  2450. (size 1.27 1.27)
  2451. )
  2452. (justify left)
  2453. )
  2454. )
  2455. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  2456. (at 164.7952 116.84 0)
  2457. (hide yes)
  2458. (show_name no)
  2459. (do_not_autoplace no)
  2460. (effects
  2461. (font
  2462. (size 1.27 1.27)
  2463. )
  2464. )
  2465. )
  2466. (property "Datasheet" ""
  2467. (at 163.83 113.03 0)
  2468. (hide yes)
  2469. (show_name no)
  2470. (do_not_autoplace no)
  2471. (effects
  2472. (font
  2473. (size 1.27 1.27)
  2474. )
  2475. )
  2476. )
  2477. (property "Description" "Unpolarized capacitor"
  2478. (at 163.83 113.03 0)
  2479. (hide yes)
  2480. (show_name no)
  2481. (do_not_autoplace no)
  2482. (effects
  2483. (font
  2484. (size 1.27 1.27)
  2485. )
  2486. )
  2487. )
  2488. (pin "1"
  2489. (uuid "56b30da1-c5b4-49fc-960b-68cb0f2dd6df")
  2490. )
  2491. (pin "2"
  2492. (uuid "6e8ccd29-cde3-41ca-87b3-625d140d4819")
  2493. )
  2494. (instances
  2495. (project "cx-copter"
  2496. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2497. (reference "C9")
  2498. (unit 1)
  2499. )
  2500. )
  2501. )
  2502. )
  2503. (symbol
  2504. (lib_id "Motor:Motor_DC_ALT")
  2505. (at 191.77 111.76 0)
  2506. (unit 1)
  2507. (body_style 1)
  2508. (exclude_from_sim no)
  2509. (in_bom yes)
  2510. (on_board yes)
  2511. (in_pos_files yes)
  2512. (dnp no)
  2513. (fields_autoplaced yes)
  2514. (uuid "3f4e074e-1b7e-4830-8ad0-c2427431d188")
  2515. (property "Reference" "M2B"
  2516. (at 195.58 111.7599 0)
  2517. (show_name no)
  2518. (do_not_autoplace no)
  2519. (effects
  2520. (font
  2521. (size 1.27 1.27)
  2522. )
  2523. (justify left)
  2524. )
  2525. )
  2526. (property "Value" "Coreless_0716"
  2527. (at 195.58 114.2999 0)
  2528. (show_name no)
  2529. (do_not_autoplace no)
  2530. (effects
  2531. (font
  2532. (size 1.27 1.27)
  2533. )
  2534. (justify left)
  2535. )
  2536. )
  2537. (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-2_1x02_P2.54mm_Horizontal"
  2538. (at 191.77 114.046 0)
  2539. (hide yes)
  2540. (show_name no)
  2541. (do_not_autoplace no)
  2542. (effects
  2543. (font
  2544. (size 1.27 1.27)
  2545. )
  2546. )
  2547. )
  2548. (property "Datasheet" ""
  2549. (at 191.77 114.046 0)
  2550. (hide yes)
  2551. (show_name no)
  2552. (do_not_autoplace no)
  2553. (effects
  2554. (font
  2555. (size 1.27 1.27)
  2556. )
  2557. )
  2558. )
  2559. (property "Description" "DC Motor, alternative symbol"
  2560. (at 191.77 111.76 0)
  2561. (hide yes)
  2562. (show_name no)
  2563. (do_not_autoplace no)
  2564. (effects
  2565. (font
  2566. (size 1.27 1.27)
  2567. )
  2568. )
  2569. )
  2570. (pin "1"
  2571. (uuid "6b8242e1-927b-4fc6-aa8e-afad5f550a10")
  2572. )
  2573. (pin "2"
  2574. (uuid "06c6d9fe-93c5-4b0e-8c9e-083914cfc79d")
  2575. )
  2576. (instances
  2577. (project "cx-copter"
  2578. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2579. (reference "M2B")
  2580. (unit 1)
  2581. )
  2582. )
  2583. )
  2584. )
  2585. (symbol
  2586. (lib_id "Device:R")
  2587. (at 109.22 63.5 90)
  2588. (unit 1)
  2589. (body_style 1)
  2590. (exclude_from_sim no)
  2591. (in_bom yes)
  2592. (on_board yes)
  2593. (in_pos_files yes)
  2594. (dnp no)
  2595. (uuid "42f8e3da-c959-4572-8639-9edf4c845b63")
  2596. (property "Reference" "R9"
  2597. (at 109.22 61.468 90)
  2598. (show_name no)
  2599. (do_not_autoplace no)
  2600. (effects
  2601. (font
  2602. (size 1.27 1.27)
  2603. )
  2604. )
  2605. )
  2606. (property "Value" "100"
  2607. (at 109.22 65.532 90)
  2608. (show_name no)
  2609. (do_not_autoplace no)
  2610. (effects
  2611. (font
  2612. (size 1.27 1.27)
  2613. )
  2614. )
  2615. )
  2616. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  2617. (at 109.22 65.278 90)
  2618. (hide yes)
  2619. (show_name no)
  2620. (do_not_autoplace no)
  2621. (effects
  2622. (font
  2623. (size 1.27 1.27)
  2624. )
  2625. )
  2626. )
  2627. (property "Datasheet" ""
  2628. (at 109.22 63.5 0)
  2629. (hide yes)
  2630. (show_name no)
  2631. (do_not_autoplace no)
  2632. (effects
  2633. (font
  2634. (size 1.27 1.27)
  2635. )
  2636. )
  2637. )
  2638. (property "Description" "Resistor"
  2639. (at 109.22 63.5 0)
  2640. (hide yes)
  2641. (show_name no)
  2642. (do_not_autoplace no)
  2643. (effects
  2644. (font
  2645. (size 1.27 1.27)
  2646. )
  2647. )
  2648. )
  2649. (pin "1"
  2650. (uuid "89880dc2-9a6a-4945-8d09-1ab1f594239a")
  2651. )
  2652. (pin "2"
  2653. (uuid "de40ee68-20c3-4c7e-a8d9-33e450eb66c7")
  2654. )
  2655. (instances
  2656. (project "cx-copter"
  2657. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2658. (reference "R9")
  2659. (unit 1)
  2660. )
  2661. )
  2662. )
  2663. )
  2664. (symbol
  2665. (lib_id "Device:R")
  2666. (at 179.07 130.81 90)
  2667. (unit 1)
  2668. (body_style 1)
  2669. (exclude_from_sim no)
  2670. (in_bom yes)
  2671. (on_board yes)
  2672. (in_pos_files yes)
  2673. (dnp no)
  2674. (uuid "465e3eb0-5d55-4026-bd39-36333acf7b31")
  2675. (property "Reference" "R16"
  2676. (at 179.07 128.778 90)
  2677. (show_name no)
  2678. (do_not_autoplace no)
  2679. (effects
  2680. (font
  2681. (size 1.27 1.27)
  2682. )
  2683. )
  2684. )
  2685. (property "Value" "100"
  2686. (at 179.07 132.842 90)
  2687. (show_name no)
  2688. (do_not_autoplace no)
  2689. (effects
  2690. (font
  2691. (size 1.27 1.27)
  2692. )
  2693. )
  2694. )
  2695. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  2696. (at 179.07 132.588 90)
  2697. (hide yes)
  2698. (show_name no)
  2699. (do_not_autoplace no)
  2700. (effects
  2701. (font
  2702. (size 1.27 1.27)
  2703. )
  2704. )
  2705. )
  2706. (property "Datasheet" ""
  2707. (at 179.07 130.81 0)
  2708. (hide yes)
  2709. (show_name no)
  2710. (do_not_autoplace no)
  2711. (effects
  2712. (font
  2713. (size 1.27 1.27)
  2714. )
  2715. )
  2716. )
  2717. (property "Description" "Resistor"
  2718. (at 179.07 130.81 0)
  2719. (hide yes)
  2720. (show_name no)
  2721. (do_not_autoplace no)
  2722. (effects
  2723. (font
  2724. (size 1.27 1.27)
  2725. )
  2726. )
  2727. )
  2728. (pin "1"
  2729. (uuid "3dd06f64-516b-4d46-b143-a7a67ca87f54")
  2730. )
  2731. (pin "2"
  2732. (uuid "a44cf30e-1de2-4f09-9434-dd6a71e65255")
  2733. )
  2734. (instances
  2735. (project "cx-copter"
  2736. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2737. (reference "R16")
  2738. (unit 1)
  2739. )
  2740. )
  2741. )
  2742. )
  2743. (symbol
  2744. (lib_id "power:GND")
  2745. (at 172.72 77.47 0)
  2746. (unit 1)
  2747. (body_style 1)
  2748. (exclude_from_sim no)
  2749. (in_bom yes)
  2750. (on_board yes)
  2751. (in_pos_files yes)
  2752. (dnp no)
  2753. (fields_autoplaced yes)
  2754. (uuid "4af17016-6159-4b9f-8908-5f8aded0b067")
  2755. (property "Reference" "#PWR019"
  2756. (at 172.72 83.82 0)
  2757. (hide yes)
  2758. (show_name no)
  2759. (do_not_autoplace no)
  2760. (effects
  2761. (font
  2762. (size 1.27 1.27)
  2763. )
  2764. )
  2765. )
  2766. (property "Value" "GND"
  2767. (at 172.72 82.55 0)
  2768. (show_name no)
  2769. (do_not_autoplace no)
  2770. (effects
  2771. (font
  2772. (size 1.27 1.27)
  2773. )
  2774. )
  2775. )
  2776. (property "Footprint" ""
  2777. (at 172.72 77.47 0)
  2778. (hide yes)
  2779. (show_name no)
  2780. (do_not_autoplace no)
  2781. (effects
  2782. (font
  2783. (size 1.27 1.27)
  2784. )
  2785. )
  2786. )
  2787. (property "Datasheet" ""
  2788. (at 172.72 77.47 0)
  2789. (hide yes)
  2790. (show_name no)
  2791. (do_not_autoplace no)
  2792. (effects
  2793. (font
  2794. (size 1.27 1.27)
  2795. )
  2796. )
  2797. )
  2798. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  2799. (at 172.72 77.47 0)
  2800. (hide yes)
  2801. (show_name no)
  2802. (do_not_autoplace no)
  2803. (effects
  2804. (font
  2805. (size 1.27 1.27)
  2806. )
  2807. )
  2808. )
  2809. (pin "1"
  2810. (uuid "5c67da85-37b0-4494-badf-1ff9dd879a9e")
  2811. )
  2812. (instances
  2813. (project "cx-copter"
  2814. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2815. (reference "#PWR019")
  2816. (unit 1)
  2817. )
  2818. )
  2819. )
  2820. )
  2821. (symbol
  2822. (lib_id "power:VCC")
  2823. (at 121.92 101.6 0)
  2824. (unit 1)
  2825. (body_style 1)
  2826. (exclude_from_sim no)
  2827. (in_bom yes)
  2828. (on_board yes)
  2829. (in_pos_files yes)
  2830. (dnp no)
  2831. (fields_autoplaced yes)
  2832. (uuid "4ce4c832-2a13-43ae-a2e6-2b6c4bfbda97")
  2833. (property "Reference" "#PWR017"
  2834. (at 121.92 105.41 0)
  2835. (hide yes)
  2836. (show_name no)
  2837. (do_not_autoplace no)
  2838. (effects
  2839. (font
  2840. (size 1.27 1.27)
  2841. )
  2842. )
  2843. )
  2844. (property "Value" "VCC"
  2845. (at 121.92 96.52 0)
  2846. (show_name no)
  2847. (do_not_autoplace no)
  2848. (effects
  2849. (font
  2850. (size 1.27 1.27)
  2851. )
  2852. )
  2853. )
  2854. (property "Footprint" ""
  2855. (at 121.92 101.6 0)
  2856. (hide yes)
  2857. (show_name no)
  2858. (do_not_autoplace no)
  2859. (effects
  2860. (font
  2861. (size 1.27 1.27)
  2862. )
  2863. )
  2864. )
  2865. (property "Datasheet" ""
  2866. (at 121.92 101.6 0)
  2867. (hide yes)
  2868. (show_name no)
  2869. (do_not_autoplace no)
  2870. (effects
  2871. (font
  2872. (size 1.27 1.27)
  2873. )
  2874. )
  2875. )
  2876. (property "Description" "Power symbol creates a global label with name \"VCC\""
  2877. (at 121.92 101.6 0)
  2878. (hide yes)
  2879. (show_name no)
  2880. (do_not_autoplace no)
  2881. (effects
  2882. (font
  2883. (size 1.27 1.27)
  2884. )
  2885. )
  2886. )
  2887. (pin "1"
  2888. (uuid "6c003fe0-2863-4e85-a208-83c3b49e9277")
  2889. )
  2890. (instances
  2891. (project "cx-copter"
  2892. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2893. (reference "#PWR017")
  2894. (unit 1)
  2895. )
  2896. )
  2897. )
  2898. )
  2899. (symbol
  2900. (lib_id "Device:R")
  2901. (at 179.07 63.5 90)
  2902. (unit 1)
  2903. (body_style 1)
  2904. (exclude_from_sim no)
  2905. (in_bom yes)
  2906. (on_board yes)
  2907. (in_pos_files yes)
  2908. (dnp no)
  2909. (uuid "56dd20b0-67a8-455a-b63d-1e82b573656d")
  2910. (property "Reference" "R14"
  2911. (at 179.07 61.468 90)
  2912. (show_name no)
  2913. (do_not_autoplace no)
  2914. (effects
  2915. (font
  2916. (size 1.27 1.27)
  2917. )
  2918. )
  2919. )
  2920. (property "Value" "100"
  2921. (at 179.07 65.532 90)
  2922. (show_name no)
  2923. (do_not_autoplace no)
  2924. (effects
  2925. (font
  2926. (size 1.27 1.27)
  2927. )
  2928. )
  2929. )
  2930. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  2931. (at 179.07 65.278 90)
  2932. (hide yes)
  2933. (show_name no)
  2934. (do_not_autoplace no)
  2935. (effects
  2936. (font
  2937. (size 1.27 1.27)
  2938. )
  2939. )
  2940. )
  2941. (property "Datasheet" ""
  2942. (at 179.07 63.5 0)
  2943. (hide yes)
  2944. (show_name no)
  2945. (do_not_autoplace no)
  2946. (effects
  2947. (font
  2948. (size 1.27 1.27)
  2949. )
  2950. )
  2951. )
  2952. (property "Description" "Resistor"
  2953. (at 179.07 63.5 0)
  2954. (hide yes)
  2955. (show_name no)
  2956. (do_not_autoplace no)
  2957. (effects
  2958. (font
  2959. (size 1.27 1.27)
  2960. )
  2961. )
  2962. )
  2963. (pin "1"
  2964. (uuid "63588102-2aa4-4107-b997-640e5a187fcf")
  2965. )
  2966. (pin "2"
  2967. (uuid "7fba4895-fdd1-480d-adc2-a45ce61bd3c8")
  2968. )
  2969. (instances
  2970. (project "cx-copter"
  2971. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  2972. (reference "R14")
  2973. (unit 1)
  2974. )
  2975. )
  2976. )
  2977. )
  2978. (symbol
  2979. (lib_id "power:GND")
  2980. (at 172.72 144.78 0)
  2981. (unit 1)
  2982. (body_style 1)
  2983. (exclude_from_sim no)
  2984. (in_bom yes)
  2985. (on_board yes)
  2986. (in_pos_files yes)
  2987. (dnp no)
  2988. (fields_autoplaced yes)
  2989. (uuid "5cc656d1-15d5-4ccd-8d17-268beda9221f")
  2990. (property "Reference" "#PWR022"
  2991. (at 172.72 151.13 0)
  2992. (hide yes)
  2993. (show_name no)
  2994. (do_not_autoplace no)
  2995. (effects
  2996. (font
  2997. (size 1.27 1.27)
  2998. )
  2999. )
  3000. )
  3001. (property "Value" "GND"
  3002. (at 172.72 149.86 0)
  3003. (show_name no)
  3004. (do_not_autoplace no)
  3005. (effects
  3006. (font
  3007. (size 1.27 1.27)
  3008. )
  3009. )
  3010. )
  3011. (property "Footprint" ""
  3012. (at 172.72 144.78 0)
  3013. (hide yes)
  3014. (show_name no)
  3015. (do_not_autoplace no)
  3016. (effects
  3017. (font
  3018. (size 1.27 1.27)
  3019. )
  3020. )
  3021. )
  3022. (property "Datasheet" ""
  3023. (at 172.72 144.78 0)
  3024. (hide yes)
  3025. (show_name no)
  3026. (do_not_autoplace no)
  3027. (effects
  3028. (font
  3029. (size 1.27 1.27)
  3030. )
  3031. )
  3032. )
  3033. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3034. (at 172.72 144.78 0)
  3035. (hide yes)
  3036. (show_name no)
  3037. (do_not_autoplace no)
  3038. (effects
  3039. (font
  3040. (size 1.27 1.27)
  3041. )
  3042. )
  3043. )
  3044. (pin "1"
  3045. (uuid "d4c097ea-1f24-4888-aa42-5c32b94e75cb")
  3046. )
  3047. (instances
  3048. (project "cx-copter"
  3049. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3050. (reference "#PWR022")
  3051. (unit 1)
  3052. )
  3053. )
  3054. )
  3055. )
  3056. (symbol
  3057. (lib_id "Device:D_Schottky")
  3058. (at 173.99 45.72 270)
  3059. (unit 1)
  3060. (body_style 1)
  3061. (exclude_from_sim no)
  3062. (in_bom yes)
  3063. (on_board yes)
  3064. (in_pos_files yes)
  3065. (dnp no)
  3066. (uuid "65a07908-a932-4102-b167-d67737ef998c")
  3067. (property "Reference" "D4"
  3068. (at 175.26 44.196 90)
  3069. (show_name no)
  3070. (do_not_autoplace no)
  3071. (effects
  3072. (font
  3073. (size 1.27 1.27)
  3074. )
  3075. (justify left)
  3076. )
  3077. )
  3078. (property "Value" "D"
  3079. (at 175.26 46.99 90)
  3080. (show_name no)
  3081. (do_not_autoplace no)
  3082. (effects
  3083. (font
  3084. (size 1.27 1.27)
  3085. )
  3086. (justify left)
  3087. )
  3088. )
  3089. (property "Footprint" ""
  3090. (at 173.99 45.72 0)
  3091. (hide yes)
  3092. (show_name no)
  3093. (do_not_autoplace no)
  3094. (effects
  3095. (font
  3096. (size 1.27 1.27)
  3097. )
  3098. )
  3099. )
  3100. (property "Datasheet" ""
  3101. (at 173.99 45.72 0)
  3102. (hide yes)
  3103. (show_name no)
  3104. (do_not_autoplace no)
  3105. (effects
  3106. (font
  3107. (size 1.27 1.27)
  3108. )
  3109. )
  3110. )
  3111. (property "Description" "Schottky diode"
  3112. (at 173.99 45.72 0)
  3113. (hide yes)
  3114. (show_name no)
  3115. (do_not_autoplace no)
  3116. (effects
  3117. (font
  3118. (size 1.27 1.27)
  3119. )
  3120. )
  3121. )
  3122. (pin "1"
  3123. (uuid "38d417d9-6d8b-4b41-bedb-642cbc71a497")
  3124. )
  3125. (pin "2"
  3126. (uuid "b16380dd-4570-491f-9659-c753aa0c8ebc")
  3127. )
  3128. (instances
  3129. (project "cx-copter"
  3130. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3131. (reference "D4")
  3132. (unit 1)
  3133. )
  3134. )
  3135. )
  3136. )
  3137. (symbol
  3138. (lib_id "power:GNDPWR")
  3139. (at 121.92 146.05 0)
  3140. (unit 1)
  3141. (body_style 1)
  3142. (exclude_from_sim no)
  3143. (in_bom yes)
  3144. (on_board yes)
  3145. (in_pos_files yes)
  3146. (dnp no)
  3147. (fields_autoplaced yes)
  3148. (uuid "6bbfa332-5e03-47ee-adaf-46e756e408dc")
  3149. (property "Reference" "#PWR018"
  3150. (at 121.92 151.13 0)
  3151. (hide yes)
  3152. (show_name no)
  3153. (do_not_autoplace no)
  3154. (effects
  3155. (font
  3156. (size 1.27 1.27)
  3157. )
  3158. )
  3159. )
  3160. (property "Value" "GNDPWR"
  3161. (at 121.793 149.86 0)
  3162. (show_name no)
  3163. (do_not_autoplace no)
  3164. (effects
  3165. (font
  3166. (size 1.27 1.27)
  3167. )
  3168. )
  3169. )
  3170. (property "Footprint" ""
  3171. (at 121.92 147.32 0)
  3172. (hide yes)
  3173. (show_name no)
  3174. (do_not_autoplace no)
  3175. (effects
  3176. (font
  3177. (size 1.27 1.27)
  3178. )
  3179. )
  3180. )
  3181. (property "Datasheet" ""
  3182. (at 121.92 147.32 0)
  3183. (hide yes)
  3184. (show_name no)
  3185. (do_not_autoplace no)
  3186. (effects
  3187. (font
  3188. (size 1.27 1.27)
  3189. )
  3190. )
  3191. )
  3192. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  3193. (at 121.92 146.05 0)
  3194. (hide yes)
  3195. (show_name no)
  3196. (do_not_autoplace no)
  3197. (effects
  3198. (font
  3199. (size 1.27 1.27)
  3200. )
  3201. )
  3202. )
  3203. (pin "1"
  3204. (uuid "8ed958db-6705-48b5-b017-f6009f90094f")
  3205. )
  3206. (instances
  3207. (project "cx-copter"
  3208. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3209. (reference "#PWR018")
  3210. (unit 1)
  3211. )
  3212. )
  3213. )
  3214. )
  3215. (symbol
  3216. (lib_id "transistors:YJL2312A")
  3217. (at 119.38 63.5 0)
  3218. (unit 1)
  3219. (body_style 1)
  3220. (exclude_from_sim no)
  3221. (in_bom yes)
  3222. (on_board yes)
  3223. (in_pos_files yes)
  3224. (dnp no)
  3225. (fields_autoplaced yes)
  3226. (uuid "71f2e888-870e-45e9-9e05-d8108c29cce4")
  3227. (property "Reference" "Q1"
  3228. (at 123.19 62.2299 0)
  3229. (show_name no)
  3230. (do_not_autoplace no)
  3231. (effects
  3232. (font
  3233. (size 1.27 1.27)
  3234. )
  3235. (justify left)
  3236. )
  3237. )
  3238. (property "Value" "YJL2312A"
  3239. (at 123.19 64.7699 0)
  3240. (show_name no)
  3241. (do_not_autoplace no)
  3242. (effects
  3243. (font
  3244. (size 1.27 1.27)
  3245. )
  3246. (justify left)
  3247. )
  3248. )
  3249. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  3250. (at 119.38 63.5 0)
  3251. (hide yes)
  3252. (show_name no)
  3253. (do_not_autoplace no)
  3254. (effects
  3255. (font
  3256. (size 1.27 1.27)
  3257. )
  3258. )
  3259. )
  3260. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  3261. (at 119.38 63.5 0)
  3262. (hide yes)
  3263. (show_name no)
  3264. (do_not_autoplace no)
  3265. (effects
  3266. (font
  3267. (size 1.27 1.27)
  3268. )
  3269. )
  3270. )
  3271. (property "Description" ""
  3272. (at 119.38 63.5 0)
  3273. (hide yes)
  3274. (show_name no)
  3275. (do_not_autoplace no)
  3276. (effects
  3277. (font
  3278. (size 1.27 1.27)
  3279. )
  3280. )
  3281. )
  3282. (pin "2"
  3283. (uuid "fb9d82d5-c909-49a8-adcc-94ae5cae04b0")
  3284. )
  3285. (pin "3"
  3286. (uuid "af6035a3-83ee-49c7-bbc4-ac12bda8560d")
  3287. )
  3288. (pin "1"
  3289. (uuid "abb18ab9-dd9f-4a60-be17-97f8c021468b")
  3290. )
  3291. (instances
  3292. (project "cx-copter"
  3293. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3294. (reference "Q1")
  3295. (unit 1)
  3296. )
  3297. )
  3298. )
  3299. )
  3300. (symbol
  3301. (lib_id "power:VCC")
  3302. (at 191.77 34.29 0)
  3303. (unit 1)
  3304. (body_style 1)
  3305. (exclude_from_sim no)
  3306. (in_bom yes)
  3307. (on_board yes)
  3308. (in_pos_files yes)
  3309. (dnp no)
  3310. (fields_autoplaced yes)
  3311. (uuid "7d1adacf-c93c-40b8-b4fd-92d901899885")
  3312. (property "Reference" "#PWR020"
  3313. (at 191.77 38.1 0)
  3314. (hide yes)
  3315. (show_name no)
  3316. (do_not_autoplace no)
  3317. (effects
  3318. (font
  3319. (size 1.27 1.27)
  3320. )
  3321. )
  3322. )
  3323. (property "Value" "VCC"
  3324. (at 191.77 29.21 0)
  3325. (show_name no)
  3326. (do_not_autoplace no)
  3327. (effects
  3328. (font
  3329. (size 1.27 1.27)
  3330. )
  3331. )
  3332. )
  3333. (property "Footprint" ""
  3334. (at 191.77 34.29 0)
  3335. (hide yes)
  3336. (show_name no)
  3337. (do_not_autoplace no)
  3338. (effects
  3339. (font
  3340. (size 1.27 1.27)
  3341. )
  3342. )
  3343. )
  3344. (property "Datasheet" ""
  3345. (at 191.77 34.29 0)
  3346. (hide yes)
  3347. (show_name no)
  3348. (do_not_autoplace no)
  3349. (effects
  3350. (font
  3351. (size 1.27 1.27)
  3352. )
  3353. )
  3354. )
  3355. (property "Description" "Power symbol creates a global label with name \"VCC\""
  3356. (at 191.77 34.29 0)
  3357. (hide yes)
  3358. (show_name no)
  3359. (do_not_autoplace no)
  3360. (effects
  3361. (font
  3362. (size 1.27 1.27)
  3363. )
  3364. )
  3365. )
  3366. (pin "1"
  3367. (uuid "e8bf2338-0246-4dd2-a940-4274181a17a4")
  3368. )
  3369. (instances
  3370. (project "cx-copter"
  3371. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3372. (reference "#PWR020")
  3373. (unit 1)
  3374. )
  3375. )
  3376. )
  3377. )
  3378. (symbol
  3379. (lib_id "Motor:Motor_DC_ALT")
  3380. (at 121.92 44.45 0)
  3381. (unit 1)
  3382. (body_style 1)
  3383. (exclude_from_sim no)
  3384. (in_bom yes)
  3385. (on_board yes)
  3386. (in_pos_files yes)
  3387. (dnp no)
  3388. (fields_autoplaced yes)
  3389. (uuid "8311ca93-e3e5-4911-a189-c113ea067465")
  3390. (property "Reference" "M1A"
  3391. (at 125.73 44.4499 0)
  3392. (show_name no)
  3393. (do_not_autoplace no)
  3394. (effects
  3395. (font
  3396. (size 1.27 1.27)
  3397. )
  3398. (justify left)
  3399. )
  3400. )
  3401. (property "Value" "Coreless_0716"
  3402. (at 125.73 46.9899 0)
  3403. (show_name no)
  3404. (do_not_autoplace no)
  3405. (effects
  3406. (font
  3407. (size 1.27 1.27)
  3408. )
  3409. (justify left)
  3410. )
  3411. )
  3412. (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-2_1x02_P2.54mm_Horizontal"
  3413. (at 121.92 46.736 0)
  3414. (hide yes)
  3415. (show_name no)
  3416. (do_not_autoplace no)
  3417. (effects
  3418. (font
  3419. (size 1.27 1.27)
  3420. )
  3421. )
  3422. )
  3423. (property "Datasheet" ""
  3424. (at 121.92 46.736 0)
  3425. (hide yes)
  3426. (show_name no)
  3427. (do_not_autoplace no)
  3428. (effects
  3429. (font
  3430. (size 1.27 1.27)
  3431. )
  3432. )
  3433. )
  3434. (property "Description" "DC Motor, alternative symbol"
  3435. (at 121.92 44.45 0)
  3436. (hide yes)
  3437. (show_name no)
  3438. (do_not_autoplace no)
  3439. (effects
  3440. (font
  3441. (size 1.27 1.27)
  3442. )
  3443. )
  3444. )
  3445. (pin "1"
  3446. (uuid "c5c3bbb0-f4f4-4d6e-abc4-e58aeed785f9")
  3447. )
  3448. (pin "2"
  3449. (uuid "e43ba335-592e-4d58-98b9-c415f0c67808")
  3450. )
  3451. (instances
  3452. (project "cx-copter"
  3453. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3454. (reference "M1A")
  3455. (unit 1)
  3456. )
  3457. )
  3458. )
  3459. )
  3460. (symbol
  3461. (lib_id "Device:D_Schottky")
  3462. (at 173.99 113.03 270)
  3463. (unit 1)
  3464. (body_style 1)
  3465. (exclude_from_sim no)
  3466. (in_bom yes)
  3467. (on_board yes)
  3468. (in_pos_files yes)
  3469. (dnp no)
  3470. (uuid "87cacc5b-4be1-48ab-aef4-22ee80870021")
  3471. (property "Reference" "D5"
  3472. (at 175.26 111.506 90)
  3473. (show_name no)
  3474. (do_not_autoplace no)
  3475. (effects
  3476. (font
  3477. (size 1.27 1.27)
  3478. )
  3479. (justify left)
  3480. )
  3481. )
  3482. (property "Value" "D"
  3483. (at 175.26 114.3 90)
  3484. (show_name no)
  3485. (do_not_autoplace no)
  3486. (effects
  3487. (font
  3488. (size 1.27 1.27)
  3489. )
  3490. (justify left)
  3491. )
  3492. )
  3493. (property "Footprint" ""
  3494. (at 173.99 113.03 0)
  3495. (hide yes)
  3496. (show_name no)
  3497. (do_not_autoplace no)
  3498. (effects
  3499. (font
  3500. (size 1.27 1.27)
  3501. )
  3502. )
  3503. )
  3504. (property "Datasheet" ""
  3505. (at 173.99 113.03 0)
  3506. (hide yes)
  3507. (show_name no)
  3508. (do_not_autoplace no)
  3509. (effects
  3510. (font
  3511. (size 1.27 1.27)
  3512. )
  3513. )
  3514. )
  3515. (property "Description" "Schottky diode"
  3516. (at 173.99 113.03 0)
  3517. (hide yes)
  3518. (show_name no)
  3519. (do_not_autoplace no)
  3520. (effects
  3521. (font
  3522. (size 1.27 1.27)
  3523. )
  3524. )
  3525. )
  3526. (pin "1"
  3527. (uuid "ae91e7f6-d79a-4eaf-8269-48ee9adebee7")
  3528. )
  3529. (pin "2"
  3530. (uuid "16e14fba-7651-479e-a5f9-b2abaf1b7dd0")
  3531. )
  3532. (instances
  3533. (project "cx-copter"
  3534. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3535. (reference "D5")
  3536. (unit 1)
  3537. )
  3538. )
  3539. )
  3540. )
  3541. (symbol
  3542. (lib_id "Device:R")
  3543. (at 172.72 71.12 180)
  3544. (unit 1)
  3545. (body_style 1)
  3546. (exclude_from_sim no)
  3547. (in_bom yes)
  3548. (on_board yes)
  3549. (in_pos_files yes)
  3550. (dnp no)
  3551. (uuid "8ae61810-969c-4199-9bdd-c190ba4f66c6")
  3552. (property "Reference" "R13"
  3553. (at 173.736 69.85 0)
  3554. (show_name no)
  3555. (do_not_autoplace no)
  3556. (effects
  3557. (font
  3558. (size 1.27 1.27)
  3559. )
  3560. (justify right)
  3561. )
  3562. )
  3563. (property "Value" "10k"
  3564. (at 173.736 72.39 0)
  3565. (show_name no)
  3566. (do_not_autoplace no)
  3567. (effects
  3568. (font
  3569. (size 1.27 1.27)
  3570. )
  3571. (justify right)
  3572. )
  3573. )
  3574. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  3575. (at 174.498 71.12 90)
  3576. (hide yes)
  3577. (show_name no)
  3578. (do_not_autoplace no)
  3579. (effects
  3580. (font
  3581. (size 1.27 1.27)
  3582. )
  3583. )
  3584. )
  3585. (property "Datasheet" ""
  3586. (at 172.72 71.12 0)
  3587. (hide yes)
  3588. (show_name no)
  3589. (do_not_autoplace no)
  3590. (effects
  3591. (font
  3592. (size 1.27 1.27)
  3593. )
  3594. )
  3595. )
  3596. (property "Description" "Resistor"
  3597. (at 172.72 71.12 0)
  3598. (hide yes)
  3599. (show_name no)
  3600. (do_not_autoplace no)
  3601. (effects
  3602. (font
  3603. (size 1.27 1.27)
  3604. )
  3605. )
  3606. )
  3607. (pin "1"
  3608. (uuid "c7b21ce8-7ccd-4a2e-b959-1f90685d454d")
  3609. )
  3610. (pin "2"
  3611. (uuid "94b2257a-11c7-48b1-b3c6-2fd200168d1d")
  3612. )
  3613. (instances
  3614. (project "cx-copter"
  3615. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3616. (reference "R13")
  3617. (unit 1)
  3618. )
  3619. )
  3620. )
  3621. )
  3622. (symbol
  3623. (lib_id "power:GNDPWR")
  3624. (at 121.92 78.74 0)
  3625. (unit 1)
  3626. (body_style 1)
  3627. (exclude_from_sim no)
  3628. (in_bom yes)
  3629. (on_board yes)
  3630. (in_pos_files yes)
  3631. (dnp no)
  3632. (fields_autoplaced yes)
  3633. (uuid "94331a1e-4dd2-4ad0-9daa-628d18cd7538")
  3634. (property "Reference" "#PWR013"
  3635. (at 121.92 83.82 0)
  3636. (hide yes)
  3637. (show_name no)
  3638. (do_not_autoplace no)
  3639. (effects
  3640. (font
  3641. (size 1.27 1.27)
  3642. )
  3643. )
  3644. )
  3645. (property "Value" "GNDPWR"
  3646. (at 121.793 82.55 0)
  3647. (show_name no)
  3648. (do_not_autoplace no)
  3649. (effects
  3650. (font
  3651. (size 1.27 1.27)
  3652. )
  3653. )
  3654. )
  3655. (property "Footprint" ""
  3656. (at 121.92 80.01 0)
  3657. (hide yes)
  3658. (show_name no)
  3659. (do_not_autoplace no)
  3660. (effects
  3661. (font
  3662. (size 1.27 1.27)
  3663. )
  3664. )
  3665. )
  3666. (property "Datasheet" ""
  3667. (at 121.92 80.01 0)
  3668. (hide yes)
  3669. (show_name no)
  3670. (do_not_autoplace no)
  3671. (effects
  3672. (font
  3673. (size 1.27 1.27)
  3674. )
  3675. )
  3676. )
  3677. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  3678. (at 121.92 78.74 0)
  3679. (hide yes)
  3680. (show_name no)
  3681. (do_not_autoplace no)
  3682. (effects
  3683. (font
  3684. (size 1.27 1.27)
  3685. )
  3686. )
  3687. )
  3688. (pin "1"
  3689. (uuid "ca6c7f87-3ddf-4c9d-b43c-bec67a36f8f5")
  3690. )
  3691. (instances
  3692. (project "cx-copter"
  3693. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3694. (reference "#PWR013")
  3695. (unit 1)
  3696. )
  3697. )
  3698. )
  3699. )
  3700. (symbol
  3701. (lib_id "transistors:YJL2312A")
  3702. (at 189.23 130.81 0)
  3703. (unit 1)
  3704. (body_style 1)
  3705. (exclude_from_sim no)
  3706. (in_bom yes)
  3707. (on_board yes)
  3708. (in_pos_files yes)
  3709. (dnp no)
  3710. (fields_autoplaced yes)
  3711. (uuid "9b6729c0-6972-469f-b505-b625521e7256")
  3712. (property "Reference" "Q4"
  3713. (at 193.04 129.5399 0)
  3714. (show_name no)
  3715. (do_not_autoplace no)
  3716. (effects
  3717. (font
  3718. (size 1.27 1.27)
  3719. )
  3720. (justify left)
  3721. )
  3722. )
  3723. (property "Value" "YJL2312A"
  3724. (at 193.04 132.0799 0)
  3725. (show_name no)
  3726. (do_not_autoplace no)
  3727. (effects
  3728. (font
  3729. (size 1.27 1.27)
  3730. )
  3731. (justify left)
  3732. )
  3733. )
  3734. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  3735. (at 189.23 130.81 0)
  3736. (hide yes)
  3737. (show_name no)
  3738. (do_not_autoplace no)
  3739. (effects
  3740. (font
  3741. (size 1.27 1.27)
  3742. )
  3743. )
  3744. )
  3745. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  3746. (at 189.23 130.81 0)
  3747. (hide yes)
  3748. (show_name no)
  3749. (do_not_autoplace no)
  3750. (effects
  3751. (font
  3752. (size 1.27 1.27)
  3753. )
  3754. )
  3755. )
  3756. (property "Description" ""
  3757. (at 189.23 130.81 0)
  3758. (hide yes)
  3759. (show_name no)
  3760. (do_not_autoplace no)
  3761. (effects
  3762. (font
  3763. (size 1.27 1.27)
  3764. )
  3765. )
  3766. )
  3767. (pin "2"
  3768. (uuid "3f32d524-c131-4d7b-a451-aab4962b47ef")
  3769. )
  3770. (pin "3"
  3771. (uuid "50407b7c-607c-4366-9453-d5b5d862b183")
  3772. )
  3773. (pin "1"
  3774. (uuid "979897d5-082c-4cf1-9224-6f557e906834")
  3775. )
  3776. (instances
  3777. (project "cx-copter"
  3778. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3779. (reference "Q4")
  3780. (unit 1)
  3781. )
  3782. )
  3783. )
  3784. )
  3785. (symbol
  3786. (lib_id "Motor:Motor_DC_ALT")
  3787. (at 121.92 111.76 0)
  3788. (unit 1)
  3789. (body_style 1)
  3790. (exclude_from_sim no)
  3791. (in_bom yes)
  3792. (on_board yes)
  3793. (in_pos_files yes)
  3794. (dnp no)
  3795. (fields_autoplaced yes)
  3796. (uuid "a1329161-8e1f-410b-aebd-9ed06afcb1bb")
  3797. (property "Reference" "M1B"
  3798. (at 125.73 111.7599 0)
  3799. (show_name no)
  3800. (do_not_autoplace no)
  3801. (effects
  3802. (font
  3803. (size 1.27 1.27)
  3804. )
  3805. (justify left)
  3806. )
  3807. )
  3808. (property "Value" "Coreless_0716"
  3809. (at 125.73 114.2999 0)
  3810. (show_name no)
  3811. (do_not_autoplace no)
  3812. (effects
  3813. (font
  3814. (size 1.27 1.27)
  3815. )
  3816. (justify left)
  3817. )
  3818. )
  3819. (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-2_1x02_P2.54mm_Horizontal"
  3820. (at 121.92 114.046 0)
  3821. (hide yes)
  3822. (show_name no)
  3823. (do_not_autoplace no)
  3824. (effects
  3825. (font
  3826. (size 1.27 1.27)
  3827. )
  3828. )
  3829. )
  3830. (property "Datasheet" ""
  3831. (at 121.92 114.046 0)
  3832. (hide yes)
  3833. (show_name no)
  3834. (do_not_autoplace no)
  3835. (effects
  3836. (font
  3837. (size 1.27 1.27)
  3838. )
  3839. )
  3840. )
  3841. (property "Description" "DC Motor, alternative symbol"
  3842. (at 121.92 111.76 0)
  3843. (hide yes)
  3844. (show_name no)
  3845. (do_not_autoplace no)
  3846. (effects
  3847. (font
  3848. (size 1.27 1.27)
  3849. )
  3850. )
  3851. )
  3852. (pin "1"
  3853. (uuid "b82e9b9b-3317-4b9a-aaa0-dfd83009555b")
  3854. )
  3855. (pin "2"
  3856. (uuid "3b35b2c6-2fe5-45a3-b0c3-0d4e59721ab0")
  3857. )
  3858. (instances
  3859. (project "cx-copter"
  3860. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3861. (reference "M1B")
  3862. (unit 1)
  3863. )
  3864. )
  3865. )
  3866. )
  3867. (symbol
  3868. (lib_id "power:GNDPWR")
  3869. (at 191.77 78.74 0)
  3870. (unit 1)
  3871. (body_style 1)
  3872. (exclude_from_sim no)
  3873. (in_bom yes)
  3874. (on_board yes)
  3875. (in_pos_files yes)
  3876. (dnp no)
  3877. (fields_autoplaced yes)
  3878. (uuid "a7712368-61a6-48c1-b800-41908a1f4185")
  3879. (property "Reference" "#PWR021"
  3880. (at 191.77 83.82 0)
  3881. (hide yes)
  3882. (show_name no)
  3883. (do_not_autoplace no)
  3884. (effects
  3885. (font
  3886. (size 1.27 1.27)
  3887. )
  3888. )
  3889. )
  3890. (property "Value" "GNDPWR"
  3891. (at 191.643 82.55 0)
  3892. (show_name no)
  3893. (do_not_autoplace no)
  3894. (effects
  3895. (font
  3896. (size 1.27 1.27)
  3897. )
  3898. )
  3899. )
  3900. (property "Footprint" ""
  3901. (at 191.77 80.01 0)
  3902. (hide yes)
  3903. (show_name no)
  3904. (do_not_autoplace no)
  3905. (effects
  3906. (font
  3907. (size 1.27 1.27)
  3908. )
  3909. )
  3910. )
  3911. (property "Datasheet" ""
  3912. (at 191.77 80.01 0)
  3913. (hide yes)
  3914. (show_name no)
  3915. (do_not_autoplace no)
  3916. (effects
  3917. (font
  3918. (size 1.27 1.27)
  3919. )
  3920. )
  3921. )
  3922. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  3923. (at 191.77 78.74 0)
  3924. (hide yes)
  3925. (show_name no)
  3926. (do_not_autoplace no)
  3927. (effects
  3928. (font
  3929. (size 1.27 1.27)
  3930. )
  3931. )
  3932. )
  3933. (pin "1"
  3934. (uuid "672ee4fb-5d18-4098-9eac-d26721fa6fa9")
  3935. )
  3936. (instances
  3937. (project "cx-copter"
  3938. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  3939. (reference "#PWR021")
  3940. (unit 1)
  3941. )
  3942. )
  3943. )
  3944. )
  3945. (symbol
  3946. (lib_id "Device:R")
  3947. (at 109.22 130.81 90)
  3948. (unit 1)
  3949. (body_style 1)
  3950. (exclude_from_sim no)
  3951. (in_bom yes)
  3952. (on_board yes)
  3953. (in_pos_files yes)
  3954. (dnp no)
  3955. (uuid "aa3fd6c0-0738-4523-bc66-c3e5bdb88921")
  3956. (property "Reference" "R12"
  3957. (at 109.22 128.778 90)
  3958. (show_name no)
  3959. (do_not_autoplace no)
  3960. (effects
  3961. (font
  3962. (size 1.27 1.27)
  3963. )
  3964. )
  3965. )
  3966. (property "Value" "100"
  3967. (at 109.22 132.842 90)
  3968. (show_name no)
  3969. (do_not_autoplace no)
  3970. (effects
  3971. (font
  3972. (size 1.27 1.27)
  3973. )
  3974. )
  3975. )
  3976. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  3977. (at 109.22 132.588 90)
  3978. (hide yes)
  3979. (show_name no)
  3980. (do_not_autoplace no)
  3981. (effects
  3982. (font
  3983. (size 1.27 1.27)
  3984. )
  3985. )
  3986. )
  3987. (property "Datasheet" ""
  3988. (at 109.22 130.81 0)
  3989. (hide yes)
  3990. (show_name no)
  3991. (do_not_autoplace no)
  3992. (effects
  3993. (font
  3994. (size 1.27 1.27)
  3995. )
  3996. )
  3997. )
  3998. (property "Description" "Resistor"
  3999. (at 109.22 130.81 0)
  4000. (hide yes)
  4001. (show_name no)
  4002. (do_not_autoplace no)
  4003. (effects
  4004. (font
  4005. (size 1.27 1.27)
  4006. )
  4007. )
  4008. )
  4009. (pin "1"
  4010. (uuid "95df4d86-be91-4417-94c1-b33a4d2340f3")
  4011. )
  4012. (pin "2"
  4013. (uuid "e5be9316-f5b9-4dbb-a663-b7ed50313066")
  4014. )
  4015. (instances
  4016. (project "cx-copter"
  4017. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4018. (reference "R12")
  4019. (unit 1)
  4020. )
  4021. )
  4022. )
  4023. )
  4024. (symbol
  4025. (lib_id "Device:D_Schottky")
  4026. (at 104.14 113.03 270)
  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 "b67e78c3-cf70-46f8-96c7-2a53cad6b5b6")
  4035. (property "Reference" "D3"
  4036. (at 105.41 111.506 90)
  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" "D"
  4047. (at 105.41 114.3 90)
  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 104.14 113.03 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 104.14 113.03 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" "Schottky diode"
  4080. (at 104.14 113.03 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 "1"
  4091. (uuid "dd9a1c9b-db48-4001-baa9-87c5910caec5")
  4092. )
  4093. (pin "2"
  4094. (uuid "5f120b8f-7e05-4db2-89b2-9aadd8ed58f4")
  4095. )
  4096. (instances
  4097. (project "cx-copter"
  4098. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4099. (reference "D3")
  4100. (unit 1)
  4101. )
  4102. )
  4103. )
  4104. )
  4105. (symbol
  4106. (lib_id "power:VCC")
  4107. (at 121.92 34.29 0)
  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. (fields_autoplaced yes)
  4116. (uuid "b72ffac2-420e-4159-a869-29d4564839bd")
  4117. (property "Reference" "#PWR015"
  4118. (at 121.92 38.1 0)
  4119. (hide yes)
  4120. (show_name no)
  4121. (do_not_autoplace no)
  4122. (effects
  4123. (font
  4124. (size 1.27 1.27)
  4125. )
  4126. )
  4127. )
  4128. (property "Value" "VCC"
  4129. (at 121.92 29.21 0)
  4130. (show_name no)
  4131. (do_not_autoplace no)
  4132. (effects
  4133. (font
  4134. (size 1.27 1.27)
  4135. )
  4136. )
  4137. )
  4138. (property "Footprint" ""
  4139. (at 121.92 34.29 0)
  4140. (hide yes)
  4141. (show_name no)
  4142. (do_not_autoplace no)
  4143. (effects
  4144. (font
  4145. (size 1.27 1.27)
  4146. )
  4147. )
  4148. )
  4149. (property "Datasheet" ""
  4150. (at 121.92 34.29 0)
  4151. (hide yes)
  4152. (show_name no)
  4153. (do_not_autoplace no)
  4154. (effects
  4155. (font
  4156. (size 1.27 1.27)
  4157. )
  4158. )
  4159. )
  4160. (property "Description" "Power symbol creates a global label with name \"VCC\""
  4161. (at 121.92 34.29 0)
  4162. (hide yes)
  4163. (show_name no)
  4164. (do_not_autoplace no)
  4165. (effects
  4166. (font
  4167. (size 1.27 1.27)
  4168. )
  4169. )
  4170. )
  4171. (pin "1"
  4172. (uuid "b97eb5c5-6f3a-4661-9911-6973f90dcbd3")
  4173. )
  4174. (instances
  4175. (project "cx-copter"
  4176. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4177. (reference "#PWR015")
  4178. (unit 1)
  4179. )
  4180. )
  4181. )
  4182. )
  4183. (symbol
  4184. (lib_id "Device:C")
  4185. (at 93.98 113.03 0)
  4186. (unit 1)
  4187. (body_style 1)
  4188. (exclude_from_sim no)
  4189. (in_bom yes)
  4190. (on_board yes)
  4191. (in_pos_files yes)
  4192. (dnp no)
  4193. (uuid "bad8ccf5-8ab1-4e7a-a874-bbd083db9933")
  4194. (property "Reference" "C7"
  4195. (at 93.98 110.998 0)
  4196. (show_name no)
  4197. (do_not_autoplace no)
  4198. (effects
  4199. (font
  4200. (size 1.27 1.27)
  4201. )
  4202. (justify left)
  4203. )
  4204. )
  4205. (property "Value" "100n"
  4206. (at 93.98 115.062 0)
  4207. (show_name no)
  4208. (do_not_autoplace no)
  4209. (effects
  4210. (font
  4211. (size 1.27 1.27)
  4212. )
  4213. (justify left)
  4214. )
  4215. )
  4216. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  4217. (at 94.9452 116.84 0)
  4218. (hide yes)
  4219. (show_name no)
  4220. (do_not_autoplace no)
  4221. (effects
  4222. (font
  4223. (size 1.27 1.27)
  4224. )
  4225. )
  4226. )
  4227. (property "Datasheet" ""
  4228. (at 93.98 113.03 0)
  4229. (hide yes)
  4230. (show_name no)
  4231. (do_not_autoplace no)
  4232. (effects
  4233. (font
  4234. (size 1.27 1.27)
  4235. )
  4236. )
  4237. )
  4238. (property "Description" "Unpolarized capacitor"
  4239. (at 93.98 113.03 0)
  4240. (hide yes)
  4241. (show_name no)
  4242. (do_not_autoplace no)
  4243. (effects
  4244. (font
  4245. (size 1.27 1.27)
  4246. )
  4247. )
  4248. )
  4249. (pin "1"
  4250. (uuid "5c5a43e0-f808-46c1-9b1a-1c4817ef0e5e")
  4251. )
  4252. (pin "2"
  4253. (uuid "0f9312b7-f744-42d7-bc1f-e99944d9cac3")
  4254. )
  4255. (instances
  4256. (project "cx-copter"
  4257. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4258. (reference "C7")
  4259. (unit 1)
  4260. )
  4261. )
  4262. )
  4263. )
  4264. (symbol
  4265. (lib_id "power:GND")
  4266. (at 102.87 144.78 0)
  4267. (unit 1)
  4268. (body_style 1)
  4269. (exclude_from_sim no)
  4270. (in_bom yes)
  4271. (on_board yes)
  4272. (in_pos_files yes)
  4273. (dnp no)
  4274. (fields_autoplaced yes)
  4275. (uuid "c0166bc4-376e-4c61-8041-79232a717800")
  4276. (property "Reference" "#PWR016"
  4277. (at 102.87 151.13 0)
  4278. (hide yes)
  4279. (show_name no)
  4280. (do_not_autoplace no)
  4281. (effects
  4282. (font
  4283. (size 1.27 1.27)
  4284. )
  4285. )
  4286. )
  4287. (property "Value" "GND"
  4288. (at 102.87 149.86 0)
  4289. (show_name no)
  4290. (do_not_autoplace no)
  4291. (effects
  4292. (font
  4293. (size 1.27 1.27)
  4294. )
  4295. )
  4296. )
  4297. (property "Footprint" ""
  4298. (at 102.87 144.78 0)
  4299. (hide yes)
  4300. (show_name no)
  4301. (do_not_autoplace no)
  4302. (effects
  4303. (font
  4304. (size 1.27 1.27)
  4305. )
  4306. )
  4307. )
  4308. (property "Datasheet" ""
  4309. (at 102.87 144.78 0)
  4310. (hide yes)
  4311. (show_name no)
  4312. (do_not_autoplace no)
  4313. (effects
  4314. (font
  4315. (size 1.27 1.27)
  4316. )
  4317. )
  4318. )
  4319. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  4320. (at 102.87 144.78 0)
  4321. (hide yes)
  4322. (show_name no)
  4323. (do_not_autoplace no)
  4324. (effects
  4325. (font
  4326. (size 1.27 1.27)
  4327. )
  4328. )
  4329. )
  4330. (pin "1"
  4331. (uuid "9062d53d-dcea-4ee1-b21f-c144e53f1250")
  4332. )
  4333. (instances
  4334. (project "cx-copter"
  4335. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4336. (reference "#PWR016")
  4337. (unit 1)
  4338. )
  4339. )
  4340. )
  4341. )
  4342. (symbol
  4343. (lib_id "power:VCC")
  4344. (at 191.77 101.6 0)
  4345. (unit 1)
  4346. (body_style 1)
  4347. (exclude_from_sim no)
  4348. (in_bom yes)
  4349. (on_board yes)
  4350. (in_pos_files yes)
  4351. (dnp no)
  4352. (fields_autoplaced yes)
  4353. (uuid "c06ca5c6-3f8c-4ab2-86f4-8549edd79d1d")
  4354. (property "Reference" "#PWR023"
  4355. (at 191.77 105.41 0)
  4356. (hide yes)
  4357. (show_name no)
  4358. (do_not_autoplace no)
  4359. (effects
  4360. (font
  4361. (size 1.27 1.27)
  4362. )
  4363. )
  4364. )
  4365. (property "Value" "VCC"
  4366. (at 191.77 96.52 0)
  4367. (show_name no)
  4368. (do_not_autoplace no)
  4369. (effects
  4370. (font
  4371. (size 1.27 1.27)
  4372. )
  4373. )
  4374. )
  4375. (property "Footprint" ""
  4376. (at 191.77 101.6 0)
  4377. (hide yes)
  4378. (show_name no)
  4379. (do_not_autoplace no)
  4380. (effects
  4381. (font
  4382. (size 1.27 1.27)
  4383. )
  4384. )
  4385. )
  4386. (property "Datasheet" ""
  4387. (at 191.77 101.6 0)
  4388. (hide yes)
  4389. (show_name no)
  4390. (do_not_autoplace no)
  4391. (effects
  4392. (font
  4393. (size 1.27 1.27)
  4394. )
  4395. )
  4396. )
  4397. (property "Description" "Power symbol creates a global label with name \"VCC\""
  4398. (at 191.77 101.6 0)
  4399. (hide yes)
  4400. (show_name no)
  4401. (do_not_autoplace no)
  4402. (effects
  4403. (font
  4404. (size 1.27 1.27)
  4405. )
  4406. )
  4407. )
  4408. (pin "1"
  4409. (uuid "783fac9d-4dab-405c-80e8-020d65ea638b")
  4410. )
  4411. (instances
  4412. (project "cx-copter"
  4413. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4414. (reference "#PWR023")
  4415. (unit 1)
  4416. )
  4417. )
  4418. )
  4419. )
  4420. (symbol
  4421. (lib_id "power:GND")
  4422. (at 102.87 77.47 0)
  4423. (unit 1)
  4424. (body_style 1)
  4425. (exclude_from_sim no)
  4426. (in_bom yes)
  4427. (on_board yes)
  4428. (in_pos_files yes)
  4429. (dnp no)
  4430. (fields_autoplaced yes)
  4431. (uuid "d6d0c569-4a14-486f-a99d-417bff42d842")
  4432. (property "Reference" "#PWR014"
  4433. (at 102.87 83.82 0)
  4434. (hide yes)
  4435. (show_name no)
  4436. (do_not_autoplace no)
  4437. (effects
  4438. (font
  4439. (size 1.27 1.27)
  4440. )
  4441. )
  4442. )
  4443. (property "Value" "GND"
  4444. (at 102.87 82.55 0)
  4445. (show_name no)
  4446. (do_not_autoplace no)
  4447. (effects
  4448. (font
  4449. (size 1.27 1.27)
  4450. )
  4451. )
  4452. )
  4453. (property "Footprint" ""
  4454. (at 102.87 77.47 0)
  4455. (hide yes)
  4456. (show_name no)
  4457. (do_not_autoplace no)
  4458. (effects
  4459. (font
  4460. (size 1.27 1.27)
  4461. )
  4462. )
  4463. )
  4464. (property "Datasheet" ""
  4465. (at 102.87 77.47 0)
  4466. (hide yes)
  4467. (show_name no)
  4468. (do_not_autoplace no)
  4469. (effects
  4470. (font
  4471. (size 1.27 1.27)
  4472. )
  4473. )
  4474. )
  4475. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  4476. (at 102.87 77.47 0)
  4477. (hide yes)
  4478. (show_name no)
  4479. (do_not_autoplace no)
  4480. (effects
  4481. (font
  4482. (size 1.27 1.27)
  4483. )
  4484. )
  4485. )
  4486. (pin "1"
  4487. (uuid "ac8cf449-531c-45e2-af80-b2ca8a17022e")
  4488. )
  4489. (instances
  4490. (project "cx-copter"
  4491. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4492. (reference "#PWR014")
  4493. (unit 1)
  4494. )
  4495. )
  4496. )
  4497. )
  4498. (symbol
  4499. (lib_id "Device:R")
  4500. (at 172.72 138.43 180)
  4501. (unit 1)
  4502. (body_style 1)
  4503. (exclude_from_sim no)
  4504. (in_bom yes)
  4505. (on_board yes)
  4506. (in_pos_files yes)
  4507. (dnp no)
  4508. (uuid "d915ebcf-eecb-4c20-99fb-b7222a4c7f3c")
  4509. (property "Reference" "R15"
  4510. (at 173.736 137.16 0)
  4511. (show_name no)
  4512. (do_not_autoplace no)
  4513. (effects
  4514. (font
  4515. (size 1.27 1.27)
  4516. )
  4517. (justify right)
  4518. )
  4519. )
  4520. (property "Value" "10k"
  4521. (at 173.736 139.7 0)
  4522. (show_name no)
  4523. (do_not_autoplace no)
  4524. (effects
  4525. (font
  4526. (size 1.27 1.27)
  4527. )
  4528. (justify right)
  4529. )
  4530. )
  4531. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  4532. (at 174.498 138.43 90)
  4533. (hide yes)
  4534. (show_name no)
  4535. (do_not_autoplace no)
  4536. (effects
  4537. (font
  4538. (size 1.27 1.27)
  4539. )
  4540. )
  4541. )
  4542. (property "Datasheet" ""
  4543. (at 172.72 138.43 0)
  4544. (hide yes)
  4545. (show_name no)
  4546. (do_not_autoplace no)
  4547. (effects
  4548. (font
  4549. (size 1.27 1.27)
  4550. )
  4551. )
  4552. )
  4553. (property "Description" "Resistor"
  4554. (at 172.72 138.43 0)
  4555. (hide yes)
  4556. (show_name no)
  4557. (do_not_autoplace no)
  4558. (effects
  4559. (font
  4560. (size 1.27 1.27)
  4561. )
  4562. )
  4563. )
  4564. (pin "1"
  4565. (uuid "25790854-3b84-4f83-bc73-667282b5dda5")
  4566. )
  4567. (pin "2"
  4568. (uuid "54074f2d-b128-4a7f-a32a-8e4a293f4677")
  4569. )
  4570. (instances
  4571. (project "cx-copter"
  4572. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4573. (reference "R15")
  4574. (unit 1)
  4575. )
  4576. )
  4577. )
  4578. )
  4579. (symbol
  4580. (lib_id "transistors:YJL2312A")
  4581. (at 119.38 130.81 0)
  4582. (unit 1)
  4583. (body_style 1)
  4584. (exclude_from_sim no)
  4585. (in_bom yes)
  4586. (on_board yes)
  4587. (in_pos_files yes)
  4588. (dnp no)
  4589. (fields_autoplaced yes)
  4590. (uuid "da420cb6-cae9-48b5-ac46-c52820323d36")
  4591. (property "Reference" "Q2"
  4592. (at 123.19 129.5399 0)
  4593. (show_name no)
  4594. (do_not_autoplace no)
  4595. (effects
  4596. (font
  4597. (size 1.27 1.27)
  4598. )
  4599. (justify left)
  4600. )
  4601. )
  4602. (property "Value" "YJL2312A"
  4603. (at 123.19 132.0799 0)
  4604. (show_name no)
  4605. (do_not_autoplace no)
  4606. (effects
  4607. (font
  4608. (size 1.27 1.27)
  4609. )
  4610. (justify left)
  4611. )
  4612. )
  4613. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  4614. (at 119.38 130.81 0)
  4615. (hide yes)
  4616. (show_name no)
  4617. (do_not_autoplace no)
  4618. (effects
  4619. (font
  4620. (size 1.27 1.27)
  4621. )
  4622. )
  4623. )
  4624. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  4625. (at 119.38 130.81 0)
  4626. (hide yes)
  4627. (show_name no)
  4628. (do_not_autoplace no)
  4629. (effects
  4630. (font
  4631. (size 1.27 1.27)
  4632. )
  4633. )
  4634. )
  4635. (property "Description" ""
  4636. (at 119.38 130.81 0)
  4637. (hide yes)
  4638. (show_name no)
  4639. (do_not_autoplace no)
  4640. (effects
  4641. (font
  4642. (size 1.27 1.27)
  4643. )
  4644. )
  4645. )
  4646. (pin "2"
  4647. (uuid "9ecaef27-90fd-46a5-9645-71e013ec479f")
  4648. )
  4649. (pin "3"
  4650. (uuid "e8657b2b-cff7-4d2d-afb6-6bd44922d5f2")
  4651. )
  4652. (pin "1"
  4653. (uuid "dd828b60-facb-4ae1-a42c-6dc04b25605d")
  4654. )
  4655. (instances
  4656. (project "cx-copter"
  4657. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4658. (reference "Q2")
  4659. (unit 1)
  4660. )
  4661. )
  4662. )
  4663. )
  4664. (symbol
  4665. (lib_id "Device:R")
  4666. (at 102.87 138.43 180)
  4667. (unit 1)
  4668. (body_style 1)
  4669. (exclude_from_sim no)
  4670. (in_bom yes)
  4671. (on_board yes)
  4672. (in_pos_files yes)
  4673. (dnp no)
  4674. (uuid "e31d5f16-67d9-43a8-848e-fe4292ef336d")
  4675. (property "Reference" "R11"
  4676. (at 103.886 137.16 0)
  4677. (show_name no)
  4678. (do_not_autoplace no)
  4679. (effects
  4680. (font
  4681. (size 1.27 1.27)
  4682. )
  4683. (justify right)
  4684. )
  4685. )
  4686. (property "Value" "10k"
  4687. (at 103.886 139.7 0)
  4688. (show_name no)
  4689. (do_not_autoplace no)
  4690. (effects
  4691. (font
  4692. (size 1.27 1.27)
  4693. )
  4694. (justify right)
  4695. )
  4696. )
  4697. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  4698. (at 104.648 138.43 90)
  4699. (hide yes)
  4700. (show_name no)
  4701. (do_not_autoplace no)
  4702. (effects
  4703. (font
  4704. (size 1.27 1.27)
  4705. )
  4706. )
  4707. )
  4708. (property "Datasheet" ""
  4709. (at 102.87 138.43 0)
  4710. (hide yes)
  4711. (show_name no)
  4712. (do_not_autoplace no)
  4713. (effects
  4714. (font
  4715. (size 1.27 1.27)
  4716. )
  4717. )
  4718. )
  4719. (property "Description" "Resistor"
  4720. (at 102.87 138.43 0)
  4721. (hide yes)
  4722. (show_name no)
  4723. (do_not_autoplace no)
  4724. (effects
  4725. (font
  4726. (size 1.27 1.27)
  4727. )
  4728. )
  4729. )
  4730. (pin "1"
  4731. (uuid "947d5001-a970-474c-8c16-93a2ca54c880")
  4732. )
  4733. (pin "2"
  4734. (uuid "add2d333-0f1e-46bb-bfd0-541b18c4b90a")
  4735. )
  4736. (instances
  4737. (project "cx-copter"
  4738. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4739. (reference "R11")
  4740. (unit 1)
  4741. )
  4742. )
  4743. )
  4744. )
  4745. (symbol
  4746. (lib_id "Device:D_Schottky")
  4747. (at 104.14 45.72 270)
  4748. (unit 1)
  4749. (body_style 1)
  4750. (exclude_from_sim no)
  4751. (in_bom yes)
  4752. (on_board yes)
  4753. (in_pos_files yes)
  4754. (dnp no)
  4755. (uuid "f464729d-ad2f-4655-b1e8-9d6fa5d8c831")
  4756. (property "Reference" "D2"
  4757. (at 105.41 44.196 90)
  4758. (show_name no)
  4759. (do_not_autoplace no)
  4760. (effects
  4761. (font
  4762. (size 1.27 1.27)
  4763. )
  4764. (justify left)
  4765. )
  4766. )
  4767. (property "Value" "D"
  4768. (at 105.41 46.99 90)
  4769. (show_name no)
  4770. (do_not_autoplace no)
  4771. (effects
  4772. (font
  4773. (size 1.27 1.27)
  4774. )
  4775. (justify left)
  4776. )
  4777. )
  4778. (property "Footprint" ""
  4779. (at 104.14 45.72 0)
  4780. (hide yes)
  4781. (show_name no)
  4782. (do_not_autoplace no)
  4783. (effects
  4784. (font
  4785. (size 1.27 1.27)
  4786. )
  4787. )
  4788. )
  4789. (property "Datasheet" ""
  4790. (at 104.14 45.72 0)
  4791. (hide yes)
  4792. (show_name no)
  4793. (do_not_autoplace no)
  4794. (effects
  4795. (font
  4796. (size 1.27 1.27)
  4797. )
  4798. )
  4799. )
  4800. (property "Description" "Schottky diode"
  4801. (at 104.14 45.72 0)
  4802. (hide yes)
  4803. (show_name no)
  4804. (do_not_autoplace no)
  4805. (effects
  4806. (font
  4807. (size 1.27 1.27)
  4808. )
  4809. )
  4810. )
  4811. (pin "1"
  4812. (uuid "8b798693-c52b-44be-95cc-277d8c685d13")
  4813. )
  4814. (pin "2"
  4815. (uuid "7975cd22-602e-4cc5-b02f-3ff38f5aeaf7")
  4816. )
  4817. (instances
  4818. (project "cx-copter"
  4819. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4820. (reference "D2")
  4821. (unit 1)
  4822. )
  4823. )
  4824. )
  4825. )
  4826. (symbol
  4827. (lib_id "Motor:Motor_DC_ALT")
  4828. (at 191.77 44.45 0)
  4829. (unit 1)
  4830. (body_style 1)
  4831. (exclude_from_sim no)
  4832. (in_bom yes)
  4833. (on_board yes)
  4834. (in_pos_files yes)
  4835. (dnp no)
  4836. (fields_autoplaced yes)
  4837. (uuid "f6ab48ee-1cfe-4d80-b761-3da616183a07")
  4838. (property "Reference" "M2A"
  4839. (at 195.58 44.4499 0)
  4840. (show_name no)
  4841. (do_not_autoplace no)
  4842. (effects
  4843. (font
  4844. (size 1.27 1.27)
  4845. )
  4846. (justify left)
  4847. )
  4848. )
  4849. (property "Value" "Coreless_0716"
  4850. (at 195.58 46.9899 0)
  4851. (show_name no)
  4852. (do_not_autoplace no)
  4853. (effects
  4854. (font
  4855. (size 1.27 1.27)
  4856. )
  4857. (justify left)
  4858. )
  4859. )
  4860. (property "Footprint" "TerminalBlock_TE-Connectivity:TerminalBlock_TE_282834-2_1x02_P2.54mm_Horizontal"
  4861. (at 191.77 46.736 0)
  4862. (hide yes)
  4863. (show_name no)
  4864. (do_not_autoplace no)
  4865. (effects
  4866. (font
  4867. (size 1.27 1.27)
  4868. )
  4869. )
  4870. )
  4871. (property "Datasheet" ""
  4872. (at 191.77 46.736 0)
  4873. (hide yes)
  4874. (show_name no)
  4875. (do_not_autoplace no)
  4876. (effects
  4877. (font
  4878. (size 1.27 1.27)
  4879. )
  4880. )
  4881. )
  4882. (property "Description" "DC Motor, alternative symbol"
  4883. (at 191.77 44.45 0)
  4884. (hide yes)
  4885. (show_name no)
  4886. (do_not_autoplace no)
  4887. (effects
  4888. (font
  4889. (size 1.27 1.27)
  4890. )
  4891. )
  4892. )
  4893. (pin "1"
  4894. (uuid "f76ffbdb-d1aa-4aa5-9f23-896d9b221954")
  4895. )
  4896. (pin "2"
  4897. (uuid "161c8869-be99-4228-9e09-af8a9f43ee7b")
  4898. )
  4899. (instances
  4900. (project "cx-copter"
  4901. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4902. (reference "M2A")
  4903. (unit 1)
  4904. )
  4905. )
  4906. )
  4907. )
  4908. (symbol
  4909. (lib_id "power:GNDPWR")
  4910. (at 191.77 146.05 0)
  4911. (unit 1)
  4912. (body_style 1)
  4913. (exclude_from_sim no)
  4914. (in_bom yes)
  4915. (on_board yes)
  4916. (in_pos_files yes)
  4917. (dnp no)
  4918. (fields_autoplaced yes)
  4919. (uuid "fa582b69-b650-4f47-9be4-81de6371ca09")
  4920. (property "Reference" "#PWR024"
  4921. (at 191.77 151.13 0)
  4922. (hide yes)
  4923. (show_name no)
  4924. (do_not_autoplace no)
  4925. (effects
  4926. (font
  4927. (size 1.27 1.27)
  4928. )
  4929. )
  4930. )
  4931. (property "Value" "GNDPWR"
  4932. (at 191.643 149.86 0)
  4933. (show_name no)
  4934. (do_not_autoplace no)
  4935. (effects
  4936. (font
  4937. (size 1.27 1.27)
  4938. )
  4939. )
  4940. )
  4941. (property "Footprint" ""
  4942. (at 191.77 147.32 0)
  4943. (hide yes)
  4944. (show_name no)
  4945. (do_not_autoplace no)
  4946. (effects
  4947. (font
  4948. (size 1.27 1.27)
  4949. )
  4950. )
  4951. )
  4952. (property "Datasheet" ""
  4953. (at 191.77 147.32 0)
  4954. (hide yes)
  4955. (show_name no)
  4956. (do_not_autoplace no)
  4957. (effects
  4958. (font
  4959. (size 1.27 1.27)
  4960. )
  4961. )
  4962. )
  4963. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  4964. (at 191.77 146.05 0)
  4965. (hide yes)
  4966. (show_name no)
  4967. (do_not_autoplace no)
  4968. (effects
  4969. (font
  4970. (size 1.27 1.27)
  4971. )
  4972. )
  4973. )
  4974. (pin "1"
  4975. (uuid "41b623cb-d124-4f21-8ba3-18abf6357585")
  4976. )
  4977. (instances
  4978. (project "cx-copter"
  4979. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  4980. (reference "#PWR024")
  4981. (unit 1)
  4982. )
  4983. )
  4984. )
  4985. )
  4986. (symbol
  4987. (lib_id "Device:C")
  4988. (at 163.83 45.72 0)
  4989. (unit 1)
  4990. (body_style 1)
  4991. (exclude_from_sim no)
  4992. (in_bom yes)
  4993. (on_board yes)
  4994. (in_pos_files yes)
  4995. (dnp no)
  4996. (uuid "fb36e599-e883-40f9-8898-b0be3b9ada02")
  4997. (property "Reference" "C8"
  4998. (at 163.83 43.688 0)
  4999. (show_name no)
  5000. (do_not_autoplace no)
  5001. (effects
  5002. (font
  5003. (size 1.27 1.27)
  5004. )
  5005. (justify left)
  5006. )
  5007. )
  5008. (property "Value" "100n"
  5009. (at 163.83 47.752 0)
  5010. (show_name no)
  5011. (do_not_autoplace no)
  5012. (effects
  5013. (font
  5014. (size 1.27 1.27)
  5015. )
  5016. (justify left)
  5017. )
  5018. )
  5019. (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
  5020. (at 164.7952 49.53 0)
  5021. (hide yes)
  5022. (show_name no)
  5023. (do_not_autoplace no)
  5024. (effects
  5025. (font
  5026. (size 1.27 1.27)
  5027. )
  5028. )
  5029. )
  5030. (property "Datasheet" ""
  5031. (at 163.83 45.72 0)
  5032. (hide yes)
  5033. (show_name no)
  5034. (do_not_autoplace no)
  5035. (effects
  5036. (font
  5037. (size 1.27 1.27)
  5038. )
  5039. )
  5040. )
  5041. (property "Description" "Unpolarized capacitor"
  5042. (at 163.83 45.72 0)
  5043. (hide yes)
  5044. (show_name no)
  5045. (do_not_autoplace no)
  5046. (effects
  5047. (font
  5048. (size 1.27 1.27)
  5049. )
  5050. )
  5051. )
  5052. (pin "1"
  5053. (uuid "ff50c321-f323-4772-ae9f-979d0a0d771f")
  5054. )
  5055. (pin "2"
  5056. (uuid "aef85279-349a-4d1c-bd31-04bd76bfc062")
  5057. )
  5058. (instances
  5059. (project "cx-copter"
  5060. (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1d1461da-51f7-4cd8-b0e6-17265a03a078"
  5061. (reference "C8")
  5062. (unit 1)
  5063. )
  5064. )
  5065. )
  5066. )
  5067. )