加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
STM32F1_Breakout_Board.kicad_sch 137.71 KB
一键复制 编辑 原始数据 按行查看 历史
huanglilong 提交于 2022-07-06 00:24 . fix boms
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522
(kicad_sch (version 20211123) (generator eeschema)
(uuid c4c9af97-1b97-4b12-a190-03e8d1a86893)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x15_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 20.32 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x15_Female" (id 1) (at 0 -20.32 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x15, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x15_Female_1_1"
(arc (start 0 -17.272) (mid -0.508 -17.78) (end 0 -18.288)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -14.732) (mid -0.508 -15.24) (end 0 -15.748)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -12.192) (mid -0.508 -12.7) (end 0 -13.208)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -9.652) (mid -0.508 -10.16) (end 0 -10.668)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -7.112) (mid -0.508 -7.62) (end 0 -8.128)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -4.572) (mid -0.508 -5.08) (end 0 -5.588)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -17.78)
(xy -0.508 -17.78)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -15.24)
(xy -0.508 -15.24)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -12.7)
(xy -0.508 -12.7)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -10.16)
(xy -0.508 -10.16)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -7.62)
(xy -0.508 -7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -5.08)
(xy -0.508 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -0.508 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 5.08)
(xy -0.508 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 7.62)
(xy -0.508 7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 10.16)
(xy -0.508 10.16)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 12.7)
(xy -0.508 12.7)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 15.24)
(xy -0.508 15.24)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 17.78)
(xy -0.508 17.78)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 3.048) (mid -0.508 2.54) (end 0 2.032)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 5.588) (mid -0.508 5.08) (end 0 4.572)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 8.128) (mid -0.508 7.62) (end 0 7.112)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 10.668) (mid -0.508 10.16) (end 0 9.652)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 13.208) (mid -0.508 12.7) (end 0 12.192)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 15.748) (mid -0.508 15.24) (end 0 14.732)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 18.288) (mid -0.508 17.78) (end 0 17.272)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 17.78 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 -5.08 0) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -15.24 0) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 15.24 0) (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 12.7 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:USB_B_Micro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -5.08 11.43 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "USB_B_Micro" (id 1) (at -5.08 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector USB micro" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "USB Micro Type B connector" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "USB*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "USB_B_Micro_0_1"
(rectangle (start -5.08 -7.62) (end 5.08 7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(circle (center -3.81 2.159) (radius 0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center -0.635 3.429) (radius 0.381)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -0.127 -7.62) (end 0.127 -6.858)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 2.159)
(xy 0.635 2.159)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.175 2.159)
(xy -2.54 2.159)
(xy -1.27 3.429)
(xy -0.635 3.429)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.159)
(xy -1.905 2.159)
(xy -1.27 0.889)
(xy 0 0.889)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 2.794)
(xy 0.635 1.524)
(xy 1.905 2.159)
(xy 0.635 2.794)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -4.318 5.588)
(xy -1.778 5.588)
(xy -2.032 4.826)
(xy -4.064 4.826)
(xy -4.318 5.588)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -4.699 5.842)
(xy -4.699 5.588)
(xy -4.445 4.826)
(xy -4.445 4.572)
(xy -1.651 4.572)
(xy -1.651 4.826)
(xy -1.397 5.588)
(xy -1.397 5.842)
(xy -4.699 5.842)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.254 1.27) (end -0.508 0.508)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 5.08 -5.207) (end 4.318 -4.953)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 -2.667) (end 4.318 -2.413)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 -0.127) (end 4.318 0.127)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 4.953) (end 4.318 5.207)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "USB_B_Micro_1_1"
(pin power_out line (at 7.62 5.08 180) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 7.62 -2.54 180) (length 2.54)
(name "D-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 7.62 0 180) (length 2.54)
(name "D+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 2.54)
(name "ID" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -10.16 90) (length 2.54)
(name "Shield" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(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))))
)
)
)
(symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (id 0) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Crystal" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Two pin crystal" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.905 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -1.27)
(xy 1.905 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.905 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Crystal_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:FerriteBead_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (id 0) (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "FerriteBead_Small" (id 1) (at 1.905 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "L ferrite bead inductor filter" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_Small_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.7874)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.889)
(xy 0 1.2954)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.8288 0.2794)
(xy -1.1176 1.4986)
(xy 1.8288 -0.2032)
(xy 1.1176 -1.4224)
(xy -1.8288 0.2794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "FerriteBead_Small_1_1"
(pin passive line (at 0 2.54 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 -2.54 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0.762 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Small_0_1"
(arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "L_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small_US" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small_US" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "r resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_US_1_1"
(polyline
(pts
(xy 0 0)
(xy 1.016 -0.381)
(xy 0 -0.762)
(xy -1.016 -1.143)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.524)
(xy 1.016 1.143)
(xy 0 0.762)
(xy -1.016 0.381)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at 0 2.54 270) (length 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCU_ST_STM32F1:STM32F103C8Tx" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -15.24 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "STM32F103C8Tx" (id 1) (at 7.62 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" (id 2) (at -15.24 -35.56 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
(property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00161566.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "ARM Cortex-M3 STM32F1 STM32F103" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "ARM Cortex-M3 MCU, 64KB flash, 20KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LQFP*7x7mm*P0.5mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "STM32F103C8Tx_0_1"
(rectangle (start -15.24 -35.56) (end 12.7 35.56)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "STM32F103C8Tx_1_1"
(pin power_in line (at -5.08 38.1 270) (length 2.54)
(name "VBAT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 5.08 180) (length 2.54)
(name "PA0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 2.54 180) (length 2.54)
(name "PA1" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 0 180) (length 2.54)
(name "PA2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
(name "PA3" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
(name "PA4" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
(name "PA5" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
(name "PA6" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
(name "PA7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 5.08 0) (length 2.54)
(name "PB0" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 2.54 0) (length 2.54)
(name "PB1" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 15.24 0) (length 2.54)
(name "PC13" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 0 0) (length 2.54)
(name "PB2" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -20.32 0) (length 2.54)
(name "PB10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -22.86 0) (length 2.54)
(name "PB11" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 -38.1 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 38.1 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -25.4 0) (length 2.54)
(name "PB12" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -27.94 0) (length 2.54)
(name "PB13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -30.48 0) (length 2.54)
(name "PB14" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -33.02 0) (length 2.54)
(name "PB15" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
(name "PA8" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 12.7 0) (length 2.54)
(name "PC14" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -17.78 180) (length 2.54)
(name "PA9" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -20.32 180) (length 2.54)
(name "PA10" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -22.86 180) (length 2.54)
(name "PA11" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -25.4 180) (length 2.54)
(name "PA12" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -27.94 180) (length 2.54)
(name "PA13" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -38.1 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 38.1 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -30.48 180) (length 2.54)
(name "PA14" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -33.02 180) (length 2.54)
(name "PA15" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -2.54 0) (length 2.54)
(name "PB3" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 10.16 0) (length 2.54)
(name "PC15" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -5.08 0) (length 2.54)
(name "PB4" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -7.62 0) (length 2.54)
(name "PB5" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -10.16 0) (length 2.54)
(name "PB6" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -12.7 0) (length 2.54)
(name "PB7" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 27.94 0) (length 2.54)
(name "BOOT0" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -15.24 0) (length 2.54)
(name "PB8" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -17.78 0) (length 2.54)
(name "PB9" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -38.1 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 38.1 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 22.86 0) (length 2.54)
(name "PD0" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 20.32 0) (length 2.54)
(name "PD1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 33.02 0) (length 2.54)
(name "NRST" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -38.1 90) (length 2.54)
(name "VSSA" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 5.08 38.1 270) (length 2.54)
(name "VDDA" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -3.81 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AMS1117-3.3_0_1"
(rectangle (start -5.08 -5.08) (end 5.08 1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AMS1117-3.3_1_1"
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 0 180) (length 2.54)
(name "VO" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 0 0) (length 2.54)
(name "VI" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(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))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3VA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VA" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3VA\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3VA_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3VA_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3VA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(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) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 105.41 37.846) (diameter 0) (color 0 0 0 0)
(uuid 080618fe-ce14-4fa3-8767-ec553c447bf9)
)
(junction (at 168.656 146.558) (diameter 0) (color 0 0 0 0)
(uuid 09688311-d146-427a-8f22-638d515d814d)
)
(junction (at 168.656 70.358) (diameter 0) (color 0 0 0 0)
(uuid 1f9c4b35-225a-49ea-bb12-5ad00df92a00)
)
(junction (at 39.116 84.328) (diameter 0) (color 0 0 0 0)
(uuid 596efc9d-c63e-436a-84e0-a5bda2a229ea)
)
(junction (at 39.116 96.012) (diameter 0) (color 0 0 0 0)
(uuid 6c21883a-b32e-49f5-a924-991a8de49f3b)
)
(junction (at 166.116 146.558) (diameter 0) (color 0 0 0 0)
(uuid 6cd37fdf-ebd0-44e9-95f7-d5c5ed53ae5e)
)
(junction (at 166.116 70.358) (diameter 0) (color 0 0 0 0)
(uuid 6e71cd1d-23ad-4ce0-b96b-756d61825063)
)
(junction (at 74.295 33.02) (diameter 0) (color 0 0 0 0)
(uuid 78180780-f5e8-4a9d-b34c-bb0f72c9cb09)
)
(junction (at 132.08 94.996) (diameter 0) (color 0 0 0 0)
(uuid 803ce08c-acdc-412b-b878-a88d28fb8f7c)
)
(junction (at 43.688 33.02) (diameter 0) (color 0 0 0 0)
(uuid 82cd8710-97ca-4768-8a8e-b579803a530d)
)
(junction (at 49.784 33.02) (diameter 0) (color 0 0 0 0)
(uuid 82e16176-0829-4de5-9db2-015ad7c3d612)
)
(junction (at 171.196 70.358) (diameter 0) (color 0 0 0 0)
(uuid a46b9ae2-c42e-4e5a-a7f6-21904101d4df)
)
(junction (at 171.196 146.558) (diameter 0) (color 0 0 0 0)
(uuid a8a8a3d9-6ac8-4ae4-8c40-485b6ee7d65d)
)
(junction (at 105.41 30.226) (diameter 0) (color 0 0 0 0)
(uuid b0820f43-be10-4f78-b4f7-f91016b2c3e8)
)
(junction (at 124.46 30.226) (diameter 0) (color 0 0 0 0)
(uuid b3333d20-cc43-42dd-9208-d62950ab8334)
)
(junction (at 170.18 30.226) (diameter 0) (color 0 0 0 0)
(uuid b54679e1-45d8-4af9-9af1-72fa0cc1dd7b)
)
(junction (at 178.816 30.226) (diameter 0) (color 0 0 0 0)
(uuid b6cb8841-e4c1-489e-9502-659978736341)
)
(junction (at 197.612 133.858) (diameter 0) (color 0 0 0 0)
(uuid c1518519-0b89-49bb-8861-f3cdbe091521)
)
(junction (at 133.604 37.846) (diameter 0) (color 0 0 0 0)
(uuid cc2a3881-254b-4e28-9077-8ed8ba746735)
)
(junction (at 114.808 30.226) (diameter 0) (color 0 0 0 0)
(uuid d2d97595-349c-4aab-8528-b19c32d688b9)
)
(junction (at 114.808 37.846) (diameter 0) (color 0 0 0 0)
(uuid da7ab3d6-d179-48c6-a25b-c65843251ad6)
)
(junction (at 170.18 37.846) (diameter 0) (color 0 0 0 0)
(uuid db409e0b-8e4c-4564-88c8-e901dd0e5d18)
)
(junction (at 114.3 94.996) (diameter 0) (color 0 0 0 0)
(uuid dc5387b6-f8fa-47d8-bece-bc75de14eca6)
)
(junction (at 124.46 37.846) (diameter 0) (color 0 0 0 0)
(uuid ddc39420-fe08-425a-9238-86f001e80825)
)
(junction (at 133.604 30.226) (diameter 0) (color 0 0 0 0)
(uuid f67bd169-ad51-4fa9-8e25-2b718d40349e)
)
(no_connect (at 20.828 48.26) (uuid 38f7d8df-9235-44e3-954d-61831161d836))
(no_connect (at 30.988 43.18) (uuid 38f7d8df-9235-44e3-954d-61831161d837))
(no_connect (at 186.436 103.378) (uuid 39520d79-14a6-47e9-b75e-f00c714104eb))
(no_connect (at 186.436 108.458) (uuid 39520d79-14a6-47e9-b75e-f00c714104ec))
(no_connect (at 153.416 133.858) (uuid c2e1c744-5f7a-4ca6-ab62-1175507013aa))
(no_connect (at 153.416 136.398) (uuid c2e1c744-5f7a-4ca6-ab62-1175507013ab))
(no_connect (at 153.416 138.938) (uuid c2e1c744-5f7a-4ca6-ab62-1175507013ac))
(no_connect (at 153.416 141.478) (uuid c2e1c744-5f7a-4ca6-ab62-1175507013ad))
(wire (pts (xy 22.606 96.012) (xy 39.116 96.012))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01d4aafd-b8e5-481d-9034-b38858a1af26)
)
(polyline (pts (xy 15.24 20.955) (xy 97.79 20.955))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02f3900f-191f-478e-ba7b-9ff116219ea0)
)
(polyline (pts (xy 97.79 58.42) (xy 97.79 20.955))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 044c5418-8db5-4e0a-b063-a23a8ceaf4ee)
)
(wire (pts (xy 186.436 131.318) (xy 200.66 131.318))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 053bf126-7361-4dcf-b63b-666220ae8522)
)
(polyline (pts (xy 101.346 46.482) (xy 151.384 46.482))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0da65c2a-96b4-41d8-a445-2ffb01c20c30)
)
(wire (pts (xy 200.66 133.858) (xy 197.612 133.858))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14579860-1521-4ab9-95f3-a0a8ea78a0b8)
)
(wire (pts (xy 132.08 88.138) (xy 132.08 94.996))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 174dc65a-dd00-4167-b0f5-192e19046bbe)
)
(wire (pts (xy 170.18 29.21) (xy 170.18 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17e9bbd3-7e15-40c1-92dc-66802693ebdb)
)
(wire (pts (xy 66.04 82.55) (xy 66.04 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18b80cf8-80d3-454d-816c-4e5bebb57fe1)
)
(polyline (pts (xy 154.686 46.482) (xy 188.214 46.482))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ad38bec-4fa9-44b6-8863-46f9d74760d0)
)
(polyline (pts (xy 15.24 20.955) (xy 15.24 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bc6bad8-e0e3-4ca1-b06a-7f506ce1281f)
)
(wire (pts (xy 49.784 29.718) (xy 49.784 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 217a53a1-2ddf-4c4b-96c1-07b469e35f21)
)
(polyline (pts (xy 77.47 68.072) (xy 77.47 105.156))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24466d3d-cc0f-4317-a67c-b4d3d686cbbd)
)
(wire (pts (xy 39.116 96.012) (xy 39.116 97.536))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2537e775-1959-4f3a-9f3e-5d28fad642cc)
)
(wire (pts (xy 49.784 44.958) (xy 49.784 50.038))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a0f82dd-70a0-42ca-9ac7-69f89a74fdca)
)
(wire (pts (xy 178.816 28.194) (xy 178.816 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b6f0eb5-a020-4e2a-b6bf-99a52a01ed0f)
)
(wire (pts (xy 119.38 94.996) (xy 114.3 94.996))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c165cad-cfcb-400f-8c89-f5ca9b0405eb)
)
(wire (pts (xy 132.08 94.996) (xy 132.08 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2cb8f5c3-0424-4990-8fff-1e19ee60ad00)
)
(wire (pts (xy 208.28 105.918) (xy 208.28 107.442))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35fe68e1-521c-41fc-afd4-4a9aa7ed70a1)
)
(polyline (pts (xy 188.214 46.482) (xy 188.214 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39f4a710-90a6-435e-8f61-595752f7c829)
)
(wire (pts (xy 166.116 70.358) (xy 168.656 70.358))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b27b797-887d-4aa7-a633-df7825aec152)
)
(wire (pts (xy 166.37 30.226) (xy 170.18 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b41d046-88ec-4e90-8d59-ae7396543a88)
)
(wire (pts (xy 114.808 30.226) (xy 124.46 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40703925-43ba-44b2-85d9-fa8dbf13d569)
)
(wire (pts (xy 86.36 33.02) (xy 88.9 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 430297e4-1e1c-4ed0-b7c0-3e5125f09945)
)
(polyline (pts (xy 15.494 152.908) (xy 77.724 152.908))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46158381-e55d-4c42-871c-ba6ab335130f)
)
(wire (pts (xy 127 94.996) (xy 132.08 94.996))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48b2bde9-6ea7-4e0b-93ed-bbd07a150d05)
)
(wire (pts (xy 166.116 146.558) (xy 166.116 148.336))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4baa903a-806f-41d1-bf6c-106849f98f05)
)
(wire (pts (xy 74.295 45.085) (xy 74.295 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50b8364b-39e1-461b-ac45-c3ba35b783b7)
)
(wire (pts (xy 88.9 43.815) (xy 88.9 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 575038fa-64dd-434d-a335-ede9ab88f4d2)
)
(wire (pts (xy 39.116 81.788) (xy 39.116 84.328))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 579761e1-9416-43d5-be22-59b98d6f7643)
)
(wire (pts (xy 153.416 85.598) (xy 114.3 85.598))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5979ffc5-6aa2-445b-86cb-145ed54bd53e)
)
(wire (pts (xy 114.3 85.598) (xy 114.3 94.996))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b6bfd68-7a3c-4660-8b67-c182e7967dc9)
)
(wire (pts (xy 66.04 97.536) (xy 66.04 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cfd5119-d376-49fa-b675-ade65982ab5c)
)
(wire (pts (xy 186.436 105.918) (xy 193.802 105.918))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e951ea8-e7f9-4d47-a731-9a08a987b372)
)
(wire (pts (xy 105.41 28.067) (xy 105.41 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 651e16d0-9572-4c60-bcc3-1adfbb41cccf)
)
(wire (pts (xy 74.295 33.02) (xy 74.295 37.465))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6657d074-4c88-4344-b67b-157e9f739ab8)
)
(polyline (pts (xy 77.47 105.156) (xy 15.24 105.156))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67ec7401-2cde-40eb-b739-c559bbced57f)
)
(wire (pts (xy 39.116 94.488) (xy 39.116 96.012))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6cdb3716-56a4-443e-a390-e5c936c29f1a)
)
(polyline (pts (xy 77.724 152.908) (xy 77.724 111.506))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d035f59-e3d6-402d-a150-0c83a10b06c1)
)
(wire (pts (xy 43.688 33.02) (xy 49.784 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71efc708-6bf9-4600-9f48-90edbf3c3ddd)
)
(wire (pts (xy 176.276 65.532) (xy 176.276 70.358))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 735e0be4-28c1-4bca-bb4c-ac4454c11dc5)
)
(polyline (pts (xy 101.6 58.166) (xy 216.662 58.166))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 743cfe18-c21b-4a17-9ba1-9303c290e03b)
)
(wire (pts (xy 114.808 37.846) (xy 124.46 37.846))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74de13e5-493a-4eb9-ac83-dfface6ff7b2)
)
(wire (pts (xy 74.295 33.02) (xy 78.74 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77e2e20b-685a-425a-a05a-de356a60bb0b)
)
(polyline (pts (xy 101.6 58.42) (xy 101.6 155.448))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77e8e1a5-1f17-4e7b-a1e8-eb51c8d67467)
)
(polyline (pts (xy 15.494 111.506) (xy 77.724 111.506))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a5e0ba0-4c9e-46f4-afe0-180aa11d46d9)
)
(polyline (pts (xy 101.346 20.574) (xy 151.384 20.574))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a9e3d6a-6e06-4be6-b67f-c0cf332f9ce8)
)
(polyline (pts (xy 154.686 20.574) (xy 154.686 46.482))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b54b51c-6510-4d0c-81b9-3e40ea93b49b)
)
(polyline (pts (xy 101.6 155.448) (xy 216.662 155.448))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d2bb2fb-bd60-45ca-8a18-7833fb0d87f5)
)
(wire (pts (xy 39.116 33.02) (xy 43.688 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e584cd5-d987-4263-90f8-ca57cb4ca4fd)
)
(wire (pts (xy 153.416 88.138) (xy 132.08 88.138))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8639c414-2173-4d10-93ef-4918d9f82f74)
)
(wire (pts (xy 124.46 37.846) (xy 133.604 37.846))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88072c5b-028d-4fe9-ac77-e7ab33229863)
)
(polyline (pts (xy 15.24 58.42) (xy 97.79 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88ca3786-5ffa-474d-9ca5-30e1889b28dd)
)
(wire (pts (xy 22.606 84.328) (xy 22.606 96.012))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c1724b2-987f-490b-96c0-9b6839e860b7)
)
(wire (pts (xy 39.116 84.328) (xy 49.022 84.328))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8dc46300-e3b6-4e7d-b473-4d20f7e84fbc)
)
(polyline (pts (xy 15.24 68.072) (xy 77.47 68.072))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8eecbe63-b9f7-413e-9da8-c42e0a2be368)
)
(wire (pts (xy 39.116 84.328) (xy 39.116 86.868))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90fe22eb-0cd6-40f5-93f2-a31cb0493e8f)
)
(wire (pts (xy 105.41 37.846) (xy 105.41 39.751))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 945d1159-d783-4d8a-bd40-ee1346d304b2)
)
(wire (pts (xy 201.422 105.918) (xy 208.28 105.918))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d94d234-ea85-4650-9806-ce419e95524f)
)
(wire (pts (xy 124.46 30.226) (xy 133.604 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a165bf59-2bf8-4ef1-8152-12d1edccef36)
)
(wire (pts (xy 197.612 123.19) (xy 197.612 124.206))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1bcb253-0c9a-4440-a348-6ff3b4850e1e)
)
(wire (pts (xy 114.3 105.41) (xy 114.3 108.204))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2eed5e3-f844-47d3-87e6-3369091431bc)
)
(polyline (pts (xy 154.686 20.32) (xy 188.214 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a78c6a2a-d361-46bd-8c5b-83f774ad5fef)
)
(wire (pts (xy 32.766 84.328) (xy 39.116 84.328))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a87cb604-0b61-43a7-8afe-2c5d2bba7991)
)
(wire (pts (xy 88.9 33.02) (xy 88.9 38.735))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a998d84d-c605-49d4-b436-041c3f5243ae)
)
(wire (pts (xy 171.196 146.558) (xy 173.736 146.558))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aadb5814-4da4-4de0-b89f-41e50524f793)
)
(wire (pts (xy 157.988 30.226) (xy 161.29 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad3b740d-1055-43b0-8c8c-0b722461561e)
)
(wire (pts (xy 30.988 33.02) (xy 34.036 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad50a249-e4f2-4fc9-8c48-483535daf24b)
)
(wire (pts (xy 170.18 30.226) (xy 178.816 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad8fa035-f711-4c6f-a9cb-629738545333)
)
(wire (pts (xy 166.116 146.558) (xy 168.656 146.558))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af88fc9c-6838-499e-a0c2-467fe84eafad)
)
(wire (pts (xy 170.18 37.846) (xy 178.816 37.846))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid afa46795-265f-464f-98db-3549951005c6)
)
(wire (pts (xy 170.18 37.846) (xy 170.18 39.878))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3a30634-d563-476c-8ce0-cfa41f72411a)
)
(polyline (pts (xy 101.346 20.828) (xy 101.346 46.482))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b78c2abf-514f-4003-9c7c-a197f35951f7)
)
(wire (pts (xy 114.3 94.996) (xy 114.3 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b86649dc-c8fb-459e-a6b9-823e0d25cfb9)
)
(wire (pts (xy 105.41 37.846) (xy 114.808 37.846))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b86b19ba-3601-4b8c-b4c8-c326782ae454)
)
(wire (pts (xy 208.28 112.522) (xy 208.28 115.062))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bbba69f2-d062-4074-a079-cd997e461f8e)
)
(polyline (pts (xy 15.24 68.326) (xy 15.24 105.156))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0cfc359-f7d4-43fc-b0a9-6b5af48e151e)
)
(wire (pts (xy 197.612 129.286) (xy 197.612 133.858))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c59f05be-bfd3-445f-92bc-d44ffe7af8da)
)
(wire (pts (xy 166.116 65.532) (xy 166.116 70.358))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cbd380ae-2ac6-4bb4-9912-092cf50b56b7)
)
(wire (pts (xy 171.196 70.358) (xy 173.736 70.358))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc3c336f-be67-4582-bbde-723de699453a)
)
(wire (pts (xy 133.604 30.226) (xy 142.748 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1428c24-9d55-40df-8569-66dddb2697ae)
)
(polyline (pts (xy 216.662 155.448) (xy 216.662 58.166))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d41c80bb-2bde-4e18-8e30-563d47b8ea6f)
)
(polyline (pts (xy 151.384 46.482) (xy 151.384 20.574))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d465dd56-1565-4d85-9f9c-38a1fcb04ddf)
)
(wire (pts (xy 49.784 33.02) (xy 49.784 37.338))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da54f59a-4f0a-440d-8660-07189d53f74b)
)
(wire (pts (xy 168.656 146.558) (xy 171.196 146.558))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db6af83a-2c83-4127-8597-d07e79c2aaae)
)
(wire (pts (xy 105.41 30.226) (xy 114.808 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd0622a9-3012-4be3-933b-df434ca6b564)
)
(wire (pts (xy 168.656 70.358) (xy 171.196 70.358))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de33f712-f0f0-4a91-b610-39f4809e7481)
)
(wire (pts (xy 39.116 74.676) (xy 39.116 76.708))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df7eca59-a9f4-405a-976c-cab1b943fe47)
)
(wire (pts (xy 157.988 28.194) (xy 157.988 30.226))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4f85571-ebbc-4a44-8135-6d6cea809347)
)
(wire (pts (xy 74.295 30.48) (xy 74.295 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5301d5b-e33d-4b65-a6e0-2b9996eb7929)
)
(wire (pts (xy 133.604 37.846) (xy 142.748 37.846))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5f90167-7b54-453f-b1fc-1877e0a0b85a)
)
(wire (pts (xy 49.784 33.02) (xy 53.34 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e78bfe32-b0c4-4e88-b9b5-d16cdefd4297)
)
(wire (pts (xy 132.08 105.41) (xy 132.08 108.204))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e7d4d629-06cf-4c6b-9f83-154fddd38ea2)
)
(wire (pts (xy 68.58 33.02) (xy 74.295 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e84ca2ad-5096-4dff-befd-a10c77b0c2db)
)
(wire (pts (xy 60.96 40.64) (xy 60.96 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eeb5f5de-c3c8-4a88-b721-6de0f395f3bd)
)
(wire (pts (xy 23.368 48.26) (xy 23.368 50.038))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef6ba65d-7313-4a8e-98e2-cdb71248a745)
)
(wire (pts (xy 197.612 133.858) (xy 186.436 133.858))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3da13b5-bf39-484d-98f8-0c2bedafdb1b)
)
(polyline (pts (xy 15.494 111.76) (xy 15.494 152.908))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f743a5ab-bbbe-45bb-afef-3b24cf8cbc76)
)
(text "USB and Regulator" (at 15.24 20.32 0)
(effects (font (size 2.032 2.032) (thickness 0.4064) bold) (justify left bottom))
(uuid 121b2b0b-21f9-4d3a-a661-11a8b61e671e)
)
(text "Ideally, should have GND between each signal pin and decouping at 3V3 pins"
(at 14.986 155.194 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 191615df-6873-4d2e-bbe3-5826f41e5d10)
)
(text "USB device - leave shield floating (unless suitable enclouse available)"
(at 14.605 61.595 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2f6828f2-d029-4419-92c8-5de490176f0d)
)
(text "light low-pass filter for anolog VDD" (at 154.178 19.812 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3ee0c266-838c-494f-ab36-c8447112239a)
)
(text "3v3 regulator stable with 1uF output cap." (at 56.515 20.32 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6554e65b-2dc9-4b53-85de-1162d2fd17d6)
)
(text "Reset and Boot" (at 15.24 67.564 0)
(effects (font (size 2.032 2.032) bold) (justify left bottom))
(uuid 78853de6-8b9a-4ee3-a283-f2942e5f0881)
)
(text "1x bulk decoupling + 100nF per VDD pin" (at 100.838 49.022 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c855908f-920a-43cc-abae-24c71b5b570b)
)
(text "STM32F103 requires external 1k5 pull-up on USB D+ line"
(at 101.6 158.242 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cc307d62-ec8c-43f3-acab-b5895b73eb6a)
)
(label "HSE_OUT" (at 145.034 85.598 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 46694ed3-2bca-49b8-b331-0f5155fb1fb1)
)
(label "HSE_IN" (at 145.034 88.138 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9a5c84d1-923b-4739-aaea-cf6cbf71d07e)
)
(global_label "BOOT0" (shape input) (at 66.04 82.55 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 054834fb-8bf7-4bd9-92c7-e1ab12a1e3a1)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 65.9606 74.0288 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PB6" (shape input) (at 153.416 118.618 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 071918fd-e6b3-47a7-9cdd-ab6f5a5b2ee6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 118.5386 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB6" (shape input) (at 27.432 134.62 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0c61263c-d680-4d82-9069-a747ec51317b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.2694 134.5406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB8" (shape input) (at 153.416 123.698 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 116626d5-b281-45c6-8c7b-506d727c016e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 123.6186 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB7" (shape input) (at 153.416 121.158 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 14eacebc-8e41-43aa-bb82-21b4d65b12a3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 121.0786 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PC15" (shape input) (at 153.416 98.298 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 14fce9f9-c9d0-4b49-8548-27f6205126cb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.0439 98.2186 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA4" (shape input) (at 56.388 147.066 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 157b81aa-6ea6-4863-a463-ab0dc799f2d5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.4068 146.9866 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA7" (shape input) (at 56.388 139.446 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1c448b10-62dc-4205-b4eb-5e08c41c3f33)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.4068 139.3666 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "USB_D-" (shape input) (at 200.66 131.318 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2614f1d4-a799-4249-bf2e-9aca74ca990c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 210.6931 131.2386 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PB8" (shape input) (at 27.432 139.7 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2a5e4fc7-ebfc-4784-9086-b7df8e493816)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.2694 139.6206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SWCLK" (shape input) (at 186.436 138.938 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2ca77938-cdfd-4803-accb-504ecba12a79)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 195.0781 138.8586 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SWCLK" (shape input) (at 27.432 121.92 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2ced4801-08eb-487e-8a9d-ce2a683fcb40)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.7899 121.9994 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SWO" (shape input) (at 27.432 127 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2dd5471d-9036-4689-8db1-9ae826cbff8c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.0275 126.9206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB11" (shape input) (at 153.416 131.318 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2facd89b-f93a-4be3-a0cc-a9f5f1635097)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 131.2386 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB7" (shape input) (at 27.432 137.16 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 30b7cab2-928a-440c-88d0-46293d2fd514)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.2694 137.0806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB5" (shape input) (at 153.416 116.078 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3621b247-2663-4df9-8d80-1e2d8beb831b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 115.9986 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB0" (shape input) (at 56.388 136.906 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 367b58fe-be5a-4242-a0cc-116c1b1ecc61)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.2254 136.8266 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB4" (shape input) (at 27.432 129.54 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 38c05c75-53e2-4b44-8ef7-41be1eeed7f2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.2694 129.4606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB2" (shape input) (at 153.416 108.458 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3fa82a6a-29bc-4838-ad90-25acc5e35039)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 108.3786 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB9" (shape input) (at 27.432 142.24 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4354c5be-bca5-4e8d-a3e2-05096fce3680)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.2694 142.1606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA4" (shape input) (at 186.436 113.538 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4ed4ccce-9bda-4b7a-a25a-9b112bca5cdb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 113.4586 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PC13" (shape input) (at 27.432 144.78 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 588b920d-6a3b-492f-805b-595b074a7e87)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.0599 144.7006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA15" (shape input) (at 186.436 141.478 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5d236453-0b9f-4b96-b401-2af8d4ffe00a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 141.3986 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PC15" (shape input) (at 27.432 149.86 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 688bcac7-1f6a-4d75-8800-994797fe466f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.0599 149.7806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "NRST" (shape input) (at 153.416 75.438 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6d8b7faa-2eee-4de2-ae2b-429e90a3bfb3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.2253 75.3586 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA3" (shape input) (at 186.436 110.998 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7185e381-c3b2-4c0a-a650-04775c804964)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 110.9186 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PA6" (shape input) (at 56.388 141.986 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7626f9a1-9815-4a64-84f3-70710e846db8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.4068 141.9066 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "NRST" (shape input) (at 49.022 84.328 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 79c2ed5e-f796-4e20-a3da-83a0807e3960)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 56.2127 84.2486 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PA9" (shape input) (at 186.436 126.238 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7fb1b21f-0d6d-4186-ae8c-c927b8b9ddc3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 126.1586 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PB4" (shape input) (at 153.416 113.538 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 80c0de4a-6586-42a8-94e7-5cb18d101870)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 113.4586 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB10" (shape input) (at 153.416 128.778 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 844db335-18c5-4472-881c-e11dd946f332)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 128.6986 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "USB_D+" (shape input) (at 30.988 38.1 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8ae8c915-346c-4862-9b2a-c7cd631fa57a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 41.0211 38.0206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PA10" (shape input) (at 186.436 128.778 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8cd1de1e-1632-427b-9bdf-b6dcadd70fe5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 128.6986 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PA8" (shape input) (at 56.388 124.206 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 918b11d2-b294-4410-897d-5077cc2e1f69)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.4068 124.1266 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB10" (shape input) (at 56.388 129.286 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 91f6d5af-a26a-48ef-aa77-5dc39a3b595a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0159 129.2066 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SWO" (shape input) (at 153.416 110.998 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 95af828a-cea2-4b7a-9bac-ad8a5dfca923)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.0115 110.9186 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA9" (shape input) (at 56.388 121.666 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 97a96c91-6e99-4b8f-9342-84238b57158c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.4068 121.5866 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB9" (shape input) (at 153.416 126.238 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9994a3fe-dcab-4b9f-90f1-e69af039d29b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 126.1586 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA5" (shape input) (at 56.388 144.526 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9ba5a8b1-31a5-48ce-bb59-f87238550bbb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.4068 144.4466 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "USB_D-" (shape input) (at 30.988 40.64 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9ff10d83-4aec-4ce1-9bbb-3385c443059c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 41.0211 40.5606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PB1" (shape input) (at 153.416 105.918 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a5c7e8a0-1cb4-472c-8fe6-5fd3c94c5e89)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 105.8386 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SWDIO" (shape input) (at 186.436 136.398 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a69e0f34-91a9-4a98-a823-2341ef838c4d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 194.7153 136.3186 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PA7" (shape input) (at 186.436 121.158 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a764fee6-9a83-4293-86aa-4bdf1e5fcafb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 121.0786 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PB1" (shape input) (at 56.388 134.366 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a8bf7421-3563-4995-ac12-7962ec953093)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.2254 134.2866 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA8" (shape input) (at 186.436 123.698 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a9ca0101-5621-4c8f-9b3a-337879526c40)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 123.6186 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PA3" (shape input) (at 56.388 149.606 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid bb40bda4-1bd6-4fd6-9674-3231ca02551e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.4068 149.5266 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA6" (shape input) (at 186.436 118.618 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c01217c4-c85f-4519-8226-11acb684d930)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 118.5386 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PA10" (shape input) (at 56.388 119.126 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c69271ea-5b56-48c0-9f31-0b11932718d9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.1973 119.0466 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "USB_D+" (shape input) (at 200.66 133.858 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c74ef5b5-14e2-488d-965b-a940bb785685)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 210.6931 133.7786 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PB5" (shape input) (at 27.432 132.08 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d7111373-c54d-4365-be59-43fb7b794359)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.2694 132.0006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PC14" (shape input) (at 153.416 95.758 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d71bb644-9041-492c-b9a2-de7f98f3547e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.0439 95.6786 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PC13" (shape input) (at 153.416 93.218 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dc227867-276a-463c-9a1d-4f5b14775640)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.0439 93.1386 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PC14" (shape input) (at 27.432 147.32 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dca0cd86-d7da-4750-a1f0-3c49f56ba442)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 20.0599 147.2406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PA5" (shape input) (at 186.436 116.078 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid dfa564cc-4389-4692-8c23-12f2fe108d44)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4172 115.9986 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "PA15" (shape input) (at 27.432 124.46 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e869ab23-7a0e-4cd8-9ec7-204184cecd5a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 21.4508 124.5394 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB0" (shape input) (at 153.416 103.378 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid eb0e4baf-0300-487a-947c-2093a0892b40)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.2534 103.2986 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB2" (shape input) (at 56.388 131.826 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid eb7b2c59-3193-4228-871f-63d96b586d33)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.2254 131.7466 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "BOOT0" (shape input) (at 153.416 80.518 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f2a6dfb0-20b1-4e26-a4d0-09fbfff33a62)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 144.8948 80.4386 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "PB11" (shape input) (at 56.388 126.746 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fac154fe-590a-45e7-9ada-f1c4a6eb23b8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0159 126.6666 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SWDIO" (shape input) (at 27.432 119.38 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fce2e42d-843d-49be-b514-784e09c13452)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.1527 119.4594 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "power:GND") (at 114.3 108.204 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0669a98c-a96c-4f43-9777-44d4150628ca)
(property "Reference" "#PWR018" (id 0) (at 114.3 114.554 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 114.3 112.014 0))
(property "Footprint" "" (id 2) (at 114.3 108.204 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 114.3 108.204 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f00a47a9-4f0e-4ed5-8800-aaaf80256154))
)
(symbol (lib_id "power:+3.3V") (at 197.612 123.19 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0ab780e5-f4dc-465e-8a30-a43aee0ea9c9)
(property "Reference" "#PWR026" (id 0) (at 197.612 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 197.612 119.126 0))
(property "Footprint" "" (id 2) (at 197.612 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 197.612 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f2167623-7499-4db7-910d-2ba863001354))
)
(symbol (lib_id "Device:C") (at 132.08 101.6 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0af1723f-f8ba-4793-b7b2-b4fe918ec61b)
(property "Reference" "C8" (id 0) (at 132.842 99.06 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "30pF" (id 1) (at 133.096 104.394 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 133.0452 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f37f656e-e827-4e94-9db8-0bf86506723a))
(pin "2" (uuid ab9ebd74-a8b1-4b81-8e83-73538541d2c7))
)
(symbol (lib_id "Device:C") (at 49.784 41.148 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0cc598dc-4372-422f-a148-9dab25d5bf38)
(property "Reference" "C2" (id 0) (at 50.546 38.735 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 50.038 44.069 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 50.7492 44.958 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 49.784 41.148 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bb90f4e9-7efd-449e-94cb-418380ed40f4))
(pin "2" (uuid 61097809-4f27-463d-a001-b41601ef9c9a))
)
(symbol (lib_id "Device:C") (at 170.18 34.036 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0e324416-033f-47a0-9f92-569b2b17341a)
(property "Reference" "C11" (id 0) (at 170.942 31.496 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 171.196 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 171.1452 37.846 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 170.18 34.036 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cdd322b6-7dad-43ba-ab3e-c51828e08867))
(pin "2" (uuid 7201eb39-0181-4e9c-a852-85bd12836d6f))
)
(symbol (lib_id "power:GND") (at 60.96 50.165 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 143e3498-e79c-4e8a-89c6-235685fad2c9)
(property "Reference" "#PWR011" (id 0) (at 60.96 56.515 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 60.96 54.61 0))
(property "Footprint" "" (id 2) (at 60.96 50.165 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 60.96 50.165 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid abb32f57-3b0d-4585-9dca-eb036e758b60))
)
(symbol (lib_id "Regulator_Linear:AMS1117-3.3") (at 60.96 33.02 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 187ba96c-9d00-4ac2-8bfb-d02784d03f10)
(property "Reference" "U1" (id 0) (at 57.15 39.37 0))
(property "Value" "XC6206P332MR" (id 1) (at 60.96 29.845 0))
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 60.96 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 63.5 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 57791723-e6b0-41e6-a384-3369be8114d6))
(pin "2" (uuid 36120782-d2be-4866-8f09-ea602881aafc))
(pin "3" (uuid ced9ef82-a2ef-4134-8c8f-7d30b4500243))
)
(symbol (lib_id "Device:R_Small_US") (at 88.9 41.275 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 23022d3e-1c4a-495b-ab92-6ac9865b8eaf)
(property "Reference" "R3" (id 0) (at 89.662 38.608 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1.5K" (id 1) (at 89.662 43.942 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 88.9 41.275 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 88.9 41.275 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 073e84ac-cba3-4629-b27d-5fcae3c434e2))
(pin "2" (uuid 583bc7ee-4d72-480f-832d-9b665c7b717b))
)
(symbol (lib_id "power:+3.3VA") (at 176.276 65.532 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2fbfb19b-ce5f-4286-ac3c-367257370abd)
(property "Reference" "#PWR024" (id 0) (at 176.276 69.342 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VA" (id 1) (at 176.53 61.214 0))
(property "Footprint" "" (id 2) (at 176.276 65.532 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 176.276 65.532 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cfc851c2-887b-4c3d-afd4-f6111cef3724))
)
(symbol (lib_id "power:GND") (at 170.18 39.878 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 317629ea-d268-4d8f-99dc-a8e407ab437c)
(property "Reference" "#PWR023" (id 0) (at 170.18 46.228 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 170.18 44.577 0))
(property "Footprint" "" (id 2) (at 170.18 39.878 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 170.18 39.878 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a15c3297-d480-4ab7-8cd6-582bb358b9c2))
)
(symbol (lib_id "Device:LED") (at 197.612 105.918 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 33335eb7-0734-415d-8619-1de47c7415f1)
(property "Reference" "D2" (id 0) (at 197.612 103.124 0))
(property "Value" "BLUE" (id 1) (at 198.374 108.458 0))
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 197.612 105.918 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 197.612 105.918 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 92362cf5-cd5e-4898-996d-ad903b04c7e7))
(pin "2" (uuid 1b333546-6373-4b94-b678-296462c7c518))
)
(symbol (lib_id "power:+3.3V") (at 157.988 28.194 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4fdb59ee-2daa-442a-b3a9-63ea879ee2af)
(property "Reference" "#PWR020" (id 0) (at 157.988 32.004 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 157.988 22.86 0))
(property "Footprint" "" (id 2) (at 157.988 28.194 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 157.988 28.194 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 165f9858-e724-4c2a-b62d-c45fd3cc5f64))
)
(symbol (lib_id "Device:C") (at 105.41 34.036 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 51621439-67e6-4654-abd1-e9ac4cf46fc3)
(property "Reference" "C4" (id 0) (at 106.172 31.496 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "4.7uF" (id 1) (at 106.426 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 106.3752 37.846 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 105.41 34.036 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a2dde109-49f1-4b13-ad6e-62b814bf7f9f))
(pin "2" (uuid 3f7c0380-7353-463d-a18f-744ecaedccee))
)
(symbol (lib_id "power:GND") (at 56.388 116.586 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 51d46feb-a1d2-4c70-9af2-a44d46dbfc09)
(property "Reference" "#PWR010" (id 0) (at 50.038 116.586 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 52.324 116.5859 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 56.388 116.586 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 56.388 116.586 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5d4d04b6-71a3-42c4-b072-449a59f617f6))
)
(symbol (lib_id "Device:R_Small_US") (at 208.28 109.982 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 51fd0617-1aac-42f3-9716-e05335264e0f)
(property "Reference" "R5" (id 0) (at 204.216 110.49 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1.5K" (id 1) (at 210.058 110.49 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 208.28 109.982 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 208.28 109.982 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ed1780cd-8bbb-424b-80d4-63eceb0a2cec))
(pin "2" (uuid bc5d26cf-9753-4278-84a1-7eee3fcfcf1b))
)
(symbol (lib_id "power:GND") (at 208.28 115.062 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 558e3f0f-bbe2-48c3-b18b-60e1dc960a96)
(property "Reference" "#PWR027" (id 0) (at 208.28 121.412 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 208.28 119.507 0))
(property "Footprint" "" (id 2) (at 208.28 115.062 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 208.28 115.062 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3489e2a0-3097-42b0-8ac4-eba7bffc1382))
)
(symbol (lib_id "Device:LED") (at 82.55 33.02 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 58a8357e-364b-4655-b4e4-5f0bc1c3854d)
(property "Reference" "D1" (id 0) (at 82.55 27.432 0))
(property "Value" "RED" (id 1) (at 82.804 30.226 0))
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 82.55 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 82.55 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 486d6583-49e8-41e5-8f2e-275c7bfc6c3b))
(pin "2" (uuid bcedf838-2420-4675-8def-9335ac3beb3d))
)
(symbol (lib_id "power:GND") (at 27.432 116.84 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 5d8a7e6a-c5ab-42a6-ae9b-9da755f6c018)
(property "Reference" "#PWR03" (id 0) (at 21.082 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 23.368 116.8399 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 27.432 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 27.432 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4a7623ef-f8b2-429f-8a20-8fde89aa9043))
)
(symbol (lib_id "power:+3.3VA") (at 178.816 28.194 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 63f6bf83-750c-4adc-9062-7505c669460a)
(property "Reference" "#PWR025" (id 0) (at 178.816 32.004 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VA" (id 1) (at 178.816 22.86 0))
(property "Footprint" "" (id 2) (at 178.816 28.194 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 178.816 28.194 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bd34ab50-8481-433a-b548-a9856805941d))
)
(symbol (lib_id "Connector:Conn_01x15_Female") (at 61.468 131.826 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6753aefa-4699-4ba9-8372-27e03dcab3e3)
(property "Reference" "J3" (id 0) (at 62.992 130.5559 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Conn_01x15" (id 1) (at 62.992 133.0959 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical" (id 2) (at 61.468 131.826 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 61.468 131.826 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0becd845-8915-41ad-82b7-4cd91b383cf3))
(pin "10" (uuid 36059771-1bcd-48d7-b5f6-780b4c309497))
(pin "11" (uuid 6b0316d3-1687-4b55-b6de-583705fc233c))
(pin "12" (uuid 7a79b8db-c7bc-4fab-902d-4e18e121523a))
(pin "13" (uuid 5012f65e-c9bd-417b-96b2-e313631b3927))
(pin "14" (uuid e15b259c-a387-456c-86c7-ca7c5e88dc79))
(pin "15" (uuid b2e2dc18-8b6a-419f-91dd-9a4a6f3607d8))
(pin "2" (uuid e7fc566a-160a-4ecd-8190-bfcedd2a0114))
(pin "3" (uuid 21f5fb36-5347-475d-a036-13abb9c0808c))
(pin "4" (uuid e78457a0-90a2-45cc-b24e-cce27fc9171a))
(pin "5" (uuid 2bf69181-3b83-4381-bdee-1f40f58c8333))
(pin "6" (uuid 6b0cb1d7-a9e7-4a64-82a3-dafc94020e98))
(pin "7" (uuid ffa59a87-8b5f-406a-aba2-0958b08fb3e0))
(pin "8" (uuid fe4888f1-4ba8-436c-8d23-7654cc07139c))
(pin "9" (uuid 3b04a082-1eba-4a1f-825a-e2a2c3abf987))
)
(symbol (lib_id "power:VCC") (at 49.784 29.718 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6783d88a-546f-44ea-a3ec-c412a908b396)
(property "Reference" "#PWR0101" (id 0) (at 49.784 33.528 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 49.784 24.13 0))
(property "Footprint" "" (id 2) (at 49.784 29.718 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 49.784 29.718 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 49195de7-5268-400e-a53d-1bd895f5eb6c))
)
(symbol (lib_id "power:GND") (at 88.9 50.165 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6b1471f8-da88-4eef-8f57-fec80ccf6134)
(property "Reference" "#PWR015" (id 0) (at 88.9 56.515 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 88.9 54.61 0))
(property "Footprint" "" (id 2) (at 88.9 50.165 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 88.9 50.165 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 44eba385-c564-4126-80f5-7386c4a4c0fc))
)
(symbol (lib_id "power:GND") (at 105.41 39.751 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6b9c734a-daad-485b-bf2c-a5820e89fb18)
(property "Reference" "#PWR017" (id 0) (at 105.41 46.101 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 105.41 44.45 0))
(property "Footprint" "" (id 2) (at 105.41 39.751 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 105.41 39.751 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8b1f29a4-f59a-455a-8924-f86c88395b51))
)
(symbol (lib_id "power:GND") (at 66.04 97.536 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 6d033ece-5d1c-448c-a35e-a7b11a9a9268)
(property "Reference" "#PWR012" (id 0) (at 66.04 103.886 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 66.04 101.346 0))
(property "Footprint" "" (id 2) (at 66.04 97.536 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 66.04 97.536 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 22099c64-c90c-43a5-b257-7a0ac8a4bda5))
)
(symbol (lib_id "Device:C") (at 124.46 34.036 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 705035dc-428f-45a6-924a-2ecc6e0faa71)
(property "Reference" "C7" (id 0) (at 125.222 31.496 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 125.476 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 125.4252 37.846 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 124.46 34.036 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ab3951ae-2b2b-4ef4-a588-15cb6b4b4e19))
(pin "2" (uuid 8330f9cf-db48-4a4b-b579-c9ba18d5ead0))
)
(symbol (lib_id "power:GND") (at 39.116 97.536 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 721f42ee-c6a1-4e20-822d-3c5d1267e90c)
(property "Reference" "#PWR06" (id 0) (at 39.116 103.886 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 39.116 101.346 0))
(property "Footprint" "" (id 2) (at 39.116 97.536 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 39.116 97.536 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0bbd67da-30b1-456c-8369-db7f30e252c5))
)
(symbol (lib_id "power:GND") (at 23.368 50.038 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 73c1f85f-7641-4116-9a69-03d44e87071a)
(property "Reference" "#PWR01" (id 0) (at 23.368 56.388 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 23.368 54.483 0))
(property "Footprint" "" (id 2) (at 23.368 50.038 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 23.368 50.038 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cafdeea9-35b9-454b-9b30-bb6cc20fe494))
)
(symbol (lib_id "power:+3.3V") (at 56.388 114.046 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 73d12d33-cbaf-4594-af18-c04265655e88)
(property "Reference" "#PWR09" (id 0) (at 60.198 114.046 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 52.324 114.0459 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 56.388 114.046 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 56.388 114.046 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 57c7f181-a14a-4cad-bc6a-9ffee2e300d9))
)
(symbol (lib_id "Device:C") (at 114.3 101.6 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 7527fe58-9d77-4f73-ae39-57e92c34be15)
(property "Reference" "C5" (id 0) (at 115.062 99.06 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "30pF" (id 1) (at 115.062 104.394 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 115.2652 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 114.3 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a23e6011-40a5-4aa4-996a-9974a2059f65))
(pin "2" (uuid 59b1a391-4a99-4e6a-be9c-4e619a403b50))
)
(symbol (lib_id "Device:L_Small") (at 163.83 30.226 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 79e97b0a-b2a3-4a42-bbb2-bb173879acad)
(property "Reference" "L1" (id 0) (at 163.957 28.194 90))
(property "Value" "27n" (id 1) (at 163.703 31.75 90))
(property "Footprint" "Inductor_SMD:L_0603_1608Metric" (id 2) (at 163.83 30.226 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 163.83 30.226 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 10633a10-4fde-478e-8806-fedcafeeceef))
(pin "2" (uuid 0527cfbf-b430-4e80-882f-c32041ccb4e1))
)
(symbol (lib_id "Connector:USB_B_Micro") (at 23.368 38.1 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 81567f35-01c0-45ab-9d7f-7be0c0d0b29b)
(property "Reference" "J1" (id 0) (at 23.368 25.654 0))
(property "Value" "USB_B_Micro" (id 1) (at 23.622 28.702 0))
(property "Footprint" "Connector_USB:USB_Micro-B_Molex-105017-0001" (id 2) (at 27.178 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 27.178 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 044ef5ee-5133-4b0f-90b6-57208dd0ccab))
(pin "2" (uuid 58806f1b-ed67-4509-9069-6128aa1ec1dc))
(pin "3" (uuid 27d2eb3c-1bc0-4403-bf85-46de90df996a))
(pin "4" (uuid df56dc27-6ec2-4572-b5fc-0ccd36a5060a))
(pin "5" (uuid 9f961e4c-7e63-44b0-a5f0-3891f3261910))
(pin "6" (uuid 9d12d406-c9e4-4ce9-954b-05b57a4455e4))
)
(symbol (lib_id "power:+3.3V") (at 105.41 28.067 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 82990035-0067-414a-93a9-0077cb7928b9)
(property "Reference" "#PWR016" (id 0) (at 105.41 31.877 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 105.41 22.733 0))
(property "Footprint" "" (id 2) (at 105.41 28.067 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 105.41 28.067 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 119ea077-0c4f-4291-9d03-68b838b159fa))
)
(symbol (lib_id "power:+3.3V") (at 166.116 65.532 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 8a687410-2f6e-401e-99aa-5e23652b9567)
(property "Reference" "#PWR021" (id 0) (at 166.116 69.342 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 166.116 61.341 0))
(property "Footprint" "" (id 2) (at 166.116 65.532 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 166.116 65.532 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6fb399ce-d206-4d0c-8477-211ae251610a))
)
(symbol (lib_id "power:+3.3V") (at 74.295 30.48 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 8a7dc028-67e8-4d9a-8979-c3047530c6e5)
(property "Reference" "#PWR013" (id 0) (at 74.295 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 74.422 25.654 0))
(property "Footprint" "" (id 2) (at 74.295 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 74.295 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 579795ce-5b63-4efe-a0de-29c26121bf26))
)
(symbol (lib_id "Device:Crystal") (at 123.19 94.996 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 8e541f66-00ce-45ff-9b2d-bd258ed1aa09)
(property "Reference" "Y1" (id 0) (at 123.19 99.06 0))
(property "Value" "8MHz" (id 1) (at 123.19 91.186 0))
(property "Footprint" "Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm" (id 2) (at 123.19 94.996 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 123.19 94.996 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid aa1c074f-21a2-4785-b2be-044d12c3dd20))
(pin "2" (uuid 1047d0fd-76f4-49e7-8366-ef1548faef55))
)
(symbol (lib_id "Device:C") (at 39.116 90.678 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid a074ee15-4bb3-4d36-97cc-275b401fa103)
(property "Reference" "C1" (id 0) (at 40.132 88.392 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (id 1) (at 40.386 93.218 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 40.0812 94.488 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 39.116 90.678 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c37c306c-19db-40f1-a9c3-ee94603e9205))
(pin "2" (uuid 46f470c0-f9fe-4412-9617-7e1b5ca8c03e))
)
(symbol (lib_id "Device:C") (at 178.816 34.036 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid a8edcadf-a744-42bf-95d3-99c157d98717)
(property "Reference" "C12" (id 0) (at 179.578 31.496 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 179.832 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 179.7812 37.846 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 178.816 34.036 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 53a2523f-950e-4c36-89fe-e4169aa459c0))
(pin "2" (uuid 48475b6e-4822-4605-b562-74f13e1e155b))
)
(symbol (lib_id "Connector:Conn_01x15_Female") (at 32.512 132.08 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid ac221111-7f2b-4300-b542-ed92170a73d8)
(property "Reference" "J2" (id 0) (at 33.528 130.8099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Conn_01x15" (id 1) (at 33.782 133.096 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical" (id 2) (at 32.512 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 32.512 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7872b0f1-8caa-495a-853d-65d0e818df8c))
(pin "10" (uuid 14be7037-8e2d-446b-99a1-4804576a51ef))
(pin "11" (uuid 2980a1dd-0e07-45db-8ddf-75a75e75da74))
(pin "12" (uuid 47ee1f43-cc9f-4855-be27-c68ace16477a))
(pin "13" (uuid 5b88d1b7-f90c-4289-ac23-bbcc36504a2c))
(pin "14" (uuid 47df3c54-e6c6-4dd4-91d2-ff156f6ec1dc))
(pin "15" (uuid ce9f4a07-5c2d-44ee-9e3a-8e6c7b396a96))
(pin "2" (uuid 50380e88-7a43-4c0a-8d9f-ae550ff1f0fb))
(pin "3" (uuid 56fc855a-4893-49c9-be95-2d72e4b2a03b))
(pin "4" (uuid 6aacbc3c-0b16-4bbd-a544-6097d656149d))
(pin "5" (uuid ad610340-262a-4d80-b5db-571e897d52ea))
(pin "6" (uuid 5bc6fa9c-9344-4b68-b308-6960dbeba3f2))
(pin "7" (uuid 6984038f-21da-4226-a961-e0124485f416))
(pin "8" (uuid 6df734d7-0d01-4b9b-8341-3e5620bbf254))
(pin "9" (uuid 2de27587-6890-4787-8e56-e23d3f5df6e0))
)
(symbol (lib_id "Switch:SW_Push") (at 27.686 84.328 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid b052aeb2-fc9b-49e7-a2c8-60003c3ff51a)
(property "Reference" "SW1" (id 0) (at 27.432 86.36 0))
(property "Value" "SW_Push" (id 1) (at 27.686 78.613 0))
(property "Footprint" "Button_Switch_THT:SW_PUSH_6mm_H8mm" (id 2) (at 27.686 79.248 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 27.686 79.248 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0281c37c-ff75-4cb3-830a-b77f0f4c308b))
(pin "2" (uuid 3cd97b2a-2395-475d-82cf-d377dc0f1a28))
)
(symbol (lib_id "Device:R_Small_US") (at 39.116 79.248 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid b0b33056-b3c6-4d66-a642-8bd6128b6e6f)
(property "Reference" "R1" (id 0) (at 41.656 77.9779 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10K" (id 1) (at 41.656 80.5179 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 39.116 79.248 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 39.116 79.248 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6178f34c-da18-4087-95a9-16972ec93e4a))
(pin "2" (uuid 70bcc3de-0a51-48bf-b2a5-36637f30fa7f))
)
(symbol (lib_id "power:+3.3V") (at 27.432 114.3 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid b14e56f7-92a0-4082-a65e-2653e60d87fd)
(property "Reference" "#PWR02" (id 0) (at 31.242 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 23.368 114.2999 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 27.432 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 27.432 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fac4d7e3-8a8c-4196-8578-5d01291440dc))
)
(symbol (lib_id "Device:FerriteBead_Small") (at 36.576 33.02 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid b218c500-d99f-4114-b816-a05f441b310e)
(property "Reference" "FB1" (id 0) (at 36.957 29.972 90))
(property "Value" "100R" (id 1) (at 36.449 35.814 90))
(property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 36.576 34.798 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 36.576 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 83ee7ae1-a76f-44c7-9f71-558cd595a2e4))
(pin "2" (uuid 43b3cb2c-3616-4736-8a80-d4aa6d2c252b))
)
(symbol (lib_id "Device:C") (at 114.808 34.036 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid b4f1ef45-05f0-4f14-a768-6e4c7e462deb)
(property "Reference" "C6" (id 0) (at 115.57 31.496 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 115.824 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 115.7732 37.846 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 114.808 34.036 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d429a885-9214-4f80-9a57-d5a1bb31c128))
(pin "2" (uuid 510e1372-d9b2-468b-8c29-90d6a503a89b))
)
(symbol (lib_id "Device:C") (at 142.748 34.036 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid ba65efeb-958c-4d40-b15c-35336a437499)
(property "Reference" "C10" (id 0) (at 143.51 31.496 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 143.764 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 143.7132 37.846 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 142.748 34.036 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 982f6f47-b00e-4a1e-9120-4564039cf93f))
(pin "2" (uuid 3792ade7-a055-466a-9ba0-e2add2cde379))
)
(symbol (lib_id "power:GND") (at 132.08 108.204 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid bab10166-0aa1-41e6-a4c5-190b33e697b4)
(property "Reference" "#PWR019" (id 0) (at 132.08 114.554 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 132.08 112.014 0))
(property "Footprint" "" (id 2) (at 132.08 108.204 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 132.08 108.204 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 64e5d7a9-167f-49cf-b359-92c0e7b276d8))
)
(symbol (lib_id "power:GND") (at 49.784 50.038 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid c0156d86-67cf-41a5-9f27-ff5a20a6c74a)
(property "Reference" "#PWR08" (id 0) (at 49.784 56.388 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 49.784 54.483 0))
(property "Footprint" "" (id 2) (at 49.784 50.038 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 49.784 50.038 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f8843624-b907-46a9-9f9b-59a8069a05c9))
)
(symbol (lib_id "power:GND") (at 166.116 148.336 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid c08176f5-bfac-4cc5-b6b3-a9b4d22ddb25)
(property "Reference" "#PWR022" (id 0) (at 166.116 154.686 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 166.116 153.67 0))
(property "Footprint" "" (id 2) (at 166.116 148.336 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 166.116 148.336 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ef5ff2e3-7ead-471e-9184-6bd8c9d9602b))
)
(symbol (lib_id "Device:R_Small_US") (at 197.612 126.746 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid d3bb7f86-abaa-47ff-bc3b-c90bc862941a)
(property "Reference" "R4" (id 0) (at 199.644 124.714 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1.5K" (id 1) (at 199.39 127.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 197.612 126.746 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 197.612 126.746 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d0ccca40-cdc0-4822-96c4-c28a21a563e1))
(pin "2" (uuid 83cf7fae-4144-4f1a-853e-548a357e95f1))
)
(symbol (lib_id "power:PWR_FLAG") (at 43.688 33.02 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid d5ca291c-591e-4bc2-844a-6046df0d5745)
(property "Reference" "#FLG02" (id 0) (at 43.688 31.115 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 43.942 29.464 0))
(property "Footprint" "" (id 2) (at 43.688 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 43.688 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b26ebfb9-9e91-4409-b2e4-04cfc31e9220))
)
(symbol (lib_id "Device:R_Small_US") (at 66.04 90.17 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid d5d8c712-6060-4a89-adc7-c91497b0d4c3)
(property "Reference" "R2" (id 0) (at 68.58 88.8999 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10K" (id 1) (at 68.58 91.4399 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 66.04 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 66.04 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1eb95d0f-b9fa-4ef7-8752-9eb978efd956))
(pin "2" (uuid caeefd9b-aa1a-48ee-a7f9-6fa1cbc03bd6))
)
(symbol (lib_id "power:PWR_FLAG") (at 170.18 29.21 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid de735228-bd1b-49dc-a67a-f39c8d47ae64)
(property "Reference" "#FLG01" (id 0) (at 170.18 27.305 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 170.18 24.638 0))
(property "Footprint" "" (id 2) (at 170.18 29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 170.18 29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5edf88f7-e711-481f-8cd1-7357e95aef06))
)
(symbol (lib_id "Device:C") (at 74.295 41.275 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid e7392280-3f82-4c67-82ea-8dcda9ed8bb7)
(property "Reference" "C3" (id 0) (at 74.93 38.862 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 74.93 43.942 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 75.2602 45.085 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 74.295 41.275 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2a62d51c-45f9-4d1d-b733-16558a3d2635))
(pin "2" (uuid 4d43215b-179d-40b2-a670-b6620df9efac))
)
(symbol (lib_id "power:GND") (at 74.295 50.165 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid eae9ae96-2d60-43a3-b4c5-7703b65d1bac)
(property "Reference" "#PWR014" (id 0) (at 74.295 56.515 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 74.295 54.61 0))
(property "Footprint" "" (id 2) (at 74.295 50.165 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 74.295 50.165 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 346f83ce-ac4f-4f69-8a93-5fb19bc475d1))
)
(symbol (lib_id "MCU_ST_STM32F1:STM32F103C8Tx") (at 171.196 108.458 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid eb06d2ea-e699-448f-973e-101eb94d0bda)
(property "Reference" "U2" (id 0) (at 155.702 145.288 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "STM32F103C8Tx" (id 1) (at 175.006 145.542 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" (id 2) (at 155.956 144.018 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
(property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00161566.pdf" (id 3) (at 171.196 108.458 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c665ff64-389c-4231-a71b-ec745f5fdc1b))
(pin "10" (uuid b739eeec-ae5b-4d0f-ae8d-fe766a86a762))
(pin "11" (uuid a342338a-eaff-40c1-9279-b9dca5d95c1c))
(pin "12" (uuid 4ea16548-23ae-4d93-9026-c7e966ad8624))
(pin "13" (uuid 64a0b705-6204-4354-87cf-c15efd53210f))
(pin "14" (uuid 5fd6483f-9662-4383-9665-dbf3240c8b50))
(pin "15" (uuid be071a57-2248-482e-ac8a-68642a71ccff))
(pin "16" (uuid 7cadc07e-da5c-41f0-97e8-2565c4ed377d))
(pin "17" (uuid 63d73933-9f2a-4590-9a72-71f639f4e90d))
(pin "18" (uuid 4bc289a6-85be-4d56-834b-0c761ef94561))
(pin "19" (uuid 8b8eed27-e8d8-4d26-bced-ab452b83efb9))
(pin "2" (uuid ded4812b-187f-482b-98f3-e43e9b24a20c))
(pin "20" (uuid 94c47012-a651-4bfb-a6d5-b010f6952a53))
(pin "21" (uuid 0df2a111-bf97-4920-a2e6-1b380719cc7e))
(pin "22" (uuid 6529cff9-91c6-468e-90ee-6279c5fb97f1))
(pin "23" (uuid 8932ded4-b47b-4351-babc-f54c3cc0cd2d))
(pin "24" (uuid a3023d60-38c4-49e0-afcd-37beb8f0f246))
(pin "25" (uuid 8ae8afb7-ee1b-4ee4-9693-a3c95ce652f9))
(pin "26" (uuid 4374ab0a-8da3-4e6a-a526-0ed0415776a1))
(pin "27" (uuid a102bc82-0c00-4557-9678-a9dba7b490de))
(pin "28" (uuid e3497eba-6adf-4f0b-9142-253b89ebeba5))
(pin "29" (uuid 7179b12a-94e2-4d5b-b2da-f2dc619e8409))
(pin "3" (uuid 6873e755-5fef-4aac-a058-233bc70d7f79))
(pin "30" (uuid 475e429c-9bcb-4cc5-b481-b001790d0f46))
(pin "31" (uuid b43dd927-f67d-402c-b6de-fd4ad0a090a2))
(pin "32" (uuid e4be3914-dafd-4c5b-b833-d2909137e31a))
(pin "33" (uuid 3b5f5320-0d7d-4dee-86e6-26bf16a22cc6))
(pin "34" (uuid 663c03ce-c09c-43d4-a81e-c1dc803610c6))
(pin "35" (uuid 7ba043c8-689f-4789-938b-db93f32b4275))
(pin "36" (uuid 717deeeb-0f62-40cf-b6fb-8cbfa54a2a56))
(pin "37" (uuid e22db8df-dfa5-46c1-93ed-e4f2def20582))
(pin "38" (uuid d5665715-2964-46c6-a750-ce0556fcaf50))
(pin "39" (uuid e5802684-e33a-48b5-9d00-f5e72bb1e2c7))
(pin "4" (uuid f97852d9-5e20-4573-844f-6bca4728e971))
(pin "40" (uuid bd9b2281-266e-401a-b238-01bed29c5ca4))
(pin "41" (uuid 6e6a096e-8305-47a9-94be-83054e275074))
(pin "42" (uuid 0b7028b6-3ba5-4671-a031-9330470083b2))
(pin "43" (uuid 1a3796ee-2c6e-4840-80e4-542c7688907e))
(pin "44" (uuid 1ec139ea-211c-49ed-b067-5629edadab22))
(pin "45" (uuid 9ed649c0-39dd-4e8b-977c-927f9200c056))
(pin "46" (uuid fa735b64-f44a-43fa-a883-a16c88a8251b))
(pin "47" (uuid cb2a000a-a805-4757-b1c5-067c6d9114c9))
(pin "48" (uuid 2c0318ad-4f77-4195-b6e3-e2e28e184543))
(pin "5" (uuid 51f27fbd-f2a0-4fec-92e1-55a97c5903ae))
(pin "6" (uuid 332f3224-4753-4db2-8089-491d534dd4be))
(pin "7" (uuid 73f1d42f-5e4e-4833-9a2f-c778fc069e95))
(pin "8" (uuid 79b24513-1431-4b64-abfa-e79560606460))
(pin "9" (uuid 4e45b3d1-90f7-49a8-832f-c62d7dc53e9b))
)
(symbol (lib_id "power:+3.3V") (at 39.116 74.676 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid ef5d72b3-16c4-4ddc-ad60-99fa28756762)
(property "Reference" "#PWR05" (id 0) (at 39.116 78.486 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 35.56 71.374 0))
(property "Footprint" "" (id 2) (at 39.116 74.676 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 39.116 74.676 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ab0997d8-2174-45ca-9310-5ffd6c8e9d14))
)
(symbol (lib_id "Device:C") (at 133.604 34.036 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid f631a19e-4d22-4de7-8131-7f3bc3f91a30)
(property "Reference" "C9" (id 0) (at 134.366 31.496 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 134.62 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 134.5692 37.846 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 133.604 34.036 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 59536a88-af4a-46f2-bf76-76cdec58c915))
(pin "2" (uuid 556e9914-238e-4427-a3d6-a54299142c2a))
)
(sheet_instances
(path "/" (page "1"))
)
(symbol_instances
(path "/de735228-bd1b-49dc-a67a-f39c8d47ae64"
(reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "")
)
(path "/d5ca291c-591e-4bc2-844a-6046df0d5745"
(reference "#FLG02") (unit 1) (value "PWR_FLAG") (footprint "")
)
(path "/73c1f85f-7641-4116-9a69-03d44e87071a"
(reference "#PWR01") (unit 1) (value "GND") (footprint "")
)
(path "/b14e56f7-92a0-4082-a65e-2653e60d87fd"
(reference "#PWR02") (unit 1) (value "+3.3V") (footprint "")
)
(path "/5d8a7e6a-c5ab-42a6-ae9b-9da755f6c018"
(reference "#PWR03") (unit 1) (value "GND") (footprint "")
)
(path "/ef5d72b3-16c4-4ddc-ad60-99fa28756762"
(reference "#PWR05") (unit 1) (value "+3.3V") (footprint "")
)
(path "/721f42ee-c6a1-4e20-822d-3c5d1267e90c"
(reference "#PWR06") (unit 1) (value "GND") (footprint "")
)
(path "/c0156d86-67cf-41a5-9f27-ff5a20a6c74a"
(reference "#PWR08") (unit 1) (value "GND") (footprint "")
)
(path "/73d12d33-cbaf-4594-af18-c04265655e88"
(reference "#PWR09") (unit 1) (value "+3.3V") (footprint "")
)
(path "/51d46feb-a1d2-4c70-9af2-a44d46dbfc09"
(reference "#PWR010") (unit 1) (value "GND") (footprint "")
)
(path "/143e3498-e79c-4e8a-89c6-235685fad2c9"
(reference "#PWR011") (unit 1) (value "GND") (footprint "")
)
(path "/6d033ece-5d1c-448c-a35e-a7b11a9a9268"
(reference "#PWR012") (unit 1) (value "GND") (footprint "")
)
(path "/8a7dc028-67e8-4d9a-8979-c3047530c6e5"
(reference "#PWR013") (unit 1) (value "+3.3V") (footprint "")
)
(path "/eae9ae96-2d60-43a3-b4c5-7703b65d1bac"
(reference "#PWR014") (unit 1) (value "GND") (footprint "")
)
(path "/6b1471f8-da88-4eef-8f57-fec80ccf6134"
(reference "#PWR015") (unit 1) (value "GND") (footprint "")
)
(path "/82990035-0067-414a-93a9-0077cb7928b9"
(reference "#PWR016") (unit 1) (value "+3.3V") (footprint "")
)
(path "/6b9c734a-daad-485b-bf2c-a5820e89fb18"
(reference "#PWR017") (unit 1) (value "GND") (footprint "")
)
(path "/0669a98c-a96c-4f43-9777-44d4150628ca"
(reference "#PWR018") (unit 1) (value "GND") (footprint "")
)
(path "/bab10166-0aa1-41e6-a4c5-190b33e697b4"
(reference "#PWR019") (unit 1) (value "GND") (footprint "")
)
(path "/4fdb59ee-2daa-442a-b3a9-63ea879ee2af"
(reference "#PWR020") (unit 1) (value "+3.3V") (footprint "")
)
(path "/8a687410-2f6e-401e-99aa-5e23652b9567"
(reference "#PWR021") (unit 1) (value "+3.3V") (footprint "")
)
(path "/c08176f5-bfac-4cc5-b6b3-a9b4d22ddb25"
(reference "#PWR022") (unit 1) (value "GND") (footprint "")
)
(path "/317629ea-d268-4d8f-99dc-a8e407ab437c"
(reference "#PWR023") (unit 1) (value "GND") (footprint "")
)
(path "/2fbfb19b-ce5f-4286-ac3c-367257370abd"
(reference "#PWR024") (unit 1) (value "+3.3VA") (footprint "")
)
(path "/63f6bf83-750c-4adc-9062-7505c669460a"
(reference "#PWR025") (unit 1) (value "+3.3VA") (footprint "")
)
(path "/0ab780e5-f4dc-465e-8a30-a43aee0ea9c9"
(reference "#PWR026") (unit 1) (value "+3.3V") (footprint "")
)
(path "/558e3f0f-bbe2-48c3-b18b-60e1dc960a96"
(reference "#PWR027") (unit 1) (value "GND") (footprint "")
)
(path "/6783d88a-546f-44ea-a3ec-c412a908b396"
(reference "#PWR0101") (unit 1) (value "VCC") (footprint "")
)
(path "/a074ee15-4bb3-4d36-97cc-275b401fa103"
(reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/0cc598dc-4372-422f-a148-9dab25d5bf38"
(reference "C2") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/e7392280-3f82-4c67-82ea-8dcda9ed8bb7"
(reference "C3") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/51621439-67e6-4654-abd1-e9ac4cf46fc3"
(reference "C4") (unit 1) (value "4.7uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/7527fe58-9d77-4f73-ae39-57e92c34be15"
(reference "C5") (unit 1) (value "30pF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/b4f1ef45-05f0-4f14-a768-6e4c7e462deb"
(reference "C6") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/705035dc-428f-45a6-924a-2ecc6e0faa71"
(reference "C7") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/0af1723f-f8ba-4793-b7b2-b4fe918ec61b"
(reference "C8") (unit 1) (value "30pF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/f631a19e-4d22-4de7-8131-7f3bc3f91a30"
(reference "C9") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/ba65efeb-958c-4d40-b15c-35336a437499"
(reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/0e324416-033f-47a0-9f92-569b2b17341a"
(reference "C11") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/a8edcadf-a744-42bf-95d3-99c157d98717"
(reference "C12") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/58a8357e-364b-4655-b4e4-5f0bc1c3854d"
(reference "D1") (unit 1) (value "RED") (footprint "LED_SMD:LED_0603_1608Metric")
)
(path "/33335eb7-0734-415d-8619-1de47c7415f1"
(reference "D2") (unit 1) (value "BLUE") (footprint "LED_SMD:LED_0603_1608Metric")
)
(path "/b218c500-d99f-4114-b816-a05f441b310e"
(reference "FB1") (unit 1) (value "100R") (footprint "Inductor_SMD:L_0805_2012Metric")
)
(path "/81567f35-01c0-45ab-9d7f-7be0c0d0b29b"
(reference "J1") (unit 1) (value "USB_B_Micro") (footprint "Connector_USB:USB_Micro-B_Molex-105017-0001")
)
(path "/ac221111-7f2b-4300-b542-ed92170a73d8"
(reference "J2") (unit 1) (value "Conn_01x15") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical")
)
(path "/6753aefa-4699-4ba9-8372-27e03dcab3e3"
(reference "J3") (unit 1) (value "Conn_01x15") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x15_P2.54mm_Vertical")
)
(path "/79e97b0a-b2a3-4a42-bbb2-bb173879acad"
(reference "L1") (unit 1) (value "27n") (footprint "Inductor_SMD:L_0603_1608Metric")
)
(path "/b0b33056-b3c6-4d66-a642-8bd6128b6e6f"
(reference "R1") (unit 1) (value "10K") (footprint "Resistor_SMD:R_0603_1608Metric")
)
(path "/d5d8c712-6060-4a89-adc7-c91497b0d4c3"
(reference "R2") (unit 1) (value "10K") (footprint "Resistor_SMD:R_0603_1608Metric")
)
(path "/23022d3e-1c4a-495b-ab92-6ac9865b8eaf"
(reference "R3") (unit 1) (value "1.5K") (footprint "Resistor_SMD:R_0603_1608Metric")
)
(path "/d3bb7f86-abaa-47ff-bc3b-c90bc862941a"
(reference "R4") (unit 1) (value "1.5K") (footprint "Resistor_SMD:R_0603_1608Metric")
)
(path "/51fd0617-1aac-42f3-9716-e05335264e0f"
(reference "R5") (unit 1) (value "1.5K") (footprint "Resistor_SMD:R_0603_1608Metric")
)
(path "/b052aeb2-fc9b-49e7-a2c8-60003c3ff51a"
(reference "SW1") (unit 1) (value "SW_Push") (footprint "Button_Switch_THT:SW_PUSH_6mm_H8mm")
)
(path "/187ba96c-9d00-4ac2-8bfb-d02784d03f10"
(reference "U1") (unit 1) (value "XC6206P332MR") (footprint "Package_TO_SOT_SMD:SOT-23")
)
(path "/eb06d2ea-e699-448f-973e-101eb94d0bda"
(reference "U2") (unit 1) (value "STM32F103C8Tx") (footprint "Package_QFP:LQFP-48_7x7mm_P0.5mm")
)
(path "/8e541f66-00ce-45ff-9b2d-bd258ed1aa09"
(reference "Y1") (unit 1) (value "8MHz") (footprint "Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm")
)
)
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化