controller_unit.kicad_sch 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239
  1. (kicad_sch
  2. (version 20260306)
  3. (generator "eeschema")
  4. (generator_version "10.0")
  5. (uuid "29f2e2ae-ffe0-44c4-8980-17649ed716da")
  6. (paper "A4")
  7. (lib_symbols
  8. (symbol "Connector:TestPoint_2Pole"
  9. (pin_names
  10. (offset 0.762)
  11. (hide yes)
  12. )
  13. (exclude_from_sim no)
  14. (in_bom yes)
  15. (on_board yes)
  16. (in_pos_files yes)
  17. (duplicate_pin_numbers_are_jumpers no)
  18. (property "Reference" "TP"
  19. (at 0 1.524 0)
  20. (show_name no)
  21. (do_not_autoplace no)
  22. (effects
  23. (font
  24. (size 1.27 1.27)
  25. )
  26. )
  27. )
  28. (property "Value" "TestPoint_2Pole"
  29. (at 0 -1.778 0)
  30. (show_name no)
  31. (do_not_autoplace no)
  32. (effects
  33. (font
  34. (size 1.27 1.27)
  35. )
  36. )
  37. )
  38. (property "Footprint" ""
  39. (at 0 0 0)
  40. (show_name no)
  41. (do_not_autoplace no)
  42. (hide yes)
  43. (effects
  44. (font
  45. (size 1.27 1.27)
  46. )
  47. )
  48. )
  49. (property "Datasheet" ""
  50. (at 0 0 0)
  51. (show_name no)
  52. (do_not_autoplace no)
  53. (hide yes)
  54. (effects
  55. (font
  56. (size 1.27 1.27)
  57. )
  58. )
  59. )
  60. (property "Description" "2-polar test point"
  61. (at 0 0 0)
  62. (show_name no)
  63. (do_not_autoplace no)
  64. (hide yes)
  65. (effects
  66. (font
  67. (size 1.27 1.27)
  68. )
  69. )
  70. )
  71. (property "ki_keywords" "point tp"
  72. (at 0 0 0)
  73. (show_name no)
  74. (do_not_autoplace no)
  75. (hide yes)
  76. (effects
  77. (font
  78. (size 1.27 1.27)
  79. )
  80. )
  81. )
  82. (property "ki_fp_filters" "Pin* Test*"
  83. (at 0 0 0)
  84. (show_name no)
  85. (do_not_autoplace no)
  86. (hide yes)
  87. (effects
  88. (font
  89. (size 1.27 1.27)
  90. )
  91. )
  92. )
  93. (symbol "TestPoint_2Pole_0_1"
  94. (circle
  95. (center -1.778 0)
  96. (radius 0.762)
  97. (stroke
  98. (width 0)
  99. (type default)
  100. )
  101. (fill
  102. (type none)
  103. )
  104. )
  105. (circle
  106. (center 1.778 0)
  107. (radius 0.762)
  108. (stroke
  109. (width 0)
  110. (type default)
  111. )
  112. (fill
  113. (type none)
  114. )
  115. )
  116. (pin passive line
  117. (at -5.08 0 0)
  118. (length 2.54)
  119. (name "1"
  120. (effects
  121. (font
  122. (size 1.27 1.27)
  123. )
  124. )
  125. )
  126. (number "1"
  127. (effects
  128. (font
  129. (size 1.27 1.27)
  130. )
  131. )
  132. )
  133. )
  134. (pin passive line
  135. (at 5.08 0 180)
  136. (length 2.54)
  137. (name "2"
  138. (effects
  139. (font
  140. (size 1.27 1.27)
  141. )
  142. )
  143. )
  144. (number "2"
  145. (effects
  146. (font
  147. (size 1.27 1.27)
  148. )
  149. )
  150. )
  151. )
  152. )
  153. (embedded_fonts no)
  154. )
  155. (symbol "Connector:TestPoint_Probe"
  156. (pin_numbers
  157. (hide yes)
  158. )
  159. (pin_names
  160. (offset 0.762)
  161. (hide yes)
  162. )
  163. (exclude_from_sim no)
  164. (in_bom yes)
  165. (on_board yes)
  166. (in_pos_files yes)
  167. (duplicate_pin_numbers_are_jumpers no)
  168. (property "Reference" "TP"
  169. (at 1.651 5.842 0)
  170. (show_name no)
  171. (do_not_autoplace no)
  172. (effects
  173. (font
  174. (size 1.27 1.27)
  175. )
  176. )
  177. )
  178. (property "Value" "TestPoint_Probe"
  179. (at 1.651 4.064 0)
  180. (show_name no)
  181. (do_not_autoplace no)
  182. (effects
  183. (font
  184. (size 1.27 1.27)
  185. )
  186. )
  187. )
  188. (property "Footprint" ""
  189. (at 5.08 0 0)
  190. (show_name no)
  191. (do_not_autoplace no)
  192. (hide yes)
  193. (effects
  194. (font
  195. (size 1.27 1.27)
  196. )
  197. )
  198. )
  199. (property "Datasheet" ""
  200. (at 5.08 0 0)
  201. (show_name no)
  202. (do_not_autoplace no)
  203. (hide yes)
  204. (effects
  205. (font
  206. (size 1.27 1.27)
  207. )
  208. )
  209. )
  210. (property "Description" "test point (alternative probe-style design)"
  211. (at 0 0 0)
  212. (show_name no)
  213. (do_not_autoplace no)
  214. (hide yes)
  215. (effects
  216. (font
  217. (size 1.27 1.27)
  218. )
  219. )
  220. )
  221. (property "ki_keywords" "test point tp"
  222. (at 0 0 0)
  223. (show_name no)
  224. (do_not_autoplace no)
  225. (hide yes)
  226. (effects
  227. (font
  228. (size 1.27 1.27)
  229. )
  230. )
  231. )
  232. (property "ki_fp_filters" "Pin* Test*"
  233. (at 0 0 0)
  234. (show_name no)
  235. (do_not_autoplace no)
  236. (hide yes)
  237. (effects
  238. (font
  239. (size 1.27 1.27)
  240. )
  241. )
  242. )
  243. (symbol "TestPoint_Probe_0_1"
  244. (polyline
  245. (pts
  246. (xy 1.27 0.762) (xy 0 0) (xy 0.762 1.27) (xy 1.27 0.762)
  247. )
  248. (stroke
  249. (width 0)
  250. (type default)
  251. )
  252. (fill
  253. (type outline)
  254. )
  255. )
  256. (polyline
  257. (pts
  258. (xy 1.397 0.635) (xy 0.635 1.397) (xy 2.413 3.175) (xy 3.175 2.413) (xy 1.397 0.635)
  259. )
  260. (stroke
  261. (width 0)
  262. (type default)
  263. )
  264. (fill
  265. (type background)
  266. )
  267. )
  268. )
  269. (symbol "TestPoint_Probe_1_1"
  270. (pin passive line
  271. (at 0 0 90)
  272. (length 0)
  273. (name "1"
  274. (effects
  275. (font
  276. (size 1.27 1.27)
  277. )
  278. )
  279. )
  280. (number "1"
  281. (effects
  282. (font
  283. (size 1.27 1.27)
  284. )
  285. )
  286. )
  287. )
  288. )
  289. (embedded_fonts no)
  290. )
  291. (symbol "Connector_Generic:Conn_01x03"
  292. (pin_names
  293. (offset 1.016)
  294. (hide yes)
  295. )
  296. (exclude_from_sim no)
  297. (in_bom yes)
  298. (on_board yes)
  299. (in_pos_files yes)
  300. (duplicate_pin_numbers_are_jumpers no)
  301. (property "Reference" "J1"
  302. (at 2.54 4.064 0)
  303. (show_name no)
  304. (do_not_autoplace no)
  305. (effects
  306. (font
  307. (size 1.27 1.27)
  308. )
  309. )
  310. )
  311. (property "Value" "SELECTOR"
  312. (at 0.508 -6.604 0)
  313. (show_name no)
  314. (do_not_autoplace no)
  315. (effects
  316. (font
  317. (size 1.27 1.27)
  318. )
  319. )
  320. )
  321. (property "Footprint" ""
  322. (at 0 0 0)
  323. (show_name no)
  324. (do_not_autoplace no)
  325. (hide yes)
  326. (effects
  327. (font
  328. (size 1.27 1.27)
  329. )
  330. )
  331. )
  332. (property "Datasheet" ""
  333. (at 0 0 0)
  334. (show_name no)
  335. (do_not_autoplace no)
  336. (hide yes)
  337. (effects
  338. (font
  339. (size 1.27 1.27)
  340. )
  341. )
  342. )
  343. (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
  344. (at 0 0 0)
  345. (show_name no)
  346. (do_not_autoplace no)
  347. (hide yes)
  348. (effects
  349. (font
  350. (size 1.27 1.27)
  351. )
  352. )
  353. )
  354. (property "ki_keywords" "connector"
  355. (at 0 0 0)
  356. (show_name no)
  357. (do_not_autoplace no)
  358. (hide yes)
  359. (effects
  360. (font
  361. (size 1.27 1.27)
  362. )
  363. )
  364. )
  365. (property "ki_fp_filters" "Connector*:*_1x??_*"
  366. (at 0 0 0)
  367. (show_name no)
  368. (do_not_autoplace no)
  369. (hide yes)
  370. (effects
  371. (font
  372. (size 1.27 1.27)
  373. )
  374. )
  375. )
  376. (symbol "Conn_01x03_1_1"
  377. (rectangle
  378. (start -1.27 2.54)
  379. (end 1.27 -2.54)
  380. (stroke
  381. (width 0.254)
  382. (type default)
  383. )
  384. (fill
  385. (type background)
  386. )
  387. )
  388. (rectangle
  389. (start -1.27 1.397)
  390. (end 0 1.143)
  391. (stroke
  392. (width 0.1524)
  393. (type default)
  394. )
  395. (fill
  396. (type none)
  397. )
  398. )
  399. (rectangle
  400. (start -1.27 -1.143)
  401. (end 0 -1.397)
  402. (stroke
  403. (width 0.1524)
  404. (type default)
  405. )
  406. (fill
  407. (type none)
  408. )
  409. )
  410. (rectangle
  411. (start 0 0.127)
  412. (end 1.27 -0.127)
  413. (stroke
  414. (width 0.1524)
  415. (type default)
  416. )
  417. (fill
  418. (type none)
  419. )
  420. )
  421. (pin passive line
  422. (at -5.08 1.27 0)
  423. (length 3.81)
  424. (name "Pin_1"
  425. (effects
  426. (font
  427. (size 1.27 1.27)
  428. )
  429. )
  430. )
  431. (number "1"
  432. (effects
  433. (font
  434. (size 1.27 1.27)
  435. )
  436. )
  437. )
  438. )
  439. (pin passive line
  440. (at 5.08 0 180)
  441. (length 3.81)
  442. (name "Pin_2"
  443. (effects
  444. (font
  445. (size 1.27 1.27)
  446. )
  447. )
  448. )
  449. (number "2"
  450. (effects
  451. (font
  452. (size 1.27 1.27)
  453. )
  454. )
  455. )
  456. )
  457. (pin passive line
  458. (at -5.08 -1.27 0)
  459. (length 3.81)
  460. (name "Pin_3"
  461. (effects
  462. (font
  463. (size 1.27 1.27)
  464. )
  465. )
  466. )
  467. (number "3"
  468. (effects
  469. (font
  470. (size 1.27 1.27)
  471. )
  472. )
  473. )
  474. )
  475. )
  476. (embedded_fonts no)
  477. )
  478. (symbol "Device:C"
  479. (pin_numbers
  480. (hide yes)
  481. )
  482. (pin_names
  483. (offset 0.254)
  484. )
  485. (exclude_from_sim no)
  486. (in_bom yes)
  487. (on_board yes)
  488. (in_pos_files yes)
  489. (duplicate_pin_numbers_are_jumpers no)
  490. (property "Reference" "C"
  491. (at 0.635 2.54 0)
  492. (show_name no)
  493. (do_not_autoplace no)
  494. (effects
  495. (font
  496. (size 1.27 1.27)
  497. )
  498. (justify left)
  499. )
  500. )
  501. (property "Value" "C"
  502. (at 0.635 -2.54 0)
  503. (show_name no)
  504. (do_not_autoplace no)
  505. (effects
  506. (font
  507. (size 1.27 1.27)
  508. )
  509. (justify left)
  510. )
  511. )
  512. (property "Footprint" ""
  513. (at 0.9652 -3.81 0)
  514. (show_name no)
  515. (do_not_autoplace no)
  516. (hide yes)
  517. (effects
  518. (font
  519. (size 1.27 1.27)
  520. )
  521. )
  522. )
  523. (property "Datasheet" ""
  524. (at 0 0 0)
  525. (show_name no)
  526. (do_not_autoplace no)
  527. (hide yes)
  528. (effects
  529. (font
  530. (size 1.27 1.27)
  531. )
  532. )
  533. )
  534. (property "Description" "Unpolarized capacitor"
  535. (at 0 0 0)
  536. (show_name no)
  537. (do_not_autoplace no)
  538. (hide yes)
  539. (effects
  540. (font
  541. (size 1.27 1.27)
  542. )
  543. )
  544. )
  545. (property "ki_keywords" "cap capacitor"
  546. (at 0 0 0)
  547. (show_name no)
  548. (do_not_autoplace no)
  549. (hide yes)
  550. (effects
  551. (font
  552. (size 1.27 1.27)
  553. )
  554. )
  555. )
  556. (property "ki_fp_filters" "C_*"
  557. (at 0 0 0)
  558. (show_name no)
  559. (do_not_autoplace no)
  560. (hide yes)
  561. (effects
  562. (font
  563. (size 1.27 1.27)
  564. )
  565. )
  566. )
  567. (symbol "C_0_1"
  568. (polyline
  569. (pts
  570. (xy -2.032 0.762) (xy 2.032 0.762)
  571. )
  572. (stroke
  573. (width 0.508)
  574. (type default)
  575. )
  576. (fill
  577. (type none)
  578. )
  579. )
  580. (polyline
  581. (pts
  582. (xy -2.032 -0.762) (xy 2.032 -0.762)
  583. )
  584. (stroke
  585. (width 0.508)
  586. (type default)
  587. )
  588. (fill
  589. (type none)
  590. )
  591. )
  592. )
  593. (symbol "C_1_1"
  594. (pin passive line
  595. (at 0 3.81 270)
  596. (length 2.794)
  597. (name ""
  598. (effects
  599. (font
  600. (size 1.27 1.27)
  601. )
  602. )
  603. )
  604. (number "1"
  605. (effects
  606. (font
  607. (size 1.27 1.27)
  608. )
  609. )
  610. )
  611. )
  612. (pin passive line
  613. (at 0 -3.81 90)
  614. (length 2.794)
  615. (name ""
  616. (effects
  617. (font
  618. (size 1.27 1.27)
  619. )
  620. )
  621. )
  622. (number "2"
  623. (effects
  624. (font
  625. (size 1.27 1.27)
  626. )
  627. )
  628. )
  629. )
  630. )
  631. (embedded_fonts no)
  632. )
  633. (symbol "Device:R"
  634. (pin_numbers
  635. (hide yes)
  636. )
  637. (pin_names
  638. (offset 0)
  639. )
  640. (exclude_from_sim no)
  641. (in_bom yes)
  642. (on_board yes)
  643. (in_pos_files yes)
  644. (duplicate_pin_numbers_are_jumpers no)
  645. (property "Reference" "R"
  646. (at 2.032 0 90)
  647. (show_name no)
  648. (do_not_autoplace no)
  649. (effects
  650. (font
  651. (size 1.27 1.27)
  652. )
  653. )
  654. )
  655. (property "Value" "R"
  656. (at 0 0 90)
  657. (show_name no)
  658. (do_not_autoplace no)
  659. (effects
  660. (font
  661. (size 1.27 1.27)
  662. )
  663. )
  664. )
  665. (property "Footprint" ""
  666. (at -1.778 0 90)
  667. (show_name no)
  668. (do_not_autoplace no)
  669. (hide yes)
  670. (effects
  671. (font
  672. (size 1.27 1.27)
  673. )
  674. )
  675. )
  676. (property "Datasheet" ""
  677. (at 0 0 0)
  678. (show_name no)
  679. (do_not_autoplace no)
  680. (hide yes)
  681. (effects
  682. (font
  683. (size 1.27 1.27)
  684. )
  685. )
  686. )
  687. (property "Description" "Resistor"
  688. (at 0 0 0)
  689. (show_name no)
  690. (do_not_autoplace no)
  691. (hide yes)
  692. (effects
  693. (font
  694. (size 1.27 1.27)
  695. )
  696. )
  697. )
  698. (property "ki_keywords" "R res resistor"
  699. (at 0 0 0)
  700. (show_name no)
  701. (do_not_autoplace no)
  702. (hide yes)
  703. (effects
  704. (font
  705. (size 1.27 1.27)
  706. )
  707. )
  708. )
  709. (property "ki_fp_filters" "R_*"
  710. (at 0 0 0)
  711. (show_name no)
  712. (do_not_autoplace no)
  713. (hide yes)
  714. (effects
  715. (font
  716. (size 1.27 1.27)
  717. )
  718. )
  719. )
  720. (symbol "R_0_1"
  721. (rectangle
  722. (start -1.016 -2.54)
  723. (end 1.016 2.54)
  724. (stroke
  725. (width 0.254)
  726. (type default)
  727. )
  728. (fill
  729. (type none)
  730. )
  731. )
  732. )
  733. (symbol "R_1_1"
  734. (pin passive line
  735. (at 0 3.81 270)
  736. (length 1.27)
  737. (name ""
  738. (effects
  739. (font
  740. (size 1.27 1.27)
  741. )
  742. )
  743. )
  744. (number "1"
  745. (effects
  746. (font
  747. (size 1.27 1.27)
  748. )
  749. )
  750. )
  751. )
  752. (pin passive line
  753. (at 0 -3.81 90)
  754. (length 1.27)
  755. (name ""
  756. (effects
  757. (font
  758. (size 1.27 1.27)
  759. )
  760. )
  761. )
  762. (number "2"
  763. (effects
  764. (font
  765. (size 1.27 1.27)
  766. )
  767. )
  768. )
  769. )
  770. )
  771. (embedded_fonts no)
  772. )
  773. (symbol "MCU_WCH_RiscV:CH32V003AxMx"
  774. (exclude_from_sim no)
  775. (in_bom yes)
  776. (on_board yes)
  777. (in_pos_files yes)
  778. (duplicate_pin_numbers_are_jumpers no)
  779. (property "Reference" "U2"
  780. (at -12.954 21.336 0)
  781. (show_name no)
  782. (do_not_autoplace no)
  783. (effects
  784. (font
  785. (size 1.27 1.27)
  786. )
  787. (justify left)
  788. )
  789. )
  790. (property "Value" "CH32V003AxMx"
  791. (at 1.27 21.336 0)
  792. (show_name no)
  793. (do_not_autoplace no)
  794. (effects
  795. (font
  796. (size 1.27 1.27)
  797. )
  798. (justify left)
  799. )
  800. )
  801. (property "Footprint" "Package_SO:STC_SOP-16_3.9x9.9mm_P1.27mm"
  802. (at -2.54 0 0)
  803. (show_name no)
  804. (do_not_autoplace no)
  805. (hide yes)
  806. (effects
  807. (font
  808. (size 1.27 1.27)
  809. )
  810. )
  811. )
  812. (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
  813. (at -2.54 0 0)
  814. (show_name no)
  815. (do_not_autoplace no)
  816. (hide yes)
  817. (effects
  818. (font
  819. (size 1.27 1.27)
  820. )
  821. )
  822. )
  823. (property "Description" "CH32V003 series are industrial-grade general-purpose microcontrollers designed based on 32-bit RISC-V instruction set and architecture. It adopts QingKe V2A core, RV32EC instruction set, and supports 2 levels of interrupt nesting. The series are mounted with rich peripheral interfaces and function modules. Its internal organizational structure meets the low-cost and low-power embedded application scenarios."
  824. (at 0 0 0)
  825. (show_name no)
  826. (do_not_autoplace no)
  827. (hide yes)
  828. (effects
  829. (font
  830. (size 1.27 1.27)
  831. )
  832. )
  833. )
  834. (property "ki_keywords" "RISC-V WCH MCU microcontroller"
  835. (at 0 0 0)
  836. (show_name no)
  837. (do_not_autoplace no)
  838. (hide yes)
  839. (effects
  840. (font
  841. (size 1.27 1.27)
  842. )
  843. )
  844. )
  845. (property "ki_fp_filters" "*SO*3.9x9.9mm*P1.27mm*"
  846. (at 0 0 0)
  847. (show_name no)
  848. (do_not_autoplace no)
  849. (hide yes)
  850. (effects
  851. (font
  852. (size 1.27 1.27)
  853. )
  854. )
  855. )
  856. (symbol "CH32V003AxMx_1_1"
  857. (rectangle
  858. (start -12.7 20.32)
  859. (end 12.7 -20.32)
  860. (stroke
  861. (width 0.254)
  862. (type default)
  863. )
  864. (fill
  865. (type background)
  866. )
  867. )
  868. (pin bidirectional line
  869. (at -15.24 15.24 0)
  870. (length 2.54)
  871. (name "PC1"
  872. (effects
  873. (font
  874. (size 1.27 1.27)
  875. )
  876. )
  877. )
  878. (number "1"
  879. (effects
  880. (font
  881. (size 1.27 1.27)
  882. )
  883. )
  884. )
  885. (alternate "NSS" bidirectional line)
  886. (alternate "SDA" bidirectional line)
  887. (alternate "T1BKIN_1" bidirectional line)
  888. (alternate "T1BKIN_3" bidirectional line)
  889. (alternate "T2CH1ETR_2" bidirectional line)
  890. (alternate "T2CH1ETR_3" bidirectional line)
  891. (alternate "T2CH4_1" bidirectional line)
  892. (alternate "URX_3" bidirectional line)
  893. )
  894. (pin bidirectional line
  895. (at -15.24 17.78 0)
  896. (length 2.54)
  897. (name "PC2"
  898. (effects
  899. (font
  900. (size 1.27 1.27)
  901. )
  902. )
  903. )
  904. (number "2"
  905. (effects
  906. (font
  907. (size 1.27 1.27)
  908. )
  909. )
  910. )
  911. (alternate "AETR_1" bidirectional line)
  912. (alternate "SCL" bidirectional line)
  913. (alternate "T1BKIN" bidirectional line)
  914. (alternate "T1BKIN_2" bidirectional line)
  915. (alternate "T1ETR_3" bidirectional line)
  916. (alternate "T2CH2_1" bidirectional line)
  917. (alternate "URTS" bidirectional line)
  918. (alternate "URTS_1" bidirectional line)
  919. )
  920. (pin bidirectional line
  921. (at -15.24 -2.54 0)
  922. (length 2.54)
  923. (name "PC3"
  924. (effects
  925. (font
  926. (size 1.27 1.27)
  927. )
  928. )
  929. )
  930. (number "3"
  931. (effects
  932. (font
  933. (size 1.27 1.27)
  934. )
  935. )
  936. )
  937. (alternate "T1CH1N_1" bidirectional line)
  938. (alternate "T1CH1N_3" bidirectional line)
  939. (alternate "T1CH3" bidirectional line)
  940. (alternate "T1CH3_2" bidirectional line)
  941. (alternate "UCTS_1" bidirectional line)
  942. )
  943. (pin bidirectional line
  944. (at -15.24 -7.62 0)
  945. (length 2.54)
  946. (name "PC4"
  947. (effects
  948. (font
  949. (size 1.27 1.27)
  950. )
  951. )
  952. )
  953. (number "4"
  954. (effects
  955. (font
  956. (size 1.27 1.27)
  957. )
  958. )
  959. )
  960. (alternate "A2" bidirectional line)
  961. (alternate "MCO" bidirectional line)
  962. (alternate "T1CH1_3" bidirectional line)
  963. (alternate "T1CH2N_1" bidirectional line)
  964. (alternate "T1CH4" bidirectional line)
  965. (alternate "T1CH4_2" bidirectional line)
  966. )
  967. (pin bidirectional line
  968. (at 15.24 6.35 180)
  969. (length 2.54)
  970. (name "PC6"
  971. (effects
  972. (font
  973. (size 1.27 1.27)
  974. )
  975. )
  976. )
  977. (number "5"
  978. (effects
  979. (font
  980. (size 1.27 1.27)
  981. )
  982. )
  983. )
  984. (alternate "MOSI" bidirectional line)
  985. (alternate "MOSI_1" bidirectional line)
  986. (alternate "SDA_2" bidirectional line)
  987. (alternate "SDA_3" bidirectional line)
  988. (alternate "T1CH1_1" bidirectional line)
  989. (alternate "T1CH3N_3" bidirectional line)
  990. (alternate "UCTS_2" bidirectional line)
  991. (alternate "UCTS_3" bidirectional line)
  992. )
  993. (pin bidirectional line
  994. (at 15.24 3.81 180)
  995. (length 2.54)
  996. (name "PC7"
  997. (effects
  998. (font
  999. (size 1.27 1.27)
  1000. )
  1001. )
  1002. )
  1003. (number "6"
  1004. (effects
  1005. (font
  1006. (size 1.27 1.27)
  1007. )
  1008. )
  1009. )
  1010. (alternate "MISO" bidirectional line)
  1011. (alternate "MISO_1" bidirectional line)
  1012. (alternate "T1CH2_1" bidirectional line)
  1013. (alternate "T1CH2_3" bidirectional line)
  1014. (alternate "T2CH2_3" bidirectional line)
  1015. (alternate "URTS_2" bidirectional line)
  1016. (alternate "URTS_3" bidirectional line)
  1017. )
  1018. (pin bidirectional line
  1019. (at -15.24 7.62 0)
  1020. (length 2.54)
  1021. (name "PD1"
  1022. (effects
  1023. (font
  1024. (size 1.27 1.27)
  1025. )
  1026. )
  1027. )
  1028. (number "7"
  1029. (effects
  1030. (font
  1031. (size 1.27 1.27)
  1032. )
  1033. )
  1034. )
  1035. (alternate "AETR2" bidirectional line)
  1036. (alternate "SCL_1" bidirectional line)
  1037. (alternate "SWIO" bidirectional line)
  1038. (alternate "T1CH3N" bidirectional line)
  1039. (alternate "T1CH3N_1" bidirectional line)
  1040. (alternate "T1CH3N_2" bidirectional line)
  1041. (alternate "URX_1" bidirectional line)
  1042. )
  1043. (pin bidirectional line
  1044. (at 15.24 11.43 180)
  1045. (length 2.54)
  1046. (name "PD4"
  1047. (effects
  1048. (font
  1049. (size 1.27 1.27)
  1050. )
  1051. )
  1052. )
  1053. (number "8"
  1054. (effects
  1055. (font
  1056. (size 1.27 1.27)
  1057. )
  1058. )
  1059. )
  1060. (alternate "A7" bidirectional line)
  1061. (alternate "OPO" bidirectional line)
  1062. (alternate "T1CH4_3" bidirectional line)
  1063. (alternate "T2CH1ETR" bidirectional line)
  1064. (alternate "TIETR_2" bidirectional line)
  1065. (alternate "UCK" bidirectional line)
  1066. )
  1067. (pin bidirectional line
  1068. (at 15.24 -2.54 180)
  1069. (length 2.54)
  1070. (name "PD5"
  1071. (effects
  1072. (font
  1073. (size 1.27 1.27)
  1074. )
  1075. )
  1076. )
  1077. (number "9"
  1078. (effects
  1079. (font
  1080. (size 1.27 1.27)
  1081. )
  1082. )
  1083. )
  1084. (alternate "A5" bidirectional line)
  1085. (alternate "T2CH4_3" bidirectional line)
  1086. (alternate "URX_2" bidirectional line)
  1087. (alternate "UTX" bidirectional line)
  1088. )
  1089. (pin bidirectional line
  1090. (at 15.24 -7.62 180)
  1091. (length 2.54)
  1092. (name "PD6"
  1093. (effects
  1094. (font
  1095. (size 1.27 1.27)
  1096. )
  1097. )
  1098. )
  1099. (number "10"
  1100. (effects
  1101. (font
  1102. (size 1.27 1.27)
  1103. )
  1104. )
  1105. )
  1106. (alternate "A6" bidirectional line)
  1107. (alternate "T2CH3_3" bidirectional line)
  1108. (alternate "URX" bidirectional line)
  1109. (alternate "UTX_2" bidirectional line)
  1110. )
  1111. (pin bidirectional line
  1112. (at -15.24 -15.24 0)
  1113. (length 2.54)
  1114. (name "PD7"
  1115. (effects
  1116. (font
  1117. (size 1.27 1.27)
  1118. )
  1119. )
  1120. )
  1121. (number "11"
  1122. (effects
  1123. (font
  1124. (size 1.27 1.27)
  1125. )
  1126. )
  1127. )
  1128. (alternate "NRST" bidirectional line)
  1129. (alternate "OPP1" bidirectional line)
  1130. (alternate "T2CH4" bidirectional line)
  1131. (alternate "T2CH4_2" bidirectional line)
  1132. (alternate "UCK_1" bidirectional line)
  1133. (alternate "UCK_2" bidirectional line)
  1134. )
  1135. (pin bidirectional line
  1136. (at 15.24 -17.78 180)
  1137. (length 2.54)
  1138. (name "PA1"
  1139. (effects
  1140. (font
  1141. (size 1.27 1.27)
  1142. )
  1143. )
  1144. )
  1145. (number "12"
  1146. (effects
  1147. (font
  1148. (size 1.27 1.27)
  1149. )
  1150. )
  1151. )
  1152. (alternate "A1" bidirectional line)
  1153. (alternate "OPN0" bidirectional line)
  1154. (alternate "OSCI" bidirectional line)
  1155. (alternate "T1CH2" bidirectional line)
  1156. (alternate "T1CH2_2" bidirectional line)
  1157. )
  1158. (pin bidirectional line
  1159. (at 15.24 -15.24 180)
  1160. (length 2.54)
  1161. (name "PA2"
  1162. (effects
  1163. (font
  1164. (size 1.27 1.27)
  1165. )
  1166. )
  1167. )
  1168. (number "13"
  1169. (effects
  1170. (font
  1171. (size 1.27 1.27)
  1172. )
  1173. )
  1174. )
  1175. (alternate "A0" bidirectional line)
  1176. (alternate "AETR2_1" bidirectional line)
  1177. (alternate "OPP0" bidirectional line)
  1178. (alternate "OSCO" bidirectional line)
  1179. (alternate "TICH2N" bidirectional line)
  1180. (alternate "TICH2N_2" bidirectional line)
  1181. )
  1182. (pin power_in line
  1183. (at 0 -22.86 90)
  1184. (length 2.54)
  1185. (name "VSS"
  1186. (effects
  1187. (font
  1188. (size 1.27 1.27)
  1189. )
  1190. )
  1191. )
  1192. (number "14"
  1193. (effects
  1194. (font
  1195. (size 1.27 1.27)
  1196. )
  1197. )
  1198. )
  1199. )
  1200. (pin power_in line
  1201. (at 0 22.86 270)
  1202. (length 2.54)
  1203. (name "VDD"
  1204. (effects
  1205. (font
  1206. (size 1.27 1.27)
  1207. )
  1208. )
  1209. )
  1210. (number "15"
  1211. (effects
  1212. (font
  1213. (size 1.27 1.27)
  1214. )
  1215. )
  1216. )
  1217. )
  1218. (pin bidirectional line
  1219. (at 15.24 8.89 180)
  1220. (length 2.54)
  1221. (name "PC0"
  1222. (effects
  1223. (font
  1224. (size 1.27 1.27)
  1225. )
  1226. )
  1227. )
  1228. (number "16"
  1229. (effects
  1230. (font
  1231. (size 1.27 1.27)
  1232. )
  1233. )
  1234. )
  1235. (alternate "NSS_1" bidirectional line)
  1236. (alternate "T1CH3_1" bidirectional line)
  1237. (alternate "T2CH3" bidirectional line)
  1238. (alternate "T2CH3_2" bidirectional line)
  1239. (alternate "UTX_3" bidirectional line)
  1240. )
  1241. )
  1242. (embedded_fonts no)
  1243. )
  1244. (symbol "power:+3V3"
  1245. (power global)
  1246. (pin_numbers
  1247. (hide yes)
  1248. )
  1249. (pin_names
  1250. (offset 0)
  1251. (hide yes)
  1252. )
  1253. (exclude_from_sim no)
  1254. (in_bom yes)
  1255. (on_board yes)
  1256. (in_pos_files yes)
  1257. (duplicate_pin_numbers_are_jumpers no)
  1258. (property "Reference" "#PWR"
  1259. (at 0 -3.81 0)
  1260. (show_name no)
  1261. (do_not_autoplace no)
  1262. (hide yes)
  1263. (effects
  1264. (font
  1265. (size 1.27 1.27)
  1266. )
  1267. )
  1268. )
  1269. (property "Value" "+3V3"
  1270. (at 0 3.556 0)
  1271. (show_name no)
  1272. (do_not_autoplace no)
  1273. (effects
  1274. (font
  1275. (size 1.27 1.27)
  1276. )
  1277. )
  1278. )
  1279. (property "Footprint" ""
  1280. (at 0 0 0)
  1281. (show_name no)
  1282. (do_not_autoplace no)
  1283. (hide yes)
  1284. (effects
  1285. (font
  1286. (size 1.27 1.27)
  1287. )
  1288. )
  1289. )
  1290. (property "Datasheet" ""
  1291. (at 0 0 0)
  1292. (show_name no)
  1293. (do_not_autoplace no)
  1294. (hide yes)
  1295. (effects
  1296. (font
  1297. (size 1.27 1.27)
  1298. )
  1299. )
  1300. )
  1301. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  1302. (at 0 0 0)
  1303. (show_name no)
  1304. (do_not_autoplace no)
  1305. (hide yes)
  1306. (effects
  1307. (font
  1308. (size 1.27 1.27)
  1309. )
  1310. )
  1311. )
  1312. (property "ki_keywords" "global power"
  1313. (at 0 0 0)
  1314. (show_name no)
  1315. (do_not_autoplace no)
  1316. (hide yes)
  1317. (effects
  1318. (font
  1319. (size 1.27 1.27)
  1320. )
  1321. )
  1322. )
  1323. (symbol "+3V3_0_1"
  1324. (polyline
  1325. (pts
  1326. (xy -0.762 1.27) (xy 0 2.54)
  1327. )
  1328. (stroke
  1329. (width 0)
  1330. (type default)
  1331. )
  1332. (fill
  1333. (type none)
  1334. )
  1335. )
  1336. (polyline
  1337. (pts
  1338. (xy 0 2.54) (xy 0.762 1.27)
  1339. )
  1340. (stroke
  1341. (width 0)
  1342. (type default)
  1343. )
  1344. (fill
  1345. (type none)
  1346. )
  1347. )
  1348. (polyline
  1349. (pts
  1350. (xy 0 0) (xy 0 2.54)
  1351. )
  1352. (stroke
  1353. (width 0)
  1354. (type default)
  1355. )
  1356. (fill
  1357. (type none)
  1358. )
  1359. )
  1360. )
  1361. (symbol "+3V3_1_1"
  1362. (pin power_in line
  1363. (at 0 0 90)
  1364. (length 0)
  1365. (name ""
  1366. (effects
  1367. (font
  1368. (size 1.27 1.27)
  1369. )
  1370. )
  1371. )
  1372. (number "1"
  1373. (effects
  1374. (font
  1375. (size 1.27 1.27)
  1376. )
  1377. )
  1378. )
  1379. )
  1380. )
  1381. (embedded_fonts no)
  1382. )
  1383. (symbol "power:GND"
  1384. (power global)
  1385. (pin_numbers
  1386. (hide yes)
  1387. )
  1388. (pin_names
  1389. (offset 0)
  1390. (hide yes)
  1391. )
  1392. (exclude_from_sim no)
  1393. (in_bom yes)
  1394. (on_board yes)
  1395. (in_pos_files yes)
  1396. (duplicate_pin_numbers_are_jumpers no)
  1397. (property "Reference" "#PWR"
  1398. (at 0 -6.35 0)
  1399. (show_name no)
  1400. (do_not_autoplace no)
  1401. (hide yes)
  1402. (effects
  1403. (font
  1404. (size 1.27 1.27)
  1405. )
  1406. )
  1407. )
  1408. (property "Value" "GND"
  1409. (at 0 -3.81 0)
  1410. (show_name no)
  1411. (do_not_autoplace no)
  1412. (effects
  1413. (font
  1414. (size 1.27 1.27)
  1415. )
  1416. )
  1417. )
  1418. (property "Footprint" ""
  1419. (at 0 0 0)
  1420. (show_name no)
  1421. (do_not_autoplace no)
  1422. (hide yes)
  1423. (effects
  1424. (font
  1425. (size 1.27 1.27)
  1426. )
  1427. )
  1428. )
  1429. (property "Datasheet" ""
  1430. (at 0 0 0)
  1431. (show_name no)
  1432. (do_not_autoplace no)
  1433. (hide yes)
  1434. (effects
  1435. (font
  1436. (size 1.27 1.27)
  1437. )
  1438. )
  1439. )
  1440. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  1441. (at 0 0 0)
  1442. (show_name no)
  1443. (do_not_autoplace no)
  1444. (hide yes)
  1445. (effects
  1446. (font
  1447. (size 1.27 1.27)
  1448. )
  1449. )
  1450. )
  1451. (property "ki_keywords" "global power"
  1452. (at 0 0 0)
  1453. (show_name no)
  1454. (do_not_autoplace no)
  1455. (hide yes)
  1456. (effects
  1457. (font
  1458. (size 1.27 1.27)
  1459. )
  1460. )
  1461. )
  1462. (symbol "GND_0_1"
  1463. (polyline
  1464. (pts
  1465. (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
  1466. )
  1467. (stroke
  1468. (width 0)
  1469. (type default)
  1470. )
  1471. (fill
  1472. (type none)
  1473. )
  1474. )
  1475. )
  1476. (symbol "GND_1_1"
  1477. (pin power_in line
  1478. (at 0 0 270)
  1479. (length 0)
  1480. (name ""
  1481. (effects
  1482. (font
  1483. (size 1.27 1.27)
  1484. )
  1485. )
  1486. )
  1487. (number "1"
  1488. (effects
  1489. (font
  1490. (size 1.27 1.27)
  1491. )
  1492. )
  1493. )
  1494. )
  1495. )
  1496. (embedded_fonts no)
  1497. )
  1498. )
  1499. (text_box "Resistor R15 prevents accidental resetting of the microcontroller."
  1500. (exclude_from_sim no)
  1501. (at 105.41 49.53 0)
  1502. (size 21.59 12.7)
  1503. (margins 0.9525 0.9525 0.9525 0.9525)
  1504. (stroke
  1505. (width 0)
  1506. (type solid)
  1507. )
  1508. (fill
  1509. (type none)
  1510. )
  1511. (effects
  1512. (font
  1513. (size 1.27 1.27)
  1514. )
  1515. )
  1516. (uuid "0f6f8e66-3c86-4f33-b71b-2a96644e1911")
  1517. )
  1518. (text_box "When debugging, SELECTOR should short-circuit PD1 from SWIO, while during normal operation it should short-circuit PD1 from SWITCH_B. SELECTOR allows you to disconnect the button while programming."
  1519. (exclude_from_sim no)
  1520. (at 62.23 49.53 0)
  1521. (size 38.1 21.59)
  1522. (margins 0.9525 0.9525 0.9525 0.9525)
  1523. (stroke
  1524. (width 0)
  1525. (type solid)
  1526. )
  1527. (fill
  1528. (type none)
  1529. )
  1530. (effects
  1531. (font
  1532. (size 1.27 1.27)
  1533. )
  1534. )
  1535. (uuid "16f464c4-834c-49eb-ad6b-14ef25fc41dc")
  1536. )
  1537. (text_box "Motors PWM channels use TIMER1 (TIM1) and TIMER2 (TIM2). TIMER1 should work in mapping mode 01, TIMER2 should work in mode 00. (TIM1_RM = 01, TIM2_RM = 00).\n\nTIM2_CH1 -> PD4 (M1)\nTIM2_CH3 -> PC0 (M2)\nTIM1_CH1 -> PC6 (M3)\nTIM1_CH2 -> PC7 (M4)"
  1538. (exclude_from_sim no)
  1539. (at 179.07 60.5691 0)
  1540. (size 40.64 24.5209)
  1541. (margins 0.9525 0.9525 0.9525 0.9525)
  1542. (stroke
  1543. (width 0)
  1544. (type solid)
  1545. )
  1546. (fill
  1547. (type none)
  1548. )
  1549. (effects
  1550. (font
  1551. (size 1.27 1.27)
  1552. )
  1553. (justify left)
  1554. )
  1555. (uuid "4966b64a-70b0-4bb8-bf71-173d88458394")
  1556. )
  1557. (text_box "STATUS_LED is a regular LED that is active in the high state. LEDS_CHAIN is a chain of WS2812S diodes. The appropriate protocol must be used to control them."
  1558. (exclude_from_sim no)
  1559. (at 156.21 124.46 0)
  1560. (size 31.75 17.78)
  1561. (margins 0.9525 0.9525 0.9525 0.9525)
  1562. (stroke
  1563. (width 0)
  1564. (type solid)
  1565. )
  1566. (fill
  1567. (type none)
  1568. )
  1569. (effects
  1570. (font
  1571. (size 1.27 1.27)
  1572. )
  1573. )
  1574. (uuid "4e8bdd26-6cbf-48a6-a799-40a44a5118fe")
  1575. )
  1576. (text_box "USART work in default mapping, I2C work in default mapping mode.\n\nUSART1_RM = 00\nI2C1_RM = 00"
  1577. (exclude_from_sim no)
  1578. (at 62.23 76.2 0)
  1579. (size 25.4 16.51)
  1580. (margins 0.9525 0.9525 0.9525 0.9525)
  1581. (stroke
  1582. (width 0)
  1583. (type solid)
  1584. )
  1585. (fill
  1586. (type none)
  1587. )
  1588. (effects
  1589. (font
  1590. (size 1.27 1.27)
  1591. )
  1592. )
  1593. (uuid "907df6cb-8a28-4357-bf53-524475062cdc")
  1594. )
  1595. (text_box "C5, C6, C7 should be placed close to VDD pin. "
  1596. (exclude_from_sim no)
  1597. (at 152.4 49.53 0)
  1598. (size 20.32 8.89)
  1599. (margins 0.9525 0.9525 0.9525 0.9525)
  1600. (stroke
  1601. (width 0)
  1602. (type solid)
  1603. )
  1604. (fill
  1605. (type none)
  1606. )
  1607. (effects
  1608. (font
  1609. (size 1.27 1.27)
  1610. )
  1611. )
  1612. (uuid "e6821345-fd5d-46cc-8045-53fa9cb3f4a6")
  1613. )
  1614. (junction
  1615. (at 137.16 63.5)
  1616. (diameter 0)
  1617. (color 0 0 0 0)
  1618. (uuid "03b347f5-c8c8-441d-b247-4306c534244a")
  1619. )
  1620. (junction
  1621. (at 163.83 73.66)
  1622. (diameter 0)
  1623. (color 0 0 0 0)
  1624. (uuid "14a9385b-12a0-401d-ad7f-7c14e40938af")
  1625. )
  1626. (junction
  1627. (at 106.68 86.36)
  1628. (diameter 0)
  1629. (color 0 0 0 0)
  1630. (uuid "1dab3639-1729-471d-85eb-7f9b24f746b3")
  1631. )
  1632. (junction
  1633. (at 116.84 88.9)
  1634. (diameter 0)
  1635. (color 0 0 0 0)
  1636. (uuid "20c0576e-65d5-4720-a026-c3d9b3a2f2bc")
  1637. )
  1638. (junction
  1639. (at 106.68 119.38)
  1640. (diameter 0)
  1641. (color 0 0 0 0)
  1642. (uuid "30c26dd8-d448-440c-a8a4-eb8b11e702ef")
  1643. )
  1644. (junction
  1645. (at 176.53 111.76)
  1646. (diameter 0)
  1647. (color 0 0 0 0)
  1648. (uuid "30dd694d-f476-4213-82ff-bd11399210bd")
  1649. )
  1650. (junction
  1651. (at 143.51 63.5)
  1652. (diameter 0)
  1653. (color 0 0 0 0)
  1654. (uuid "4137341a-86f6-4da1-95ea-1c522ed8d2a4")
  1655. )
  1656. (junction
  1657. (at 176.53 106.68)
  1658. (diameter 0)
  1659. (color 0 0 0 0)
  1660. (uuid "78e170f9-8daf-4d94-934e-a63dde8a81d9")
  1661. )
  1662. (junction
  1663. (at 153.67 73.66)
  1664. (diameter 0)
  1665. (color 0 0 0 0)
  1666. (uuid "d054d4f1-8798-4686-a730-74bd34a8e2e2")
  1667. )
  1668. (junction
  1669. (at 186.69 106.68)
  1670. (diameter 0)
  1671. (color 0 0 0 0)
  1672. (uuid "e5fe808b-a647-406a-abc8-f7f657fa2140")
  1673. )
  1674. (junction
  1675. (at 153.67 63.5)
  1676. (diameter 0)
  1677. (color 0 0 0 0)
  1678. (uuid "e8b3429d-5f05-48ec-9851-77124989efb1")
  1679. )
  1680. (wire
  1681. (pts
  1682. (xy 163.83 73.66) (xy 163.83 74.93)
  1683. )
  1684. (stroke
  1685. (width 0)
  1686. (type default)
  1687. )
  1688. (uuid "153293a4-4bae-4c1f-a7bd-27b8e41d1ab3")
  1689. )
  1690. (wire
  1691. (pts
  1692. (xy 198.12 106.68) (xy 199.39 106.68)
  1693. )
  1694. (stroke
  1695. (width 0)
  1696. (type default)
  1697. )
  1698. (uuid "1af0b140-48cc-4d03-a7d4-00a7b074f416")
  1699. )
  1700. (wire
  1701. (pts
  1702. (xy 106.68 109.22) (xy 106.68 110.49)
  1703. )
  1704. (stroke
  1705. (width 0)
  1706. (type default)
  1707. )
  1708. (uuid "1baea021-09a5-4561-b0ee-ee286bd87acb")
  1709. )
  1710. (wire
  1711. (pts
  1712. (xy 156.21 97.79) (xy 152.4 97.79)
  1713. )
  1714. (stroke
  1715. (width 0)
  1716. (type default)
  1717. )
  1718. (uuid "1ee498b5-930e-4a5f-80de-77f37906d407")
  1719. )
  1720. (wire
  1721. (pts
  1722. (xy 153.67 63.5) (xy 153.67 64.77)
  1723. )
  1724. (stroke
  1725. (width 0)
  1726. (type default)
  1727. )
  1728. (uuid "2aefeb86-d9db-4bb7-86f2-12c093717fb2")
  1729. )
  1730. (wire
  1731. (pts
  1732. (xy 116.84 88.9) (xy 121.92 88.9)
  1733. )
  1734. (stroke
  1735. (width 0)
  1736. (type default)
  1737. )
  1738. (uuid "2b3c59f2-da0f-4a8b-a8a6-a9533f2c92ac")
  1739. )
  1740. (wire
  1741. (pts
  1742. (xy 176.53 106.68) (xy 186.69 106.68)
  1743. )
  1744. (stroke
  1745. (width 0)
  1746. (type default)
  1747. )
  1748. (uuid "2b85291d-a22f-4e26-b441-77d2f0f48bb0")
  1749. )
  1750. (wire
  1751. (pts
  1752. (xy 153.67 63.5) (xy 163.83 63.5)
  1753. )
  1754. (stroke
  1755. (width 0)
  1756. (type default)
  1757. )
  1758. (uuid "352b4dfe-1421-47f1-bec0-f05020dee1b1")
  1759. )
  1760. (wire
  1761. (pts
  1762. (xy 80.01 119.38) (xy 86.36 119.38)
  1763. )
  1764. (stroke
  1765. (width 0)
  1766. (type default)
  1767. )
  1768. (uuid "3e60567c-75b2-4142-a47d-a46849425529")
  1769. )
  1770. (wire
  1771. (pts
  1772. (xy 101.6 88.9) (xy 116.84 88.9)
  1773. )
  1774. (stroke
  1775. (width 0)
  1776. (type default)
  1777. )
  1778. (uuid "46022cfc-5462-418c-a6e3-fedfdeabaf80")
  1779. )
  1780. (wire
  1781. (pts
  1782. (xy 208.28 139.7) (xy 209.55 139.7)
  1783. )
  1784. (stroke
  1785. (width 0)
  1786. (type default)
  1787. )
  1788. (uuid "471f46f7-ee6b-4f43-a547-76edd0425236")
  1789. )
  1790. (wire
  1791. (pts
  1792. (xy 116.84 73.66) (xy 116.84 76.2)
  1793. )
  1794. (stroke
  1795. (width 0)
  1796. (type default)
  1797. )
  1798. (uuid "4bfb19e3-c853-4042-acd9-e8a0952b8531")
  1799. )
  1800. (wire
  1801. (pts
  1802. (xy 163.83 64.77) (xy 163.83 63.5)
  1803. )
  1804. (stroke
  1805. (width 0)
  1806. (type default)
  1807. )
  1808. (uuid "5075df55-8c72-4344-9cc2-65c6e98ef38e")
  1809. )
  1810. (wire
  1811. (pts
  1812. (xy 119.38 106.68) (xy 121.92 106.68)
  1813. )
  1814. (stroke
  1815. (width 0)
  1816. (type default)
  1817. )
  1818. (uuid "50f4328a-41ad-4fcd-9800-11d68dbd9e6c")
  1819. )
  1820. (wire
  1821. (pts
  1822. (xy 96.52 119.38) (xy 106.68 119.38)
  1823. )
  1824. (stroke
  1825. (width 0)
  1826. (type default)
  1827. )
  1828. (uuid "53074894-6bdc-474a-b5df-651f99c900d3")
  1829. )
  1830. (wire
  1831. (pts
  1832. (xy 106.68 73.66) (xy 106.68 76.2)
  1833. )
  1834. (stroke
  1835. (width 0)
  1836. (type default)
  1837. )
  1838. (uuid "54253cbe-e7d8-41e6-b28d-c02b5c5afc68")
  1839. )
  1840. (wire
  1841. (pts
  1842. (xy 153.67 73.66) (xy 163.83 73.66)
  1843. )
  1844. (stroke
  1845. (width 0)
  1846. (type default)
  1847. )
  1848. (uuid "57c44fd4-7855-47c9-bf74-abd817c67073")
  1849. )
  1850. (wire
  1851. (pts
  1852. (xy 152.4 119.38) (xy 156.21 119.38)
  1853. )
  1854. (stroke
  1855. (width 0)
  1856. (type default)
  1857. )
  1858. (uuid "60c5f04d-4260-4a55-bd5a-a5bda3890294")
  1859. )
  1860. (wire
  1861. (pts
  1862. (xy 106.68 119.38) (xy 106.68 118.11)
  1863. )
  1864. (stroke
  1865. (width 0)
  1866. (type default)
  1867. )
  1868. (uuid "6b89cedc-601f-411c-b090-2e18dcfe37f3")
  1869. )
  1870. (wire
  1871. (pts
  1872. (xy 101.6 86.36) (xy 106.68 86.36)
  1873. )
  1874. (stroke
  1875. (width 0)
  1876. (type default)
  1877. )
  1878. (uuid "7076e835-008c-423e-b36d-28277b867d58")
  1879. )
  1880. (wire
  1881. (pts
  1882. (xy 137.16 60.96) (xy 137.16 63.5)
  1883. )
  1884. (stroke
  1885. (width 0)
  1886. (type default)
  1887. )
  1888. (uuid "723e66a6-702a-408d-bf62-775edb408f31")
  1889. )
  1890. (wire
  1891. (pts
  1892. (xy 121.92 119.38) (xy 106.68 119.38)
  1893. )
  1894. (stroke
  1895. (width 0)
  1896. (type default)
  1897. )
  1898. (uuid "74c35b4a-855d-4876-af67-c23e848fdaaa")
  1899. )
  1900. (wire
  1901. (pts
  1902. (xy 106.68 83.82) (xy 106.68 86.36)
  1903. )
  1904. (stroke
  1905. (width 0)
  1906. (type default)
  1907. )
  1908. (uuid "7e19a2eb-8383-43af-871a-c47da437f0df")
  1909. )
  1910. (wire
  1911. (pts
  1912. (xy 137.16 63.5) (xy 143.51 63.5)
  1913. )
  1914. (stroke
  1915. (width 0)
  1916. (type default)
  1917. )
  1918. (uuid "801c5c1a-0b1f-4ac3-955b-59adb40d33a7")
  1919. )
  1920. (wire
  1921. (pts
  1922. (xy 153.67 72.39) (xy 153.67 73.66)
  1923. )
  1924. (stroke
  1925. (width 0)
  1926. (type default)
  1927. )
  1928. (uuid "80448fb5-42fd-4a2e-9c75-cb8c3b3bf11b")
  1929. )
  1930. (wire
  1931. (pts
  1932. (xy 156.21 92.71) (xy 152.4 92.71)
  1933. )
  1934. (stroke
  1935. (width 0)
  1936. (type default)
  1937. )
  1938. (uuid "834c539d-278c-42d8-9f13-5f78d100e2b1")
  1939. )
  1940. (wire
  1941. (pts
  1942. (xy 152.4 111.76) (xy 176.53 111.76)
  1943. )
  1944. (stroke
  1945. (width 0)
  1946. (type default)
  1947. )
  1948. (uuid "84c3fa1a-3a82-4e8e-8cb4-15f58f30a32d")
  1949. )
  1950. (wire
  1951. (pts
  1952. (xy 143.51 72.39) (xy 143.51 73.66)
  1953. )
  1954. (stroke
  1955. (width 0)
  1956. (type default)
  1957. )
  1958. (uuid "868dc5c7-84e4-4909-bf46-83a9beef1bf6")
  1959. )
  1960. (wire
  1961. (pts
  1962. (xy 176.53 111.76) (xy 199.39 111.76)
  1963. )
  1964. (stroke
  1965. (width 0)
  1966. (type default)
  1967. )
  1968. (uuid "8881cb5f-cdc4-48b8-951d-6f6819e0c480")
  1969. )
  1970. (wire
  1971. (pts
  1972. (xy 143.51 63.5) (xy 153.67 63.5)
  1973. )
  1974. (stroke
  1975. (width 0)
  1976. (type default)
  1977. )
  1978. (uuid "96388978-72bb-4844-8d7f-51804a3af96d")
  1979. )
  1980. (wire
  1981. (pts
  1982. (xy 137.16 63.5) (xy 137.16 81.28)
  1983. )
  1984. (stroke
  1985. (width 0)
  1986. (type default)
  1987. )
  1988. (uuid "96d5cf20-870d-4ffc-b1fa-155ed425d7b7")
  1989. )
  1990. (wire
  1991. (pts
  1992. (xy 143.51 63.5) (xy 143.51 64.77)
  1993. )
  1994. (stroke
  1995. (width 0)
  1996. (type default)
  1997. )
  1998. (uuid "9a8223ab-283d-4c72-9127-16869bb6deb5")
  1999. )
  2000. (wire
  2001. (pts
  2002. (xy 116.84 83.82) (xy 116.84 88.9)
  2003. )
  2004. (stroke
  2005. (width 0)
  2006. (type default)
  2007. )
  2008. (uuid "9baf4457-d2e9-4e43-a943-97cae023088f")
  2009. )
  2010. (wire
  2011. (pts
  2012. (xy 137.16 127) (xy 137.16 128.27)
  2013. )
  2014. (stroke
  2015. (width 0)
  2016. (type default)
  2017. )
  2018. (uuid "9d870957-0bd0-4be3-94eb-3cbd79d86d46")
  2019. )
  2020. (wire
  2021. (pts
  2022. (xy 163.83 73.66) (xy 163.83 72.39)
  2023. )
  2024. (stroke
  2025. (width 0)
  2026. (type default)
  2027. )
  2028. (uuid "a2a1512a-4f3d-45bd-975b-0972902bed46")
  2029. )
  2030. (wire
  2031. (pts
  2032. (xy 208.28 138.43) (xy 208.28 139.7)
  2033. )
  2034. (stroke
  2035. (width 0)
  2036. (type default)
  2037. )
  2038. (uuid "a2c3d210-487e-4730-9f50-cbe7018a3fb0")
  2039. )
  2040. (wire
  2041. (pts
  2042. (xy 106.68 86.36) (xy 121.92 86.36)
  2043. )
  2044. (stroke
  2045. (width 0)
  2046. (type default)
  2047. )
  2048. (uuid "ab9a4f85-48a9-4190-82dc-c25ca03efb5c")
  2049. )
  2050. (wire
  2051. (pts
  2052. (xy 106.68 119.38) (xy 106.68 120.65)
  2053. )
  2054. (stroke
  2055. (width 0)
  2056. (type default)
  2057. )
  2058. (uuid "adcfe1a5-9d48-4389-8382-6fd2a2154df6")
  2059. )
  2060. (wire
  2061. (pts
  2062. (xy 186.69 105.41) (xy 186.69 106.68)
  2063. )
  2064. (stroke
  2065. (width 0)
  2066. (type default)
  2067. )
  2068. (uuid "b47f96d7-da36-4fa5-9198-81a7bd0f874e")
  2069. )
  2070. (wire
  2071. (pts
  2072. (xy 143.51 73.66) (xy 153.67 73.66)
  2073. )
  2074. (stroke
  2075. (width 0)
  2076. (type default)
  2077. )
  2078. (uuid "bb467870-2af7-4c10-8b0c-58a2abb1c750")
  2079. )
  2080. (wire
  2081. (pts
  2082. (xy 152.4 106.68) (xy 176.53 106.68)
  2083. )
  2084. (stroke
  2085. (width 0)
  2086. (type default)
  2087. )
  2088. (uuid "bd71f133-48f3-42ab-84b3-a7be853c4e8f")
  2089. )
  2090. (wire
  2091. (pts
  2092. (xy 176.53 111.76) (xy 176.53 114.3)
  2093. )
  2094. (stroke
  2095. (width 0)
  2096. (type default)
  2097. )
  2098. (uuid "c95b4b7d-b89a-40e4-bb1f-8fdbf325a85e")
  2099. )
  2100. (wire
  2101. (pts
  2102. (xy 186.69 106.68) (xy 190.5 106.68)
  2103. )
  2104. (stroke
  2105. (width 0)
  2106. (type default)
  2107. )
  2108. (uuid "cc656b2a-32bc-4cbd-a97c-f6a7f1cc36aa")
  2109. )
  2110. (wire
  2111. (pts
  2112. (xy 152.4 121.92) (xy 156.21 121.92)
  2113. )
  2114. (stroke
  2115. (width 0)
  2116. (type default)
  2117. )
  2118. (uuid "d0a95b30-1069-4533-940e-d99d8bf446d2")
  2119. )
  2120. (wire
  2121. (pts
  2122. (xy 106.68 128.27) (xy 106.68 129.54)
  2123. )
  2124. (stroke
  2125. (width 0)
  2126. (type default)
  2127. )
  2128. (uuid "d2db9dcc-f09d-4196-a2c5-730919340801")
  2129. )
  2130. (wire
  2131. (pts
  2132. (xy 156.21 95.25) (xy 152.4 95.25)
  2133. )
  2134. (stroke
  2135. (width 0)
  2136. (type default)
  2137. )
  2138. (uuid "ed11e036-cacd-4aff-9a1f-10c82f8c34de")
  2139. )
  2140. (wire
  2141. (pts
  2142. (xy 186.69 96.52) (xy 186.69 97.79)
  2143. )
  2144. (stroke
  2145. (width 0)
  2146. (type default)
  2147. )
  2148. (uuid "ef12d6e4-caec-415e-9424-fd7249d30f06")
  2149. )
  2150. (wire
  2151. (pts
  2152. (xy 119.38 111.76) (xy 121.92 111.76)
  2153. )
  2154. (stroke
  2155. (width 0)
  2156. (type default)
  2157. )
  2158. (uuid "f3f60c41-82ac-4fee-b445-9a66e133a480")
  2159. )
  2160. (wire
  2161. (pts
  2162. (xy 156.21 100.33) (xy 152.4 100.33)
  2163. )
  2164. (stroke
  2165. (width 0)
  2166. (type default)
  2167. )
  2168. (uuid "f52675ef-aaf7-420e-8e71-f9184e2e2fec")
  2169. )
  2170. (wire
  2171. (pts
  2172. (xy 176.53 104.14) (xy 176.53 106.68)
  2173. )
  2174. (stroke
  2175. (width 0)
  2176. (type default)
  2177. )
  2178. (uuid "f836a71d-cd9c-4302-bf79-830dc8117d52")
  2179. )
  2180. (wire
  2181. (pts
  2182. (xy 111.76 96.52) (xy 121.92 96.52)
  2183. )
  2184. (stroke
  2185. (width 0)
  2186. (type default)
  2187. )
  2188. (uuid "f9d78e19-f4bf-4683-a2c9-b8c347d9ccc2")
  2189. )
  2190. (hierarchical_label "SWITCH_A"
  2191. (shape input)
  2192. (at 101.6 97.79 180)
  2193. (effects
  2194. (font
  2195. (size 1.27 1.27)
  2196. )
  2197. (justify right)
  2198. )
  2199. (uuid "0461ccdb-05c3-4723-b2cc-55f89eeec258")
  2200. )
  2201. (hierarchical_label "LEDS_CHAIN"
  2202. (shape output)
  2203. (at 156.21 121.92 0)
  2204. (effects
  2205. (font
  2206. (size 1.27 1.27)
  2207. )
  2208. (justify left)
  2209. )
  2210. (uuid "077538c0-952a-4a73-8ce8-9520ae891baa")
  2211. )
  2212. (hierarchical_label "SWIO"
  2213. (shape bidirectional)
  2214. (at 101.6 95.25 180)
  2215. (effects
  2216. (font
  2217. (size 1.27 1.27)
  2218. )
  2219. (justify right)
  2220. )
  2221. (uuid "0cbc25a4-3b3c-4d05-8bed-e4055698fbdc")
  2222. )
  2223. (hierarchical_label "INT"
  2224. (shape input)
  2225. (at 119.38 106.68 180)
  2226. (effects
  2227. (font
  2228. (size 1.27 1.27)
  2229. )
  2230. (justify right)
  2231. )
  2232. (uuid "15ce6a0b-bc91-43a7-a7b1-2bacdff87d04")
  2233. )
  2234. (hierarchical_label "TX"
  2235. (shape output)
  2236. (at 199.39 106.68 0)
  2237. (effects
  2238. (font
  2239. (size 1.27 1.27)
  2240. )
  2241. (justify left)
  2242. )
  2243. (uuid "35bcd249-2525-4e16-bf0b-50896b6b124e")
  2244. )
  2245. (hierarchical_label "PWM_M1"
  2246. (shape output)
  2247. (at 156.21 92.71 0)
  2248. (effects
  2249. (font
  2250. (size 1.27 1.27)
  2251. )
  2252. (justify left)
  2253. )
  2254. (uuid "3cbcd707-f114-491b-b402-b0b17630cff6")
  2255. )
  2256. (hierarchical_label "PWM_M4"
  2257. (shape output)
  2258. (at 156.21 100.33 0)
  2259. (effects
  2260. (font
  2261. (size 1.27 1.27)
  2262. )
  2263. (justify left)
  2264. )
  2265. (uuid "53824514-bfa4-4705-a845-5a612c8813d1")
  2266. )
  2267. (hierarchical_label "SDA"
  2268. (shape bidirectional)
  2269. (at 101.6 88.9 180)
  2270. (effects
  2271. (font
  2272. (size 1.27 1.27)
  2273. )
  2274. (justify right)
  2275. )
  2276. (uuid "58cabe78-3735-470f-abc6-45c9768665d8")
  2277. )
  2278. (hierarchical_label "AT"
  2279. (shape output)
  2280. (at 119.38 111.76 180)
  2281. (effects
  2282. (font
  2283. (size 1.27 1.27)
  2284. )
  2285. (justify right)
  2286. )
  2287. (uuid "5cca5661-256c-4973-823d-d17f9e79c9ea")
  2288. )
  2289. (hierarchical_label "PWM_M3"
  2290. (shape output)
  2291. (at -134.62 -22.86 0)
  2292. (effects
  2293. (font
  2294. (size 1.27 1.27)
  2295. )
  2296. (justify left)
  2297. )
  2298. (uuid "6ae03175-01d5-475f-aa38-6d53d5c91ade")
  2299. )
  2300. (hierarchical_label "DISABLE"
  2301. (shape input)
  2302. (at 80.01 119.38 180)
  2303. (effects
  2304. (font
  2305. (size 1.27 1.27)
  2306. )
  2307. (justify right)
  2308. )
  2309. (uuid "75e4fbd2-b615-4421-ba23-3cc6c5a13d41")
  2310. )
  2311. (hierarchical_label "STATUS_LED"
  2312. (shape output)
  2313. (at 156.21 119.38 0)
  2314. (effects
  2315. (font
  2316. (size 1.27 1.27)
  2317. )
  2318. (justify left)
  2319. )
  2320. (uuid "7fc7e02b-e6c8-4c94-8b58-b718ee693167")
  2321. )
  2322. (hierarchical_label "3V3"
  2323. (shape input)
  2324. (at 209.55 139.7 0)
  2325. (effects
  2326. (font
  2327. (size 1.27 1.27)
  2328. )
  2329. (justify left)
  2330. )
  2331. (uuid "a0605134-d537-4a1f-8941-d3ba874bc07e")
  2332. )
  2333. (hierarchical_label "SCL"
  2334. (shape output)
  2335. (at 101.6 86.36 180)
  2336. (effects
  2337. (font
  2338. (size 1.27 1.27)
  2339. )
  2340. (justify right)
  2341. )
  2342. (uuid "b8ca75fc-ddcf-4b8e-ab3f-50b653ea9797")
  2343. )
  2344. (hierarchical_label "PWM_M2"
  2345. (shape output)
  2346. (at 156.21 95.25 0)
  2347. (effects
  2348. (font
  2349. (size 1.27 1.27)
  2350. )
  2351. (justify left)
  2352. )
  2353. (uuid "c6305456-c86b-4651-ad42-dd16979fc11f")
  2354. )
  2355. (hierarchical_label "RX"
  2356. (shape input)
  2357. (at 199.39 111.76 0)
  2358. (effects
  2359. (font
  2360. (size 1.27 1.27)
  2361. )
  2362. (justify left)
  2363. )
  2364. (uuid "e4a72e87-830c-4f6f-8057-fdc20c0e69cc")
  2365. )
  2366. (hierarchical_label "PWM_M3"
  2367. (shape output)
  2368. (at 156.21 97.79 0)
  2369. (effects
  2370. (font
  2371. (size 1.27 1.27)
  2372. )
  2373. (justify left)
  2374. )
  2375. (uuid "f50a9dd8-65df-46e3-8b6b-7d6314b055f5")
  2376. )
  2377. (symbol
  2378. (lib_id "Device:R")
  2379. (at 106.68 114.3 0)
  2380. (unit 1)
  2381. (body_style 1)
  2382. (exclude_from_sim no)
  2383. (in_bom yes)
  2384. (on_board yes)
  2385. (in_pos_files yes)
  2386. (dnp no)
  2387. (uuid "04b94d90-2759-4d9b-b6dc-d59469c2fcf7")
  2388. (property "Reference" "R15"
  2389. (at 108.966 114.3 90)
  2390. (show_name no)
  2391. (do_not_autoplace no)
  2392. (effects
  2393. (font
  2394. (size 1.27 1.27)
  2395. )
  2396. )
  2397. )
  2398. (property "Value" "10k"
  2399. (at 104.394 114.3 90)
  2400. (show_name no)
  2401. (do_not_autoplace no)
  2402. (effects
  2403. (font
  2404. (size 1.27 1.27)
  2405. )
  2406. )
  2407. )
  2408. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  2409. (at 104.902 114.3 90)
  2410. (hide yes)
  2411. (show_name no)
  2412. (do_not_autoplace no)
  2413. (effects
  2414. (font
  2415. (size 1.27 1.27)
  2416. )
  2417. )
  2418. )
  2419. (property "Datasheet" ""
  2420. (at 106.68 114.3 0)
  2421. (hide yes)
  2422. (show_name no)
  2423. (do_not_autoplace no)
  2424. (effects
  2425. (font
  2426. (size 1.27 1.27)
  2427. )
  2428. )
  2429. )
  2430. (property "Description" "Resistor"
  2431. (at 106.68 114.3 0)
  2432. (hide yes)
  2433. (show_name no)
  2434. (do_not_autoplace no)
  2435. (effects
  2436. (font
  2437. (size 1.27 1.27)
  2438. )
  2439. )
  2440. )
  2441. (pin "2"
  2442. (uuid "43770b44-f30a-4511-94ed-6c3146d31f86")
  2443. )
  2444. (pin "1"
  2445. (uuid "763b2b53-6a6c-4eb6-8ff8-e21e416472fc")
  2446. )
  2447. (instances
  2448. (project "cx-copter-schematic"
  2449. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  2450. (reference "R15")
  2451. (unit 1)
  2452. )
  2453. )
  2454. )
  2455. )
  2456. (symbol
  2457. (lib_id "Device:R")
  2458. (at 106.68 80.01 0)
  2459. (unit 1)
  2460. (body_style 1)
  2461. (exclude_from_sim no)
  2462. (in_bom yes)
  2463. (on_board yes)
  2464. (in_pos_files yes)
  2465. (dnp no)
  2466. (uuid "0e0aa206-a965-4521-9d13-604a8aa4f448")
  2467. (property "Reference" "R16"
  2468. (at 108.966 80.01 90)
  2469. (show_name no)
  2470. (do_not_autoplace no)
  2471. (effects
  2472. (font
  2473. (size 1.27 1.27)
  2474. )
  2475. )
  2476. )
  2477. (property "Value" "10k"
  2478. (at 104.394 80.01 90)
  2479. (show_name no)
  2480. (do_not_autoplace no)
  2481. (effects
  2482. (font
  2483. (size 1.27 1.27)
  2484. )
  2485. )
  2486. )
  2487. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  2488. (at 104.902 80.01 90)
  2489. (hide yes)
  2490. (show_name no)
  2491. (do_not_autoplace no)
  2492. (effects
  2493. (font
  2494. (size 1.27 1.27)
  2495. )
  2496. )
  2497. )
  2498. (property "Datasheet" ""
  2499. (at 106.68 80.01 0)
  2500. (hide yes)
  2501. (show_name no)
  2502. (do_not_autoplace no)
  2503. (effects
  2504. (font
  2505. (size 1.27 1.27)
  2506. )
  2507. )
  2508. )
  2509. (property "Description" "Resistor"
  2510. (at 106.68 80.01 0)
  2511. (hide yes)
  2512. (show_name no)
  2513. (do_not_autoplace no)
  2514. (effects
  2515. (font
  2516. (size 1.27 1.27)
  2517. )
  2518. )
  2519. )
  2520. (pin "2"
  2521. (uuid "aa7ca65a-4958-40fe-a2ae-b461ee2980b1")
  2522. )
  2523. (pin "1"
  2524. (uuid "9478be4e-d7dc-4550-ae1a-749a04b88151")
  2525. )
  2526. (instances
  2527. (project "cx-copter-schematic"
  2528. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  2529. (reference "R16")
  2530. (unit 1)
  2531. )
  2532. )
  2533. )
  2534. )
  2535. (symbol
  2536. (lib_id "power:+3V3")
  2537. (at 137.16 60.96 0)
  2538. (unit 1)
  2539. (body_style 1)
  2540. (exclude_from_sim no)
  2541. (in_bom yes)
  2542. (on_board yes)
  2543. (in_pos_files yes)
  2544. (dnp no)
  2545. (fields_autoplaced yes)
  2546. (uuid "183a606d-f543-4838-aa10-54f17a2b9f5a")
  2547. (property "Reference" "#PWR021"
  2548. (at 137.16 64.77 0)
  2549. (hide yes)
  2550. (show_name no)
  2551. (do_not_autoplace no)
  2552. (effects
  2553. (font
  2554. (size 1.27 1.27)
  2555. )
  2556. )
  2557. )
  2558. (property "Value" "+3V3"
  2559. (at 137.16 55.88 0)
  2560. (show_name no)
  2561. (do_not_autoplace no)
  2562. (effects
  2563. (font
  2564. (size 1.27 1.27)
  2565. )
  2566. )
  2567. )
  2568. (property "Footprint" ""
  2569. (at 137.16 60.96 0)
  2570. (hide yes)
  2571. (show_name no)
  2572. (do_not_autoplace no)
  2573. (effects
  2574. (font
  2575. (size 1.27 1.27)
  2576. )
  2577. )
  2578. )
  2579. (property "Datasheet" ""
  2580. (at 137.16 60.96 0)
  2581. (hide yes)
  2582. (show_name no)
  2583. (do_not_autoplace no)
  2584. (effects
  2585. (font
  2586. (size 1.27 1.27)
  2587. )
  2588. )
  2589. )
  2590. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  2591. (at 137.16 60.96 0)
  2592. (hide yes)
  2593. (show_name no)
  2594. (do_not_autoplace no)
  2595. (effects
  2596. (font
  2597. (size 1.27 1.27)
  2598. )
  2599. )
  2600. )
  2601. (pin "1"
  2602. (uuid "ffb8a2e1-9759-42b6-86ec-0f0ea04d9efa")
  2603. )
  2604. (instances
  2605. (project "cx-copter-schematic"
  2606. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  2607. (reference "#PWR021")
  2608. (unit 1)
  2609. )
  2610. )
  2611. )
  2612. )
  2613. (symbol
  2614. (lib_id "Device:C")
  2615. (at 143.51 68.58 0)
  2616. (unit 1)
  2617. (body_style 1)
  2618. (exclude_from_sim no)
  2619. (in_bom yes)
  2620. (on_board yes)
  2621. (in_pos_files yes)
  2622. (dnp no)
  2623. (uuid "20c27e32-7be8-49ba-83a2-733eb8b2cf34")
  2624. (property "Reference" "C5"
  2625. (at 144.018 66.548 0)
  2626. (show_name no)
  2627. (do_not_autoplace no)
  2628. (effects
  2629. (font
  2630. (size 1.27 1.27)
  2631. )
  2632. (justify left)
  2633. )
  2634. )
  2635. (property "Value" "10u"
  2636. (at 144.272 70.866 0)
  2637. (show_name no)
  2638. (do_not_autoplace no)
  2639. (effects
  2640. (font
  2641. (size 1.27 1.27)
  2642. )
  2643. (justify left)
  2644. )
  2645. )
  2646. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  2647. (at 144.4752 72.39 0)
  2648. (hide yes)
  2649. (show_name no)
  2650. (do_not_autoplace no)
  2651. (effects
  2652. (font
  2653. (size 1.27 1.27)
  2654. )
  2655. )
  2656. )
  2657. (property "Datasheet" ""
  2658. (at 143.51 68.58 0)
  2659. (hide yes)
  2660. (show_name no)
  2661. (do_not_autoplace no)
  2662. (effects
  2663. (font
  2664. (size 1.27 1.27)
  2665. )
  2666. )
  2667. )
  2668. (property "Description" "Unpolarized capacitor"
  2669. (at 143.51 68.58 0)
  2670. (hide yes)
  2671. (show_name no)
  2672. (do_not_autoplace no)
  2673. (effects
  2674. (font
  2675. (size 1.27 1.27)
  2676. )
  2677. )
  2678. )
  2679. (pin "1"
  2680. (uuid "dc009e43-28e0-4ebe-88ad-e093b7b464dd")
  2681. )
  2682. (pin "2"
  2683. (uuid "8618d872-3651-4145-bbde-b10b17461200")
  2684. )
  2685. (instances
  2686. (project "cx-copter-schematic"
  2687. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  2688. (reference "C5")
  2689. (unit 1)
  2690. )
  2691. )
  2692. )
  2693. )
  2694. (symbol
  2695. (lib_id "MCU_WCH_RiscV:CH32V003AxMx")
  2696. (at 137.16 104.14 0)
  2697. (unit 1)
  2698. (body_style 1)
  2699. (exclude_from_sim no)
  2700. (in_bom yes)
  2701. (on_board yes)
  2702. (in_pos_files yes)
  2703. (dnp no)
  2704. (uuid "276e7963-7bd4-4d46-93fa-b2df2877a161")
  2705. (property "Reference" "U2"
  2706. (at 124.206 82.804 0)
  2707. (show_name no)
  2708. (do_not_autoplace no)
  2709. (effects
  2710. (font
  2711. (size 1.27 1.27)
  2712. )
  2713. (justify left)
  2714. )
  2715. )
  2716. (property "Value" "CH32V003AxMx"
  2717. (at 138.43 82.804 0)
  2718. (show_name no)
  2719. (do_not_autoplace no)
  2720. (effects
  2721. (font
  2722. (size 1.27 1.27)
  2723. )
  2724. (justify left)
  2725. )
  2726. )
  2727. (property "Footprint" "Package_SO:STC_SOP-16_3.9x9.9mm_P1.27mm"
  2728. (at 134.62 104.14 0)
  2729. (hide yes)
  2730. (show_name no)
  2731. (do_not_autoplace no)
  2732. (effects
  2733. (font
  2734. (size 1.27 1.27)
  2735. )
  2736. )
  2737. )
  2738. (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
  2739. (at 134.62 104.14 0)
  2740. (hide yes)
  2741. (show_name no)
  2742. (do_not_autoplace no)
  2743. (effects
  2744. (font
  2745. (size 1.27 1.27)
  2746. )
  2747. )
  2748. )
  2749. (property "Description" "CH32V003 series are industrial-grade general-purpose microcontrollers designed based on 32-bit RISC-V instruction set and architecture. It adopts QingKe V2A core, RV32EC instruction set, and supports 2 levels of interrupt nesting. The series are mounted with rich peripheral interfaces and function modules. Its internal organizational structure meets the low-cost and low-power embedded application scenarios."
  2750. (at 137.16 104.14 0)
  2751. (hide yes)
  2752. (show_name no)
  2753. (do_not_autoplace no)
  2754. (effects
  2755. (font
  2756. (size 1.27 1.27)
  2757. )
  2758. )
  2759. )
  2760. (pin "4"
  2761. (uuid "e7b2ada0-c62d-4b14-9b75-8c53f1eb4716")
  2762. )
  2763. (pin "1"
  2764. (uuid "940714fd-426d-4f12-93d1-0b3a1210f0af")
  2765. )
  2766. (pin "5"
  2767. (uuid "a5da780c-bb45-4001-8e5e-76d2f78a59cf")
  2768. )
  2769. (pin "6"
  2770. (uuid "7034b316-1e95-45af-b05c-18734858c5c4")
  2771. )
  2772. (pin "3"
  2773. (uuid "2fec0f6a-1144-428a-b667-bfef4ac23baa")
  2774. )
  2775. (pin "7"
  2776. (uuid "118b345d-9e94-49d1-86d8-33e31c913d8a")
  2777. )
  2778. (pin "2"
  2779. (uuid "3b80cfe5-160d-4b37-872f-fd4ae87fcc25")
  2780. )
  2781. (pin "14"
  2782. (uuid "39f289dd-9f05-49c7-9b04-4e6e425780a2")
  2783. )
  2784. (pin "15"
  2785. (uuid "0cd5ee3f-0e58-49f6-8f69-e68bb0a816b9")
  2786. )
  2787. (pin "16"
  2788. (uuid "c80478dd-b6a7-4724-a242-ee65af440e21")
  2789. )
  2790. (pin "8"
  2791. (uuid "7cf2552b-f9dd-4c96-9971-94646f467340")
  2792. )
  2793. (pin "9"
  2794. (uuid "d818ba73-83d4-4360-afd7-54084aee9db0")
  2795. )
  2796. (pin "10"
  2797. (uuid "af7d414e-9619-4260-ae4c-d9196c8ad042")
  2798. )
  2799. (pin "11"
  2800. (uuid "63d7b19f-902f-41ad-9739-5b6dd3424be6")
  2801. )
  2802. (pin "12"
  2803. (uuid "d41cdd30-7e2a-47a0-9a84-5eba207d15fb")
  2804. )
  2805. (pin "13"
  2806. (uuid "2ce15938-e614-484f-b74b-74cf85d5b662")
  2807. )
  2808. (instances
  2809. (project "cx-copter-schematic"
  2810. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  2811. (reference "U2")
  2812. (unit 1)
  2813. )
  2814. )
  2815. )
  2816. )
  2817. (symbol
  2818. (lib_id "Device:R")
  2819. (at 186.69 101.6 0)
  2820. (unit 1)
  2821. (body_style 1)
  2822. (exclude_from_sim no)
  2823. (in_bom yes)
  2824. (on_board yes)
  2825. (in_pos_files yes)
  2826. (dnp no)
  2827. (uuid "28d6cf8c-30d1-4b25-a6f3-11b94e332003")
  2828. (property "Reference" "R22"
  2829. (at 188.976 101.6 90)
  2830. (show_name no)
  2831. (do_not_autoplace no)
  2832. (effects
  2833. (font
  2834. (size 1.27 1.27)
  2835. )
  2836. )
  2837. )
  2838. (property "Value" "10k"
  2839. (at 184.404 101.6 90)
  2840. (show_name no)
  2841. (do_not_autoplace no)
  2842. (effects
  2843. (font
  2844. (size 1.27 1.27)
  2845. )
  2846. )
  2847. )
  2848. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  2849. (at 184.912 101.6 90)
  2850. (hide yes)
  2851. (show_name no)
  2852. (do_not_autoplace no)
  2853. (effects
  2854. (font
  2855. (size 1.27 1.27)
  2856. )
  2857. )
  2858. )
  2859. (property "Datasheet" ""
  2860. (at 186.69 101.6 0)
  2861. (hide yes)
  2862. (show_name no)
  2863. (do_not_autoplace no)
  2864. (effects
  2865. (font
  2866. (size 1.27 1.27)
  2867. )
  2868. )
  2869. )
  2870. (property "Description" "Resistor"
  2871. (at 186.69 101.6 0)
  2872. (hide yes)
  2873. (show_name no)
  2874. (do_not_autoplace no)
  2875. (effects
  2876. (font
  2877. (size 1.27 1.27)
  2878. )
  2879. )
  2880. )
  2881. (pin "2"
  2882. (uuid "01ab856f-8a9e-42a2-a2bd-4c7d3631db65")
  2883. )
  2884. (pin "1"
  2885. (uuid "5b3534be-a4d0-4a77-b7e2-5de919cd4b2f")
  2886. )
  2887. (instances
  2888. (project "cx-copter-schematic"
  2889. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  2890. (reference "R22")
  2891. (unit 1)
  2892. )
  2893. )
  2894. )
  2895. )
  2896. (symbol
  2897. (lib_id "Connector_Generic:Conn_01x03")
  2898. (at 106.68 96.52 0)
  2899. (unit 1)
  2900. (body_style 1)
  2901. (exclude_from_sim no)
  2902. (in_bom yes)
  2903. (on_board yes)
  2904. (in_pos_files yes)
  2905. (dnp no)
  2906. (uuid "2e357953-22fa-4c29-8d05-7d4b418b3ead")
  2907. (property "Reference" "J1"
  2908. (at 106.68 92.964 0)
  2909. (show_name no)
  2910. (do_not_autoplace no)
  2911. (effects
  2912. (font
  2913. (size 1.27 1.27)
  2914. )
  2915. )
  2916. )
  2917. (property "Value" "SELECTOR"
  2918. (at 106.68 100.33 0)
  2919. (show_name no)
  2920. (do_not_autoplace no)
  2921. (effects
  2922. (font
  2923. (size 1.27 1.27)
  2924. )
  2925. )
  2926. )
  2927. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical"
  2928. (at 106.68 96.52 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. (property "Datasheet" ""
  2939. (at 106.68 96.52 0)
  2940. (hide yes)
  2941. (show_name no)
  2942. (do_not_autoplace no)
  2943. (effects
  2944. (font
  2945. (size 1.27 1.27)
  2946. )
  2947. )
  2948. )
  2949. (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
  2950. (at 106.68 96.52 0)
  2951. (hide yes)
  2952. (show_name no)
  2953. (do_not_autoplace no)
  2954. (effects
  2955. (font
  2956. (size 1.27 1.27)
  2957. )
  2958. )
  2959. )
  2960. (pin "3"
  2961. (uuid "7a30ae29-8fa9-428e-ae85-de313ae328ba")
  2962. )
  2963. (pin "2"
  2964. (uuid "eb270387-e282-4dbe-8b74-983ca56e1309")
  2965. )
  2966. (pin "1"
  2967. (uuid "50eaf7d0-9b27-4e93-b521-432f080c8510")
  2968. )
  2969. (instances
  2970. (project "cx-copter-schematic"
  2971. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  2972. (reference "J1")
  2973. (unit 1)
  2974. )
  2975. )
  2976. )
  2977. )
  2978. (symbol
  2979. (lib_id "Device:C")
  2980. (at 106.68 124.46 0)
  2981. (unit 1)
  2982. (body_style 1)
  2983. (exclude_from_sim no)
  2984. (in_bom yes)
  2985. (on_board yes)
  2986. (in_pos_files yes)
  2987. (dnp no)
  2988. (uuid "3eb50d77-1d17-4612-9a47-1b6f901c13cd")
  2989. (property "Reference" "C24"
  2990. (at 107.188 122.428 0)
  2991. (show_name no)
  2992. (do_not_autoplace no)
  2993. (effects
  2994. (font
  2995. (size 1.27 1.27)
  2996. )
  2997. (justify left)
  2998. )
  2999. )
  3000. (property "Value" "100n"
  3001. (at 107.442 126.746 0)
  3002. (show_name no)
  3003. (do_not_autoplace no)
  3004. (effects
  3005. (font
  3006. (size 1.27 1.27)
  3007. )
  3008. (justify left)
  3009. )
  3010. )
  3011. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  3012. (at 107.6452 128.27 0)
  3013. (hide yes)
  3014. (show_name no)
  3015. (do_not_autoplace no)
  3016. (effects
  3017. (font
  3018. (size 1.27 1.27)
  3019. )
  3020. )
  3021. )
  3022. (property "Datasheet" ""
  3023. (at 106.68 124.46 0)
  3024. (hide yes)
  3025. (show_name no)
  3026. (do_not_autoplace no)
  3027. (effects
  3028. (font
  3029. (size 1.27 1.27)
  3030. )
  3031. )
  3032. )
  3033. (property "Description" "Unpolarized capacitor"
  3034. (at 106.68 124.46 0)
  3035. (hide yes)
  3036. (show_name no)
  3037. (do_not_autoplace no)
  3038. (effects
  3039. (font
  3040. (size 1.27 1.27)
  3041. )
  3042. )
  3043. )
  3044. (pin "1"
  3045. (uuid "13ce4e94-fa2c-458d-8839-9cc0af549abb")
  3046. )
  3047. (pin "2"
  3048. (uuid "12b0ad62-7e1d-4038-bbf4-71e9fb60a144")
  3049. )
  3050. (instances
  3051. (project "cx-copter-schematic"
  3052. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3053. (reference "C24")
  3054. (unit 1)
  3055. )
  3056. )
  3057. )
  3058. )
  3059. (symbol
  3060. (lib_id "Connector:TestPoint_Probe")
  3061. (at 176.53 114.3 180)
  3062. (unit 1)
  3063. (body_style 1)
  3064. (exclude_from_sim no)
  3065. (in_bom yes)
  3066. (on_board yes)
  3067. (in_pos_files yes)
  3068. (dnp no)
  3069. (uuid "4a7ef7a9-2b03-41ae-98f5-2e1269fa431b")
  3070. (property "Reference" "TP14"
  3071. (at 181.61 117.348 0)
  3072. (show_name no)
  3073. (do_not_autoplace no)
  3074. (effects
  3075. (font
  3076. (size 1.27 1.27)
  3077. )
  3078. (justify left)
  3079. )
  3080. )
  3081. (property "Value" "RX"
  3082. (at 179.324 115.316 0)
  3083. (show_name no)
  3084. (do_not_autoplace no)
  3085. (effects
  3086. (font
  3087. (size 1.27 1.27)
  3088. )
  3089. (justify left)
  3090. )
  3091. )
  3092. (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm"
  3093. (at 171.45 114.3 0)
  3094. (hide yes)
  3095. (show_name no)
  3096. (do_not_autoplace no)
  3097. (effects
  3098. (font
  3099. (size 1.27 1.27)
  3100. )
  3101. )
  3102. )
  3103. (property "Datasheet" ""
  3104. (at 171.45 114.3 0)
  3105. (hide yes)
  3106. (show_name no)
  3107. (do_not_autoplace no)
  3108. (effects
  3109. (font
  3110. (size 1.27 1.27)
  3111. )
  3112. )
  3113. )
  3114. (property "Description" "test point (alternative probe-style design)"
  3115. (at 176.53 114.3 0)
  3116. (hide yes)
  3117. (show_name no)
  3118. (do_not_autoplace no)
  3119. (effects
  3120. (font
  3121. (size 1.27 1.27)
  3122. )
  3123. )
  3124. )
  3125. (pin "1"
  3126. (uuid "f63939b0-ef0b-413c-9279-397994653dc8")
  3127. )
  3128. (instances
  3129. (project "cx-copter-schematic"
  3130. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3131. (reference "TP14")
  3132. (unit 1)
  3133. )
  3134. )
  3135. )
  3136. )
  3137. (symbol
  3138. (lib_id "power:GND")
  3139. (at 137.16 128.27 0)
  3140. (unit 1)
  3141. (body_style 1)
  3142. (exclude_from_sim no)
  3143. (in_bom yes)
  3144. (on_board yes)
  3145. (in_pos_files yes)
  3146. (dnp no)
  3147. (fields_autoplaced yes)
  3148. (uuid "4faab902-e356-4384-bd8b-312c03cc2528")
  3149. (property "Reference" "#PWR023"
  3150. (at 137.16 134.62 0)
  3151. (hide yes)
  3152. (show_name no)
  3153. (do_not_autoplace no)
  3154. (effects
  3155. (font
  3156. (size 1.27 1.27)
  3157. )
  3158. )
  3159. )
  3160. (property "Value" "GND"
  3161. (at 137.16 133.35 0)
  3162. (show_name no)
  3163. (do_not_autoplace no)
  3164. (effects
  3165. (font
  3166. (size 1.27 1.27)
  3167. )
  3168. )
  3169. )
  3170. (property "Footprint" ""
  3171. (at 137.16 128.27 0)
  3172. (hide yes)
  3173. (show_name no)
  3174. (do_not_autoplace no)
  3175. (effects
  3176. (font
  3177. (size 1.27 1.27)
  3178. )
  3179. )
  3180. )
  3181. (property "Datasheet" ""
  3182. (at 137.16 128.27 0)
  3183. (hide yes)
  3184. (show_name no)
  3185. (do_not_autoplace no)
  3186. (effects
  3187. (font
  3188. (size 1.27 1.27)
  3189. )
  3190. )
  3191. )
  3192. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3193. (at 137.16 128.27 0)
  3194. (hide yes)
  3195. (show_name no)
  3196. (do_not_autoplace no)
  3197. (effects
  3198. (font
  3199. (size 1.27 1.27)
  3200. )
  3201. )
  3202. )
  3203. (pin "1"
  3204. (uuid "9af1ae6f-4b14-4911-974a-ff935917bacb")
  3205. )
  3206. (instances
  3207. (project "cx-copter-schematic"
  3208. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3209. (reference "#PWR023")
  3210. (unit 1)
  3211. )
  3212. )
  3213. )
  3214. )
  3215. (symbol
  3216. (lib_id "power:+3V3")
  3217. (at 106.68 109.22 0)
  3218. (unit 1)
  3219. (body_style 1)
  3220. (exclude_from_sim no)
  3221. (in_bom yes)
  3222. (on_board yes)
  3223. (in_pos_files yes)
  3224. (dnp no)
  3225. (uuid "4fdf910f-0b1a-4577-a538-28c650924a65")
  3226. (property "Reference" "#PWR022"
  3227. (at 106.68 113.03 0)
  3228. (hide yes)
  3229. (show_name no)
  3230. (do_not_autoplace no)
  3231. (effects
  3232. (font
  3233. (size 1.27 1.27)
  3234. )
  3235. )
  3236. )
  3237. (property "Value" "+3V3"
  3238. (at 106.172 105.664 0)
  3239. (show_name no)
  3240. (do_not_autoplace no)
  3241. (effects
  3242. (font
  3243. (size 1.27 1.27)
  3244. )
  3245. )
  3246. )
  3247. (property "Footprint" ""
  3248. (at 106.68 109.22 0)
  3249. (hide yes)
  3250. (show_name no)
  3251. (do_not_autoplace no)
  3252. (effects
  3253. (font
  3254. (size 1.27 1.27)
  3255. )
  3256. )
  3257. )
  3258. (property "Datasheet" ""
  3259. (at 106.68 109.22 0)
  3260. (hide yes)
  3261. (show_name no)
  3262. (do_not_autoplace no)
  3263. (effects
  3264. (font
  3265. (size 1.27 1.27)
  3266. )
  3267. )
  3268. )
  3269. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  3270. (at 106.68 109.22 0)
  3271. (hide yes)
  3272. (show_name no)
  3273. (do_not_autoplace no)
  3274. (effects
  3275. (font
  3276. (size 1.27 1.27)
  3277. )
  3278. )
  3279. )
  3280. (pin "1"
  3281. (uuid "3d187b35-62d7-401c-8a34-bdc70f7a7e99")
  3282. )
  3283. (instances
  3284. (project "cx-copter-schematic"
  3285. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3286. (reference "#PWR022")
  3287. (unit 1)
  3288. )
  3289. )
  3290. )
  3291. )
  3292. (symbol
  3293. (lib_id "Device:R")
  3294. (at 194.31 106.68 90)
  3295. (unit 1)
  3296. (body_style 1)
  3297. (exclude_from_sim no)
  3298. (in_bom yes)
  3299. (on_board yes)
  3300. (in_pos_files yes)
  3301. (dnp no)
  3302. (uuid "534cc657-09e7-441f-89a3-283e04acdc4e")
  3303. (property "Reference" "R31"
  3304. (at 192.278 104.648 90)
  3305. (show_name no)
  3306. (do_not_autoplace no)
  3307. (effects
  3308. (font
  3309. (size 1.27 1.27)
  3310. )
  3311. (justify right)
  3312. )
  3313. )
  3314. (property "Value" "100R"
  3315. (at 191.77 108.712 90)
  3316. (show_name no)
  3317. (do_not_autoplace no)
  3318. (effects
  3319. (font
  3320. (size 1.27 1.27)
  3321. )
  3322. (justify right)
  3323. )
  3324. )
  3325. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  3326. (at 194.31 108.458 90)
  3327. (hide yes)
  3328. (show_name no)
  3329. (do_not_autoplace no)
  3330. (effects
  3331. (font
  3332. (size 1.27 1.27)
  3333. )
  3334. )
  3335. )
  3336. (property "Datasheet" ""
  3337. (at 194.31 106.68 0)
  3338. (hide yes)
  3339. (show_name no)
  3340. (do_not_autoplace no)
  3341. (effects
  3342. (font
  3343. (size 1.27 1.27)
  3344. )
  3345. )
  3346. )
  3347. (property "Description" "Resistor"
  3348. (at 194.31 106.68 0)
  3349. (hide yes)
  3350. (show_name no)
  3351. (do_not_autoplace no)
  3352. (effects
  3353. (font
  3354. (size 1.27 1.27)
  3355. )
  3356. )
  3357. )
  3358. (pin "2"
  3359. (uuid "dce9dcba-5406-476e-ab56-da587772e4f1")
  3360. )
  3361. (pin "1"
  3362. (uuid "1efea94c-b389-4da8-b1ee-ec869b22a61a")
  3363. )
  3364. (instances
  3365. (project "cx-copter-schematic"
  3366. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3367. (reference "R31")
  3368. (unit 1)
  3369. )
  3370. )
  3371. )
  3372. )
  3373. (symbol
  3374. (lib_id "power:GND")
  3375. (at 106.68 129.54 0)
  3376. (unit 1)
  3377. (body_style 1)
  3378. (exclude_from_sim no)
  3379. (in_bom yes)
  3380. (on_board yes)
  3381. (in_pos_files yes)
  3382. (dnp no)
  3383. (fields_autoplaced yes)
  3384. (uuid "5a1f3536-047e-47aa-a7b3-1d76124c7116")
  3385. (property "Reference" "#PWR084"
  3386. (at 106.68 135.89 0)
  3387. (hide yes)
  3388. (show_name no)
  3389. (do_not_autoplace no)
  3390. (effects
  3391. (font
  3392. (size 1.27 1.27)
  3393. )
  3394. )
  3395. )
  3396. (property "Value" "GND"
  3397. (at 106.68 134.62 0)
  3398. (show_name no)
  3399. (do_not_autoplace no)
  3400. (effects
  3401. (font
  3402. (size 1.27 1.27)
  3403. )
  3404. )
  3405. )
  3406. (property "Footprint" ""
  3407. (at 106.68 129.54 0)
  3408. (hide yes)
  3409. (show_name no)
  3410. (do_not_autoplace no)
  3411. (effects
  3412. (font
  3413. (size 1.27 1.27)
  3414. )
  3415. )
  3416. )
  3417. (property "Datasheet" ""
  3418. (at 106.68 129.54 0)
  3419. (hide yes)
  3420. (show_name no)
  3421. (do_not_autoplace no)
  3422. (effects
  3423. (font
  3424. (size 1.27 1.27)
  3425. )
  3426. )
  3427. )
  3428. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3429. (at 106.68 129.54 0)
  3430. (hide yes)
  3431. (show_name no)
  3432. (do_not_autoplace no)
  3433. (effects
  3434. (font
  3435. (size 1.27 1.27)
  3436. )
  3437. )
  3438. )
  3439. (pin "1"
  3440. (uuid "370cb368-d6ac-4f20-a866-9304816106c6")
  3441. )
  3442. (instances
  3443. (project "cx-copter-schematic"
  3444. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3445. (reference "#PWR084")
  3446. (unit 1)
  3447. )
  3448. )
  3449. )
  3450. )
  3451. (symbol
  3452. (lib_id "Connector:TestPoint_Probe")
  3453. (at 176.53 104.14 0)
  3454. (unit 1)
  3455. (body_style 1)
  3456. (exclude_from_sim no)
  3457. (in_bom yes)
  3458. (on_board yes)
  3459. (in_pos_files yes)
  3460. (dnp no)
  3461. (uuid "5a895912-40b1-482d-b471-5f93ec792d1c")
  3462. (property "Reference" "TP15"
  3463. (at 173.228 101.092 0)
  3464. (show_name no)
  3465. (do_not_autoplace no)
  3466. (effects
  3467. (font
  3468. (size 1.27 1.27)
  3469. )
  3470. (justify left)
  3471. )
  3472. )
  3473. (property "Value" "TX"
  3474. (at 173.228 103.124 0)
  3475. (show_name no)
  3476. (do_not_autoplace no)
  3477. (effects
  3478. (font
  3479. (size 1.27 1.27)
  3480. )
  3481. (justify left)
  3482. )
  3483. )
  3484. (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm"
  3485. (at 181.61 104.14 0)
  3486. (hide yes)
  3487. (show_name no)
  3488. (do_not_autoplace no)
  3489. (effects
  3490. (font
  3491. (size 1.27 1.27)
  3492. )
  3493. )
  3494. )
  3495. (property "Datasheet" ""
  3496. (at 181.61 104.14 0)
  3497. (hide yes)
  3498. (show_name no)
  3499. (do_not_autoplace no)
  3500. (effects
  3501. (font
  3502. (size 1.27 1.27)
  3503. )
  3504. )
  3505. )
  3506. (property "Description" "test point (alternative probe-style design)"
  3507. (at 176.53 104.14 0)
  3508. (hide yes)
  3509. (show_name no)
  3510. (do_not_autoplace no)
  3511. (effects
  3512. (font
  3513. (size 1.27 1.27)
  3514. )
  3515. )
  3516. )
  3517. (pin "1"
  3518. (uuid "a7690f3a-03df-4525-8cd3-ac44c955ba3d")
  3519. )
  3520. (instances
  3521. (project "cx-copter-schematic"
  3522. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3523. (reference "TP15")
  3524. (unit 1)
  3525. )
  3526. )
  3527. )
  3528. )
  3529. (symbol
  3530. (lib_id "power:+3V3")
  3531. (at 106.68 73.66 0)
  3532. (unit 1)
  3533. (body_style 1)
  3534. (exclude_from_sim no)
  3535. (in_bom yes)
  3536. (on_board yes)
  3537. (in_pos_files yes)
  3538. (dnp no)
  3539. (fields_autoplaced yes)
  3540. (uuid "5b050197-dc91-45ea-91f8-6bfc4977b325")
  3541. (property "Reference" "#PWR025"
  3542. (at 106.68 77.47 0)
  3543. (hide yes)
  3544. (show_name no)
  3545. (do_not_autoplace no)
  3546. (effects
  3547. (font
  3548. (size 1.27 1.27)
  3549. )
  3550. )
  3551. )
  3552. (property "Value" "+3V3"
  3553. (at 106.68 68.58 0)
  3554. (show_name no)
  3555. (do_not_autoplace no)
  3556. (effects
  3557. (font
  3558. (size 1.27 1.27)
  3559. )
  3560. )
  3561. )
  3562. (property "Footprint" ""
  3563. (at 106.68 73.66 0)
  3564. (hide yes)
  3565. (show_name no)
  3566. (do_not_autoplace no)
  3567. (effects
  3568. (font
  3569. (size 1.27 1.27)
  3570. )
  3571. )
  3572. )
  3573. (property "Datasheet" ""
  3574. (at 106.68 73.66 0)
  3575. (hide yes)
  3576. (show_name no)
  3577. (do_not_autoplace no)
  3578. (effects
  3579. (font
  3580. (size 1.27 1.27)
  3581. )
  3582. )
  3583. )
  3584. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  3585. (at 106.68 73.66 0)
  3586. (hide yes)
  3587. (show_name no)
  3588. (do_not_autoplace no)
  3589. (effects
  3590. (font
  3591. (size 1.27 1.27)
  3592. )
  3593. )
  3594. )
  3595. (pin "1"
  3596. (uuid "89829f48-19e0-40eb-9e95-9b6eed139d43")
  3597. )
  3598. (instances
  3599. (project "cx-copter-schematic"
  3600. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3601. (reference "#PWR025")
  3602. (unit 1)
  3603. )
  3604. )
  3605. )
  3606. )
  3607. (symbol
  3608. (lib_id "Device:C")
  3609. (at 163.83 68.58 0)
  3610. (unit 1)
  3611. (body_style 1)
  3612. (exclude_from_sim no)
  3613. (in_bom yes)
  3614. (on_board yes)
  3615. (in_pos_files yes)
  3616. (dnp no)
  3617. (uuid "6a2ac641-4915-4910-a54a-01aa43f6936b")
  3618. (property "Reference" "C7"
  3619. (at 164.338 66.548 0)
  3620. (show_name no)
  3621. (do_not_autoplace no)
  3622. (effects
  3623. (font
  3624. (size 1.27 1.27)
  3625. )
  3626. (justify left)
  3627. )
  3628. )
  3629. (property "Value" "100n"
  3630. (at 164.592 70.866 0)
  3631. (show_name no)
  3632. (do_not_autoplace no)
  3633. (effects
  3634. (font
  3635. (size 1.27 1.27)
  3636. )
  3637. (justify left)
  3638. )
  3639. )
  3640. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  3641. (at 164.7952 72.39 0)
  3642. (hide yes)
  3643. (show_name no)
  3644. (do_not_autoplace no)
  3645. (effects
  3646. (font
  3647. (size 1.27 1.27)
  3648. )
  3649. )
  3650. )
  3651. (property "Datasheet" ""
  3652. (at 163.83 68.58 0)
  3653. (hide yes)
  3654. (show_name no)
  3655. (do_not_autoplace no)
  3656. (effects
  3657. (font
  3658. (size 1.27 1.27)
  3659. )
  3660. )
  3661. )
  3662. (property "Description" "Unpolarized capacitor"
  3663. (at 163.83 68.58 0)
  3664. (hide yes)
  3665. (show_name no)
  3666. (do_not_autoplace no)
  3667. (effects
  3668. (font
  3669. (size 1.27 1.27)
  3670. )
  3671. )
  3672. )
  3673. (pin "1"
  3674. (uuid "2bb25451-ee57-4e38-97bc-d260d3f388cf")
  3675. )
  3676. (pin "2"
  3677. (uuid "b704bfff-dfda-4d76-8734-e54fa0c2842e")
  3678. )
  3679. (instances
  3680. (project "cx-copter-schematic"
  3681. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3682. (reference "C7")
  3683. (unit 1)
  3684. )
  3685. )
  3686. )
  3687. )
  3688. (symbol
  3689. (lib_id "power:+3V3")
  3690. (at 186.69 96.52 0)
  3691. (unit 1)
  3692. (body_style 1)
  3693. (exclude_from_sim no)
  3694. (in_bom yes)
  3695. (on_board yes)
  3696. (in_pos_files yes)
  3697. (dnp no)
  3698. (fields_autoplaced yes)
  3699. (uuid "7337f5d6-6429-4d5c-83f7-11b4c1eed610")
  3700. (property "Reference" "#PWR074"
  3701. (at 186.69 100.33 0)
  3702. (hide yes)
  3703. (show_name no)
  3704. (do_not_autoplace no)
  3705. (effects
  3706. (font
  3707. (size 1.27 1.27)
  3708. )
  3709. )
  3710. )
  3711. (property "Value" "+3V3"
  3712. (at 186.69 91.44 0)
  3713. (show_name no)
  3714. (do_not_autoplace no)
  3715. (effects
  3716. (font
  3717. (size 1.27 1.27)
  3718. )
  3719. )
  3720. )
  3721. (property "Footprint" ""
  3722. (at 186.69 96.52 0)
  3723. (hide yes)
  3724. (show_name no)
  3725. (do_not_autoplace no)
  3726. (effects
  3727. (font
  3728. (size 1.27 1.27)
  3729. )
  3730. )
  3731. )
  3732. (property "Datasheet" ""
  3733. (at 186.69 96.52 0)
  3734. (hide yes)
  3735. (show_name no)
  3736. (do_not_autoplace no)
  3737. (effects
  3738. (font
  3739. (size 1.27 1.27)
  3740. )
  3741. )
  3742. )
  3743. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  3744. (at 186.69 96.52 0)
  3745. (hide yes)
  3746. (show_name no)
  3747. (do_not_autoplace no)
  3748. (effects
  3749. (font
  3750. (size 1.27 1.27)
  3751. )
  3752. )
  3753. )
  3754. (pin "1"
  3755. (uuid "92cf1fb7-c4e3-4661-8def-89d07579394d")
  3756. )
  3757. (instances
  3758. (project "cx-copter-schematic"
  3759. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3760. (reference "#PWR074")
  3761. (unit 1)
  3762. )
  3763. )
  3764. )
  3765. )
  3766. (symbol
  3767. (lib_id "power:+3V3")
  3768. (at 208.28 138.43 0)
  3769. (unit 1)
  3770. (body_style 1)
  3771. (exclude_from_sim no)
  3772. (in_bom yes)
  3773. (on_board yes)
  3774. (in_pos_files yes)
  3775. (dnp no)
  3776. (fields_autoplaced yes)
  3777. (uuid "8edf3944-4ac3-443c-88d3-2848aea03a5c")
  3778. (property "Reference" "#PWR053"
  3779. (at 208.28 142.24 0)
  3780. (hide yes)
  3781. (show_name no)
  3782. (do_not_autoplace no)
  3783. (effects
  3784. (font
  3785. (size 1.27 1.27)
  3786. )
  3787. )
  3788. )
  3789. (property "Value" "+3V3"
  3790. (at 208.28 133.35 0)
  3791. (show_name no)
  3792. (do_not_autoplace no)
  3793. (effects
  3794. (font
  3795. (size 1.27 1.27)
  3796. )
  3797. )
  3798. )
  3799. (property "Footprint" ""
  3800. (at 208.28 138.43 0)
  3801. (hide yes)
  3802. (show_name no)
  3803. (do_not_autoplace no)
  3804. (effects
  3805. (font
  3806. (size 1.27 1.27)
  3807. )
  3808. )
  3809. )
  3810. (property "Datasheet" ""
  3811. (at 208.28 138.43 0)
  3812. (hide yes)
  3813. (show_name no)
  3814. (do_not_autoplace no)
  3815. (effects
  3816. (font
  3817. (size 1.27 1.27)
  3818. )
  3819. )
  3820. )
  3821. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  3822. (at 208.28 138.43 0)
  3823. (hide yes)
  3824. (show_name no)
  3825. (do_not_autoplace no)
  3826. (effects
  3827. (font
  3828. (size 1.27 1.27)
  3829. )
  3830. )
  3831. )
  3832. (pin "1"
  3833. (uuid "e9c32468-019f-4eef-8c28-d48f14a8f11d")
  3834. )
  3835. (instances
  3836. (project "cx-copter-schematic"
  3837. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3838. (reference "#PWR053")
  3839. (unit 1)
  3840. )
  3841. )
  3842. )
  3843. )
  3844. (symbol
  3845. (lib_id "Connector:TestPoint_2Pole")
  3846. (at 91.44 119.38 0)
  3847. (unit 1)
  3848. (body_style 1)
  3849. (exclude_from_sim no)
  3850. (in_bom yes)
  3851. (on_board yes)
  3852. (in_pos_files yes)
  3853. (dnp no)
  3854. (uuid "9ca598dc-488e-4a3a-804b-3b50c02534e9")
  3855. (property "Reference" "TP1"
  3856. (at 91.44 117.348 0)
  3857. (show_name no)
  3858. (do_not_autoplace no)
  3859. (effects
  3860. (font
  3861. (size 1.27 1.27)
  3862. )
  3863. )
  3864. )
  3865. (property "Value" "ESP_DISCONNECT"
  3866. (at 91.44 121.666 0)
  3867. (show_name no)
  3868. (do_not_autoplace no)
  3869. (effects
  3870. (font
  3871. (size 1.27 1.27)
  3872. )
  3873. )
  3874. )
  3875. (property "Footprint" "Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical"
  3876. (at 91.44 119.38 0)
  3877. (hide yes)
  3878. (show_name no)
  3879. (do_not_autoplace no)
  3880. (effects
  3881. (font
  3882. (size 1.27 1.27)
  3883. )
  3884. )
  3885. )
  3886. (property "Datasheet" ""
  3887. (at 91.44 119.38 0)
  3888. (hide yes)
  3889. (show_name no)
  3890. (do_not_autoplace no)
  3891. (effects
  3892. (font
  3893. (size 1.27 1.27)
  3894. )
  3895. )
  3896. )
  3897. (property "Description" "2-polar test point"
  3898. (at 91.44 119.38 0)
  3899. (hide yes)
  3900. (show_name no)
  3901. (do_not_autoplace no)
  3902. (effects
  3903. (font
  3904. (size 1.27 1.27)
  3905. )
  3906. )
  3907. )
  3908. (pin "2"
  3909. (uuid "1b04be95-6daa-4563-8405-3f33d12831a5")
  3910. )
  3911. (pin "1"
  3912. (uuid "f666feb4-787f-4b47-bd88-0d60848c90c3")
  3913. )
  3914. (instances
  3915. (project "cx-copter-schematic"
  3916. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3917. (reference "TP1")
  3918. (unit 1)
  3919. )
  3920. )
  3921. )
  3922. )
  3923. (symbol
  3924. (lib_id "power:GND")
  3925. (at 163.83 74.93 0)
  3926. (unit 1)
  3927. (body_style 1)
  3928. (exclude_from_sim no)
  3929. (in_bom yes)
  3930. (on_board yes)
  3931. (in_pos_files yes)
  3932. (dnp no)
  3933. (fields_autoplaced yes)
  3934. (uuid "a8954979-8cb2-4242-9bf2-71bf0bb4cceb")
  3935. (property "Reference" "#PWR024"
  3936. (at 163.83 81.28 0)
  3937. (hide yes)
  3938. (show_name no)
  3939. (do_not_autoplace no)
  3940. (effects
  3941. (font
  3942. (size 1.27 1.27)
  3943. )
  3944. )
  3945. )
  3946. (property "Value" "GND"
  3947. (at 163.83 80.01 0)
  3948. (show_name no)
  3949. (do_not_autoplace no)
  3950. (effects
  3951. (font
  3952. (size 1.27 1.27)
  3953. )
  3954. )
  3955. )
  3956. (property "Footprint" ""
  3957. (at 163.83 74.93 0)
  3958. (hide yes)
  3959. (show_name no)
  3960. (do_not_autoplace no)
  3961. (effects
  3962. (font
  3963. (size 1.27 1.27)
  3964. )
  3965. )
  3966. )
  3967. (property "Datasheet" ""
  3968. (at 163.83 74.93 0)
  3969. (hide yes)
  3970. (show_name no)
  3971. (do_not_autoplace no)
  3972. (effects
  3973. (font
  3974. (size 1.27 1.27)
  3975. )
  3976. )
  3977. )
  3978. (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
  3979. (at 163.83 74.93 0)
  3980. (hide yes)
  3981. (show_name no)
  3982. (do_not_autoplace no)
  3983. (effects
  3984. (font
  3985. (size 1.27 1.27)
  3986. )
  3987. )
  3988. )
  3989. (pin "1"
  3990. (uuid "8af7c321-e365-4631-92dc-2aab7531ce10")
  3991. )
  3992. (instances
  3993. (project "cx-copter-schematic"
  3994. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  3995. (reference "#PWR024")
  3996. (unit 1)
  3997. )
  3998. )
  3999. )
  4000. )
  4001. (symbol
  4002. (lib_id "Device:C")
  4003. (at 153.67 68.58 0)
  4004. (unit 1)
  4005. (body_style 1)
  4006. (exclude_from_sim no)
  4007. (in_bom yes)
  4008. (on_board yes)
  4009. (in_pos_files yes)
  4010. (dnp no)
  4011. (uuid "b1c95ddb-3a45-4660-811b-f25ab2267186")
  4012. (property "Reference" "C6"
  4013. (at 154.178 66.548 0)
  4014. (show_name no)
  4015. (do_not_autoplace no)
  4016. (effects
  4017. (font
  4018. (size 1.27 1.27)
  4019. )
  4020. (justify left)
  4021. )
  4022. )
  4023. (property "Value" "100n"
  4024. (at 154.432 70.866 0)
  4025. (show_name no)
  4026. (do_not_autoplace no)
  4027. (effects
  4028. (font
  4029. (size 1.27 1.27)
  4030. )
  4031. (justify left)
  4032. )
  4033. )
  4034. (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
  4035. (at 154.6352 72.39 0)
  4036. (hide yes)
  4037. (show_name no)
  4038. (do_not_autoplace no)
  4039. (effects
  4040. (font
  4041. (size 1.27 1.27)
  4042. )
  4043. )
  4044. )
  4045. (property "Datasheet" ""
  4046. (at 153.67 68.58 0)
  4047. (hide yes)
  4048. (show_name no)
  4049. (do_not_autoplace no)
  4050. (effects
  4051. (font
  4052. (size 1.27 1.27)
  4053. )
  4054. )
  4055. )
  4056. (property "Description" "Unpolarized capacitor"
  4057. (at 153.67 68.58 0)
  4058. (hide yes)
  4059. (show_name no)
  4060. (do_not_autoplace no)
  4061. (effects
  4062. (font
  4063. (size 1.27 1.27)
  4064. )
  4065. )
  4066. )
  4067. (pin "1"
  4068. (uuid "c4f14936-8bc2-475e-aef8-499bc2fa1074")
  4069. )
  4070. (pin "2"
  4071. (uuid "3684c180-beb8-4180-b698-76dcfe6253de")
  4072. )
  4073. (instances
  4074. (project "cx-copter-schematic"
  4075. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  4076. (reference "C6")
  4077. (unit 1)
  4078. )
  4079. )
  4080. )
  4081. )
  4082. (symbol
  4083. (lib_id "power:+3V3")
  4084. (at 116.84 73.66 0)
  4085. (unit 1)
  4086. (body_style 1)
  4087. (exclude_from_sim no)
  4088. (in_bom yes)
  4089. (on_board yes)
  4090. (in_pos_files yes)
  4091. (dnp no)
  4092. (fields_autoplaced yes)
  4093. (uuid "d6278a09-409d-4185-9ac9-40842aa5b61a")
  4094. (property "Reference" "#PWR026"
  4095. (at 116.84 77.47 0)
  4096. (hide yes)
  4097. (show_name no)
  4098. (do_not_autoplace no)
  4099. (effects
  4100. (font
  4101. (size 1.27 1.27)
  4102. )
  4103. )
  4104. )
  4105. (property "Value" "+3V3"
  4106. (at 116.84 68.58 0)
  4107. (show_name no)
  4108. (do_not_autoplace no)
  4109. (effects
  4110. (font
  4111. (size 1.27 1.27)
  4112. )
  4113. )
  4114. )
  4115. (property "Footprint" ""
  4116. (at 116.84 73.66 0)
  4117. (hide yes)
  4118. (show_name no)
  4119. (do_not_autoplace no)
  4120. (effects
  4121. (font
  4122. (size 1.27 1.27)
  4123. )
  4124. )
  4125. )
  4126. (property "Datasheet" ""
  4127. (at 116.84 73.66 0)
  4128. (hide yes)
  4129. (show_name no)
  4130. (do_not_autoplace no)
  4131. (effects
  4132. (font
  4133. (size 1.27 1.27)
  4134. )
  4135. )
  4136. )
  4137. (property "Description" "Power symbol creates a global label with name \"+3V3\""
  4138. (at 116.84 73.66 0)
  4139. (hide yes)
  4140. (show_name no)
  4141. (do_not_autoplace no)
  4142. (effects
  4143. (font
  4144. (size 1.27 1.27)
  4145. )
  4146. )
  4147. )
  4148. (pin "1"
  4149. (uuid "3cf31dba-147a-405c-861f-81a5677e35a4")
  4150. )
  4151. (instances
  4152. (project "cx-copter-schematic"
  4153. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  4154. (reference "#PWR026")
  4155. (unit 1)
  4156. )
  4157. )
  4158. )
  4159. )
  4160. (symbol
  4161. (lib_id "Device:R")
  4162. (at 116.84 80.01 0)
  4163. (unit 1)
  4164. (body_style 1)
  4165. (exclude_from_sim no)
  4166. (in_bom yes)
  4167. (on_board yes)
  4168. (in_pos_files yes)
  4169. (dnp no)
  4170. (uuid "ecbad013-63a2-47bd-8cdf-f9ad2cfc4919")
  4171. (property "Reference" "R17"
  4172. (at 119.126 80.01 90)
  4173. (show_name no)
  4174. (do_not_autoplace no)
  4175. (effects
  4176. (font
  4177. (size 1.27 1.27)
  4178. )
  4179. )
  4180. )
  4181. (property "Value" "10k"
  4182. (at 114.554 80.01 90)
  4183. (show_name no)
  4184. (do_not_autoplace no)
  4185. (effects
  4186. (font
  4187. (size 1.27 1.27)
  4188. )
  4189. )
  4190. )
  4191. (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
  4192. (at 115.062 80.01 90)
  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. (property "Datasheet" ""
  4203. (at 116.84 80.01 0)
  4204. (hide yes)
  4205. (show_name no)
  4206. (do_not_autoplace no)
  4207. (effects
  4208. (font
  4209. (size 1.27 1.27)
  4210. )
  4211. )
  4212. )
  4213. (property "Description" "Resistor"
  4214. (at 116.84 80.01 0)
  4215. (hide yes)
  4216. (show_name no)
  4217. (do_not_autoplace no)
  4218. (effects
  4219. (font
  4220. (size 1.27 1.27)
  4221. )
  4222. )
  4223. )
  4224. (pin "2"
  4225. (uuid "97af033d-d449-41d7-867d-db1407555462")
  4226. )
  4227. (pin "1"
  4228. (uuid "4e8d489a-c098-42f1-9b21-778be00f6ad0")
  4229. )
  4230. (instances
  4231. (project "cx-copter-schematic"
  4232. (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
  4233. (reference "R17")
  4234. (unit 1)
  4235. )
  4236. )
  4237. )
  4238. )
  4239. )