| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239 |
- (kicad_sch
- (version 20260306)
- (generator "eeschema")
- (generator_version "10.0")
- (uuid "29f2e2ae-ffe0-44c4-8980-17649ed716da")
- (paper "A4")
- (lib_symbols
- (symbol "Connector:TestPoint_2Pole"
- (pin_names
- (offset 0.762)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "TP"
- (at 0 1.524 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "TestPoint_2Pole"
- (at 0 -1.778 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "2-polar test point"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "point tp"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "Pin* Test*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "TestPoint_2Pole_0_1"
- (circle
- (center -1.778 0)
- (radius 0.762)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (circle
- (center 1.778 0)
- (radius 0.762)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin passive line
- (at -5.08 0 0)
- (length 2.54)
- (name "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 5.08 0 180)
- (length 2.54)
- (name "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Connector:TestPoint_Probe"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0.762)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "TP"
- (at 1.651 5.842 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "TestPoint_Probe"
- (at 1.651 4.064 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 5.08 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 5.08 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "test point (alternative probe-style design)"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "test point tp"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "Pin* Test*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "TestPoint_Probe_0_1"
- (polyline
- (pts
- (xy 1.27 0.762) (xy 0 0) (xy 0.762 1.27) (xy 1.27 0.762)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type outline)
- )
- )
- (polyline
- (pts
- (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)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type background)
- )
- )
- )
- (symbol "TestPoint_Probe_1_1"
- (pin passive line
- (at 0 0 90)
- (length 0)
- (name "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Connector_Generic:Conn_01x03"
- (pin_names
- (offset 1.016)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "J1"
- (at 2.54 4.064 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "SELECTOR"
- (at 0.508 -6.604 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "connector"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "Connector*:*_1x??_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "Conn_01x03_1_1"
- (rectangle
- (start -1.27 2.54)
- (end 1.27 -2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (rectangle
- (start -1.27 1.397)
- (end 0 1.143)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 -1.143)
- (end 0 -1.397)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start 0 0.127)
- (end 1.27 -0.127)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin passive line
- (at -5.08 1.27 0)
- (length 3.81)
- (name "Pin_1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 5.08 0 180)
- (length 3.81)
- (name "Pin_2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -1.27 0)
- (length 3.81)
- (name "Pin_3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Device:C"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "cap capacitor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "C_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 0.762) (xy 2.032 0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 -0.762) (xy 2.032 -0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "C_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 2.794)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Device:R"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "R"
- (at 2.032 0 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "R"
- (at 0 0 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "R res resistor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "R_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "R_0_1"
- (rectangle
- (start -1.016 -2.54)
- (end 1.016 2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "R_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 1.27)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 1.27)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "MCU_WCH_RiscV:CH32V003AxMx"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "U2"
- (at -12.954 21.336 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "CH32V003AxMx"
- (at 1.27 21.336 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_SO:STC_SOP-16_3.9x9.9mm_P1.27mm"
- (at -2.54 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
- (at -2.54 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (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."
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "RISC-V WCH MCU microcontroller"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "*SO*3.9x9.9mm*P1.27mm*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "CH32V003AxMx_1_1"
- (rectangle
- (start -12.7 20.32)
- (end 12.7 -20.32)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (pin bidirectional line
- (at -15.24 15.24 0)
- (length 2.54)
- (name "PC1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "NSS" bidirectional line)
- (alternate "SDA" bidirectional line)
- (alternate "T1BKIN_1" bidirectional line)
- (alternate "T1BKIN_3" bidirectional line)
- (alternate "T2CH1ETR_2" bidirectional line)
- (alternate "T2CH1ETR_3" bidirectional line)
- (alternate "T2CH4_1" bidirectional line)
- (alternate "URX_3" bidirectional line)
- )
- (pin bidirectional line
- (at -15.24 17.78 0)
- (length 2.54)
- (name "PC2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "AETR_1" bidirectional line)
- (alternate "SCL" bidirectional line)
- (alternate "T1BKIN" bidirectional line)
- (alternate "T1BKIN_2" bidirectional line)
- (alternate "T1ETR_3" bidirectional line)
- (alternate "T2CH2_1" bidirectional line)
- (alternate "URTS" bidirectional line)
- (alternate "URTS_1" bidirectional line)
- )
- (pin bidirectional line
- (at -15.24 -2.54 0)
- (length 2.54)
- (name "PC3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "T1CH1N_1" bidirectional line)
- (alternate "T1CH1N_3" bidirectional line)
- (alternate "T1CH3" bidirectional line)
- (alternate "T1CH3_2" bidirectional line)
- (alternate "UCTS_1" bidirectional line)
- )
- (pin bidirectional line
- (at -15.24 -7.62 0)
- (length 2.54)
- (name "PC4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "A2" bidirectional line)
- (alternate "MCO" bidirectional line)
- (alternate "T1CH1_3" bidirectional line)
- (alternate "T1CH2N_1" bidirectional line)
- (alternate "T1CH4" bidirectional line)
- (alternate "T1CH4_2" bidirectional line)
- )
- (pin bidirectional line
- (at 15.24 6.35 180)
- (length 2.54)
- (name "PC6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "MOSI" bidirectional line)
- (alternate "MOSI_1" bidirectional line)
- (alternate "SDA_2" bidirectional line)
- (alternate "SDA_3" bidirectional line)
- (alternate "T1CH1_1" bidirectional line)
- (alternate "T1CH3N_3" bidirectional line)
- (alternate "UCTS_2" bidirectional line)
- (alternate "UCTS_3" bidirectional line)
- )
- (pin bidirectional line
- (at 15.24 3.81 180)
- (length 2.54)
- (name "PC7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "MISO" bidirectional line)
- (alternate "MISO_1" bidirectional line)
- (alternate "T1CH2_1" bidirectional line)
- (alternate "T1CH2_3" bidirectional line)
- (alternate "T2CH2_3" bidirectional line)
- (alternate "URTS_2" bidirectional line)
- (alternate "URTS_3" bidirectional line)
- )
- (pin bidirectional line
- (at -15.24 7.62 0)
- (length 2.54)
- (name "PD1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "AETR2" bidirectional line)
- (alternate "SCL_1" bidirectional line)
- (alternate "SWIO" bidirectional line)
- (alternate "T1CH3N" bidirectional line)
- (alternate "T1CH3N_1" bidirectional line)
- (alternate "T1CH3N_2" bidirectional line)
- (alternate "URX_1" bidirectional line)
- )
- (pin bidirectional line
- (at 15.24 11.43 180)
- (length 2.54)
- (name "PD4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "A7" bidirectional line)
- (alternate "OPO" bidirectional line)
- (alternate "T1CH4_3" bidirectional line)
- (alternate "T2CH1ETR" bidirectional line)
- (alternate "TIETR_2" bidirectional line)
- (alternate "UCK" bidirectional line)
- )
- (pin bidirectional line
- (at 15.24 -2.54 180)
- (length 2.54)
- (name "PD5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "A5" bidirectional line)
- (alternate "T2CH4_3" bidirectional line)
- (alternate "URX_2" bidirectional line)
- (alternate "UTX" bidirectional line)
- )
- (pin bidirectional line
- (at 15.24 -7.62 180)
- (length 2.54)
- (name "PD6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "A6" bidirectional line)
- (alternate "T2CH3_3" bidirectional line)
- (alternate "URX" bidirectional line)
- (alternate "UTX_2" bidirectional line)
- )
- (pin bidirectional line
- (at -15.24 -15.24 0)
- (length 2.54)
- (name "PD7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "11"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "NRST" bidirectional line)
- (alternate "OPP1" bidirectional line)
- (alternate "T2CH4" bidirectional line)
- (alternate "T2CH4_2" bidirectional line)
- (alternate "UCK_1" bidirectional line)
- (alternate "UCK_2" bidirectional line)
- )
- (pin bidirectional line
- (at 15.24 -17.78 180)
- (length 2.54)
- (name "PA1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "12"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "A1" bidirectional line)
- (alternate "OPN0" bidirectional line)
- (alternate "OSCI" bidirectional line)
- (alternate "T1CH2" bidirectional line)
- (alternate "T1CH2_2" bidirectional line)
- )
- (pin bidirectional line
- (at 15.24 -15.24 180)
- (length 2.54)
- (name "PA2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "13"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "A0" bidirectional line)
- (alternate "AETR2_1" bidirectional line)
- (alternate "OPP0" bidirectional line)
- (alternate "OSCO" bidirectional line)
- (alternate "TICH2N" bidirectional line)
- (alternate "TICH2N_2" bidirectional line)
- )
- (pin power_in line
- (at 0 -22.86 90)
- (length 2.54)
- (name "VSS"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "14"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at 0 22.86 270)
- (length 2.54)
- (name "VDD"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "15"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 15.24 8.89 180)
- (length 2.54)
- (name "PC0"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "16"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (alternate "NSS_1" bidirectional line)
- (alternate "T1CH3_1" bidirectional line)
- (alternate "T2CH3" bidirectional line)
- (alternate "T2CH3_2" bidirectional line)
- (alternate "UTX_3" bidirectional line)
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:+3V3"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 0 3.556 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "+3V3_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+3V3_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:GND"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -6.35 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (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)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "GND_1_1"
- (pin power_in line
- (at 0 0 270)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- )
- (text_box "Resistor R15 prevents accidental resetting of the microcontroller."
- (exclude_from_sim no)
- (at 105.41 49.53 0)
- (size 21.59 12.7)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "0f6f8e66-3c86-4f33-b71b-2a96644e1911")
- )
- (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."
- (exclude_from_sim no)
- (at 62.23 49.53 0)
- (size 38.1 21.59)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "16f464c4-834c-49eb-ad6b-14ef25fc41dc")
- )
- (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)"
- (exclude_from_sim no)
- (at 179.07 60.5691 0)
- (size 40.64 24.5209)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "4966b64a-70b0-4bb8-bf71-173d88458394")
- )
- (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."
- (exclude_from_sim no)
- (at 156.21 124.46 0)
- (size 31.75 17.78)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "4e8bdd26-6cbf-48a6-a799-40a44a5118fe")
- )
- (text_box "USART work in default mapping, I2C work in default mapping mode.\n\nUSART1_RM = 00\nI2C1_RM = 00"
- (exclude_from_sim no)
- (at 62.23 76.2 0)
- (size 25.4 16.51)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "907df6cb-8a28-4357-bf53-524475062cdc")
- )
- (text_box "C5, C6, C7 should be placed close to VDD pin. "
- (exclude_from_sim no)
- (at 152.4 49.53 0)
- (size 20.32 8.89)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "e6821345-fd5d-46cc-8045-53fa9cb3f4a6")
- )
- (junction
- (at 137.16 63.5)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "03b347f5-c8c8-441d-b247-4306c534244a")
- )
- (junction
- (at 163.83 73.66)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "14a9385b-12a0-401d-ad7f-7c14e40938af")
- )
- (junction
- (at 106.68 86.36)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1dab3639-1729-471d-85eb-7f9b24f746b3")
- )
- (junction
- (at 116.84 88.9)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "20c0576e-65d5-4720-a026-c3d9b3a2f2bc")
- )
- (junction
- (at 106.68 119.38)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "30c26dd8-d448-440c-a8a4-eb8b11e702ef")
- )
- (junction
- (at 176.53 111.76)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "30dd694d-f476-4213-82ff-bd11399210bd")
- )
- (junction
- (at 143.51 63.5)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "4137341a-86f6-4da1-95ea-1c522ed8d2a4")
- )
- (junction
- (at 176.53 106.68)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "78e170f9-8daf-4d94-934e-a63dde8a81d9")
- )
- (junction
- (at 153.67 73.66)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "d054d4f1-8798-4686-a730-74bd34a8e2e2")
- )
- (junction
- (at 186.69 106.68)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "e5fe808b-a647-406a-abc8-f7f657fa2140")
- )
- (junction
- (at 153.67 63.5)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "e8b3429d-5f05-48ec-9851-77124989efb1")
- )
- (wire
- (pts
- (xy 163.83 73.66) (xy 163.83 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "153293a4-4bae-4c1f-a7bd-27b8e41d1ab3")
- )
- (wire
- (pts
- (xy 198.12 106.68) (xy 199.39 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1af0b140-48cc-4d03-a7d4-00a7b074f416")
- )
- (wire
- (pts
- (xy 106.68 109.22) (xy 106.68 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1baea021-09a5-4561-b0ee-ee286bd87acb")
- )
- (wire
- (pts
- (xy 156.21 97.79) (xy 152.4 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1ee498b5-930e-4a5f-80de-77f37906d407")
- )
- (wire
- (pts
- (xy 153.67 63.5) (xy 153.67 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2aefeb86-d9db-4bb7-86f2-12c093717fb2")
- )
- (wire
- (pts
- (xy 116.84 88.9) (xy 121.92 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2b3c59f2-da0f-4a8b-a8a6-a9533f2c92ac")
- )
- (wire
- (pts
- (xy 176.53 106.68) (xy 186.69 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2b85291d-a22f-4e26-b441-77d2f0f48bb0")
- )
- (wire
- (pts
- (xy 153.67 63.5) (xy 163.83 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "352b4dfe-1421-47f1-bec0-f05020dee1b1")
- )
- (wire
- (pts
- (xy 80.01 119.38) (xy 86.36 119.38)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3e60567c-75b2-4142-a47d-a46849425529")
- )
- (wire
- (pts
- (xy 101.6 88.9) (xy 116.84 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "46022cfc-5462-418c-a6e3-fedfdeabaf80")
- )
- (wire
- (pts
- (xy 208.28 139.7) (xy 209.55 139.7)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "471f46f7-ee6b-4f43-a547-76edd0425236")
- )
- (wire
- (pts
- (xy 116.84 73.66) (xy 116.84 76.2)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4bfb19e3-c853-4042-acd9-e8a0952b8531")
- )
- (wire
- (pts
- (xy 163.83 64.77) (xy 163.83 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5075df55-8c72-4344-9cc2-65c6e98ef38e")
- )
- (wire
- (pts
- (xy 119.38 106.68) (xy 121.92 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "50f4328a-41ad-4fcd-9800-11d68dbd9e6c")
- )
- (wire
- (pts
- (xy 96.52 119.38) (xy 106.68 119.38)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "53074894-6bdc-474a-b5df-651f99c900d3")
- )
- (wire
- (pts
- (xy 106.68 73.66) (xy 106.68 76.2)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "54253cbe-e7d8-41e6-b28d-c02b5c5afc68")
- )
- (wire
- (pts
- (xy 153.67 73.66) (xy 163.83 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "57c44fd4-7855-47c9-bf74-abd817c67073")
- )
- (wire
- (pts
- (xy 152.4 119.38) (xy 156.21 119.38)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "60c5f04d-4260-4a55-bd5a-a5bda3890294")
- )
- (wire
- (pts
- (xy 106.68 119.38) (xy 106.68 118.11)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6b89cedc-601f-411c-b090-2e18dcfe37f3")
- )
- (wire
- (pts
- (xy 101.6 86.36) (xy 106.68 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7076e835-008c-423e-b36d-28277b867d58")
- )
- (wire
- (pts
- (xy 137.16 60.96) (xy 137.16 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "723e66a6-702a-408d-bf62-775edb408f31")
- )
- (wire
- (pts
- (xy 121.92 119.38) (xy 106.68 119.38)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "74c35b4a-855d-4876-af67-c23e848fdaaa")
- )
- (wire
- (pts
- (xy 106.68 83.82) (xy 106.68 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7e19a2eb-8383-43af-871a-c47da437f0df")
- )
- (wire
- (pts
- (xy 137.16 63.5) (xy 143.51 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "801c5c1a-0b1f-4ac3-955b-59adb40d33a7")
- )
- (wire
- (pts
- (xy 153.67 72.39) (xy 153.67 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "80448fb5-42fd-4a2e-9c75-cb8c3b3bf11b")
- )
- (wire
- (pts
- (xy 156.21 92.71) (xy 152.4 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "834c539d-278c-42d8-9f13-5f78d100e2b1")
- )
- (wire
- (pts
- (xy 152.4 111.76) (xy 176.53 111.76)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "84c3fa1a-3a82-4e8e-8cb4-15f58f30a32d")
- )
- (wire
- (pts
- (xy 143.51 72.39) (xy 143.51 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "868dc5c7-84e4-4909-bf46-83a9beef1bf6")
- )
- (wire
- (pts
- (xy 176.53 111.76) (xy 199.39 111.76)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8881cb5f-cdc4-48b8-951d-6f6819e0c480")
- )
- (wire
- (pts
- (xy 143.51 63.5) (xy 153.67 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "96388978-72bb-4844-8d7f-51804a3af96d")
- )
- (wire
- (pts
- (xy 137.16 63.5) (xy 137.16 81.28)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "96d5cf20-870d-4ffc-b1fa-155ed425d7b7")
- )
- (wire
- (pts
- (xy 143.51 63.5) (xy 143.51 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9a8223ab-283d-4c72-9127-16869bb6deb5")
- )
- (wire
- (pts
- (xy 116.84 83.82) (xy 116.84 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9baf4457-d2e9-4e43-a943-97cae023088f")
- )
- (wire
- (pts
- (xy 137.16 127) (xy 137.16 128.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9d870957-0bd0-4be3-94eb-3cbd79d86d46")
- )
- (wire
- (pts
- (xy 163.83 73.66) (xy 163.83 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a2a1512a-4f3d-45bd-975b-0972902bed46")
- )
- (wire
- (pts
- (xy 208.28 138.43) (xy 208.28 139.7)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a2c3d210-487e-4730-9f50-cbe7018a3fb0")
- )
- (wire
- (pts
- (xy 106.68 86.36) (xy 121.92 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ab9a4f85-48a9-4190-82dc-c25ca03efb5c")
- )
- (wire
- (pts
- (xy 106.68 119.38) (xy 106.68 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "adcfe1a5-9d48-4389-8382-6fd2a2154df6")
- )
- (wire
- (pts
- (xy 186.69 105.41) (xy 186.69 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b47f96d7-da36-4fa5-9198-81a7bd0f874e")
- )
- (wire
- (pts
- (xy 143.51 73.66) (xy 153.67 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bb467870-2af7-4c10-8b0c-58a2abb1c750")
- )
- (wire
- (pts
- (xy 152.4 106.68) (xy 176.53 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bd71f133-48f3-42ab-84b3-a7be853c4e8f")
- )
- (wire
- (pts
- (xy 176.53 111.76) (xy 176.53 114.3)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c95b4b7d-b89a-40e4-bb1f-8fdbf325a85e")
- )
- (wire
- (pts
- (xy 186.69 106.68) (xy 190.5 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cc656b2a-32bc-4cbd-a97c-f6a7f1cc36aa")
- )
- (wire
- (pts
- (xy 152.4 121.92) (xy 156.21 121.92)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d0a95b30-1069-4533-940e-d99d8bf446d2")
- )
- (wire
- (pts
- (xy 106.68 128.27) (xy 106.68 129.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d2db9dcc-f09d-4196-a2c5-730919340801")
- )
- (wire
- (pts
- (xy 156.21 95.25) (xy 152.4 95.25)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ed11e036-cacd-4aff-9a1f-10c82f8c34de")
- )
- (wire
- (pts
- (xy 186.69 96.52) (xy 186.69 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ef12d6e4-caec-415e-9424-fd7249d30f06")
- )
- (wire
- (pts
- (xy 119.38 111.76) (xy 121.92 111.76)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f3f60c41-82ac-4fee-b445-9a66e133a480")
- )
- (wire
- (pts
- (xy 156.21 100.33) (xy 152.4 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f52675ef-aaf7-420e-8e71-f9184e2e2fec")
- )
- (wire
- (pts
- (xy 176.53 104.14) (xy 176.53 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f836a71d-cd9c-4302-bf79-830dc8117d52")
- )
- (wire
- (pts
- (xy 111.76 96.52) (xy 121.92 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f9d78e19-f4bf-4683-a2c9-b8c347d9ccc2")
- )
- (hierarchical_label "SWITCH_A"
- (shape input)
- (at 101.6 97.79 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "0461ccdb-05c3-4723-b2cc-55f89eeec258")
- )
- (hierarchical_label "LEDS_CHAIN"
- (shape output)
- (at 156.21 121.92 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "077538c0-952a-4a73-8ce8-9520ae891baa")
- )
- (hierarchical_label "SWIO"
- (shape bidirectional)
- (at 101.6 95.25 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "0cbc25a4-3b3c-4d05-8bed-e4055698fbdc")
- )
- (hierarchical_label "INT"
- (shape input)
- (at 119.38 106.68 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "15ce6a0b-bc91-43a7-a7b1-2bacdff87d04")
- )
- (hierarchical_label "TX"
- (shape output)
- (at 199.39 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "35bcd249-2525-4e16-bf0b-50896b6b124e")
- )
- (hierarchical_label "PWM_M1"
- (shape output)
- (at 156.21 92.71 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "3cbcd707-f114-491b-b402-b0b17630cff6")
- )
- (hierarchical_label "PWM_M4"
- (shape output)
- (at 156.21 100.33 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "53824514-bfa4-4705-a845-5a612c8813d1")
- )
- (hierarchical_label "SDA"
- (shape bidirectional)
- (at 101.6 88.9 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "58cabe78-3735-470f-abc6-45c9768665d8")
- )
- (hierarchical_label "AT"
- (shape output)
- (at 119.38 111.76 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "5cca5661-256c-4973-823d-d17f9e79c9ea")
- )
- (hierarchical_label "PWM_M3"
- (shape output)
- (at -134.62 -22.86 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "6ae03175-01d5-475f-aa38-6d53d5c91ade")
- )
- (hierarchical_label "DISABLE"
- (shape input)
- (at 80.01 119.38 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "75e4fbd2-b615-4421-ba23-3cc6c5a13d41")
- )
- (hierarchical_label "STATUS_LED"
- (shape output)
- (at 156.21 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "7fc7e02b-e6c8-4c94-8b58-b718ee693167")
- )
- (hierarchical_label "3V3"
- (shape input)
- (at 209.55 139.7 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "a0605134-d537-4a1f-8941-d3ba874bc07e")
- )
- (hierarchical_label "SCL"
- (shape output)
- (at 101.6 86.36 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "b8ca75fc-ddcf-4b8e-ab3f-50b653ea9797")
- )
- (hierarchical_label "PWM_M2"
- (shape output)
- (at 156.21 95.25 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "c6305456-c86b-4651-ad42-dd16979fc11f")
- )
- (hierarchical_label "RX"
- (shape input)
- (at 199.39 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "e4a72e87-830c-4f6f-8057-fdc20c0e69cc")
- )
- (hierarchical_label "PWM_M3"
- (shape output)
- (at 156.21 97.79 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "f50a9dd8-65df-46e3-8b6b-7d6314b055f5")
- )
- (symbol
- (lib_id "Device:R")
- (at 106.68 114.3 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "04b94d90-2759-4d9b-b6dc-d59469c2fcf7")
- (property "Reference" "R15"
- (at 108.966 114.3 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 104.394 114.3 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
- (at 104.902 114.3 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 106.68 114.3 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 106.68 114.3 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "43770b44-f30a-4511-94ed-6c3146d31f86")
- )
- (pin "1"
- (uuid "763b2b53-6a6c-4eb6-8ff8-e21e416472fc")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "R15")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 106.68 80.01 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "0e0aa206-a965-4521-9d13-604a8aa4f448")
- (property "Reference" "R16"
- (at 108.966 80.01 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 104.394 80.01 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
- (at 104.902 80.01 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 106.68 80.01 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 106.68 80.01 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "aa7ca65a-4958-40fe-a2ae-b461ee2980b1")
- )
- (pin "1"
- (uuid "9478be4e-d7dc-4550-ae1a-749a04b88151")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "R16")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 137.16 60.96 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "183a606d-f543-4838-aa10-54f17a2b9f5a")
- (property "Reference" "#PWR021"
- (at 137.16 64.77 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 137.16 55.88 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 137.16 60.96 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 137.16 60.96 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 137.16 60.96 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "ffb8a2e1-9759-42b6-86ec-0f0ea04d9efa")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR021")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 143.51 68.58 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "20c27e32-7be8-49ba-83a2-733eb8b2cf34")
- (property "Reference" "C5"
- (at 144.018 66.548 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "10u"
- (at 144.272 70.866 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
- (at 144.4752 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 143.51 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 143.51 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "dc009e43-28e0-4ebe-88ad-e093b7b464dd")
- )
- (pin "2"
- (uuid "8618d872-3651-4145-bbde-b10b17461200")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "C5")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "MCU_WCH_RiscV:CH32V003AxMx")
- (at 137.16 104.14 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "276e7963-7bd4-4d46-93fa-b2df2877a161")
- (property "Reference" "U2"
- (at 124.206 82.804 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "CH32V003AxMx"
- (at 138.43 82.804 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_SO:STC_SOP-16_3.9x9.9mm_P1.27mm"
- (at 134.62 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
- (at 134.62 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (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."
- (at 137.16 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "4"
- (uuid "e7b2ada0-c62d-4b14-9b75-8c53f1eb4716")
- )
- (pin "1"
- (uuid "940714fd-426d-4f12-93d1-0b3a1210f0af")
- )
- (pin "5"
- (uuid "a5da780c-bb45-4001-8e5e-76d2f78a59cf")
- )
- (pin "6"
- (uuid "7034b316-1e95-45af-b05c-18734858c5c4")
- )
- (pin "3"
- (uuid "2fec0f6a-1144-428a-b667-bfef4ac23baa")
- )
- (pin "7"
- (uuid "118b345d-9e94-49d1-86d8-33e31c913d8a")
- )
- (pin "2"
- (uuid "3b80cfe5-160d-4b37-872f-fd4ae87fcc25")
- )
- (pin "14"
- (uuid "39f289dd-9f05-49c7-9b04-4e6e425780a2")
- )
- (pin "15"
- (uuid "0cd5ee3f-0e58-49f6-8f69-e68bb0a816b9")
- )
- (pin "16"
- (uuid "c80478dd-b6a7-4724-a242-ee65af440e21")
- )
- (pin "8"
- (uuid "7cf2552b-f9dd-4c96-9971-94646f467340")
- )
- (pin "9"
- (uuid "d818ba73-83d4-4360-afd7-54084aee9db0")
- )
- (pin "10"
- (uuid "af7d414e-9619-4260-ae4c-d9196c8ad042")
- )
- (pin "11"
- (uuid "63d7b19f-902f-41ad-9739-5b6dd3424be6")
- )
- (pin "12"
- (uuid "d41cdd30-7e2a-47a0-9a84-5eba207d15fb")
- )
- (pin "13"
- (uuid "2ce15938-e614-484f-b74b-74cf85d5b662")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "U2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 186.69 101.6 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "28d6cf8c-30d1-4b25-a6f3-11b94e332003")
- (property "Reference" "R22"
- (at 188.976 101.6 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 184.404 101.6 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
- (at 184.912 101.6 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 186.69 101.6 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 186.69 101.6 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "01ab856f-8a9e-42a2-a2bd-4c7d3631db65")
- )
- (pin "1"
- (uuid "5b3534be-a4d0-4a77-b7e2-5de919cd4b2f")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "R22")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector_Generic:Conn_01x03")
- (at 106.68 96.52 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "2e357953-22fa-4c29-8d05-7d4b418b3ead")
- (property "Reference" "J1"
- (at 106.68 92.964 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "SELECTOR"
- (at 106.68 100.33 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical"
- (at 106.68 96.52 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 106.68 96.52 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 106.68 96.52 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "3"
- (uuid "7a30ae29-8fa9-428e-ae85-de313ae328ba")
- )
- (pin "2"
- (uuid "eb270387-e282-4dbe-8b74-983ca56e1309")
- )
- (pin "1"
- (uuid "50eaf7d0-9b27-4e93-b521-432f080c8510")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "J1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 106.68 124.46 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "3eb50d77-1d17-4612-9a47-1b6f901c13cd")
- (property "Reference" "C24"
- (at 107.188 122.428 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 107.442 126.746 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
- (at 107.6452 128.27 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 106.68 124.46 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 106.68 124.46 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "13ce4e94-fa2c-458d-8839-9cc0af549abb")
- )
- (pin "2"
- (uuid "12b0ad62-7e1d-4038-bbf4-71e9fb60a144")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "C24")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector:TestPoint_Probe")
- (at 176.53 114.3 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "4a7ef7a9-2b03-41ae-98f5-2e1269fa431b")
- (property "Reference" "TP14"
- (at 181.61 117.348 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "RX"
- (at 179.324 115.316 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm"
- (at 171.45 114.3 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 171.45 114.3 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "test point (alternative probe-style design)"
- (at 176.53 114.3 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "f63939b0-ef0b-413c-9279-397994653dc8")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "TP14")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 137.16 128.27 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "4faab902-e356-4384-bd8b-312c03cc2528")
- (property "Reference" "#PWR023"
- (at 137.16 134.62 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 137.16 133.35 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 137.16 128.27 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 137.16 128.27 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 137.16 128.27 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "9af1ae6f-4b14-4911-974a-ff935917bacb")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR023")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 106.68 109.22 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "4fdf910f-0b1a-4577-a538-28c650924a65")
- (property "Reference" "#PWR022"
- (at 106.68 113.03 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 106.172 105.664 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 106.68 109.22 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 106.68 109.22 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 106.68 109.22 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "3d187b35-62d7-401c-8a34-bdc70f7a7e99")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR022")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 194.31 106.68 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "534cc657-09e7-441f-89a3-283e04acdc4e")
- (property "Reference" "R31"
- (at 192.278 104.648 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "100R"
- (at 191.77 108.712 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
- (at 194.31 108.458 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 194.31 106.68 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 194.31 106.68 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "dce9dcba-5406-476e-ab56-da587772e4f1")
- )
- (pin "1"
- (uuid "1efea94c-b389-4da8-b1ee-ec869b22a61a")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "R31")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 106.68 129.54 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "5a1f3536-047e-47aa-a7b3-1d76124c7116")
- (property "Reference" "#PWR084"
- (at 106.68 135.89 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 106.68 134.62 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 106.68 129.54 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 106.68 129.54 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 106.68 129.54 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "370cb368-d6ac-4f20-a866-9304816106c6")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR084")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector:TestPoint_Probe")
- (at 176.53 104.14 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "5a895912-40b1-482d-b471-5f93ec792d1c")
- (property "Reference" "TP15"
- (at 173.228 101.092 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "TX"
- (at 173.228 103.124 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm"
- (at 181.61 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 181.61 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "test point (alternative probe-style design)"
- (at 176.53 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "a7690f3a-03df-4525-8cd3-ac44c955ba3d")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "TP15")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 106.68 73.66 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "5b050197-dc91-45ea-91f8-6bfc4977b325")
- (property "Reference" "#PWR025"
- (at 106.68 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 106.68 68.58 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 106.68 73.66 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 106.68 73.66 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 106.68 73.66 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "89829f48-19e0-40eb-9e95-9b6eed139d43")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR025")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 163.83 68.58 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "6a2ac641-4915-4910-a54a-01aa43f6936b")
- (property "Reference" "C7"
- (at 164.338 66.548 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 164.592 70.866 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
- (at 164.7952 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 163.83 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 163.83 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "2bb25451-ee57-4e38-97bc-d260d3f388cf")
- )
- (pin "2"
- (uuid "b704bfff-dfda-4d76-8734-e54fa0c2842e")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "C7")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 186.69 96.52 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "7337f5d6-6429-4d5c-83f7-11b4c1eed610")
- (property "Reference" "#PWR074"
- (at 186.69 100.33 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 186.69 91.44 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 186.69 96.52 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 186.69 96.52 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 186.69 96.52 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "92cf1fb7-c4e3-4661-8def-89d07579394d")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR074")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 208.28 138.43 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "8edf3944-4ac3-443c-88d3-2848aea03a5c")
- (property "Reference" "#PWR053"
- (at 208.28 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 208.28 133.35 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 208.28 138.43 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 208.28 138.43 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 208.28 138.43 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "e9c32468-019f-4eef-8c28-d48f14a8f11d")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR053")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector:TestPoint_2Pole")
- (at 91.44 119.38 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "9ca598dc-488e-4a3a-804b-3b50c02534e9")
- (property "Reference" "TP1"
- (at 91.44 117.348 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "ESP_DISCONNECT"
- (at 91.44 121.666 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Connector_PinHeader_1.27mm:PinHeader_1x02_P1.27mm_Vertical"
- (at 91.44 119.38 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 91.44 119.38 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "2-polar test point"
- (at 91.44 119.38 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "1b04be95-6daa-4563-8405-3f33d12831a5")
- )
- (pin "1"
- (uuid "f666feb4-787f-4b47-bd88-0d60848c90c3")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "TP1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 163.83 74.93 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "a8954979-8cb2-4242-9bf2-71bf0bb4cceb")
- (property "Reference" "#PWR024"
- (at 163.83 81.28 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 163.83 80.01 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 163.83 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 163.83 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 163.83 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "8af7c321-e365-4631-92dc-2aab7531ce10")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR024")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 153.67 68.58 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "b1c95ddb-3a45-4660-811b-f25ab2267186")
- (property "Reference" "C6"
- (at 154.178 66.548 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 154.432 70.866 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
- (at 154.6352 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 153.67 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 153.67 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "c4f14936-8bc2-475e-aef8-499bc2fa1074")
- )
- (pin "2"
- (uuid "3684c180-beb8-4180-b698-76dcfe6253de")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "C6")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 116.84 73.66 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "d6278a09-409d-4185-9ac9-40842aa5b61a")
- (property "Reference" "#PWR026"
- (at 116.84 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 116.84 68.58 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 116.84 73.66 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 116.84 73.66 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 116.84 73.66 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "3cf31dba-147a-405c-861f-81a5677e35a4")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "#PWR026")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 116.84 80.01 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "ecbad013-63a2-47bd-8cdf-f9ad2cfc4919")
- (property "Reference" "R17"
- (at 119.126 80.01 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 114.554 80.01 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
- (at 115.062 80.01 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 116.84 80.01 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 116.84 80.01 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "97af033d-d449-41d7-867d-db1407555462")
- )
- (pin "1"
- (uuid "4e8d489a-c098-42f1-9b21-778be00f6ad0")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/a4b83c2e-ad30-4e09-af69-5a6bc57c4e9e"
- (reference "R17")
- (unit 1)
- )
- )
- )
- )
- )
|