controller_unit.kicad_sch 69 KB

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