motors_driver.kicad_sch 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "e7d6ab0c-dd97-4b44-b699-71d4582eb977")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Device:D"
  9. (pin_numbers
  10. (hide yes)
  11. )
  12. (pin_names
  13. (offset 1.016)
  14. (hide yes)
  15. )
  16. (exclude_from_sim no)
  17. (in_bom yes)
  18. (on_board yes)
  19. (in_pos_files yes)
  20. (duplicate_pin_numbers_are_jumpers no)
  21. (property "Reference" "D"
  22. (at 0 2.54 0)
  23. (show_name no)
  24. (do_not_autoplace no)
  25. (effects
  26. (font
  27. (size 1.27 1.27)
  28. )
  29. )
  30. )
  31. (property "Value" "D"
  32. (at 0 -2.54 0)
  33. (show_name no)
  34. (do_not_autoplace no)
  35. (effects
  36. (font
  37. (size 1.27 1.27)
  38. )
  39. )
  40. )
  41. (property "Footprint" ""
  42. (at 0 0 0)
  43. (show_name no)
  44. (do_not_autoplace no)
  45. (hide yes)
  46. (effects
  47. (font
  48. (size 1.27 1.27)
  49. )
  50. )
  51. )
  52. (property "Datasheet" ""
  53. (at 0 0 0)
  54. (show_name no)
  55. (do_not_autoplace no)
  56. (hide yes)
  57. (effects
  58. (font
  59. (size 1.27 1.27)
  60. )
  61. )
  62. )
  63. (property "Description" "Diode"
  64. (at 0 0 0)
  65. (show_name no)
  66. (do_not_autoplace no)
  67. (hide yes)
  68. (effects
  69. (font
  70. (size 1.27 1.27)
  71. )
  72. )
  73. )
  74. (property "Sim.Device" "D"
  75. (at 0 0 0)
  76. (show_name no)
  77. (do_not_autoplace no)
  78. (hide yes)
  79. (effects
  80. (font
  81. (size 1.27 1.27)
  82. )
  83. )
  84. )
  85. (property "Sim.Pins" "1=K 2=A"
  86. (at 0 0 0)
  87. (show_name no)
  88. (do_not_autoplace no)
  89. (hide yes)
  90. (effects
  91. (font
  92. (size 1.27 1.27)
  93. )
  94. )
  95. )
  96. (property "ki_keywords" "diode"
  97. (at 0 0 0)
  98. (show_name no)
  99. (do_not_autoplace no)
  100. (hide yes)
  101. (effects
  102. (font
  103. (size 1.27 1.27)
  104. )
  105. )
  106. )
  107. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*"
  108. (at 0 0 0)
  109. (show_name no)
  110. (do_not_autoplace no)
  111. (hide yes)
  112. (effects
  113. (font
  114. (size 1.27 1.27)
  115. )
  116. )
  117. )
  118. (symbol "D_0_1"
  119. (polyline
  120. (pts
  121. (xy -1.27 1.27) (xy -1.27 -1.27)
  122. )
  123. (stroke
  124. (width 0.254)
  125. (type default)
  126. )
  127. (fill
  128. (type none)
  129. )
  130. )
  131. (polyline
  132. (pts
  133. (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
  134. )
  135. (stroke
  136. (width 0.254)
  137. (type default)
  138. )
  139. (fill
  140. (type none)
  141. )
  142. )
  143. (polyline
  144. (pts
  145. (xy 1.27 0) (xy -1.27 0)
  146. )
  147. (stroke
  148. (width 0)
  149. (type default)
  150. )
  151. (fill
  152. (type none)
  153. )
  154. )
  155. )
  156. (symbol "D_1_1"
  157. (pin passive line
  158. (at -3.81 0 0)
  159. (length 2.54)
  160. (name "K"
  161. (effects
  162. (font
  163. (size 1.27 1.27)
  164. )
  165. )
  166. )
  167. (number "1"
  168. (effects
  169. (font
  170. (size 1.27 1.27)
  171. )
  172. )
  173. )
  174. )
  175. (pin passive line
  176. (at 3.81 0 180)
  177. (length 2.54)
  178. (name "A"
  179. (effects
  180. (font
  181. (size 1.27 1.27)
  182. )
  183. )
  184. )
  185. (number "2"
  186. (effects
  187. (font
  188. (size 1.27 1.27)
  189. )
  190. )
  191. )
  192. )
  193. )
  194. (embedded_fonts no)
  195. )
  196. (symbol "Device:R"
  197. (pin_numbers
  198. (hide yes)
  199. )
  200. (pin_names
  201. (offset 0)
  202. )
  203. (exclude_from_sim no)
  204. (in_bom yes)
  205. (on_board yes)
  206. (in_pos_files yes)
  207. (duplicate_pin_numbers_are_jumpers no)
  208. (property "Reference" "R"
  209. (at 2.032 0 90)
  210. (show_name no)
  211. (do_not_autoplace no)
  212. (effects
  213. (font
  214. (size 1.27 1.27)
  215. )
  216. )
  217. )
  218. (property "Value" "R"
  219. (at 0 0 90)
  220. (show_name no)
  221. (do_not_autoplace no)
  222. (effects
  223. (font
  224. (size 1.27 1.27)
  225. )
  226. )
  227. )
  228. (property "Footprint" ""
  229. (at -1.778 0 90)
  230. (show_name no)
  231. (do_not_autoplace no)
  232. (hide yes)
  233. (effects
  234. (font
  235. (size 1.27 1.27)
  236. )
  237. )
  238. )
  239. (property "Datasheet" ""
  240. (at 0 0 0)
  241. (show_name no)
  242. (do_not_autoplace no)
  243. (hide yes)
  244. (effects
  245. (font
  246. (size 1.27 1.27)
  247. )
  248. )
  249. )
  250. (property "Description" "Resistor"
  251. (at 0 0 0)
  252. (show_name no)
  253. (do_not_autoplace no)
  254. (hide yes)
  255. (effects
  256. (font
  257. (size 1.27 1.27)
  258. )
  259. )
  260. )
  261. (property "ki_keywords" "R res resistor"
  262. (at 0 0 0)
  263. (show_name no)
  264. (do_not_autoplace no)
  265. (hide yes)
  266. (effects
  267. (font
  268. (size 1.27 1.27)
  269. )
  270. )
  271. )
  272. (property "ki_fp_filters" "R_*"
  273. (at 0 0 0)
  274. (show_name no)
  275. (do_not_autoplace no)
  276. (hide yes)
  277. (effects
  278. (font
  279. (size 1.27 1.27)
  280. )
  281. )
  282. )
  283. (symbol "R_0_1"
  284. (rectangle
  285. (start -1.016 -2.54)
  286. (end 1.016 2.54)
  287. (stroke
  288. (width 0.254)
  289. (type default)
  290. )
  291. (fill
  292. (type none)
  293. )
  294. )
  295. )
  296. (symbol "R_1_1"
  297. (pin passive line
  298. (at 0 3.81 270)
  299. (length 1.27)
  300. (name ""
  301. (effects
  302. (font
  303. (size 1.27 1.27)
  304. )
  305. )
  306. )
  307. (number "1"
  308. (effects
  309. (font
  310. (size 1.27 1.27)
  311. )
  312. )
  313. )
  314. )
  315. (pin passive line
  316. (at 0 -3.81 90)
  317. (length 1.27)
  318. (name ""
  319. (effects
  320. (font
  321. (size 1.27 1.27)
  322. )
  323. )
  324. )
  325. (number "2"
  326. (effects
  327. (font
  328. (size 1.27 1.27)
  329. )
  330. )
  331. )
  332. )
  333. )
  334. (embedded_fonts no)
  335. )
  336. (symbol "Motor:Motor_DC_ALT"
  337. (pin_names
  338. (offset 0)
  339. )
  340. (exclude_from_sim no)
  341. (in_bom yes)
  342. (on_board yes)
  343. (in_pos_files yes)
  344. (duplicate_pin_numbers_are_jumpers no)
  345. (property "Reference" "M"
  346. (at 2.54 2.54 0)
  347. (show_name no)
  348. (do_not_autoplace no)
  349. (effects
  350. (font
  351. (size 1.27 1.27)
  352. )
  353. (justify left)
  354. )
  355. )
  356. (property "Value" "Motor_DC_ALT"
  357. (at 2.54 -5.08 0)
  358. (show_name no)
  359. (do_not_autoplace no)
  360. (effects
  361. (font
  362. (size 1.27 1.27)
  363. )
  364. (justify left top)
  365. )
  366. )
  367. (property "Footprint" ""
  368. (at 0 -2.286 0)
  369. (show_name no)
  370. (do_not_autoplace no)
  371. (hide yes)
  372. (effects
  373. (font
  374. (size 1.27 1.27)
  375. )
  376. )
  377. )
  378. (property "Datasheet" ""
  379. (at 0 -2.286 0)
  380. (show_name no)
  381. (do_not_autoplace no)
  382. (hide yes)
  383. (effects
  384. (font
  385. (size 1.27 1.27)
  386. )
  387. )
  388. )
  389. (property "Description" "DC Motor, alternative symbol"
  390. (at 0 0 0)
  391. (show_name no)
  392. (do_not_autoplace no)
  393. (hide yes)
  394. (effects
  395. (font
  396. (size 1.27 1.27)
  397. )
  398. )
  399. )
  400. (property "ki_keywords" "DC Motor"
  401. (at 0 0 0)
  402. (show_name no)
  403. (do_not_autoplace no)
  404. (hide yes)
  405. (effects
  406. (font
  407. (size 1.27 1.27)
  408. )
  409. )
  410. )
  411. (property "ki_fp_filters" "PinHeader*P2.54mm* TerminalBlock*"
  412. (at 0 0 0)
  413. (show_name no)
  414. (do_not_autoplace no)
  415. (hide yes)
  416. (effects
  417. (font
  418. (size 1.27 1.27)
  419. )
  420. )
  421. )
  422. (symbol "Motor_DC_ALT_0_0"
  423. (polyline
  424. (pts
  425. (xy -1.27 1.27) (xy -1.27 2.032) (xy 1.27 2.032) (xy 1.27 1.27)
  426. )
  427. (stroke
  428. (width 0)
  429. (type default)
  430. )
  431. (fill
  432. (type none)
  433. )
  434. )
  435. (polyline
  436. (pts
  437. (xy -1.27 -3.302) (xy -1.27 0.508) (xy 0 -2.032) (xy 1.27 0.508) (xy 1.27 -3.302)
  438. )
  439. (stroke
  440. (width 0)
  441. (type default)
  442. )
  443. (fill
  444. (type none)
  445. )
  446. )
  447. (polyline
  448. (pts
  449. (xy -1.27 -4.318) (xy -1.27 -5.08) (xy 1.27 -5.08) (xy 1.27 -4.318)
  450. )
  451. (stroke
  452. (width 0)
  453. (type default)
  454. )
  455. (fill
  456. (type none)
  457. )
  458. )
  459. (circle
  460. (center 0 -1.524)
  461. (radius 2.9718)
  462. (stroke
  463. (width 0.254)
  464. (type default)
  465. )
  466. (fill
  467. (type none)
  468. )
  469. )
  470. )
  471. (symbol "Motor_DC_ALT_0_1"
  472. (polyline
  473. (pts
  474. (xy 0 2.032) (xy 0 2.54)
  475. )
  476. (stroke
  477. (width 0)
  478. (type default)
  479. )
  480. (fill
  481. (type none)
  482. )
  483. )
  484. )
  485. (symbol "Motor_DC_ALT_1_1"
  486. (pin passive line
  487. (at 0 5.08 270)
  488. (length 2.54)
  489. (name "+"
  490. (effects
  491. (font
  492. (size 1.27 1.27)
  493. )
  494. )
  495. )
  496. (number "1"
  497. (effects
  498. (font
  499. (size 1.27 1.27)
  500. )
  501. )
  502. )
  503. )
  504. (pin passive line
  505. (at 0 -7.62 90)
  506. (length 2.54)
  507. (name "-"
  508. (effects
  509. (font
  510. (size 1.27 1.27)
  511. )
  512. )
  513. )
  514. (number "2"
  515. (effects
  516. (font
  517. (size 1.27 1.27)
  518. )
  519. )
  520. )
  521. )
  522. )
  523. (embedded_fonts no)
  524. )
  525. (symbol "power:GNDPWR"
  526. (power global)
  527. (pin_numbers
  528. (hide yes)
  529. )
  530. (pin_names
  531. (offset 0)
  532. (hide yes)
  533. )
  534. (exclude_from_sim no)
  535. (in_bom yes)
  536. (on_board yes)
  537. (in_pos_files yes)
  538. (duplicate_pin_numbers_are_jumpers no)
  539. (property "Reference" "#PWR"
  540. (at 0 -5.08 0)
  541. (show_name no)
  542. (do_not_autoplace no)
  543. (hide yes)
  544. (effects
  545. (font
  546. (size 1.27 1.27)
  547. )
  548. )
  549. )
  550. (property "Value" "GNDPWR"
  551. (at 0 -3.302 0)
  552. (show_name no)
  553. (do_not_autoplace no)
  554. (effects
  555. (font
  556. (size 1.27 1.27)
  557. )
  558. )
  559. )
  560. (property "Footprint" ""
  561. (at 0 -1.27 0)
  562. (show_name no)
  563. (do_not_autoplace no)
  564. (hide yes)
  565. (effects
  566. (font
  567. (size 1.27 1.27)
  568. )
  569. )
  570. )
  571. (property "Datasheet" ""
  572. (at 0 -1.27 0)
  573. (show_name no)
  574. (do_not_autoplace no)
  575. (hide yes)
  576. (effects
  577. (font
  578. (size 1.27 1.27)
  579. )
  580. )
  581. )
  582. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  583. (at 0 0 0)
  584. (show_name no)
  585. (do_not_autoplace no)
  586. (hide yes)
  587. (effects
  588. (font
  589. (size 1.27 1.27)
  590. )
  591. )
  592. )
  593. (property "ki_keywords" "global ground"
  594. (at 0 0 0)
  595. (show_name no)
  596. (do_not_autoplace no)
  597. (hide yes)
  598. (effects
  599. (font
  600. (size 1.27 1.27)
  601. )
  602. )
  603. )
  604. (symbol "GNDPWR_0_1"
  605. (polyline
  606. (pts
  607. (xy -1.016 -1.27) (xy -1.27 -2.032) (xy -1.27 -2.032)
  608. )
  609. (stroke
  610. (width 0.2032)
  611. (type default)
  612. )
  613. (fill
  614. (type none)
  615. )
  616. )
  617. (polyline
  618. (pts
  619. (xy -0.508 -1.27) (xy -0.762 -2.032) (xy -0.762 -2.032)
  620. )
  621. (stroke
  622. (width 0.2032)
  623. (type default)
  624. )
  625. (fill
  626. (type none)
  627. )
  628. )
  629. (polyline
  630. (pts
  631. (xy 0 -1.27) (xy 0 0)
  632. )
  633. (stroke
  634. (width 0)
  635. (type default)
  636. )
  637. (fill
  638. (type none)
  639. )
  640. )
  641. (polyline
  642. (pts
  643. (xy 0 -1.27) (xy -0.254 -2.032) (xy -0.254 -2.032)
  644. )
  645. (stroke
  646. (width 0.2032)
  647. (type default)
  648. )
  649. (fill
  650. (type none)
  651. )
  652. )
  653. (polyline
  654. (pts
  655. (xy 0.508 -1.27) (xy 0.254 -2.032) (xy 0.254 -2.032)
  656. )
  657. (stroke
  658. (width 0.2032)
  659. (type default)
  660. )
  661. (fill
  662. (type none)
  663. )
  664. )
  665. (polyline
  666. (pts
  667. (xy 1.016 -1.27) (xy -1.016 -1.27) (xy -1.016 -1.27)
  668. )
  669. (stroke
  670. (width 0.2032)
  671. (type default)
  672. )
  673. (fill
  674. (type none)
  675. )
  676. )
  677. (polyline
  678. (pts
  679. (xy 1.016 -1.27) (xy 0.762 -2.032) (xy 0.762 -2.032) (xy 0.762 -2.032)
  680. )
  681. (stroke
  682. (width 0.2032)
  683. (type default)
  684. )
  685. (fill
  686. (type none)
  687. )
  688. )
  689. )
  690. (symbol "GNDPWR_1_1"
  691. (pin power_in line
  692. (at 0 0 270)
  693. (length 0)
  694. (name ""
  695. (effects
  696. (font
  697. (size 1.27 1.27)
  698. )
  699. )
  700. )
  701. (number "1"
  702. (effects
  703. (font
  704. (size 1.27 1.27)
  705. )
  706. )
  707. )
  708. )
  709. )
  710. (embedded_fonts no)
  711. )
  712. (symbol "power:VCC"
  713. (power global)
  714. (pin_numbers
  715. (hide yes)
  716. )
  717. (pin_names
  718. (offset 0)
  719. (hide yes)
  720. )
  721. (exclude_from_sim no)
  722. (in_bom yes)
  723. (on_board yes)
  724. (in_pos_files yes)
  725. (duplicate_pin_numbers_are_jumpers no)
  726. (property "Reference" "#PWR"
  727. (at 0 -3.81 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. (property "Value" "VCC"
  738. (at 0 3.556 0)
  739. (show_name no)
  740. (do_not_autoplace no)
  741. (effects
  742. (font
  743. (size 1.27 1.27)
  744. )
  745. )
  746. )
  747. (property "Footprint" ""
  748. (at 0 0 0)
  749. (show_name no)
  750. (do_not_autoplace no)
  751. (hide yes)
  752. (effects
  753. (font
  754. (size 1.27 1.27)
  755. )
  756. )
  757. )
  758. (property "Datasheet" ""
  759. (at 0 0 0)
  760. (show_name no)
  761. (do_not_autoplace no)
  762. (hide yes)
  763. (effects
  764. (font
  765. (size 1.27 1.27)
  766. )
  767. )
  768. )
  769. (property "Description" "Power symbol creates a global label with name \"VCC\""
  770. (at 0 0 0)
  771. (show_name no)
  772. (do_not_autoplace no)
  773. (hide yes)
  774. (effects
  775. (font
  776. (size 1.27 1.27)
  777. )
  778. )
  779. )
  780. (property "ki_keywords" "global power"
  781. (at 0 0 0)
  782. (show_name no)
  783. (do_not_autoplace no)
  784. (hide yes)
  785. (effects
  786. (font
  787. (size 1.27 1.27)
  788. )
  789. )
  790. )
  791. (symbol "VCC_0_1"
  792. (polyline
  793. (pts
  794. (xy -0.762 1.27) (xy 0 2.54)
  795. )
  796. (stroke
  797. (width 0)
  798. (type default)
  799. )
  800. (fill
  801. (type none)
  802. )
  803. )
  804. (polyline
  805. (pts
  806. (xy 0 2.54) (xy 0.762 1.27)
  807. )
  808. (stroke
  809. (width 0)
  810. (type default)
  811. )
  812. (fill
  813. (type none)
  814. )
  815. )
  816. (polyline
  817. (pts
  818. (xy 0 0) (xy 0 2.54)
  819. )
  820. (stroke
  821. (width 0)
  822. (type default)
  823. )
  824. (fill
  825. (type none)
  826. )
  827. )
  828. )
  829. (symbol "VCC_1_1"
  830. (pin power_in line
  831. (at 0 0 90)
  832. (length 0)
  833. (name ""
  834. (effects
  835. (font
  836. (size 1.27 1.27)
  837. )
  838. )
  839. )
  840. (number "1"
  841. (effects
  842. (font
  843. (size 1.27 1.27)
  844. )
  845. )
  846. )
  847. )
  848. )
  849. (embedded_fonts no)
  850. )
  851. (symbol "transistors:YJL2312A"
  852. (exclude_from_sim no)
  853. (in_bom yes)
  854. (on_board yes)
  855. (in_pos_files yes)
  856. (duplicate_pin_numbers_are_jumpers no)
  857. (property "Reference" "Q"
  858. (at 4.826 3.302 0)
  859. (show_name no)
  860. (do_not_autoplace no)
  861. (effects
  862. (font
  863. (size 1.27 1.27)
  864. )
  865. )
  866. )
  867. (property "Value" "YJL2312A"
  868. (at 0 0 0)
  869. (show_name no)
  870. (do_not_autoplace no)
  871. (effects
  872. (font
  873. (size 1.27 1.27)
  874. )
  875. )
  876. )
  877. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  878. (at 0 0 0)
  879. (show_name no)
  880. (do_not_autoplace no)
  881. (hide yes)
  882. (effects
  883. (font
  884. (size 1.27 1.27)
  885. )
  886. )
  887. )
  888. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  889. (at 0 0 0)
  890. (show_name no)
  891. (do_not_autoplace no)
  892. (hide yes)
  893. (effects
  894. (font
  895. (size 1.27 1.27)
  896. )
  897. )
  898. )
  899. (property "Description" ""
  900. (at 0 0 0)
  901. (show_name no)
  902. (do_not_autoplace no)
  903. (hide yes)
  904. (effects
  905. (font
  906. (size 1.27 1.27)
  907. )
  908. )
  909. )
  910. (symbol "YJL2312A_0_1"
  911. (polyline
  912. (pts
  913. (xy -1.27 -2.54) (xy -1.27 2.54)
  914. )
  915. (stroke
  916. (width 0)
  917. (type default)
  918. )
  919. (fill
  920. (type none)
  921. )
  922. )
  923. )
  924. (symbol "YJL2312A_1_1"
  925. (polyline
  926. (pts
  927. (xy 0 3.175) (xy 0 -3.175)
  928. )
  929. (stroke
  930. (width 0)
  931. (type dash)
  932. )
  933. (fill
  934. (type none)
  935. )
  936. )
  937. (polyline
  938. (pts
  939. (xy 0 2.54) (xy 2.54 2.54) (xy 2.54 3.81)
  940. )
  941. (stroke
  942. (width 0)
  943. (type default)
  944. )
  945. (fill
  946. (type none)
  947. )
  948. )
  949. (polyline
  950. (pts
  951. (xy 0 0) (xy 2.54 0) (xy 2.54 -3.81)
  952. )
  953. (stroke
  954. (width 0)
  955. (type default)
  956. )
  957. (fill
  958. (type none)
  959. )
  960. )
  961. (polyline
  962. (pts
  963. (xy 0 0) (xy 1.27 -0.635) (xy 1.27 0.635) (xy 0 0)
  964. )
  965. (stroke
  966. (width 0)
  967. (type solid)
  968. )
  969. (fill
  970. (type outline)
  971. )
  972. )
  973. (polyline
  974. (pts
  975. (xy 2.54 -2.54) (xy 0 -2.54)
  976. )
  977. (stroke
  978. (width 0)
  979. (type default)
  980. )
  981. (fill
  982. (type none)
  983. )
  984. )
  985. (pin input line
  986. (at -3.81 0 0)
  987. (length 2.54)
  988. (name ""
  989. (effects
  990. (font
  991. (size 1.27 1.27)
  992. )
  993. )
  994. )
  995. (number "1"
  996. (effects
  997. (font
  998. (size 1.27 1.27)
  999. )
  1000. )
  1001. )
  1002. )
  1003. (pin power_in line
  1004. (at 2.54 -6.35 90)
  1005. (length 2.54)
  1006. (name ""
  1007. (effects
  1008. (font
  1009. (size 1.27 1.27)
  1010. )
  1011. )
  1012. )
  1013. (number "2"
  1014. (effects
  1015. (font
  1016. (size 1.27 1.27)
  1017. )
  1018. )
  1019. )
  1020. )
  1021. (pin power_out line
  1022. (at 2.54 6.35 270)
  1023. (length 2.54)
  1024. (name ""
  1025. (effects
  1026. (font
  1027. (size 1.27 1.27)
  1028. )
  1029. )
  1030. )
  1031. (number "3"
  1032. (effects
  1033. (font
  1034. (size 1.27 1.27)
  1035. )
  1036. )
  1037. )
  1038. )
  1039. )
  1040. (embedded_fonts no)
  1041. )
  1042. )
  1043. (junction
  1044. (at 133.35 107.95)
  1045. (diameter 0)
  1046. (color 0 0 0 0)
  1047. (uuid "025d0e35-a688-4b87-bedf-c2c6266652f8")
  1048. )
  1049. (junction
  1050. (at 184.15 107.95)
  1051. (diameter 0)
  1052. (color 0 0 0 0)
  1053. (uuid "137cae21-1998-4b9b-bcb1-d0cf5f7d3c36")
  1054. )
  1055. (junction
  1056. (at 133.35 123.19)
  1057. (diameter 0)
  1058. (color 0 0 0 0)
  1059. (uuid "143a7946-fdc7-4f46-a09f-08a35a6b5704")
  1060. )
  1061. (junction
  1062. (at 163.83 72.39)
  1063. (diameter 0)
  1064. (color 0 0 0 0)
  1065. (uuid "1839f19b-d001-403c-b027-c95e739da996")
  1066. )
  1067. (junction
  1068. (at 184.15 49.53)
  1069. (diameter 0)
  1070. (color 0 0 0 0)
  1071. (uuid "2779ee77-e5fa-4352-bb3e-9c745ab552a0")
  1072. )
  1073. (junction
  1074. (at 163.83 130.81)
  1075. (diameter 0)
  1076. (color 0 0 0 0)
  1077. (uuid "45213b25-dc1b-42cd-a8d3-deccf4aa8178")
  1078. )
  1079. (junction
  1080. (at 184.15 64.77)
  1081. (diameter 0)
  1082. (color 0 0 0 0)
  1083. (uuid "4fab7385-09b4-48ac-8c29-250b5dbb3cbd")
  1084. )
  1085. (junction
  1086. (at 113.03 72.39)
  1087. (diameter 0)
  1088. (color 0 0 0 0)
  1089. (uuid "5a9f4335-d9d5-467c-ab31-dc3127aaf9d8")
  1090. )
  1091. (junction
  1092. (at 133.35 64.77)
  1093. (diameter 0)
  1094. (color 0 0 0 0)
  1095. (uuid "5ebc2229-aab1-4170-a4cf-e5ecaac85490")
  1096. )
  1097. (junction
  1098. (at 113.03 130.81)
  1099. (diameter 0)
  1100. (color 0 0 0 0)
  1101. (uuid "93db213f-0a96-4833-beab-bfbbf78db61a")
  1102. )
  1103. (junction
  1104. (at 133.35 49.53)
  1105. (diameter 0)
  1106. (color 0 0 0 0)
  1107. (uuid "95a0368e-7fe4-41a5-9039-69a0a6936147")
  1108. )
  1109. (junction
  1110. (at 184.15 123.19)
  1111. (diameter 0)
  1112. (color 0 0 0 0)
  1113. (uuid "c904ecbb-15d0-4bd7-aaad-2d9962ac4404")
  1114. )
  1115. (wire
  1116. (pts
  1117. (xy 113.03 140.97) (xy 113.03 142.24)
  1118. )
  1119. (stroke
  1120. (width 0)
  1121. (type default)
  1122. )
  1123. (uuid "02732568-0a4f-42bf-9a4e-5f75a7fbb267")
  1124. )
  1125. (wire
  1126. (pts
  1127. (xy 163.83 133.35) (xy 163.83 130.81)
  1128. )
  1129. (stroke
  1130. (width 0)
  1131. (type default)
  1132. )
  1133. (uuid "03953b78-25ab-41ee-bed9-14bf3a87af3a")
  1134. )
  1135. (wire
  1136. (pts
  1137. (xy 133.35 63.5) (xy 133.35 64.77)
  1138. )
  1139. (stroke
  1140. (width 0)
  1141. (type default)
  1142. )
  1143. (uuid "09971513-cf8f-4a10-b811-58f24a2f0157")
  1144. )
  1145. (wire
  1146. (pts
  1147. (xy 184.15 64.77) (xy 184.15 66.04)
  1148. )
  1149. (stroke
  1150. (width 0)
  1151. (type default)
  1152. )
  1153. (uuid "1776a3b0-6d6f-4bef-ae25-e3da60374f4e")
  1154. )
  1155. (wire
  1156. (pts
  1157. (xy 184.15 78.74) (xy 184.15 80.01)
  1158. )
  1159. (stroke
  1160. (width 0)
  1161. (type default)
  1162. )
  1163. (uuid "1de57d4d-5bf7-4889-aa61-cf63073f9575")
  1164. )
  1165. (wire
  1166. (pts
  1167. (xy 124.46 130.81) (xy 127 130.81)
  1168. )
  1169. (stroke
  1170. (width 0)
  1171. (type default)
  1172. )
  1173. (uuid "217bf419-498d-41f1-a74a-672205631c61")
  1174. )
  1175. (wire
  1176. (pts
  1177. (xy 113.03 72.39) (xy 116.84 72.39)
  1178. )
  1179. (stroke
  1180. (width 0)
  1181. (type default)
  1182. )
  1183. (uuid "22ac677f-0c05-4c43-a21f-6ea40af1668b")
  1184. )
  1185. (wire
  1186. (pts
  1187. (xy 118.11 49.53) (xy 133.35 49.53)
  1188. )
  1189. (stroke
  1190. (width 0)
  1191. (type default)
  1192. )
  1193. (uuid "2abaa86f-f305-4652-b978-92fc20d18a5f")
  1194. )
  1195. (wire
  1196. (pts
  1197. (xy 168.91 49.53) (xy 184.15 49.53)
  1198. )
  1199. (stroke
  1200. (width 0)
  1201. (type default)
  1202. )
  1203. (uuid "2cc92e2c-d35f-4599-b23b-c67c96a46291")
  1204. )
  1205. (wire
  1206. (pts
  1207. (xy 163.83 82.55) (xy 163.83 83.82)
  1208. )
  1209. (stroke
  1210. (width 0)
  1211. (type default)
  1212. )
  1213. (uuid "33488a89-35a0-4c1e-aa75-d02476fc6a21")
  1214. )
  1215. (wire
  1216. (pts
  1217. (xy 168.91 123.19) (xy 184.15 123.19)
  1218. )
  1219. (stroke
  1220. (width 0)
  1221. (type default)
  1222. )
  1223. (uuid "37cd71cf-0f41-4194-af09-e5b339c2635e")
  1224. )
  1225. (wire
  1226. (pts
  1227. (xy 118.11 107.95) (xy 118.11 111.76)
  1228. )
  1229. (stroke
  1230. (width 0)
  1231. (type default)
  1232. )
  1233. (uuid "39094d5d-be69-4664-ae5d-7bb9ee895a33")
  1234. )
  1235. (wire
  1236. (pts
  1237. (xy 113.03 74.93) (xy 113.03 72.39)
  1238. )
  1239. (stroke
  1240. (width 0)
  1241. (type default)
  1242. )
  1243. (uuid "3ad9fc4e-9c19-47ba-896c-f082a9b4bf38")
  1244. )
  1245. (wire
  1246. (pts
  1247. (xy 133.35 107.95) (xy 133.35 109.22)
  1248. )
  1249. (stroke
  1250. (width 0)
  1251. (type default)
  1252. )
  1253. (uuid "3bc3ac13-a4e5-44b3-a305-60b7464d1b62")
  1254. )
  1255. (wire
  1256. (pts
  1257. (xy 113.03 130.81) (xy 116.84 130.81)
  1258. )
  1259. (stroke
  1260. (width 0)
  1261. (type default)
  1262. )
  1263. (uuid "41ba7e1d-b3c4-4661-bbb6-051282683fb0")
  1264. )
  1265. (wire
  1266. (pts
  1267. (xy 184.15 121.92) (xy 184.15 123.19)
  1268. )
  1269. (stroke
  1270. (width 0)
  1271. (type default)
  1272. )
  1273. (uuid "431b9d58-c822-4f9f-91cd-0f4d3c9149ad")
  1274. )
  1275. (wire
  1276. (pts
  1277. (xy 118.11 119.38) (xy 118.11 123.19)
  1278. )
  1279. (stroke
  1280. (width 0)
  1281. (type default)
  1282. )
  1283. (uuid "438dbf9e-6ef6-477b-9662-9708daa4686c")
  1284. )
  1285. (wire
  1286. (pts
  1287. (xy 184.15 49.53) (xy 184.15 50.8)
  1288. )
  1289. (stroke
  1290. (width 0)
  1291. (type default)
  1292. )
  1293. (uuid "48d07e62-5730-47fc-8bfe-28d5afcf4a10")
  1294. )
  1295. (wire
  1296. (pts
  1297. (xy 118.11 107.95) (xy 133.35 107.95)
  1298. )
  1299. (stroke
  1300. (width 0)
  1301. (type default)
  1302. )
  1303. (uuid "49d1c655-b8b4-4ae6-a29e-0ed2069681bb")
  1304. )
  1305. (wire
  1306. (pts
  1307. (xy 118.11 49.53) (xy 118.11 53.34)
  1308. )
  1309. (stroke
  1310. (width 0)
  1311. (type default)
  1312. )
  1313. (uuid "49fa476f-cfe0-485e-a8cf-031e9f018521")
  1314. )
  1315. (wire
  1316. (pts
  1317. (xy 133.35 121.92) (xy 133.35 123.19)
  1318. )
  1319. (stroke
  1320. (width 0)
  1321. (type default)
  1322. )
  1323. (uuid "4ae6f812-c392-40ea-aa0e-b3362794c6c4")
  1324. )
  1325. (wire
  1326. (pts
  1327. (xy 161.29 72.39) (xy 163.83 72.39)
  1328. )
  1329. (stroke
  1330. (width 0)
  1331. (type default)
  1332. )
  1333. (uuid "4bbcf232-dbcf-45e9-b43d-9fc62251b8c9")
  1334. )
  1335. (wire
  1336. (pts
  1337. (xy 118.11 60.96) (xy 118.11 64.77)
  1338. )
  1339. (stroke
  1340. (width 0)
  1341. (type default)
  1342. )
  1343. (uuid "59ed1906-9488-4097-a1a8-2a53b283fb09")
  1344. )
  1345. (wire
  1346. (pts
  1347. (xy 113.03 82.55) (xy 113.03 83.82)
  1348. )
  1349. (stroke
  1350. (width 0)
  1351. (type default)
  1352. )
  1353. (uuid "61e57e92-e5bd-44d9-84e6-41fb767eca50")
  1354. )
  1355. (wire
  1356. (pts
  1357. (xy 133.35 49.53) (xy 133.35 50.8)
  1358. )
  1359. (stroke
  1360. (width 0)
  1361. (type default)
  1362. )
  1363. (uuid "64fd690a-977a-4d81-8c53-0d45a5ba6fc8")
  1364. )
  1365. (wire
  1366. (pts
  1367. (xy 168.91 107.95) (xy 168.91 111.76)
  1368. )
  1369. (stroke
  1370. (width 0)
  1371. (type default)
  1372. )
  1373. (uuid "66579e6c-df67-45b6-934d-a29af842cb21")
  1374. )
  1375. (wire
  1376. (pts
  1377. (xy 175.26 130.81) (xy 177.8 130.81)
  1378. )
  1379. (stroke
  1380. (width 0)
  1381. (type default)
  1382. )
  1383. (uuid "73b77e49-f1d4-435c-86ca-7f8c965353a0")
  1384. )
  1385. (wire
  1386. (pts
  1387. (xy 168.91 49.53) (xy 168.91 53.34)
  1388. )
  1389. (stroke
  1390. (width 0)
  1391. (type default)
  1392. )
  1393. (uuid "73c08ac1-40d4-423b-8fcb-166626556c91")
  1394. )
  1395. (wire
  1396. (pts
  1397. (xy 124.46 72.39) (xy 127 72.39)
  1398. )
  1399. (stroke
  1400. (width 0)
  1401. (type default)
  1402. )
  1403. (uuid "77bf719b-af23-43c8-86eb-749e19e41836")
  1404. )
  1405. (wire
  1406. (pts
  1407. (xy 168.91 119.38) (xy 168.91 123.19)
  1408. )
  1409. (stroke
  1410. (width 0)
  1411. (type default)
  1412. )
  1413. (uuid "7ec30930-6294-4125-8954-4a7fc2f2c893")
  1414. )
  1415. (wire
  1416. (pts
  1417. (xy 133.35 48.26) (xy 133.35 49.53)
  1418. )
  1419. (stroke
  1420. (width 0)
  1421. (type default)
  1422. )
  1423. (uuid "8090f456-21dd-454e-ac5e-dc39da549eec")
  1424. )
  1425. (wire
  1426. (pts
  1427. (xy 184.15 48.26) (xy 184.15 49.53)
  1428. )
  1429. (stroke
  1430. (width 0)
  1431. (type default)
  1432. )
  1433. (uuid "8acf5bc9-8467-461c-a1ba-85d0e50a909d")
  1434. )
  1435. (wire
  1436. (pts
  1437. (xy 118.11 123.19) (xy 133.35 123.19)
  1438. )
  1439. (stroke
  1440. (width 0)
  1441. (type default)
  1442. )
  1443. (uuid "8bc1cb69-1e44-47de-b120-1ee33e31dbf8")
  1444. )
  1445. (wire
  1446. (pts
  1447. (xy 184.15 63.5) (xy 184.15 64.77)
  1448. )
  1449. (stroke
  1450. (width 0)
  1451. (type default)
  1452. )
  1453. (uuid "8e214cdf-9c37-49a6-8dc6-a7b508503e3e")
  1454. )
  1455. (wire
  1456. (pts
  1457. (xy 118.11 64.77) (xy 133.35 64.77)
  1458. )
  1459. (stroke
  1460. (width 0)
  1461. (type default)
  1462. )
  1463. (uuid "99b55f4c-b6e8-4f8e-a2a7-a3f4947a176c")
  1464. )
  1465. (wire
  1466. (pts
  1467. (xy 133.35 137.16) (xy 133.35 138.43)
  1468. )
  1469. (stroke
  1470. (width 0)
  1471. (type default)
  1472. )
  1473. (uuid "9b85c891-b4b3-4d39-84e1-fb5c7f5461aa")
  1474. )
  1475. (wire
  1476. (pts
  1477. (xy 184.15 106.68) (xy 184.15 107.95)
  1478. )
  1479. (stroke
  1480. (width 0)
  1481. (type default)
  1482. )
  1483. (uuid "a1fa5b4a-dc50-4551-93de-ecf5cbc6432a")
  1484. )
  1485. (wire
  1486. (pts
  1487. (xy 133.35 64.77) (xy 133.35 66.04)
  1488. )
  1489. (stroke
  1490. (width 0)
  1491. (type default)
  1492. )
  1493. (uuid "a2b1f8e0-8547-4374-ac1a-ecf0caba7bae")
  1494. )
  1495. (wire
  1496. (pts
  1497. (xy 133.35 78.74) (xy 133.35 80.01)
  1498. )
  1499. (stroke
  1500. (width 0)
  1501. (type default)
  1502. )
  1503. (uuid "a7e9a350-ade3-4c4b-9a0f-de20c129ca12")
  1504. )
  1505. (wire
  1506. (pts
  1507. (xy 113.03 133.35) (xy 113.03 130.81)
  1508. )
  1509. (stroke
  1510. (width 0)
  1511. (type default)
  1512. )
  1513. (uuid "ab04f3f6-771f-4270-bc16-550079133f43")
  1514. )
  1515. (wire
  1516. (pts
  1517. (xy 161.29 130.81) (xy 163.83 130.81)
  1518. )
  1519. (stroke
  1520. (width 0)
  1521. (type default)
  1522. )
  1523. (uuid "acc7f5b1-74cb-4a87-a270-71dc96099d2c")
  1524. )
  1525. (wire
  1526. (pts
  1527. (xy 133.35 106.68) (xy 133.35 107.95)
  1528. )
  1529. (stroke
  1530. (width 0)
  1531. (type default)
  1532. )
  1533. (uuid "ae323e5f-33d6-494b-929d-cd9756a2d340")
  1534. )
  1535. (wire
  1536. (pts
  1537. (xy 175.26 72.39) (xy 177.8 72.39)
  1538. )
  1539. (stroke
  1540. (width 0)
  1541. (type default)
  1542. )
  1543. (uuid "ae6f637b-a984-4339-905c-e6591622e71a")
  1544. )
  1545. (wire
  1546. (pts
  1547. (xy 163.83 140.97) (xy 163.83 142.24)
  1548. )
  1549. (stroke
  1550. (width 0)
  1551. (type default)
  1552. )
  1553. (uuid "ae852e76-ae9d-418e-901f-99fcc3ddaeba")
  1554. )
  1555. (wire
  1556. (pts
  1557. (xy 110.49 72.39) (xy 113.03 72.39)
  1558. )
  1559. (stroke
  1560. (width 0)
  1561. (type default)
  1562. )
  1563. (uuid "b14682a9-c97b-414a-889f-1d56048ca3e9")
  1564. )
  1565. (wire
  1566. (pts
  1567. (xy 133.35 123.19) (xy 133.35 124.46)
  1568. )
  1569. (stroke
  1570. (width 0)
  1571. (type default)
  1572. )
  1573. (uuid "bf96c27a-78df-4c5d-9a9d-4715eccfe33c")
  1574. )
  1575. (wire
  1576. (pts
  1577. (xy 184.15 123.19) (xy 184.15 124.46)
  1578. )
  1579. (stroke
  1580. (width 0)
  1581. (type default)
  1582. )
  1583. (uuid "c24f7d86-aed9-4ae1-a943-c8fb5db20290")
  1584. )
  1585. (wire
  1586. (pts
  1587. (xy 110.49 130.81) (xy 113.03 130.81)
  1588. )
  1589. (stroke
  1590. (width 0)
  1591. (type default)
  1592. )
  1593. (uuid "c8597388-7cd4-4e95-b845-f32cf28de85d")
  1594. )
  1595. (wire
  1596. (pts
  1597. (xy 184.15 137.16) (xy 184.15 138.43)
  1598. )
  1599. (stroke
  1600. (width 0)
  1601. (type default)
  1602. )
  1603. (uuid "cd19b510-5a68-47bc-a0c9-bab2a5107eb0")
  1604. )
  1605. (wire
  1606. (pts
  1607. (xy 163.83 72.39) (xy 167.64 72.39)
  1608. )
  1609. (stroke
  1610. (width 0)
  1611. (type default)
  1612. )
  1613. (uuid "cf664d6a-f02c-425e-8acd-672325175065")
  1614. )
  1615. (wire
  1616. (pts
  1617. (xy 163.83 74.93) (xy 163.83 72.39)
  1618. )
  1619. (stroke
  1620. (width 0)
  1621. (type default)
  1622. )
  1623. (uuid "d413d388-045b-4879-bc0f-e9ade3e2ea91")
  1624. )
  1625. (wire
  1626. (pts
  1627. (xy 163.83 130.81) (xy 167.64 130.81)
  1628. )
  1629. (stroke
  1630. (width 0)
  1631. (type default)
  1632. )
  1633. (uuid "d69c4594-a7eb-4570-b526-8d05fdc54ba5")
  1634. )
  1635. (wire
  1636. (pts
  1637. (xy 184.15 107.95) (xy 184.15 109.22)
  1638. )
  1639. (stroke
  1640. (width 0)
  1641. (type default)
  1642. )
  1643. (uuid "d8d50ee5-eee0-4405-943b-9b4ad55d6c46")
  1644. )
  1645. (wire
  1646. (pts
  1647. (xy 168.91 64.77) (xy 184.15 64.77)
  1648. )
  1649. (stroke
  1650. (width 0)
  1651. (type default)
  1652. )
  1653. (uuid "e607626a-eb77-4a4e-a7f9-ad7d26391121")
  1654. )
  1655. (wire
  1656. (pts
  1657. (xy 168.91 107.95) (xy 184.15 107.95)
  1658. )
  1659. (stroke
  1660. (width 0)
  1661. (type default)
  1662. )
  1663. (uuid "e9826e62-37e0-4602-9924-a7e06eed5321")
  1664. )
  1665. (wire
  1666. (pts
  1667. (xy 168.91 60.96) (xy 168.91 64.77)
  1668. )
  1669. (stroke
  1670. (width 0)
  1671. (type default)
  1672. )
  1673. (uuid "f0547f9e-9005-40b5-8e79-4b21c3cfb881")
  1674. )
  1675. (hierarchical_label "M2A"
  1676. (shape input)
  1677. (at 110.49 130.81 180)
  1678. (effects
  1679. (font
  1680. (size 1.27 1.27)
  1681. )
  1682. (justify right)
  1683. )
  1684. (uuid "1fb7f9b8-5123-43c7-9060-17ea942ab80f")
  1685. )
  1686. (hierarchical_label "M2B"
  1687. (shape input)
  1688. (at 161.29 130.81 180)
  1689. (effects
  1690. (font
  1691. (size 1.27 1.27)
  1692. )
  1693. (justify right)
  1694. )
  1695. (uuid "b2d85837-3c0d-41ef-9625-9d65c79725fa")
  1696. )
  1697. (hierarchical_label "M1B"
  1698. (shape input)
  1699. (at 161.29 72.39 180)
  1700. (effects
  1701. (font
  1702. (size 1.27 1.27)
  1703. )
  1704. (justify right)
  1705. )
  1706. (uuid "e03b55c1-1b64-4e56-8ce2-7402900ea6db")
  1707. )
  1708. (hierarchical_label "M1A"
  1709. (shape input)
  1710. (at 110.49 72.39 180)
  1711. (effects
  1712. (font
  1713. (size 1.27 1.27)
  1714. )
  1715. (justify right)
  1716. )
  1717. (uuid "fce9672f-ad9a-4511-88b8-59d1dc21f888")
  1718. )
  1719. (symbol
  1720. (lib_id "power:VCC")
  1721. (at 133.35 106.68 0)
  1722. (unit 1)
  1723. (body_style 1)
  1724. (exclude_from_sim no)
  1725. (in_bom yes)
  1726. (on_board yes)
  1727. (in_pos_files yes)
  1728. (dnp no)
  1729. (fields_autoplaced yes)
  1730. (uuid "0c71aeb1-b313-4e28-9bce-d57b73757e76")
  1731. (property "Reference" "#PWR08"
  1732. (at 133.35 110.49 0)
  1733. (hide yes)
  1734. (show_name no)
  1735. (do_not_autoplace no)
  1736. (effects
  1737. (font
  1738. (size 1.27 1.27)
  1739. )
  1740. )
  1741. )
  1742. (property "Value" "VCC"
  1743. (at 133.35 101.6 0)
  1744. (show_name no)
  1745. (do_not_autoplace no)
  1746. (effects
  1747. (font
  1748. (size 1.27 1.27)
  1749. )
  1750. )
  1751. )
  1752. (property "Footprint" ""
  1753. (at 133.35 106.68 0)
  1754. (hide yes)
  1755. (show_name no)
  1756. (do_not_autoplace no)
  1757. (effects
  1758. (font
  1759. (size 1.27 1.27)
  1760. )
  1761. )
  1762. )
  1763. (property "Datasheet" ""
  1764. (at 133.35 106.68 0)
  1765. (hide yes)
  1766. (show_name no)
  1767. (do_not_autoplace no)
  1768. (effects
  1769. (font
  1770. (size 1.27 1.27)
  1771. )
  1772. )
  1773. )
  1774. (property "Description" "Power symbol creates a global label with name \"VCC\""
  1775. (at 133.35 106.68 0)
  1776. (hide yes)
  1777. (show_name no)
  1778. (do_not_autoplace no)
  1779. (effects
  1780. (font
  1781. (size 1.27 1.27)
  1782. )
  1783. )
  1784. )
  1785. (pin "1"
  1786. (uuid "c5c0189f-d210-498c-b5ce-ecec19efd973")
  1787. )
  1788. (instances
  1789. (project "cx-copter-bottom-board"
  1790. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  1791. (reference "#PWR08")
  1792. (unit 1)
  1793. )
  1794. )
  1795. )
  1796. )
  1797. (symbol
  1798. (lib_id "power:GNDPWR")
  1799. (at 113.03 142.24 0)
  1800. (unit 1)
  1801. (body_style 1)
  1802. (exclude_from_sim no)
  1803. (in_bom yes)
  1804. (on_board yes)
  1805. (in_pos_files yes)
  1806. (dnp no)
  1807. (fields_autoplaced yes)
  1808. (uuid "16c0379d-e7be-4f6b-879c-840bab874be9")
  1809. (property "Reference" "#PWR010"
  1810. (at 113.03 147.32 0)
  1811. (hide yes)
  1812. (show_name no)
  1813. (do_not_autoplace no)
  1814. (effects
  1815. (font
  1816. (size 1.27 1.27)
  1817. )
  1818. )
  1819. )
  1820. (property "Value" "GNDPWR"
  1821. (at 112.903 146.05 0)
  1822. (show_name no)
  1823. (do_not_autoplace no)
  1824. (effects
  1825. (font
  1826. (size 1.27 1.27)
  1827. )
  1828. )
  1829. )
  1830. (property "Footprint" ""
  1831. (at 113.03 143.51 0)
  1832. (hide yes)
  1833. (show_name no)
  1834. (do_not_autoplace no)
  1835. (effects
  1836. (font
  1837. (size 1.27 1.27)
  1838. )
  1839. )
  1840. )
  1841. (property "Datasheet" ""
  1842. (at 113.03 143.51 0)
  1843. (hide yes)
  1844. (show_name no)
  1845. (do_not_autoplace no)
  1846. (effects
  1847. (font
  1848. (size 1.27 1.27)
  1849. )
  1850. )
  1851. )
  1852. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  1853. (at 113.03 142.24 0)
  1854. (hide yes)
  1855. (show_name no)
  1856. (do_not_autoplace no)
  1857. (effects
  1858. (font
  1859. (size 1.27 1.27)
  1860. )
  1861. )
  1862. )
  1863. (pin "1"
  1864. (uuid "3745b648-54d8-4850-80fb-b1894ce940f4")
  1865. )
  1866. (instances
  1867. (project "cx-copter-bottom-board"
  1868. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  1869. (reference "#PWR010")
  1870. (unit 1)
  1871. )
  1872. )
  1873. )
  1874. )
  1875. (symbol
  1876. (lib_id "Device:R")
  1877. (at 120.65 72.39 90)
  1878. (unit 1)
  1879. (body_style 1)
  1880. (exclude_from_sim no)
  1881. (in_bom yes)
  1882. (on_board yes)
  1883. (in_pos_files yes)
  1884. (dnp no)
  1885. (uuid "24f82384-c110-4bfe-9a0e-07b1381b48ae")
  1886. (property "Reference" "R1"
  1887. (at 120.65 70.358 90)
  1888. (show_name no)
  1889. (do_not_autoplace no)
  1890. (effects
  1891. (font
  1892. (size 1.27 1.27)
  1893. )
  1894. )
  1895. )
  1896. (property "Value" "100"
  1897. (at 120.65 74.676 90)
  1898. (show_name no)
  1899. (do_not_autoplace no)
  1900. (effects
  1901. (font
  1902. (size 1.27 1.27)
  1903. )
  1904. )
  1905. )
  1906. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  1907. (at 120.65 74.168 90)
  1908. (hide yes)
  1909. (show_name no)
  1910. (do_not_autoplace no)
  1911. (effects
  1912. (font
  1913. (size 1.27 1.27)
  1914. )
  1915. )
  1916. )
  1917. (property "Datasheet" ""
  1918. (at 120.65 72.39 0)
  1919. (hide yes)
  1920. (show_name no)
  1921. (do_not_autoplace no)
  1922. (effects
  1923. (font
  1924. (size 1.27 1.27)
  1925. )
  1926. )
  1927. )
  1928. (property "Description" "Resistor"
  1929. (at 120.65 72.39 0)
  1930. (hide yes)
  1931. (show_name no)
  1932. (do_not_autoplace no)
  1933. (effects
  1934. (font
  1935. (size 1.27 1.27)
  1936. )
  1937. )
  1938. )
  1939. (pin "2"
  1940. (uuid "3453ea07-a2a1-49ba-8a99-1bdb7882527c")
  1941. )
  1942. (pin "1"
  1943. (uuid "d7b4182e-73f9-4e61-81e5-85bff657822e")
  1944. )
  1945. (instances
  1946. (project "cx-copter-bottom-board"
  1947. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  1948. (reference "R1")
  1949. (unit 1)
  1950. )
  1951. )
  1952. )
  1953. )
  1954. (symbol
  1955. (lib_id "Motor:Motor_DC_ALT")
  1956. (at 184.15 55.88 0)
  1957. (unit 1)
  1958. (body_style 1)
  1959. (exclude_from_sim no)
  1960. (in_bom yes)
  1961. (on_board yes)
  1962. (in_pos_files yes)
  1963. (dnp no)
  1964. (fields_autoplaced yes)
  1965. (uuid "33c651ac-6708-483e-b5de-edcffd3bb314")
  1966. (property "Reference" "M1B1"
  1967. (at 187.96 55.8799 0)
  1968. (show_name no)
  1969. (do_not_autoplace no)
  1970. (effects
  1971. (font
  1972. (size 1.27 1.27)
  1973. )
  1974. (justify left)
  1975. )
  1976. )
  1977. (property "Value" "0716"
  1978. (at 187.96 58.4199 0)
  1979. (show_name no)
  1980. (do_not_autoplace no)
  1981. (effects
  1982. (font
  1983. (size 1.27 1.27)
  1984. )
  1985. (justify left)
  1986. )
  1987. )
  1988. (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
  1989. (at 184.15 58.166 0)
  1990. (hide yes)
  1991. (show_name no)
  1992. (do_not_autoplace no)
  1993. (effects
  1994. (font
  1995. (size 1.27 1.27)
  1996. )
  1997. )
  1998. )
  1999. (property "Datasheet" ""
  2000. (at 184.15 58.166 0)
  2001. (hide yes)
  2002. (show_name no)
  2003. (do_not_autoplace no)
  2004. (effects
  2005. (font
  2006. (size 1.27 1.27)
  2007. )
  2008. )
  2009. )
  2010. (property "Description" "DC Motor, alternative symbol"
  2011. (at 184.15 55.88 0)
  2012. (hide yes)
  2013. (show_name no)
  2014. (do_not_autoplace no)
  2015. (effects
  2016. (font
  2017. (size 1.27 1.27)
  2018. )
  2019. )
  2020. )
  2021. (pin "2"
  2022. (uuid "34b9d1f5-8a2f-4c7e-8ac5-e9ecc3a1b5e4")
  2023. )
  2024. (pin "1"
  2025. (uuid "0c522460-ab1b-4365-b57b-bd0cead6b0c5")
  2026. )
  2027. (instances
  2028. (project "cx-copter-bottom-board"
  2029. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2030. (reference "M1B1")
  2031. (unit 1)
  2032. )
  2033. )
  2034. )
  2035. )
  2036. (symbol
  2037. (lib_id "Device:D")
  2038. (at 118.11 57.15 270)
  2039. (unit 1)
  2040. (body_style 1)
  2041. (exclude_from_sim no)
  2042. (in_bom yes)
  2043. (on_board yes)
  2044. (in_pos_files yes)
  2045. (dnp no)
  2046. (fields_autoplaced yes)
  2047. (uuid "384cc981-04b0-4257-90cc-d9466043e44f")
  2048. (property "Reference" "D1"
  2049. (at 120.65 55.8799 90)
  2050. (show_name no)
  2051. (do_not_autoplace no)
  2052. (effects
  2053. (font
  2054. (size 1.27 1.27)
  2055. )
  2056. (justify left)
  2057. )
  2058. )
  2059. (property "Value" "D"
  2060. (at 120.65 58.4199 90)
  2061. (show_name no)
  2062. (do_not_autoplace no)
  2063. (effects
  2064. (font
  2065. (size 1.27 1.27)
  2066. )
  2067. (justify left)
  2068. )
  2069. )
  2070. (property "Footprint" "Diode_SMD:D_SMA"
  2071. (at 118.11 57.15 0)
  2072. (hide yes)
  2073. (show_name no)
  2074. (do_not_autoplace no)
  2075. (effects
  2076. (font
  2077. (size 1.27 1.27)
  2078. )
  2079. )
  2080. )
  2081. (property "Datasheet" ""
  2082. (at 118.11 57.15 0)
  2083. (hide yes)
  2084. (show_name no)
  2085. (do_not_autoplace no)
  2086. (effects
  2087. (font
  2088. (size 1.27 1.27)
  2089. )
  2090. )
  2091. )
  2092. (property "Description" "Diode"
  2093. (at 118.11 57.15 0)
  2094. (hide yes)
  2095. (show_name no)
  2096. (do_not_autoplace no)
  2097. (effects
  2098. (font
  2099. (size 1.27 1.27)
  2100. )
  2101. )
  2102. )
  2103. (property "Sim.Device" "D"
  2104. (at 118.11 57.15 0)
  2105. (hide yes)
  2106. (show_name no)
  2107. (do_not_autoplace no)
  2108. (effects
  2109. (font
  2110. (size 1.27 1.27)
  2111. )
  2112. )
  2113. )
  2114. (property "Sim.Pins" "1=K 2=A"
  2115. (at 118.11 57.15 0)
  2116. (hide yes)
  2117. (show_name no)
  2118. (do_not_autoplace no)
  2119. (effects
  2120. (font
  2121. (size 1.27 1.27)
  2122. )
  2123. )
  2124. )
  2125. (pin "2"
  2126. (uuid "de75b384-4985-48e6-8bb9-c3cf52b7e485")
  2127. )
  2128. (pin "1"
  2129. (uuid "cb13478e-28df-4d15-940a-67ce86084b9d")
  2130. )
  2131. (instances
  2132. (project "cx-copter-bottom-board"
  2133. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2134. (reference "D1")
  2135. (unit 1)
  2136. )
  2137. )
  2138. )
  2139. )
  2140. (symbol
  2141. (lib_id "power:GNDPWR")
  2142. (at 184.15 80.01 0)
  2143. (unit 1)
  2144. (body_style 1)
  2145. (exclude_from_sim no)
  2146. (in_bom yes)
  2147. (on_board yes)
  2148. (in_pos_files yes)
  2149. (dnp no)
  2150. (fields_autoplaced yes)
  2151. (uuid "4c3e86a8-ab95-48eb-8f6a-8298f6c08cfa")
  2152. (property "Reference" "#PWR06"
  2153. (at 184.15 85.09 0)
  2154. (hide yes)
  2155. (show_name no)
  2156. (do_not_autoplace no)
  2157. (effects
  2158. (font
  2159. (size 1.27 1.27)
  2160. )
  2161. )
  2162. )
  2163. (property "Value" "GNDPWR"
  2164. (at 184.023 83.82 0)
  2165. (show_name no)
  2166. (do_not_autoplace no)
  2167. (effects
  2168. (font
  2169. (size 1.27 1.27)
  2170. )
  2171. )
  2172. )
  2173. (property "Footprint" ""
  2174. (at 184.15 81.28 0)
  2175. (hide yes)
  2176. (show_name no)
  2177. (do_not_autoplace no)
  2178. (effects
  2179. (font
  2180. (size 1.27 1.27)
  2181. )
  2182. )
  2183. )
  2184. (property "Datasheet" ""
  2185. (at 184.15 81.28 0)
  2186. (hide yes)
  2187. (show_name no)
  2188. (do_not_autoplace no)
  2189. (effects
  2190. (font
  2191. (size 1.27 1.27)
  2192. )
  2193. )
  2194. )
  2195. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  2196. (at 184.15 80.01 0)
  2197. (hide yes)
  2198. (show_name no)
  2199. (do_not_autoplace no)
  2200. (effects
  2201. (font
  2202. (size 1.27 1.27)
  2203. )
  2204. )
  2205. )
  2206. (pin "1"
  2207. (uuid "c5310584-dc1e-4cfb-9637-c1b875d12368")
  2208. )
  2209. (instances
  2210. (project "cx-copter-bottom-board"
  2211. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2212. (reference "#PWR06")
  2213. (unit 1)
  2214. )
  2215. )
  2216. )
  2217. )
  2218. (symbol
  2219. (lib_id "Motor:Motor_DC_ALT")
  2220. (at 133.35 114.3 0)
  2221. (unit 1)
  2222. (body_style 1)
  2223. (exclude_from_sim no)
  2224. (in_bom yes)
  2225. (on_board yes)
  2226. (in_pos_files yes)
  2227. (dnp no)
  2228. (fields_autoplaced yes)
  2229. (uuid "4e5e25f0-7c00-4b16-ac41-df34d32eeb27")
  2230. (property "Reference" "M2A1"
  2231. (at 137.16 114.2999 0)
  2232. (show_name no)
  2233. (do_not_autoplace no)
  2234. (effects
  2235. (font
  2236. (size 1.27 1.27)
  2237. )
  2238. (justify left)
  2239. )
  2240. )
  2241. (property "Value" "0716"
  2242. (at 137.16 116.8399 0)
  2243. (show_name no)
  2244. (do_not_autoplace no)
  2245. (effects
  2246. (font
  2247. (size 1.27 1.27)
  2248. )
  2249. (justify left)
  2250. )
  2251. )
  2252. (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
  2253. (at 133.35 116.586 0)
  2254. (hide yes)
  2255. (show_name no)
  2256. (do_not_autoplace no)
  2257. (effects
  2258. (font
  2259. (size 1.27 1.27)
  2260. )
  2261. )
  2262. )
  2263. (property "Datasheet" ""
  2264. (at 133.35 116.586 0)
  2265. (hide yes)
  2266. (show_name no)
  2267. (do_not_autoplace no)
  2268. (effects
  2269. (font
  2270. (size 1.27 1.27)
  2271. )
  2272. )
  2273. )
  2274. (property "Description" "DC Motor, alternative symbol"
  2275. (at 133.35 114.3 0)
  2276. (hide yes)
  2277. (show_name no)
  2278. (do_not_autoplace no)
  2279. (effects
  2280. (font
  2281. (size 1.27 1.27)
  2282. )
  2283. )
  2284. )
  2285. (pin "2"
  2286. (uuid "b3731106-8292-45ce-a06b-bf169e941c3c")
  2287. )
  2288. (pin "1"
  2289. (uuid "96a671b2-7d8d-485a-a7a1-2942ad1646a9")
  2290. )
  2291. (instances
  2292. (project "cx-copter-bottom-board"
  2293. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2294. (reference "M2A1")
  2295. (unit 1)
  2296. )
  2297. )
  2298. )
  2299. )
  2300. (symbol
  2301. (lib_id "Device:R")
  2302. (at 120.65 130.81 90)
  2303. (unit 1)
  2304. (body_style 1)
  2305. (exclude_from_sim no)
  2306. (in_bom yes)
  2307. (on_board yes)
  2308. (in_pos_files yes)
  2309. (dnp no)
  2310. (uuid "50393f9a-6059-4ed6-9716-fa8158fb636b")
  2311. (property "Reference" "R6"
  2312. (at 120.65 128.778 90)
  2313. (show_name no)
  2314. (do_not_autoplace no)
  2315. (effects
  2316. (font
  2317. (size 1.27 1.27)
  2318. )
  2319. )
  2320. )
  2321. (property "Value" "100"
  2322. (at 120.65 133.096 90)
  2323. (show_name no)
  2324. (do_not_autoplace no)
  2325. (effects
  2326. (font
  2327. (size 1.27 1.27)
  2328. )
  2329. )
  2330. )
  2331. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  2332. (at 120.65 132.588 90)
  2333. (hide yes)
  2334. (show_name no)
  2335. (do_not_autoplace no)
  2336. (effects
  2337. (font
  2338. (size 1.27 1.27)
  2339. )
  2340. )
  2341. )
  2342. (property "Datasheet" ""
  2343. (at 120.65 130.81 0)
  2344. (hide yes)
  2345. (show_name no)
  2346. (do_not_autoplace no)
  2347. (effects
  2348. (font
  2349. (size 1.27 1.27)
  2350. )
  2351. )
  2352. )
  2353. (property "Description" "Resistor"
  2354. (at 120.65 130.81 0)
  2355. (hide yes)
  2356. (show_name no)
  2357. (do_not_autoplace no)
  2358. (effects
  2359. (font
  2360. (size 1.27 1.27)
  2361. )
  2362. )
  2363. )
  2364. (pin "2"
  2365. (uuid "252e407f-b1e5-40da-8ee3-5baa5015ec55")
  2366. )
  2367. (pin "1"
  2368. (uuid "bd2b186b-97bd-452e-ba76-7c2aed3c7ee9")
  2369. )
  2370. (instances
  2371. (project "cx-copter-bottom-board"
  2372. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2373. (reference "R6")
  2374. (unit 1)
  2375. )
  2376. )
  2377. )
  2378. )
  2379. (symbol
  2380. (lib_id "power:GNDPWR")
  2381. (at 163.83 142.24 0)
  2382. (unit 1)
  2383. (body_style 1)
  2384. (exclude_from_sim no)
  2385. (in_bom yes)
  2386. (on_board yes)
  2387. (in_pos_files yes)
  2388. (dnp no)
  2389. (fields_autoplaced yes)
  2390. (uuid "50f86f63-1925-4bbe-9b5b-4dd12973b2a6")
  2391. (property "Reference" "#PWR049"
  2392. (at 163.83 147.32 0)
  2393. (hide yes)
  2394. (show_name no)
  2395. (do_not_autoplace no)
  2396. (effects
  2397. (font
  2398. (size 1.27 1.27)
  2399. )
  2400. )
  2401. )
  2402. (property "Value" "GNDPWR"
  2403. (at 163.703 146.05 0)
  2404. (show_name no)
  2405. (do_not_autoplace no)
  2406. (effects
  2407. (font
  2408. (size 1.27 1.27)
  2409. )
  2410. )
  2411. )
  2412. (property "Footprint" ""
  2413. (at 163.83 143.51 0)
  2414. (hide yes)
  2415. (show_name no)
  2416. (do_not_autoplace no)
  2417. (effects
  2418. (font
  2419. (size 1.27 1.27)
  2420. )
  2421. )
  2422. )
  2423. (property "Datasheet" ""
  2424. (at 163.83 143.51 0)
  2425. (hide yes)
  2426. (show_name no)
  2427. (do_not_autoplace no)
  2428. (effects
  2429. (font
  2430. (size 1.27 1.27)
  2431. )
  2432. )
  2433. )
  2434. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  2435. (at 163.83 142.24 0)
  2436. (hide yes)
  2437. (show_name no)
  2438. (do_not_autoplace no)
  2439. (effects
  2440. (font
  2441. (size 1.27 1.27)
  2442. )
  2443. )
  2444. )
  2445. (pin "1"
  2446. (uuid "ccec4488-cada-4056-a141-d91b059e3ed5")
  2447. )
  2448. (instances
  2449. (project "cx-copter-bottom-board"
  2450. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2451. (reference "#PWR049")
  2452. (unit 1)
  2453. )
  2454. )
  2455. )
  2456. )
  2457. (symbol
  2458. (lib_id "Device:R")
  2459. (at 163.83 78.74 180)
  2460. (unit 1)
  2461. (body_style 1)
  2462. (exclude_from_sim no)
  2463. (in_bom yes)
  2464. (on_board yes)
  2465. (in_pos_files yes)
  2466. (dnp no)
  2467. (uuid "5adbf8e8-c67a-412e-9a49-c706a2709f48")
  2468. (property "Reference" "R3"
  2469. (at 166.37 77.978 0)
  2470. (show_name no)
  2471. (do_not_autoplace no)
  2472. (effects
  2473. (font
  2474. (size 1.27 1.27)
  2475. )
  2476. )
  2477. )
  2478. (property "Value" "10k"
  2479. (at 166.878 79.756 0)
  2480. (show_name no)
  2481. (do_not_autoplace no)
  2482. (effects
  2483. (font
  2484. (size 1.27 1.27)
  2485. )
  2486. )
  2487. )
  2488. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  2489. (at 165.608 78.74 90)
  2490. (hide yes)
  2491. (show_name no)
  2492. (do_not_autoplace no)
  2493. (effects
  2494. (font
  2495. (size 1.27 1.27)
  2496. )
  2497. )
  2498. )
  2499. (property "Datasheet" ""
  2500. (at 163.83 78.74 0)
  2501. (hide yes)
  2502. (show_name no)
  2503. (do_not_autoplace no)
  2504. (effects
  2505. (font
  2506. (size 1.27 1.27)
  2507. )
  2508. )
  2509. )
  2510. (property "Description" "Resistor"
  2511. (at 163.83 78.74 0)
  2512. (hide yes)
  2513. (show_name no)
  2514. (do_not_autoplace no)
  2515. (effects
  2516. (font
  2517. (size 1.27 1.27)
  2518. )
  2519. )
  2520. )
  2521. (pin "2"
  2522. (uuid "0e591212-3890-40a0-ad64-78f5b7efb232")
  2523. )
  2524. (pin "1"
  2525. (uuid "0953f15c-194f-40fa-aaca-6da666ef646c")
  2526. )
  2527. (instances
  2528. (project "cx-copter-bottom-board"
  2529. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2530. (reference "R3")
  2531. (unit 1)
  2532. )
  2533. )
  2534. )
  2535. )
  2536. (symbol
  2537. (lib_id "power:GNDPWR")
  2538. (at 163.83 83.82 0)
  2539. (unit 1)
  2540. (body_style 1)
  2541. (exclude_from_sim no)
  2542. (in_bom yes)
  2543. (on_board yes)
  2544. (in_pos_files yes)
  2545. (dnp no)
  2546. (fields_autoplaced yes)
  2547. (uuid "5cef6870-d9a9-45a4-8ef5-0dca340f76f0")
  2548. (property "Reference" "#PWR050"
  2549. (at 163.83 88.9 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 "Value" "GNDPWR"
  2560. (at 163.703 87.63 0)
  2561. (show_name no)
  2562. (do_not_autoplace no)
  2563. (effects
  2564. (font
  2565. (size 1.27 1.27)
  2566. )
  2567. )
  2568. )
  2569. (property "Footprint" ""
  2570. (at 163.83 85.09 0)
  2571. (hide yes)
  2572. (show_name no)
  2573. (do_not_autoplace no)
  2574. (effects
  2575. (font
  2576. (size 1.27 1.27)
  2577. )
  2578. )
  2579. )
  2580. (property "Datasheet" ""
  2581. (at 163.83 85.09 0)
  2582. (hide yes)
  2583. (show_name no)
  2584. (do_not_autoplace no)
  2585. (effects
  2586. (font
  2587. (size 1.27 1.27)
  2588. )
  2589. )
  2590. )
  2591. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  2592. (at 163.83 83.82 0)
  2593. (hide yes)
  2594. (show_name no)
  2595. (do_not_autoplace no)
  2596. (effects
  2597. (font
  2598. (size 1.27 1.27)
  2599. )
  2600. )
  2601. )
  2602. (pin "1"
  2603. (uuid "7f85cbd5-e25c-468f-95fc-2ba418722ab2")
  2604. )
  2605. (instances
  2606. (project "cx-copter-bottom-board"
  2607. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2608. (reference "#PWR050")
  2609. (unit 1)
  2610. )
  2611. )
  2612. )
  2613. )
  2614. (symbol
  2615. (lib_id "Device:D")
  2616. (at 168.91 57.15 270)
  2617. (unit 1)
  2618. (body_style 1)
  2619. (exclude_from_sim no)
  2620. (in_bom yes)
  2621. (on_board yes)
  2622. (in_pos_files yes)
  2623. (dnp no)
  2624. (fields_autoplaced yes)
  2625. (uuid "5d541dd7-1d21-48b1-a61c-5bbd424e6b0d")
  2626. (property "Reference" "D2"
  2627. (at 171.45 55.8799 90)
  2628. (show_name no)
  2629. (do_not_autoplace no)
  2630. (effects
  2631. (font
  2632. (size 1.27 1.27)
  2633. )
  2634. (justify left)
  2635. )
  2636. )
  2637. (property "Value" "D"
  2638. (at 171.45 58.4199 90)
  2639. (show_name no)
  2640. (do_not_autoplace no)
  2641. (effects
  2642. (font
  2643. (size 1.27 1.27)
  2644. )
  2645. (justify left)
  2646. )
  2647. )
  2648. (property "Footprint" "Diode_SMD:D_SMA"
  2649. (at 168.91 57.15 0)
  2650. (hide yes)
  2651. (show_name no)
  2652. (do_not_autoplace no)
  2653. (effects
  2654. (font
  2655. (size 1.27 1.27)
  2656. )
  2657. )
  2658. )
  2659. (property "Datasheet" ""
  2660. (at 168.91 57.15 0)
  2661. (hide yes)
  2662. (show_name no)
  2663. (do_not_autoplace no)
  2664. (effects
  2665. (font
  2666. (size 1.27 1.27)
  2667. )
  2668. )
  2669. )
  2670. (property "Description" "Diode"
  2671. (at 168.91 57.15 0)
  2672. (hide yes)
  2673. (show_name no)
  2674. (do_not_autoplace no)
  2675. (effects
  2676. (font
  2677. (size 1.27 1.27)
  2678. )
  2679. )
  2680. )
  2681. (property "Sim.Device" "D"
  2682. (at 168.91 57.15 0)
  2683. (hide yes)
  2684. (show_name no)
  2685. (do_not_autoplace no)
  2686. (effects
  2687. (font
  2688. (size 1.27 1.27)
  2689. )
  2690. )
  2691. )
  2692. (property "Sim.Pins" "1=K 2=A"
  2693. (at 168.91 57.15 0)
  2694. (hide yes)
  2695. (show_name no)
  2696. (do_not_autoplace no)
  2697. (effects
  2698. (font
  2699. (size 1.27 1.27)
  2700. )
  2701. )
  2702. )
  2703. (pin "2"
  2704. (uuid "0a787f30-cfb9-4c21-bd1c-4fcb9b0848bc")
  2705. )
  2706. (pin "1"
  2707. (uuid "0b57d689-2ee4-4a54-beeb-180f3253b9e0")
  2708. )
  2709. (instances
  2710. (project "cx-copter-bottom-board"
  2711. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2712. (reference "D2")
  2713. (unit 1)
  2714. )
  2715. )
  2716. )
  2717. )
  2718. (symbol
  2719. (lib_id "power:GNDPWR")
  2720. (at 133.35 138.43 0)
  2721. (unit 1)
  2722. (body_style 1)
  2723. (exclude_from_sim no)
  2724. (in_bom yes)
  2725. (on_board yes)
  2726. (in_pos_files yes)
  2727. (dnp no)
  2728. (fields_autoplaced yes)
  2729. (uuid "61958431-1956-437d-9276-16fd6f9c98de")
  2730. (property "Reference" "#PWR09"
  2731. (at 133.35 143.51 0)
  2732. (hide yes)
  2733. (show_name no)
  2734. (do_not_autoplace no)
  2735. (effects
  2736. (font
  2737. (size 1.27 1.27)
  2738. )
  2739. )
  2740. )
  2741. (property "Value" "GNDPWR"
  2742. (at 133.223 142.24 0)
  2743. (show_name no)
  2744. (do_not_autoplace no)
  2745. (effects
  2746. (font
  2747. (size 1.27 1.27)
  2748. )
  2749. )
  2750. )
  2751. (property "Footprint" ""
  2752. (at 133.35 139.7 0)
  2753. (hide yes)
  2754. (show_name no)
  2755. (do_not_autoplace no)
  2756. (effects
  2757. (font
  2758. (size 1.27 1.27)
  2759. )
  2760. )
  2761. )
  2762. (property "Datasheet" ""
  2763. (at 133.35 139.7 0)
  2764. (hide yes)
  2765. (show_name no)
  2766. (do_not_autoplace no)
  2767. (effects
  2768. (font
  2769. (size 1.27 1.27)
  2770. )
  2771. )
  2772. )
  2773. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  2774. (at 133.35 138.43 0)
  2775. (hide yes)
  2776. (show_name no)
  2777. (do_not_autoplace no)
  2778. (effects
  2779. (font
  2780. (size 1.27 1.27)
  2781. )
  2782. )
  2783. )
  2784. (pin "1"
  2785. (uuid "b3b71568-4c07-4ee0-91d5-23c068e2af8f")
  2786. )
  2787. (instances
  2788. (project "cx-copter-bottom-board"
  2789. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2790. (reference "#PWR09")
  2791. (unit 1)
  2792. )
  2793. )
  2794. )
  2795. )
  2796. (symbol
  2797. (lib_id "power:GNDPWR")
  2798. (at 133.35 80.01 0)
  2799. (unit 1)
  2800. (body_style 1)
  2801. (exclude_from_sim no)
  2802. (in_bom yes)
  2803. (on_board yes)
  2804. (in_pos_files yes)
  2805. (dnp no)
  2806. (fields_autoplaced yes)
  2807. (uuid "79223f6b-d7d4-4e9c-bca2-bc2a1e75a241")
  2808. (property "Reference" "#PWR01"
  2809. (at 133.35 85.09 0)
  2810. (hide yes)
  2811. (show_name no)
  2812. (do_not_autoplace no)
  2813. (effects
  2814. (font
  2815. (size 1.27 1.27)
  2816. )
  2817. )
  2818. )
  2819. (property "Value" "GNDPWR"
  2820. (at 133.223 83.82 0)
  2821. (show_name no)
  2822. (do_not_autoplace no)
  2823. (effects
  2824. (font
  2825. (size 1.27 1.27)
  2826. )
  2827. )
  2828. )
  2829. (property "Footprint" ""
  2830. (at 133.35 81.28 0)
  2831. (hide yes)
  2832. (show_name no)
  2833. (do_not_autoplace no)
  2834. (effects
  2835. (font
  2836. (size 1.27 1.27)
  2837. )
  2838. )
  2839. )
  2840. (property "Datasheet" ""
  2841. (at 133.35 81.28 0)
  2842. (hide yes)
  2843. (show_name no)
  2844. (do_not_autoplace no)
  2845. (effects
  2846. (font
  2847. (size 1.27 1.27)
  2848. )
  2849. )
  2850. )
  2851. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  2852. (at 133.35 80.01 0)
  2853. (hide yes)
  2854. (show_name no)
  2855. (do_not_autoplace no)
  2856. (effects
  2857. (font
  2858. (size 1.27 1.27)
  2859. )
  2860. )
  2861. )
  2862. (pin "1"
  2863. (uuid "dc4da7a7-ba73-4287-b28a-dc23dc57f9c6")
  2864. )
  2865. (instances
  2866. (project "cx-copter-bottom-board"
  2867. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2868. (reference "#PWR01")
  2869. (unit 1)
  2870. )
  2871. )
  2872. )
  2873. )
  2874. (symbol
  2875. (lib_id "Device:R")
  2876. (at 113.03 78.74 180)
  2877. (unit 1)
  2878. (body_style 1)
  2879. (exclude_from_sim no)
  2880. (in_bom yes)
  2881. (on_board yes)
  2882. (in_pos_files yes)
  2883. (dnp no)
  2884. (uuid "7b2bf534-2d2b-40db-8746-d9464f49f01b")
  2885. (property "Reference" "R2"
  2886. (at 115.57 77.978 0)
  2887. (show_name no)
  2888. (do_not_autoplace no)
  2889. (effects
  2890. (font
  2891. (size 1.27 1.27)
  2892. )
  2893. )
  2894. )
  2895. (property "Value" "10k"
  2896. (at 116.078 79.756 0)
  2897. (show_name no)
  2898. (do_not_autoplace no)
  2899. (effects
  2900. (font
  2901. (size 1.27 1.27)
  2902. )
  2903. )
  2904. )
  2905. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  2906. (at 114.808 78.74 90)
  2907. (hide yes)
  2908. (show_name no)
  2909. (do_not_autoplace no)
  2910. (effects
  2911. (font
  2912. (size 1.27 1.27)
  2913. )
  2914. )
  2915. )
  2916. (property "Datasheet" ""
  2917. (at 113.03 78.74 0)
  2918. (hide yes)
  2919. (show_name no)
  2920. (do_not_autoplace no)
  2921. (effects
  2922. (font
  2923. (size 1.27 1.27)
  2924. )
  2925. )
  2926. )
  2927. (property "Description" "Resistor"
  2928. (at 113.03 78.74 0)
  2929. (hide yes)
  2930. (show_name no)
  2931. (do_not_autoplace no)
  2932. (effects
  2933. (font
  2934. (size 1.27 1.27)
  2935. )
  2936. )
  2937. )
  2938. (pin "2"
  2939. (uuid "345fed4a-077d-4801-8118-18f07e4babbf")
  2940. )
  2941. (pin "1"
  2942. (uuid "0e7e4057-288a-4e15-99ba-92917cea15a7")
  2943. )
  2944. (instances
  2945. (project "cx-copter-bottom-board"
  2946. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  2947. (reference "R2")
  2948. (unit 1)
  2949. )
  2950. )
  2951. )
  2952. )
  2953. (symbol
  2954. (lib_id "Device:D")
  2955. (at 168.91 115.57 270)
  2956. (unit 1)
  2957. (body_style 1)
  2958. (exclude_from_sim no)
  2959. (in_bom yes)
  2960. (on_board yes)
  2961. (in_pos_files yes)
  2962. (dnp no)
  2963. (fields_autoplaced yes)
  2964. (uuid "7d3c6604-7f40-49e9-a2f1-a689c76b83b2")
  2965. (property "Reference" "D4"
  2966. (at 171.45 114.2999 90)
  2967. (show_name no)
  2968. (do_not_autoplace no)
  2969. (effects
  2970. (font
  2971. (size 1.27 1.27)
  2972. )
  2973. (justify left)
  2974. )
  2975. )
  2976. (property "Value" "D"
  2977. (at 171.45 116.8399 90)
  2978. (show_name no)
  2979. (do_not_autoplace no)
  2980. (effects
  2981. (font
  2982. (size 1.27 1.27)
  2983. )
  2984. (justify left)
  2985. )
  2986. )
  2987. (property "Footprint" "Diode_SMD:D_SMA"
  2988. (at 168.91 115.57 0)
  2989. (hide yes)
  2990. (show_name no)
  2991. (do_not_autoplace no)
  2992. (effects
  2993. (font
  2994. (size 1.27 1.27)
  2995. )
  2996. )
  2997. )
  2998. (property "Datasheet" ""
  2999. (at 168.91 115.57 0)
  3000. (hide yes)
  3001. (show_name no)
  3002. (do_not_autoplace no)
  3003. (effects
  3004. (font
  3005. (size 1.27 1.27)
  3006. )
  3007. )
  3008. )
  3009. (property "Description" "Diode"
  3010. (at 168.91 115.57 0)
  3011. (hide yes)
  3012. (show_name no)
  3013. (do_not_autoplace no)
  3014. (effects
  3015. (font
  3016. (size 1.27 1.27)
  3017. )
  3018. )
  3019. )
  3020. (property "Sim.Device" "D"
  3021. (at 168.91 115.57 0)
  3022. (hide yes)
  3023. (show_name no)
  3024. (do_not_autoplace no)
  3025. (effects
  3026. (font
  3027. (size 1.27 1.27)
  3028. )
  3029. )
  3030. )
  3031. (property "Sim.Pins" "1=K 2=A"
  3032. (at 168.91 115.57 0)
  3033. (hide yes)
  3034. (show_name no)
  3035. (do_not_autoplace no)
  3036. (effects
  3037. (font
  3038. (size 1.27 1.27)
  3039. )
  3040. )
  3041. )
  3042. (pin "2"
  3043. (uuid "e2237a49-c780-41c7-97f8-5af630453fc8")
  3044. )
  3045. (pin "1"
  3046. (uuid "62b638a7-f55b-4afd-94c5-1bc502a19a9f")
  3047. )
  3048. (instances
  3049. (project "cx-copter-bottom-board"
  3050. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3051. (reference "D4")
  3052. (unit 1)
  3053. )
  3054. )
  3055. )
  3056. )
  3057. (symbol
  3058. (lib_id "transistors:YJL2312A")
  3059. (at 130.81 72.39 0)
  3060. (unit 1)
  3061. (body_style 1)
  3062. (exclude_from_sim no)
  3063. (in_bom yes)
  3064. (on_board yes)
  3065. (in_pos_files yes)
  3066. (dnp no)
  3067. (fields_autoplaced yes)
  3068. (uuid "7daabd98-ee3f-4bb0-b0d2-27274b378b06")
  3069. (property "Reference" "Q1"
  3070. (at 134.62 71.1199 0)
  3071. (show_name no)
  3072. (do_not_autoplace no)
  3073. (effects
  3074. (font
  3075. (size 1.27 1.27)
  3076. )
  3077. (justify left)
  3078. )
  3079. )
  3080. (property "Value" "YJL2312A"
  3081. (at 134.62 73.6599 0)
  3082. (show_name no)
  3083. (do_not_autoplace no)
  3084. (effects
  3085. (font
  3086. (size 1.27 1.27)
  3087. )
  3088. (justify left)
  3089. )
  3090. )
  3091. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  3092. (at 130.81 72.39 0)
  3093. (hide yes)
  3094. (show_name no)
  3095. (do_not_autoplace no)
  3096. (effects
  3097. (font
  3098. (size 1.27 1.27)
  3099. )
  3100. )
  3101. )
  3102. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  3103. (at 130.81 72.39 0)
  3104. (hide yes)
  3105. (show_name no)
  3106. (do_not_autoplace no)
  3107. (effects
  3108. (font
  3109. (size 1.27 1.27)
  3110. )
  3111. )
  3112. )
  3113. (property "Description" ""
  3114. (at 130.81 72.39 0)
  3115. (hide yes)
  3116. (show_name no)
  3117. (do_not_autoplace no)
  3118. (effects
  3119. (font
  3120. (size 1.27 1.27)
  3121. )
  3122. )
  3123. )
  3124. (pin "2"
  3125. (uuid "2ca98288-70ad-4011-8016-0c1d4b8ffda8")
  3126. )
  3127. (pin "3"
  3128. (uuid "90ed91bd-0cd3-4ea9-b85b-c873b9c43928")
  3129. )
  3130. (pin "1"
  3131. (uuid "1dadc9fb-c73f-4279-b586-b8cb6551630a")
  3132. )
  3133. (instances
  3134. (project "cx-copter-bottom-board"
  3135. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3136. (reference "Q1")
  3137. (unit 1)
  3138. )
  3139. )
  3140. )
  3141. )
  3142. (symbol
  3143. (lib_id "Motor:Motor_DC_ALT")
  3144. (at 184.15 114.3 0)
  3145. (unit 1)
  3146. (body_style 1)
  3147. (exclude_from_sim no)
  3148. (in_bom yes)
  3149. (on_board yes)
  3150. (in_pos_files yes)
  3151. (dnp no)
  3152. (fields_autoplaced yes)
  3153. (uuid "859d665b-10d0-4881-b85c-b3bf4d2c1b90")
  3154. (property "Reference" "M2B1"
  3155. (at 187.96 114.2999 0)
  3156. (show_name no)
  3157. (do_not_autoplace no)
  3158. (effects
  3159. (font
  3160. (size 1.27 1.27)
  3161. )
  3162. (justify left)
  3163. )
  3164. )
  3165. (property "Value" "0716"
  3166. (at 187.96 116.8399 0)
  3167. (show_name no)
  3168. (do_not_autoplace no)
  3169. (effects
  3170. (font
  3171. (size 1.27 1.27)
  3172. )
  3173. (justify left)
  3174. )
  3175. )
  3176. (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
  3177. (at 184.15 116.586 0)
  3178. (hide yes)
  3179. (show_name no)
  3180. (do_not_autoplace no)
  3181. (effects
  3182. (font
  3183. (size 1.27 1.27)
  3184. )
  3185. )
  3186. )
  3187. (property "Datasheet" ""
  3188. (at 184.15 116.586 0)
  3189. (hide yes)
  3190. (show_name no)
  3191. (do_not_autoplace no)
  3192. (effects
  3193. (font
  3194. (size 1.27 1.27)
  3195. )
  3196. )
  3197. )
  3198. (property "Description" "DC Motor, alternative symbol"
  3199. (at 184.15 114.3 0)
  3200. (hide yes)
  3201. (show_name no)
  3202. (do_not_autoplace no)
  3203. (effects
  3204. (font
  3205. (size 1.27 1.27)
  3206. )
  3207. )
  3208. )
  3209. (pin "2"
  3210. (uuid "6946e8fd-a203-42b7-9a6c-3d283544265d")
  3211. )
  3212. (pin "1"
  3213. (uuid "e7483698-5215-431e-9aa0-30ad969946f0")
  3214. )
  3215. (instances
  3216. (project "cx-copter-bottom-board"
  3217. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3218. (reference "M2B1")
  3219. (unit 1)
  3220. )
  3221. )
  3222. )
  3223. )
  3224. (symbol
  3225. (lib_id "power:GNDPWR")
  3226. (at 184.15 138.43 0)
  3227. (unit 1)
  3228. (body_style 1)
  3229. (exclude_from_sim no)
  3230. (in_bom yes)
  3231. (on_board yes)
  3232. (in_pos_files yes)
  3233. (dnp no)
  3234. (fields_autoplaced yes)
  3235. (uuid "8c557c29-f743-47eb-848b-13325fea8b06")
  3236. (property "Reference" "#PWR012"
  3237. (at 184.15 143.51 0)
  3238. (hide yes)
  3239. (show_name no)
  3240. (do_not_autoplace no)
  3241. (effects
  3242. (font
  3243. (size 1.27 1.27)
  3244. )
  3245. )
  3246. )
  3247. (property "Value" "GNDPWR"
  3248. (at 184.023 142.24 0)
  3249. (show_name no)
  3250. (do_not_autoplace no)
  3251. (effects
  3252. (font
  3253. (size 1.27 1.27)
  3254. )
  3255. )
  3256. )
  3257. (property "Footprint" ""
  3258. (at 184.15 139.7 0)
  3259. (hide yes)
  3260. (show_name no)
  3261. (do_not_autoplace no)
  3262. (effects
  3263. (font
  3264. (size 1.27 1.27)
  3265. )
  3266. )
  3267. )
  3268. (property "Datasheet" ""
  3269. (at 184.15 139.7 0)
  3270. (hide yes)
  3271. (show_name no)
  3272. (do_not_autoplace no)
  3273. (effects
  3274. (font
  3275. (size 1.27 1.27)
  3276. )
  3277. )
  3278. )
  3279. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  3280. (at 184.15 138.43 0)
  3281. (hide yes)
  3282. (show_name no)
  3283. (do_not_autoplace no)
  3284. (effects
  3285. (font
  3286. (size 1.27 1.27)
  3287. )
  3288. )
  3289. )
  3290. (pin "1"
  3291. (uuid "ca86a597-b6bb-4930-938a-a5d539800dd3")
  3292. )
  3293. (instances
  3294. (project "cx-copter-bottom-board"
  3295. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3296. (reference "#PWR012")
  3297. (unit 1)
  3298. )
  3299. )
  3300. )
  3301. )
  3302. (symbol
  3303. (lib_id "Device:R")
  3304. (at 113.03 137.16 180)
  3305. (unit 1)
  3306. (body_style 1)
  3307. (exclude_from_sim no)
  3308. (in_bom yes)
  3309. (on_board yes)
  3310. (in_pos_files yes)
  3311. (dnp no)
  3312. (uuid "9b7f6c3f-6c92-44e7-bf9c-061667d5fe23")
  3313. (property "Reference" "R5"
  3314. (at 115.57 136.398 0)
  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" "10k"
  3324. (at 116.078 138.176 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" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3334. (at 114.808 137.16 90)
  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 113.03 137.16 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" "Resistor"
  3356. (at 113.03 137.16 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 "2"
  3367. (uuid "c6445e8e-7cc8-4fcf-8853-bfbc4adf6161")
  3368. )
  3369. (pin "1"
  3370. (uuid "0aa707e1-ab95-4df3-a0c4-9095f0cf28ac")
  3371. )
  3372. (instances
  3373. (project "cx-copter-bottom-board"
  3374. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3375. (reference "R5")
  3376. (unit 1)
  3377. )
  3378. )
  3379. )
  3380. )
  3381. (symbol
  3382. (lib_id "power:VCC")
  3383. (at 184.15 106.68 0)
  3384. (unit 1)
  3385. (body_style 1)
  3386. (exclude_from_sim no)
  3387. (in_bom yes)
  3388. (on_board yes)
  3389. (in_pos_files yes)
  3390. (dnp no)
  3391. (fields_autoplaced yes)
  3392. (uuid "a38656d6-d380-40a0-897b-baea98a7f9f2")
  3393. (property "Reference" "#PWR011"
  3394. (at 184.15 110.49 0)
  3395. (hide yes)
  3396. (show_name no)
  3397. (do_not_autoplace no)
  3398. (effects
  3399. (font
  3400. (size 1.27 1.27)
  3401. )
  3402. )
  3403. )
  3404. (property "Value" "VCC"
  3405. (at 184.15 101.6 0)
  3406. (show_name no)
  3407. (do_not_autoplace no)
  3408. (effects
  3409. (font
  3410. (size 1.27 1.27)
  3411. )
  3412. )
  3413. )
  3414. (property "Footprint" ""
  3415. (at 184.15 106.68 0)
  3416. (hide yes)
  3417. (show_name no)
  3418. (do_not_autoplace no)
  3419. (effects
  3420. (font
  3421. (size 1.27 1.27)
  3422. )
  3423. )
  3424. )
  3425. (property "Datasheet" ""
  3426. (at 184.15 106.68 0)
  3427. (hide yes)
  3428. (show_name no)
  3429. (do_not_autoplace no)
  3430. (effects
  3431. (font
  3432. (size 1.27 1.27)
  3433. )
  3434. )
  3435. )
  3436. (property "Description" "Power symbol creates a global label with name \"VCC\""
  3437. (at 184.15 106.68 0)
  3438. (hide yes)
  3439. (show_name no)
  3440. (do_not_autoplace no)
  3441. (effects
  3442. (font
  3443. (size 1.27 1.27)
  3444. )
  3445. )
  3446. )
  3447. (pin "1"
  3448. (uuid "44e55d22-ef06-4969-a583-844f8d1e7c2a")
  3449. )
  3450. (instances
  3451. (project "cx-copter-bottom-board"
  3452. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3453. (reference "#PWR011")
  3454. (unit 1)
  3455. )
  3456. )
  3457. )
  3458. )
  3459. (symbol
  3460. (lib_id "Device:R")
  3461. (at 171.45 72.39 90)
  3462. (unit 1)
  3463. (body_style 1)
  3464. (exclude_from_sim no)
  3465. (in_bom yes)
  3466. (on_board yes)
  3467. (in_pos_files yes)
  3468. (dnp no)
  3469. (uuid "a4a1ebda-783c-4529-97d4-f6bc60bbaa5f")
  3470. (property "Reference" "R4"
  3471. (at 171.45 70.358 90)
  3472. (show_name no)
  3473. (do_not_autoplace no)
  3474. (effects
  3475. (font
  3476. (size 1.27 1.27)
  3477. )
  3478. )
  3479. )
  3480. (property "Value" "100"
  3481. (at 171.45 74.676 90)
  3482. (show_name no)
  3483. (do_not_autoplace no)
  3484. (effects
  3485. (font
  3486. (size 1.27 1.27)
  3487. )
  3488. )
  3489. )
  3490. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3491. (at 171.45 74.168 90)
  3492. (hide yes)
  3493. (show_name no)
  3494. (do_not_autoplace no)
  3495. (effects
  3496. (font
  3497. (size 1.27 1.27)
  3498. )
  3499. )
  3500. )
  3501. (property "Datasheet" ""
  3502. (at 171.45 72.39 0)
  3503. (hide yes)
  3504. (show_name no)
  3505. (do_not_autoplace no)
  3506. (effects
  3507. (font
  3508. (size 1.27 1.27)
  3509. )
  3510. )
  3511. )
  3512. (property "Description" "Resistor"
  3513. (at 171.45 72.39 0)
  3514. (hide yes)
  3515. (show_name no)
  3516. (do_not_autoplace no)
  3517. (effects
  3518. (font
  3519. (size 1.27 1.27)
  3520. )
  3521. )
  3522. )
  3523. (pin "2"
  3524. (uuid "1f62e732-4420-44b9-a964-316190ef68a1")
  3525. )
  3526. (pin "1"
  3527. (uuid "76e4cf64-2f09-4b0f-8722-9300cdaadd64")
  3528. )
  3529. (instances
  3530. (project "cx-copter-bottom-board"
  3531. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3532. (reference "R4")
  3533. (unit 1)
  3534. )
  3535. )
  3536. )
  3537. )
  3538. (symbol
  3539. (lib_id "transistors:YJL2312A")
  3540. (at 130.81 130.81 0)
  3541. (unit 1)
  3542. (body_style 1)
  3543. (exclude_from_sim no)
  3544. (in_bom yes)
  3545. (on_board yes)
  3546. (in_pos_files yes)
  3547. (dnp no)
  3548. (fields_autoplaced yes)
  3549. (uuid "a8c1f83e-ca07-414e-8367-44436ce398c5")
  3550. (property "Reference" "Q3"
  3551. (at 134.62 129.5399 0)
  3552. (show_name no)
  3553. (do_not_autoplace no)
  3554. (effects
  3555. (font
  3556. (size 1.27 1.27)
  3557. )
  3558. (justify left)
  3559. )
  3560. )
  3561. (property "Value" "YJL2312A"
  3562. (at 134.62 132.0799 0)
  3563. (show_name no)
  3564. (do_not_autoplace no)
  3565. (effects
  3566. (font
  3567. (size 1.27 1.27)
  3568. )
  3569. (justify left)
  3570. )
  3571. )
  3572. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  3573. (at 130.81 130.81 0)
  3574. (hide yes)
  3575. (show_name no)
  3576. (do_not_autoplace no)
  3577. (effects
  3578. (font
  3579. (size 1.27 1.27)
  3580. )
  3581. )
  3582. )
  3583. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  3584. (at 130.81 130.81 0)
  3585. (hide yes)
  3586. (show_name no)
  3587. (do_not_autoplace no)
  3588. (effects
  3589. (font
  3590. (size 1.27 1.27)
  3591. )
  3592. )
  3593. )
  3594. (property "Description" ""
  3595. (at 130.81 130.81 0)
  3596. (hide yes)
  3597. (show_name no)
  3598. (do_not_autoplace no)
  3599. (effects
  3600. (font
  3601. (size 1.27 1.27)
  3602. )
  3603. )
  3604. )
  3605. (pin "2"
  3606. (uuid "cb9ce55e-bc51-44e8-863d-4f418d4013dc")
  3607. )
  3608. (pin "3"
  3609. (uuid "a323eec6-14f2-4738-8416-55d118df305d")
  3610. )
  3611. (pin "1"
  3612. (uuid "3b57961d-3b8d-46af-b69f-79204def2500")
  3613. )
  3614. (instances
  3615. (project "cx-copter-bottom-board"
  3616. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3617. (reference "Q3")
  3618. (unit 1)
  3619. )
  3620. )
  3621. )
  3622. )
  3623. (symbol
  3624. (lib_id "Device:D")
  3625. (at 118.11 115.57 270)
  3626. (unit 1)
  3627. (body_style 1)
  3628. (exclude_from_sim no)
  3629. (in_bom yes)
  3630. (on_board yes)
  3631. (in_pos_files yes)
  3632. (dnp no)
  3633. (fields_autoplaced yes)
  3634. (uuid "acbf165b-1c9b-4a38-a044-e949976ce48e")
  3635. (property "Reference" "D3"
  3636. (at 120.65 114.2999 90)
  3637. (show_name no)
  3638. (do_not_autoplace no)
  3639. (effects
  3640. (font
  3641. (size 1.27 1.27)
  3642. )
  3643. (justify left)
  3644. )
  3645. )
  3646. (property "Value" "D"
  3647. (at 120.65 116.8399 90)
  3648. (show_name no)
  3649. (do_not_autoplace no)
  3650. (effects
  3651. (font
  3652. (size 1.27 1.27)
  3653. )
  3654. (justify left)
  3655. )
  3656. )
  3657. (property "Footprint" "Diode_SMD:D_SMA"
  3658. (at 118.11 115.57 0)
  3659. (hide yes)
  3660. (show_name no)
  3661. (do_not_autoplace no)
  3662. (effects
  3663. (font
  3664. (size 1.27 1.27)
  3665. )
  3666. )
  3667. )
  3668. (property "Datasheet" ""
  3669. (at 118.11 115.57 0)
  3670. (hide yes)
  3671. (show_name no)
  3672. (do_not_autoplace no)
  3673. (effects
  3674. (font
  3675. (size 1.27 1.27)
  3676. )
  3677. )
  3678. )
  3679. (property "Description" "Diode"
  3680. (at 118.11 115.57 0)
  3681. (hide yes)
  3682. (show_name no)
  3683. (do_not_autoplace no)
  3684. (effects
  3685. (font
  3686. (size 1.27 1.27)
  3687. )
  3688. )
  3689. )
  3690. (property "Sim.Device" "D"
  3691. (at 118.11 115.57 0)
  3692. (hide yes)
  3693. (show_name no)
  3694. (do_not_autoplace no)
  3695. (effects
  3696. (font
  3697. (size 1.27 1.27)
  3698. )
  3699. )
  3700. )
  3701. (property "Sim.Pins" "1=K 2=A"
  3702. (at 118.11 115.57 0)
  3703. (hide yes)
  3704. (show_name no)
  3705. (do_not_autoplace no)
  3706. (effects
  3707. (font
  3708. (size 1.27 1.27)
  3709. )
  3710. )
  3711. )
  3712. (pin "2"
  3713. (uuid "f72bbaac-35f1-4a81-8643-2e08f56b7994")
  3714. )
  3715. (pin "1"
  3716. (uuid "016ede9a-0dea-4ef4-98e3-157b0ed05c21")
  3717. )
  3718. (instances
  3719. (project "cx-copter-bottom-board"
  3720. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3721. (reference "D3")
  3722. (unit 1)
  3723. )
  3724. )
  3725. )
  3726. )
  3727. (symbol
  3728. (lib_id "power:VCC")
  3729. (at 184.15 48.26 0)
  3730. (unit 1)
  3731. (body_style 1)
  3732. (exclude_from_sim no)
  3733. (in_bom yes)
  3734. (on_board yes)
  3735. (in_pos_files yes)
  3736. (dnp no)
  3737. (fields_autoplaced yes)
  3738. (uuid "b55470ea-1512-4fd9-87fa-c52ea9be1ec3")
  3739. (property "Reference" "#PWR05"
  3740. (at 184.15 52.07 0)
  3741. (hide yes)
  3742. (show_name no)
  3743. (do_not_autoplace no)
  3744. (effects
  3745. (font
  3746. (size 1.27 1.27)
  3747. )
  3748. )
  3749. )
  3750. (property "Value" "VCC"
  3751. (at 184.15 43.18 0)
  3752. (show_name no)
  3753. (do_not_autoplace no)
  3754. (effects
  3755. (font
  3756. (size 1.27 1.27)
  3757. )
  3758. )
  3759. )
  3760. (property "Footprint" ""
  3761. (at 184.15 48.26 0)
  3762. (hide yes)
  3763. (show_name no)
  3764. (do_not_autoplace no)
  3765. (effects
  3766. (font
  3767. (size 1.27 1.27)
  3768. )
  3769. )
  3770. )
  3771. (property "Datasheet" ""
  3772. (at 184.15 48.26 0)
  3773. (hide yes)
  3774. (show_name no)
  3775. (do_not_autoplace no)
  3776. (effects
  3777. (font
  3778. (size 1.27 1.27)
  3779. )
  3780. )
  3781. )
  3782. (property "Description" "Power symbol creates a global label with name \"VCC\""
  3783. (at 184.15 48.26 0)
  3784. (hide yes)
  3785. (show_name no)
  3786. (do_not_autoplace no)
  3787. (effects
  3788. (font
  3789. (size 1.27 1.27)
  3790. )
  3791. )
  3792. )
  3793. (pin "1"
  3794. (uuid "a338e931-d0e8-48d7-8fd9-8a0a87ef566c")
  3795. )
  3796. (instances
  3797. (project "cx-copter-bottom-board"
  3798. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3799. (reference "#PWR05")
  3800. (unit 1)
  3801. )
  3802. )
  3803. )
  3804. )
  3805. (symbol
  3806. (lib_id "Device:R")
  3807. (at 163.83 137.16 180)
  3808. (unit 1)
  3809. (body_style 1)
  3810. (exclude_from_sim no)
  3811. (in_bom yes)
  3812. (on_board yes)
  3813. (in_pos_files yes)
  3814. (dnp no)
  3815. (uuid "bbbd36ea-039b-4133-8651-001b61c0f667")
  3816. (property "Reference" "R7"
  3817. (at 166.37 136.398 0)
  3818. (show_name no)
  3819. (do_not_autoplace no)
  3820. (effects
  3821. (font
  3822. (size 1.27 1.27)
  3823. )
  3824. )
  3825. )
  3826. (property "Value" "10k"
  3827. (at 166.878 138.176 0)
  3828. (show_name no)
  3829. (do_not_autoplace no)
  3830. (effects
  3831. (font
  3832. (size 1.27 1.27)
  3833. )
  3834. )
  3835. )
  3836. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  3837. (at 165.608 137.16 90)
  3838. (hide yes)
  3839. (show_name no)
  3840. (do_not_autoplace no)
  3841. (effects
  3842. (font
  3843. (size 1.27 1.27)
  3844. )
  3845. )
  3846. )
  3847. (property "Datasheet" ""
  3848. (at 163.83 137.16 0)
  3849. (hide yes)
  3850. (show_name no)
  3851. (do_not_autoplace no)
  3852. (effects
  3853. (font
  3854. (size 1.27 1.27)
  3855. )
  3856. )
  3857. )
  3858. (property "Description" "Resistor"
  3859. (at 163.83 137.16 0)
  3860. (hide yes)
  3861. (show_name no)
  3862. (do_not_autoplace no)
  3863. (effects
  3864. (font
  3865. (size 1.27 1.27)
  3866. )
  3867. )
  3868. )
  3869. (pin "2"
  3870. (uuid "c3a309fa-83c4-4c5f-a755-4ceafb4b92f7")
  3871. )
  3872. (pin "1"
  3873. (uuid "1ddf9f17-9e13-4bd3-a87a-2d34bee9fd17")
  3874. )
  3875. (instances
  3876. (project "cx-copter-bottom-board"
  3877. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3878. (reference "R7")
  3879. (unit 1)
  3880. )
  3881. )
  3882. )
  3883. )
  3884. (symbol
  3885. (lib_id "Motor:Motor_DC_ALT")
  3886. (at 133.35 55.88 0)
  3887. (unit 1)
  3888. (body_style 1)
  3889. (exclude_from_sim no)
  3890. (in_bom yes)
  3891. (on_board yes)
  3892. (in_pos_files yes)
  3893. (dnp no)
  3894. (fields_autoplaced yes)
  3895. (uuid "cd4938f4-a493-4c09-9ed3-2aea4fc3423d")
  3896. (property "Reference" "M1A1"
  3897. (at 137.16 55.8799 0)
  3898. (show_name no)
  3899. (do_not_autoplace no)
  3900. (effects
  3901. (font
  3902. (size 1.27 1.27)
  3903. )
  3904. (justify left)
  3905. )
  3906. )
  3907. (property "Value" "0716"
  3908. (at 137.16 58.4199 0)
  3909. (show_name no)
  3910. (do_not_autoplace no)
  3911. (effects
  3912. (font
  3913. (size 1.27 1.27)
  3914. )
  3915. (justify left)
  3916. )
  3917. )
  3918. (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
  3919. (at 133.35 58.166 0)
  3920. (hide yes)
  3921. (show_name no)
  3922. (do_not_autoplace no)
  3923. (effects
  3924. (font
  3925. (size 1.27 1.27)
  3926. )
  3927. )
  3928. )
  3929. (property "Datasheet" ""
  3930. (at 133.35 58.166 0)
  3931. (hide yes)
  3932. (show_name no)
  3933. (do_not_autoplace no)
  3934. (effects
  3935. (font
  3936. (size 1.27 1.27)
  3937. )
  3938. )
  3939. )
  3940. (property "Description" "DC Motor, alternative symbol"
  3941. (at 133.35 55.88 0)
  3942. (hide yes)
  3943. (show_name no)
  3944. (do_not_autoplace no)
  3945. (effects
  3946. (font
  3947. (size 1.27 1.27)
  3948. )
  3949. )
  3950. )
  3951. (pin "2"
  3952. (uuid "cc17d19a-c13c-40bd-b3c5-fbe7e0716167")
  3953. )
  3954. (pin "1"
  3955. (uuid "a1da2ac6-e7da-4968-a6e7-77654cc4f4df")
  3956. )
  3957. (instances
  3958. (project "cx-copter-bottom-board"
  3959. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  3960. (reference "M1A1")
  3961. (unit 1)
  3962. )
  3963. )
  3964. )
  3965. )
  3966. (symbol
  3967. (lib_id "transistors:YJL2312A")
  3968. (at 181.61 130.81 0)
  3969. (unit 1)
  3970. (body_style 1)
  3971. (exclude_from_sim no)
  3972. (in_bom yes)
  3973. (on_board yes)
  3974. (in_pos_files yes)
  3975. (dnp no)
  3976. (fields_autoplaced yes)
  3977. (uuid "d92d3216-ebb4-4751-8a32-d23856fedcbe")
  3978. (property "Reference" "Q4"
  3979. (at 185.42 129.5399 0)
  3980. (show_name no)
  3981. (do_not_autoplace no)
  3982. (effects
  3983. (font
  3984. (size 1.27 1.27)
  3985. )
  3986. (justify left)
  3987. )
  3988. )
  3989. (property "Value" "YJL2312A"
  3990. (at 185.42 132.0799 0)
  3991. (show_name no)
  3992. (do_not_autoplace no)
  3993. (effects
  3994. (font
  3995. (size 1.27 1.27)
  3996. )
  3997. (justify left)
  3998. )
  3999. )
  4000. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  4001. (at 181.61 130.81 0)
  4002. (hide yes)
  4003. (show_name no)
  4004. (do_not_autoplace no)
  4005. (effects
  4006. (font
  4007. (size 1.27 1.27)
  4008. )
  4009. )
  4010. )
  4011. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  4012. (at 181.61 130.81 0)
  4013. (hide yes)
  4014. (show_name no)
  4015. (do_not_autoplace no)
  4016. (effects
  4017. (font
  4018. (size 1.27 1.27)
  4019. )
  4020. )
  4021. )
  4022. (property "Description" ""
  4023. (at 181.61 130.81 0)
  4024. (hide yes)
  4025. (show_name no)
  4026. (do_not_autoplace no)
  4027. (effects
  4028. (font
  4029. (size 1.27 1.27)
  4030. )
  4031. )
  4032. )
  4033. (pin "2"
  4034. (uuid "9bb010fe-9fd2-4662-a1c8-00724b296ecd")
  4035. )
  4036. (pin "3"
  4037. (uuid "164111b3-8e0f-4577-96b9-2be7f1abcc8f")
  4038. )
  4039. (pin "1"
  4040. (uuid "f193f4a2-2a34-4034-9ff1-8b7a64275b35")
  4041. )
  4042. (instances
  4043. (project "cx-copter-bottom-board"
  4044. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  4045. (reference "Q4")
  4046. (unit 1)
  4047. )
  4048. )
  4049. )
  4050. )
  4051. (symbol
  4052. (lib_id "transistors:YJL2312A")
  4053. (at 181.61 72.39 0)
  4054. (unit 1)
  4055. (body_style 1)
  4056. (exclude_from_sim no)
  4057. (in_bom yes)
  4058. (on_board yes)
  4059. (in_pos_files yes)
  4060. (dnp no)
  4061. (fields_autoplaced yes)
  4062. (uuid "d979f341-403c-45ce-853f-b3b50918f087")
  4063. (property "Reference" "Q2"
  4064. (at 185.42 71.1199 0)
  4065. (show_name no)
  4066. (do_not_autoplace no)
  4067. (effects
  4068. (font
  4069. (size 1.27 1.27)
  4070. )
  4071. (justify left)
  4072. )
  4073. )
  4074. (property "Value" "YJL2312A"
  4075. (at 185.42 73.6599 0)
  4076. (show_name no)
  4077. (do_not_autoplace no)
  4078. (effects
  4079. (font
  4080. (size 1.27 1.27)
  4081. )
  4082. (justify left)
  4083. )
  4084. )
  4085. (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
  4086. (at 181.61 72.39 0)
  4087. (hide yes)
  4088. (show_name no)
  4089. (do_not_autoplace no)
  4090. (effects
  4091. (font
  4092. (size 1.27 1.27)
  4093. )
  4094. )
  4095. )
  4096. (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
  4097. (at 181.61 72.39 0)
  4098. (hide yes)
  4099. (show_name no)
  4100. (do_not_autoplace no)
  4101. (effects
  4102. (font
  4103. (size 1.27 1.27)
  4104. )
  4105. )
  4106. )
  4107. (property "Description" ""
  4108. (at 181.61 72.39 0)
  4109. (hide yes)
  4110. (show_name no)
  4111. (do_not_autoplace no)
  4112. (effects
  4113. (font
  4114. (size 1.27 1.27)
  4115. )
  4116. )
  4117. )
  4118. (pin "2"
  4119. (uuid "3d706815-961c-41d7-b5a7-329fa4ab5ef0")
  4120. )
  4121. (pin "3"
  4122. (uuid "8bd6958a-e004-4b00-9b20-41b99a8bbee6")
  4123. )
  4124. (pin "1"
  4125. (uuid "76fb585b-02e5-46a5-a588-93109cf38dd9")
  4126. )
  4127. (instances
  4128. (project "cx-copter-bottom-board"
  4129. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  4130. (reference "Q2")
  4131. (unit 1)
  4132. )
  4133. )
  4134. )
  4135. )
  4136. (symbol
  4137. (lib_id "power:GNDPWR")
  4138. (at 113.03 83.82 0)
  4139. (unit 1)
  4140. (body_style 1)
  4141. (exclude_from_sim no)
  4142. (in_bom yes)
  4143. (on_board yes)
  4144. (in_pos_files yes)
  4145. (dnp no)
  4146. (fields_autoplaced yes)
  4147. (uuid "e278f5bc-f62d-4842-bf55-56df8cf7c269")
  4148. (property "Reference" "#PWR07"
  4149. (at 113.03 88.9 0)
  4150. (hide yes)
  4151. (show_name no)
  4152. (do_not_autoplace no)
  4153. (effects
  4154. (font
  4155. (size 1.27 1.27)
  4156. )
  4157. )
  4158. )
  4159. (property "Value" "GNDPWR"
  4160. (at 112.903 87.63 0)
  4161. (show_name no)
  4162. (do_not_autoplace no)
  4163. (effects
  4164. (font
  4165. (size 1.27 1.27)
  4166. )
  4167. )
  4168. )
  4169. (property "Footprint" ""
  4170. (at 113.03 85.09 0)
  4171. (hide yes)
  4172. (show_name no)
  4173. (do_not_autoplace no)
  4174. (effects
  4175. (font
  4176. (size 1.27 1.27)
  4177. )
  4178. )
  4179. )
  4180. (property "Datasheet" ""
  4181. (at 113.03 85.09 0)
  4182. (hide yes)
  4183. (show_name no)
  4184. (do_not_autoplace no)
  4185. (effects
  4186. (font
  4187. (size 1.27 1.27)
  4188. )
  4189. )
  4190. )
  4191. (property "Description" "Power symbol creates a global label with name \"GNDPWR\" , global ground"
  4192. (at 113.03 83.82 0)
  4193. (hide yes)
  4194. (show_name no)
  4195. (do_not_autoplace no)
  4196. (effects
  4197. (font
  4198. (size 1.27 1.27)
  4199. )
  4200. )
  4201. )
  4202. (pin "1"
  4203. (uuid "066c44b5-ffbc-490a-af03-f0fb79e49e1a")
  4204. )
  4205. (instances
  4206. (project "cx-copter-bottom-board"
  4207. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  4208. (reference "#PWR07")
  4209. (unit 1)
  4210. )
  4211. )
  4212. )
  4213. )
  4214. (symbol
  4215. (lib_id "power:VCC")
  4216. (at 133.35 48.26 0)
  4217. (unit 1)
  4218. (body_style 1)
  4219. (exclude_from_sim no)
  4220. (in_bom yes)
  4221. (on_board yes)
  4222. (in_pos_files yes)
  4223. (dnp no)
  4224. (fields_autoplaced yes)
  4225. (uuid "f66963ee-b315-41f2-a836-4dd0e6ee94cf")
  4226. (property "Reference" "#PWR02"
  4227. (at 133.35 52.07 0)
  4228. (hide yes)
  4229. (show_name no)
  4230. (do_not_autoplace no)
  4231. (effects
  4232. (font
  4233. (size 1.27 1.27)
  4234. )
  4235. )
  4236. )
  4237. (property "Value" "VCC"
  4238. (at 133.35 43.18 0)
  4239. (show_name no)
  4240. (do_not_autoplace no)
  4241. (effects
  4242. (font
  4243. (size 1.27 1.27)
  4244. )
  4245. )
  4246. )
  4247. (property "Footprint" ""
  4248. (at 133.35 48.26 0)
  4249. (hide yes)
  4250. (show_name no)
  4251. (do_not_autoplace no)
  4252. (effects
  4253. (font
  4254. (size 1.27 1.27)
  4255. )
  4256. )
  4257. )
  4258. (property "Datasheet" ""
  4259. (at 133.35 48.26 0)
  4260. (hide yes)
  4261. (show_name no)
  4262. (do_not_autoplace no)
  4263. (effects
  4264. (font
  4265. (size 1.27 1.27)
  4266. )
  4267. )
  4268. )
  4269. (property "Description" "Power symbol creates a global label with name \"VCC\""
  4270. (at 133.35 48.26 0)
  4271. (hide yes)
  4272. (show_name no)
  4273. (do_not_autoplace no)
  4274. (effects
  4275. (font
  4276. (size 1.27 1.27)
  4277. )
  4278. )
  4279. )
  4280. (pin "1"
  4281. (uuid "45e05d6f-99a6-42ba-8e28-32b65edaec0b")
  4282. )
  4283. (instances
  4284. (project "cx-copter-bottom-board"
  4285. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  4286. (reference "#PWR02")
  4287. (unit 1)
  4288. )
  4289. )
  4290. )
  4291. )
  4292. (symbol
  4293. (lib_id "Device:R")
  4294. (at 171.45 130.81 90)
  4295. (unit 1)
  4296. (body_style 1)
  4297. (exclude_from_sim no)
  4298. (in_bom yes)
  4299. (on_board yes)
  4300. (in_pos_files yes)
  4301. (dnp no)
  4302. (uuid "f9092e7c-7ad7-4be2-a4a6-7c3b0dedeeb7")
  4303. (property "Reference" "R8"
  4304. (at 171.45 128.778 90)
  4305. (show_name no)
  4306. (do_not_autoplace no)
  4307. (effects
  4308. (font
  4309. (size 1.27 1.27)
  4310. )
  4311. )
  4312. )
  4313. (property "Value" "100"
  4314. (at 171.45 133.096 90)
  4315. (show_name no)
  4316. (do_not_autoplace no)
  4317. (effects
  4318. (font
  4319. (size 1.27 1.27)
  4320. )
  4321. )
  4322. )
  4323. (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
  4324. (at 171.45 132.588 90)
  4325. (hide yes)
  4326. (show_name no)
  4327. (do_not_autoplace no)
  4328. (effects
  4329. (font
  4330. (size 1.27 1.27)
  4331. )
  4332. )
  4333. )
  4334. (property "Datasheet" ""
  4335. (at 171.45 130.81 0)
  4336. (hide yes)
  4337. (show_name no)
  4338. (do_not_autoplace no)
  4339. (effects
  4340. (font
  4341. (size 1.27 1.27)
  4342. )
  4343. )
  4344. )
  4345. (property "Description" "Resistor"
  4346. (at 171.45 130.81 0)
  4347. (hide yes)
  4348. (show_name no)
  4349. (do_not_autoplace no)
  4350. (effects
  4351. (font
  4352. (size 1.27 1.27)
  4353. )
  4354. )
  4355. )
  4356. (pin "2"
  4357. (uuid "fce6f17b-fd00-4e49-8f7e-fabd594e1e28")
  4358. )
  4359. (pin "1"
  4360. (uuid "ae3ee05d-424b-431f-82ee-3113cc551b66")
  4361. )
  4362. (instances
  4363. (project "cx-copter-bottom-board"
  4364. (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
  4365. (reference "R8")
  4366. (unit 1)
  4367. )
  4368. )
  4369. )
  4370. )
  4371. )