| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775 |
- (kicad_sch
- (version 20250114)
- (generator "eeschema")
- (generator_version "9.0")
- (uuid "0fcb8591-84ba-410e-8f15-e1153a834af1")
- (paper "A4")
- (lib_symbols
- (symbol "Device:C"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "cap capacitor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "C_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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)
- (property "Reference" "R"
- (at 2.032 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "R"
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "R res resistor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "R_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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_CH32V0:CH32V003AxMx"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U1"
- (at 2.1433 17.78 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "CH32V003AxMx"
- (at 2.1433 15.24 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_SO:SOP-16_3.9x9.9mm_P1.27mm"
- (at -2.54 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
- (at -2.54 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "RISC-V WCH MCU microcontroller"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "SOP*3.9x9.9mm*P1.27mm*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "CH32V003AxMx_1_1"
- (rectangle
- (start -7.62 12.7)
- (end 7.62 -12.7)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (pin bidirectional line
- (at -10.16 10.16 0)
- (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)
- )
- (pin bidirectional line
- (at -10.16 7.62 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 -10.16 5.08 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 -10.16 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 -10.16 0 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 -10.16 -2.54 0)
- (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 -10.16 -5.08 0)
- (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 power_in line
- (at 0 15.24 270)
- (length 2.54)
- (name "VDD"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "15"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at 0 -15.24 90)
- (length 2.54)
- (name "VSS"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "14"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 10.16 10.16 180)
- (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 10.16 7.62 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 10.16 5.08 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 10.16 2.54 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 10.16 -5.08 180)
- (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 10.16 -7.62 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 10.16 -10.16 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)
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:+3V3"
- (power)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3V3"
- (at 0 3.556 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "#PWR"
- (at 0 -6.35 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 0 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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)
- )
- )
- (junction
- (at 201.93 105.41)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "0c989ce3-33cb-4458-9a82-ae7b8184bc91")
- )
- (junction
- (at 135.89 87.63)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "0cc10d03-ee94-4786-b153-0f494ee09de5")
- )
- (junction
- (at 135.89 102.87)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "0cd83916-f5ed-4c7e-882e-14c7449a3864")
- )
- (junction
- (at 173.99 100.33)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1d196f8a-ea96-4db0-9a73-ada883de6d8f")
- )
- (junction
- (at 153.67 107.95)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1f4dd3a6-3231-4f31-9a40-89c50e9ccd56")
- )
- (junction
- (at 106.68 74.93)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "426296bd-1c24-4c64-a895-446e2c1d982d")
- )
- (junction
- (at 181.61 107.95)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "448db68f-8070-4147-bcb2-eee119d4a8a0")
- )
- (junction
- (at 199.39 102.87)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "4e75f89d-9b38-4c61-81c8-d44d5bb1a4e4")
- )
- (junction
- (at 204.47 107.95)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "77714548-d6da-49d4-843e-2a5dd318a61e")
- )
- (junction
- (at 196.85 100.33)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "87cb2039-454d-4bbd-b495-2bd051992ff7")
- )
- (junction
- (at 127 87.63)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "a3c8260a-bb4c-4c22-9d26-167712e965cf")
- )
- (junction
- (at 144.78 105.41)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "a926fb05-de90-4721-91e3-6e712960a28d")
- )
- (junction
- (at 96.52 74.93)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "b681b7a6-49f5-40a0-9a84-ab347b68ab99")
- )
- (junction
- (at 179.07 105.41)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "ba11c2ea-67d4-434c-a6a8-ebee70366432")
- )
- (junction
- (at 127 100.33)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "d3dc2c1c-1b9f-459e-816c-af291c6bcd15")
- )
- (junction
- (at 176.53 102.87)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "d569859b-3ca4-4bb5-be88-34bbe2f0b807")
- )
- (junction
- (at 144.78 87.63)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "df8355c0-c405-404d-9538-3a161d280a66")
- )
- (wire
- (pts
- (xy 215.9 91.44) (xy 213.36 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "01824aee-a395-4180-9060-5017c751bf1f")
- )
- (wire
- (pts
- (xy 179.07 105.41) (xy 201.93 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "03c9c369-2688-46e7-8c46-ebed95bcafa0")
- )
- (wire
- (pts
- (xy 201.93 105.41) (xy 201.93 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "07f34906-1504-49c9-ad27-2daa949dac33")
- )
- (wire
- (pts
- (xy 127 87.63) (xy 127 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0ccf610a-7b9f-4cd3-be8a-5cc1b6ba6085")
- )
- (wire
- (pts
- (xy 227.33 96.52) (xy 227.33 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "12ef300c-4cb3-4bb9-a9c9-4b70b5efe85f")
- )
- (wire
- (pts
- (xy 199.39 102.87) (xy 199.39 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "17549631-fac5-4aa4-8ed7-b130bf848d50")
- )
- (wire
- (pts
- (xy 170.18 91.44) (xy 167.64 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1855df72-ce22-457e-b052-d1dd8c267069")
- )
- (wire
- (pts
- (xy 153.67 107.95) (xy 181.61 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "23e0002a-f9fe-464f-af9f-3ff9d5ea3f70")
- )
- (wire
- (pts
- (xy 213.36 91.44) (xy 213.36 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2c2d07f6-be42-4a81-9d2a-33e5a4fb332a")
- )
- (wire
- (pts
- (xy 176.53 96.52) (xy 176.53 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2df2c3c3-a506-4ed6-a2bc-b5e7d1e1fdf9")
- )
- (wire
- (pts
- (xy 135.89 87.63) (xy 135.89 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3e9aeb0b-4ddf-4074-af21-85ee5588f3cb")
- )
- (wire
- (pts
- (xy 83.82 87.63) (xy 83.82 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3f7d4de1-d1db-4a6f-9d1f-cde30b9f7ebe")
- )
- (wire
- (pts
- (xy 181.61 96.52) (xy 181.61 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4077aaf9-f4dc-420b-9c9c-54b1b0516fc6")
- )
- (wire
- (pts
- (xy 96.52 74.93) (xy 96.52 77.47)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "413d6a23-0bb3-4c9c-8fff-7aec0ffa8344")
- )
- (wire
- (pts
- (xy 219.71 96.52) (xy 219.71 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "43706f54-8696-4622-9dea-63704c39c419")
- )
- (wire
- (pts
- (xy 190.5 118.11) (xy 116.84 118.11)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "43fd2f24-39f0-4b7b-b5bc-384acbc1a7f3")
- )
- (wire
- (pts
- (xy 204.47 107.95) (xy 204.47 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "451e2fee-756f-4ed4-9b47-4b384ec3a6a9")
- )
- (wire
- (pts
- (xy 96.52 87.63) (xy 96.52 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "45bc18de-bb5e-473b-94b8-105f6a590f4d")
- )
- (wire
- (pts
- (xy 127 87.63) (xy 135.89 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "469eb645-0243-43f5-af63-cc1ca8b88644")
- )
- (wire
- (pts
- (xy 167.64 91.44) (xy 167.64 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "492ba280-1d16-4c77-a5d0-8d455e73cecd")
- )
- (wire
- (pts
- (xy 222.25 102.87) (xy 199.39 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4c3615d2-9d00-4bc9-bfa6-7a956dd6b481")
- )
- (wire
- (pts
- (xy 83.82 74.93) (xy 83.82 77.47)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4c69fcac-8e8b-4ada-bffc-936957d8060f")
- )
- (wire
- (pts
- (xy 116.84 102.87) (xy 135.89 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "50d96200-e1d6-4ee8-b2a6-3a28460e1ee2")
- )
- (wire
- (pts
- (xy 173.99 96.52) (xy 173.99 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "546ddae8-7cd7-4d9a-9ffd-4d53b2d0b7e6")
- )
- (wire
- (pts
- (xy 144.78 87.63) (xy 153.67 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5e2a2a3e-4a60-42b4-a5ee-93c9269d4e15")
- )
- (wire
- (pts
- (xy 135.89 102.87) (xy 176.53 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "61f2e11a-64ce-43e0-992d-dfedea4866cf")
- )
- (wire
- (pts
- (xy 224.79 96.52) (xy 224.79 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "620dd1f1-a7ca-4f99-8e95-c4611a5d801e")
- )
- (wire
- (pts
- (xy 167.64 115.57) (xy 116.84 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "62502327-2ed8-47ee-bfe2-d550b0ac9b51")
- )
- (wire
- (pts
- (xy 144.78 105.41) (xy 179.07 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "66699c83-3a93-436a-ac73-986b60ebc597")
- )
- (wire
- (pts
- (xy 96.52 74.93) (xy 106.68 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7989cf91-cf4f-49f5-9ef0-c365c505f1e8")
- )
- (wire
- (pts
- (xy 224.79 105.41) (xy 201.93 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7cb28dfe-ecc5-47b1-8a22-1b8ff23e58bc")
- )
- (wire
- (pts
- (xy 116.84 105.41) (xy 144.78 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7e08049c-7c61-46f6-aca4-b8165f32a6ff")
- )
- (wire
- (pts
- (xy 135.89 87.63) (xy 144.78 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8b2a7577-aefa-4841-b08c-42b9f0404a2f")
- )
- (wire
- (pts
- (xy 196.85 100.33) (xy 196.85 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8f651dd6-5a2e-4dc6-8686-e8fb9b93a763")
- )
- (wire
- (pts
- (xy 181.61 107.95) (xy 204.47 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a21821d4-85e3-494b-a45e-4143a94abb4c")
- )
- (wire
- (pts
- (xy 135.89 97.79) (xy 135.89 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a5ddba49-e718-443c-9bbd-098eaa550ddc")
- )
- (wire
- (pts
- (xy 106.68 125.73) (xy 106.68 128.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "aaf8f6a9-b084-4bb7-86af-c2fcfa30cf07")
- )
- (wire
- (pts
- (xy 222.25 96.52) (xy 222.25 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ac120a6a-db28-4491-9498-71c1567f41dd")
- )
- (wire
- (pts
- (xy 153.67 87.63) (xy 153.67 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b3ec41f2-8d5c-4c8d-bfd7-4c9d3db9ec44")
- )
- (wire
- (pts
- (xy 83.82 74.93) (xy 96.52 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b7621487-42ae-4fb5-94a5-677413a6d070")
- )
- (wire
- (pts
- (xy 127 97.79) (xy 127 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bda8cf26-0a34-4965-9462-1145c1e7b790")
- )
- (wire
- (pts
- (xy 106.68 72.39) (xy 106.68 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c3cdd572-110d-4ae4-8974-dc1e65a37b3e")
- )
- (wire
- (pts
- (xy 190.5 91.44) (xy 190.5 118.11)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cdc87c7b-3b22-4643-a7ec-53b7b6dda4f3")
- )
- (wire
- (pts
- (xy 173.99 100.33) (xy 196.85 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d261efe3-584c-496d-b6b8-e3067e672a49")
- )
- (wire
- (pts
- (xy 190.5 91.44) (xy 193.04 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d2e66f49-0c08-4162-a017-ea63d20a2898")
- )
- (wire
- (pts
- (xy 144.78 97.79) (xy 144.78 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d6a88a29-2aac-461a-9844-50557b7e11dc")
- )
- (wire
- (pts
- (xy 116.84 100.33) (xy 127 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d7c48ad3-83ec-48d5-a312-c361b902f60b")
- )
- (wire
- (pts
- (xy 127 100.33) (xy 173.99 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d92d2c4f-30c8-4b7f-a13c-3dd25338f2cf")
- )
- (wire
- (pts
- (xy 153.67 97.79) (xy 153.67 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "daa14eec-a0b5-40d1-a0bc-9ce2ed61193d")
- )
- (wire
- (pts
- (xy 227.33 107.95) (xy 204.47 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e50306b9-6fd6-459a-8c2b-737ce39ed55f")
- )
- (wire
- (pts
- (xy 219.71 100.33) (xy 196.85 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e75f9eaa-5ef4-4aa1-a12f-8156acda760b")
- )
- (wire
- (pts
- (xy 213.36 120.65) (xy 116.84 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e76a8482-f422-40d9-beaa-4b2f92363c0d")
- )
- (wire
- (pts
- (xy 127 85.09) (xy 127 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ea3873d2-cc12-46a7-a4dc-2cc2728cabdf")
- )
- (wire
- (pts
- (xy 106.68 74.93) (xy 106.68 95.25)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ee0283cc-e936-45cd-894f-2bd256418e20")
- )
- (wire
- (pts
- (xy 144.78 87.63) (xy 144.78 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f250a5b8-ea40-42e2-9303-d60bc11965b3")
- )
- (wire
- (pts
- (xy 176.53 102.87) (xy 199.39 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f50120c8-0a6f-4096-99f6-ebd0f11f6e88")
- )
- (wire
- (pts
- (xy 116.84 107.95) (xy 153.67 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fe693fa7-938c-4b72-b442-00da6ce78340")
- )
- (wire
- (pts
- (xy 179.07 96.52) (xy 179.07 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ff993559-dda2-4c2a-a53e-e6632487105e")
- )
- (symbol
- (lib_id "Device:R")
- (at 153.67 93.98 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "1f714be3-df94-4f3a-85fc-021c983dde7b")
- (property "Reference" "R8"
- (at 156.21 92.7099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "5k1"
- (at 156.21 95.2499 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 151.892 93.98 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 153.67 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 153.67 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "f0f92d2d-64e6-4043-861e-ef756080bc7f")
- )
- (pin "1"
- (uuid "88072b60-24cb-4cde-a2ae-2c018280bf23")
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "R8")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "MCU_WCH_CH32V0:CH32V003AxMx")
- (at 106.68 110.49 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "27af8307-4b77-41a0-8bd0-f5f34a042ede")
- (property "Reference" "U1"
- (at 108.8233 92.71 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "CH32V003AxMx"
- (at 108.8233 95.25 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_SO:SOP-16_3.9x9.9mm_P1.27mm"
- (at 104.14 110.49 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://www.wch-ic.com/products/CH32V003.html"
- (at 104.14 110.49 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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 106.68 110.49 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "7"
- (uuid "3bcfece6-48b0-4172-803f-5509f6217b41")
- )
- (pin "11"
- (uuid "5c71b162-cf2f-4179-84ee-973e29249c55")
- )
- (pin "12"
- (uuid "0dd3e95d-f02c-4093-a711-43d24dcbce03")
- )
- (pin "9"
- (uuid "6b256c67-07fa-4a20-a2de-dd3a33a0f797")
- )
- (pin "15"
- (uuid "6b294e5a-57eb-47b2-98eb-ccdfa1bd18a4")
- )
- (pin "8"
- (uuid "09d4fb78-3073-400c-882c-a9bf71e44f8b")
- )
- (pin "16"
- (uuid "ec447782-122f-47fa-80ac-d0f539687b68")
- )
- (pin "1"
- (uuid "c7aaa31d-e755-43b3-839a-69438740efab")
- )
- (pin "10"
- (uuid "2445bdf4-ede3-41cf-a2cc-a1cd310f5d10")
- )
- (pin "13"
- (uuid "9e70af00-073b-49f6-a2fb-a280ecc251ac")
- )
- (pin "14"
- (uuid "ae872abb-ac61-4fea-8adf-8a12364b96ac")
- )
- (pin "2"
- (uuid "6e72f596-356b-4534-9a20-45dca0d21817")
- )
- (pin "3"
- (uuid "6b64785d-8dac-4314-986a-51acebfef134")
- )
- (pin "4"
- (uuid "c545694b-461b-45e9-8c28-430806a9d52d")
- )
- (pin "5"
- (uuid "2ca01504-0a68-49ab-bbd8-76a0b11c6410")
- )
- (pin "6"
- (uuid "84167ab5-ba2d-4b75-9885-d92099918116")
- )
- (instances
- (project ""
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "U1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 83.82 81.28 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "5067087a-7fec-4bf0-9890-8c21ed31f75b")
- (property "Reference" "C2"
- (at 87.63 80.0099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 87.63 82.5499 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 84.7852 85.09 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 83.82 81.28 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 83.82 81.28 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "9fa42455-4f06-417a-aeac-ec8f80480603")
- )
- (pin "1"
- (uuid "91826c80-6c03-4c77-a0a9-01ec605d38d4")
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "C2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 127 93.98 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "5b0ad2dc-56ad-4174-a053-bc0702d7159f")
- (property "Reference" "R9"
- (at 129.54 92.7099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "5k1"
- (at 129.54 95.2499 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 125.222 93.98 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 127 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 127 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "a1fae877-61fa-447f-81d8-a68e7bb780f0")
- )
- (pin "1"
- (uuid "0d86ebe1-f627-40a9-aaa9-49a0bd5800f3")
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "R9")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 144.78 93.98 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "5baf2d35-babf-4cee-9fc3-2866aa303550")
- (property "Reference" "R7"
- (at 147.32 92.7099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "5k1"
- (at 147.32 95.2499 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 143.002 93.98 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 144.78 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 144.78 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "f16aec34-0190-479a-9586-d82df2977ff5")
- )
- (pin "1"
- (uuid "b759506c-8527-42c8-b1bf-d7a181de0d4d")
- )
- (instances
- (project ""
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "R7")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 96.52 87.63 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "72393d13-a103-4688-ae97-a202fe3ab235")
- (property "Reference" "#PWR07"
- (at 96.52 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 96.52 92.71 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 96.52 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 96.52 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 96.52 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "e24413be-7637-4815-a221-eb3f531559e8")
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "#PWR07")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 106.68 72.39 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "78453e17-758d-425d-8fce-3fe959770331")
- (property "Reference" "#PWR05"
- (at 106.68 76.2 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3V3"
- (at 106.68 67.31 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 106.68 72.39 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 106.68 72.39 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 106.68 72.39 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "764e6618-b750-47b6-867b-266828e9b3b2")
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "#PWR05")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 106.68 128.27 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "7948240e-1835-4ee5-bb3b-fdd200044a92")
- (property "Reference" "#PWR06"
- (at 106.68 134.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 106.68 133.35 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 106.68 128.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 106.68 128.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 106.68 128.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "1f63b162-231c-45f2-9a90-93ec432d2c4d")
- )
- (instances
- (project ""
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "#PWR06")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 83.82 87.63 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "80e83e2b-bddc-4df2-a671-c309962ab5c3")
- (property "Reference" "#PWR08"
- (at 83.82 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 83.82 92.71 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 83.82 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 83.82 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 83.82 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "f7e13473-3177-4757-a2dd-362e7038cefe")
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "#PWR08")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 127 85.09 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "ae6b1d30-4461-4b31-8d6c-9f39b9ac108f")
- (property "Reference" "#PWR04"
- (at 127 88.9 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3V3"
- (at 127 80.01 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 127 85.09 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 127 85.09 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 127 85.09 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "728da6f0-1fa6-4066-b1ee-c4f474d4f53c")
- )
- (instances
- (project ""
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "#PWR04")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 96.52 81.28 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "c73488dc-9c04-4f4f-be3b-e0de7ed7c1c9")
- (property "Reference" "C1"
- (at 100.33 80.0099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 100.33 82.5499 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 97.4852 85.09 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 96.52 81.28 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 96.52 81.28 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "b850e1d0-4675-4026-9036-7e92520745e5")
- )
- (pin "1"
- (uuid "57a79ef5-3282-4331-9941-7fbdd76a3d40")
- )
- (instances
- (project ""
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "C1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 135.89 93.98 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "f77fd619-6b5e-4a8d-b5a1-da765a4ceefe")
- (property "Reference" "R10"
- (at 138.43 92.7099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "5k1"
- (at 138.43 95.2499 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 134.112 93.98 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 135.89 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 135.89 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "7b258d6b-50e3-4cfb-95cf-7c08da379696")
- )
- (pin "1"
- (uuid "6fb43b45-949b-45c8-922e-6e0be5b618eb")
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (reference "R10")
- (unit 1)
- )
- )
- )
- )
- (sheet
- (at 193.04 87.63)
- (size 15.24 8.89)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (stroke
- (width 0.1524)
- (type solid)
- )
- (fill
- (color 0 0 0 0.0000)
- )
- (uuid "108b84b4-0a01-4e81-b374-cb69b0f69f5c")
- (property "Sheetname" "Keyboard right"
- (at 193.04 86.9184 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- )
- (property "Sheetfile" "keyboard_part.kicad_sch"
- (at 193.04 97.1046 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (pin "A" input
- (at 196.85 96.52 270)
- (uuid "1516fd66-a3a0-4cbb-9576-e6a3d5d57814")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "C" input
- (at 201.93 96.52 270)
- (uuid "65477774-71cf-4f4a-8865-b79531463537")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "D" input
- (at 204.47 96.52 270)
- (uuid "1ea31624-c4d5-4aff-b875-922bcb45001a")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "ENABLE" input
- (at 193.04 91.44 180)
- (uuid "f0941e47-b7dc-4ae7-b028-37c7943c180d")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "B" input
- (at 199.39 96.52 270)
- (uuid "2530a1d1-6ae0-4e72-b7cb-3a448ca7bd02")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (page "4")
- )
- )
- )
- )
- (sheet
- (at 215.9 87.63)
- (size 15.24 8.89)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (stroke
- (width 0.1524)
- (type solid)
- )
- (fill
- (color 0 0 0 0.0000)
- )
- (uuid "50dd0722-e8c6-4631-89da-cd2fce0f6fba")
- (property "Sheetname" "Keyboard top"
- (at 215.9 86.9184 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- )
- (property "Sheetfile" "keyboard_part.kicad_sch"
- (at 215.9 97.1046 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (pin "A" input
- (at 219.71 96.52 270)
- (uuid "33a9ae8c-6975-421b-898e-abe9c2b03940")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "C" input
- (at 224.79 96.52 270)
- (uuid "a05b0aa1-39f3-491b-be81-c3e8022e1603")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "D" input
- (at 227.33 96.52 270)
- (uuid "2b7036a1-6e40-43ec-9498-7fef3e492885")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "ENABLE" input
- (at 215.9 91.44 180)
- (uuid "7565c6bf-71fe-4826-9eb3-82490af8e785")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "B" input
- (at 222.25 96.52 270)
- (uuid "0aa006b0-a80e-4715-be05-9544af9961ad")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (page "5")
- )
- )
- )
- )
- (sheet
- (at 170.18 87.63)
- (size 15.24 8.89)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (stroke
- (width 0.1524)
- (type solid)
- )
- (fill
- (color 0 0 0 0.0000)
- )
- (uuid "c4ae203b-7f1c-48a7-9851-9a59485681d4")
- (property "Sheetname" "Keyboard left"
- (at 170.18 86.9184 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- )
- (property "Sheetfile" "keyboard_part.kicad_sch"
- (at 170.18 97.1046 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (pin "A" input
- (at 173.99 96.52 270)
- (uuid "ff507257-83c1-496e-af44-b3ca497076be")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "C" input
- (at 179.07 96.52 270)
- (uuid "ad2ea1e2-dcf9-42a9-b33b-c2658b3964d5")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "D" input
- (at 181.61 96.52 270)
- (uuid "8d3bdda4-07f5-47f7-a308-3ff0b5c21a76")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "ENABLE" input
- (at 170.18 91.44 180)
- (uuid "806c92fe-e3a1-4756-861c-e1df2d624c8f")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "B" input
- (at 176.53 96.52 270)
- (uuid "14e63b5b-6893-44e7-81c6-2c48d474b0b4")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (instances
- (project "cx-micro"
- (path "/be9814e9-796f-4a95-8839-623ccd1fcb86/8669effb-e013-4f26-b30f-e844b2a1580e"
- (page "2")
- )
- )
- )
- )
- )
|