123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282 |
- (kicad_sch (version 20211123) (generator eeschema)
- (uuid 7caf98e4-1466-4c74-8252-9e06859f5812)
- (paper "A4")
- (title_block
- (title "MAX80")
- (date "2021-02-22")
- (rev "0.01")
- (company "Peter o Per")
- )
- (lib_symbols
- (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.254 1.778 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "Device_C_Small" (id 1) (at 0.254 -2.032 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_fp_filters" "C_*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "C_Small_0_1"
- (polyline
- (pts
- (xy -1.524 -0.508)
- (xy 1.524 -0.508)
- )
- (stroke (width 0.3302) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 0.508)
- (xy 1.524 0.508)
- )
- (stroke (width 0.3048) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "C_Small_1_1"
- (pin passive line (at 0 2.54 270) (length 2.032)
- (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 2.032)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:D_Schottky" (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" "Device_D_Schottky" (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_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "D_Schottky_0_1"
- (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 -1.905 0.635)
- (xy -1.905 1.27)
- (xy -1.27 1.27)
- (xy -1.27 -1.27)
- (xy -0.635 -1.27)
- (xy -0.635 -0.635)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "D_Schottky_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: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" "Device_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_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 4) (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:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "F" (id 0) (at -2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Device_Polyfuse" (id 1) (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "*polyfuse* *PTC*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Polyfuse_0_1"
- (rectangle (start -0.762 2.54) (end 0.762 -2.54)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0 -2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 2.54)
- (xy -1.524 1.524)
- (xy 1.524 -1.524)
- (xy 1.524 -2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "Polyfuse_1_1"
- (pin passive line (at 0 3.81 270) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:R_Small" (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" "Device_R_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_fp_filters" "R_*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_Small_0_1"
- (rectangle (start -0.762 1.778) (end 0.762 -1.778)
- (stroke (width 0.2032) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "R_Small_1_1"
- (pin passive line (at 0 2.54 270) (length 0.762)
- (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.762)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Power_Protection:USBLC6-2SC6" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 2.54 8.89 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "Power_Protection_USBLC6-2SC6" (id 1) (at 2.54 -8.89 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 0 -12.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 5.08 8.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "SOT?23*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "USBLC6-2SC6_0_1"
- (rectangle (start -7.62 -7.62) (end 7.62 7.62)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (circle (center -5.08 0) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (circle (center -2.54 0) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start -2.54 6.35) (end 2.54 -6.35)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 0 -6.35) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (polyline
- (pts
- (xy -5.08 -2.54)
- (xy -7.62 -2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -5.08 0)
- (xy -5.08 -2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -5.08 2.54)
- (xy -7.62 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 -2.794)
- (xy -3.556 -2.794)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 4.826)
- (xy -3.556 4.826)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 -7.62)
- (xy 0 -6.35)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 -6.35)
- (xy 0 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 1.27)
- (xy 0 6.35)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 6.35)
- (xy 0 7.62)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.524 -2.794)
- (xy 3.556 -2.794)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.524 4.826)
- (xy 3.556 4.826)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 5.08 -2.54)
- (xy 7.62 -2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 5.08 0)
- (xy 5.08 -2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 5.08 2.54)
- (xy 7.62 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.54 0)
- (xy -5.08 0)
- (xy -5.08 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 0)
- (xy 5.08 0)
- (xy 5.08 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -3.556 -4.826)
- (xy -1.524 -4.826)
- (xy -2.54 -2.794)
- (xy -3.556 -4.826)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -3.556 2.794)
- (xy -1.524 2.794)
- (xy -2.54 4.826)
- (xy -3.556 2.794)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.016 -1.016)
- (xy 1.016 -1.016)
- (xy 0 1.016)
- (xy -1.016 -1.016)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.016 1.016)
- (xy 0.762 1.016)
- (xy -1.016 1.016)
- (xy -1.016 0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 3.556 -4.826)
- (xy 1.524 -4.826)
- (xy 2.54 -2.794)
- (xy 3.556 -4.826)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 3.556 2.794)
- (xy 1.524 2.794)
- (xy 2.54 4.826)
- (xy 3.556 2.794)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 0 6.35) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (circle (center 2.54 0) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (circle (center 5.08 0) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- )
- (symbol "USBLC6-2SC6_1_1"
- (pin passive line (at -10.16 -2.54 0) (length 2.54)
- (name "I/O1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -10.16 90) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 10.16 -2.54 180) (length 2.54)
- (name "I/O2" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 10.16 2.54 180) (length 2.54)
- (name "I/O2" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 10.16 270) (length 2.54)
- (name "VBUS" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -10.16 2.54 0) (length 2.54)
- (name "I/O1" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "RF_Module:ESP32-S2-WROVER-I" (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at -12.7 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "RF_Module_ESP32-S2-WROVER-I" (id 1) (at 2.54 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "RF_Module:ESP32-S2-WROVER" (id 2) (at 19.05 -29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at -7.62 -20.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "ESP32?S2?WROVER*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "ESP32-S2-WROVER-I_0_1"
- (rectangle (start -12.7 27.94) (end 12.7 -25.4)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- (symbol "ESP32-S2-WROVER-I_1_1"
- (pin power_in line (at 0 -27.94 90) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 5.08 0) (length 2.54)
- (name "IO07" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 2.54 0) (length 2.54)
- (name "IO08" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 0 0) (length 2.54)
- (name "IO09" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -2.54 0) (length 2.54)
- (name "IO10" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -5.08 0) (length 2.54)
- (name "IO11" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -7.62 0) (length 2.54)
- (name "IO12" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -10.16 0) (length 2.54)
- (name "IO13" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -12.7 0) (length 2.54)
- (name "IO14" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -15.24 0) (length 2.54)
- (name "IO15" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -17.78 0) (length 2.54)
- (name "IO16" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 30.48 270) (length 2.54)
- (name "3V3" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -20.32 0) (length 2.54)
- (name "IO17" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -22.86 0) (length 2.54)
- (name "IO18" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -17.78 180) (length 2.54)
- (name "USB_D-" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
- (name "USB_D+" (effects (font (size 1.27 1.27))))
- (number "23" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
- (name "IO21" (effects (font (size 1.27 1.27))))
- (number "24" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
- (name "IO26" (effects (font (size 1.27 1.27))))
- (number "25" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -27.94 90) (length 2.54) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "26" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
- (name "IO33" (effects (font (size 1.27 1.27))))
- (number "27" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
- (name "IO34" (effects (font (size 1.27 1.27))))
- (number "28" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
- (name "IO35" (effects (font (size 1.27 1.27))))
- (number "29" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 22.86 0) (length 2.54)
- (name "IO00" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 0 180) (length 2.54)
- (name "IO36" (effects (font (size 1.27 1.27))))
- (number "30" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 2.54 180) (length 2.54)
- (name "IO37" (effects (font (size 1.27 1.27))))
- (number "31" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 5.08 180) (length 2.54)
- (name "IO38" (effects (font (size 1.27 1.27))))
- (number "32" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 7.62 180) (length 2.54)
- (name "IO39" (effects (font (size 1.27 1.27))))
- (number "33" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 10.16 180) (length 2.54)
- (name "IO40" (effects (font (size 1.27 1.27))))
- (number "34" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 12.7 180) (length 2.54)
- (name "IO41" (effects (font (size 1.27 1.27))))
- (number "35" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 15.24 180) (length 2.54)
- (name "IO42" (effects (font (size 1.27 1.27))))
- (number "36" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 17.78 180) (length 2.54)
- (name "TXD0" (effects (font (size 1.27 1.27))))
- (number "37" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 20.32 180) (length 2.54)
- (name "RXD0" (effects (font (size 1.27 1.27))))
- (number "38" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 22.86 180) (length 2.54)
- (name "IO45" (effects (font (size 1.27 1.27))))
- (number "39" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 20.32 0) (length 2.54)
- (name "IO01" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 15.24 25.4 180) (length 2.54)
- (name "IO46" (effects (font (size 1.27 1.27))))
- (number "40" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 25.4 0) (length 2.54)
- (name "EN" (effects (font (size 1.27 1.27))))
- (number "41" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -27.94 90) (length 2.54) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "42" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -27.94 90) (length 2.54) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "43" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 17.78 0) (length 2.54)
- (name "IO02" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 15.24 0) (length 2.54)
- (name "IO03" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 12.7 0) (length 2.54)
- (name "IO04" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 10.16 0) (length 2.54)
- (name "IO05" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 7.62 0) (length 2.54)
- (name "IO06" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Transistor_FET:AO3400A" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "Transistor_FET_AO3400A" (id 1) (at 5.08 0 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
- (effects (font (size 1.27 1.27) italic) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "ki_fp_filters" "SOT?23*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "AO3400A_0_1"
- (polyline
- (pts
- (xy 0.254 0)
- (xy -2.54 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.254 1.905)
- (xy 0.254 -1.905)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 -1.27)
- (xy 0.762 -2.286)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 0.508)
- (xy 0.762 -0.508)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 2.286)
- (xy 0.762 1.27)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 2.54)
- (xy 2.54 1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 -2.54)
- (xy 2.54 0)
- (xy 0.762 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 -1.778)
- (xy 3.302 -1.778)
- (xy 3.302 1.778)
- (xy 0.762 1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.016 0)
- (xy 2.032 0.381)
- (xy 2.032 -0.381)
- (xy 1.016 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (polyline
- (pts
- (xy 2.794 0.508)
- (xy 2.921 0.381)
- (xy 3.683 0.381)
- (xy 3.81 0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 3.302 0.381)
- (xy 2.921 -0.254)
- (xy 3.683 -0.254)
- (xy 3.302 0.381)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 1.651 0) (radius 2.794)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.54 -1.778) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (circle (center 2.54 1.778) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- )
- (symbol "AO3400A_1_1"
- (pin input line (at -5.08 0 0) (length 2.54)
- (name "G" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 2.54 -5.08 90) (length 2.54)
- (name "S" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 2.54 5.08 270) (length 2.54)
- (name "D" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Transistor_FET:AO3401A" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "Transistor_FET_AO3401A" (id 1) (at 5.08 0 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
- (effects (font (size 1.27 1.27) italic) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "ki_fp_filters" "SOT?23*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "AO3401A_0_1"
- (polyline
- (pts
- (xy 0.254 0)
- (xy -2.54 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.254 1.905)
- (xy 0.254 -1.905)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 -1.27)
- (xy 0.762 -2.286)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 0.508)
- (xy 0.762 -0.508)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 2.286)
- (xy 0.762 1.27)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 2.54)
- (xy 2.54 1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 -2.54)
- (xy 2.54 0)
- (xy 0.762 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 1.778)
- (xy 3.302 1.778)
- (xy 3.302 -1.778)
- (xy 0.762 -1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.286 0)
- (xy 1.27 0.381)
- (xy 1.27 -0.381)
- (xy 2.286 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (polyline
- (pts
- (xy 2.794 -0.508)
- (xy 2.921 -0.381)
- (xy 3.683 -0.381)
- (xy 3.81 -0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 3.302 -0.381)
- (xy 2.921 0.254)
- (xy 3.683 0.254)
- (xy 3.302 -0.381)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 1.651 0) (radius 2.794)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.54 -1.778) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (circle (center 2.54 1.778) (radius 0.254)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- )
- (symbol "AO3401A_1_1"
- (pin input line (at -5.08 0 0) (length 2.54)
- (name "G" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 2.54 -5.08 90) (length 2.54)
- (name "S" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 2.54 5.08 270) (length 2.54)
- (name "D" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "max80:HRO-TYPE-C-31-M-12" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "USB" (id 0) (at -5.08 16.51 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at -10.16 -1.27 90)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "HRO-TYPE-C-31-M-12_0_1"
- (rectangle (start -11.43 15.24) (end -8.89 -17.78)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (rectangle (start 0 -17.78) (end -8.89 15.24)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- (symbol "HRO-TYPE-C-31-M-12_1_1"
- (pin input line (at 2.54 13.97 180) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 -8.89 180) (length 2.54)
- (name "CC2" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 -11.43 180) (length 2.54)
- (name "VBUS" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 -13.97 180) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 -16.51 180) (length 2.54)
- (name "SHIELD" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 11.43 180) (length 2.54)
- (name "VBUS" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 8.89 180) (length 2.54)
- (name "SBU2" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 6.35 180) (length 2.54)
- (name "CC1" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 3.81 180) (length 2.54)
- (name "DN2" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 1.27 180) (length 2.54)
- (name "DP1" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 -1.27 180) (length 2.54)
- (name "DN1" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 -3.81 180) (length 2.54)
- (name "DP2" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 2.54 -6.35 180) (length 2.54)
- (name "SBU1" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+3V3" (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" "power_+3V3" (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)
- )
- (symbol "+3V3_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 "+3V3_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+3V3" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+5V" (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" "power_+5V" (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)
- )
- (symbol "+5V_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 "+5V_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+5V" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+5VA" (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" "power_+5VA" (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)
- )
- (symbol "+5VA_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 "+5VA_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+5VA" (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" "power_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)
- )
- (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))))
- )
- )
- )
- )
- (junction (at 85.09 49.53) (diameter 0) (color 0 0 0 0)
- (uuid 158af5df-cc1b-4506-bbe6-cb7505295b5b)
- )
- (junction (at 246.38 148.59) (diameter 0) (color 0 0 0 0)
- (uuid 233d14ec-e17f-4b70-ace9-a65479e58a33)
- )
- (junction (at 93.98 59.69) (diameter 0) (color 0 0 0 0)
- (uuid 2460f6d2-1d7c-4c35-9be4-33dfefab8082)
- )
- (junction (at 93.98 85.09) (diameter 0) (color 0 0 0 0)
- (uuid 25e5e3b2-c628-460f-8b34-28a2c7950e5f)
- )
- (junction (at 74.93 78.74) (diameter 0) (color 0 0 0 0)
- (uuid 2a6f1b1e-6809-43d7-b0c5-e4424e33d333)
- )
- (junction (at 189.23 50.8) (diameter 0) (color 0 0 0 0)
- (uuid 3581de8b-daeb-467a-8039-51714599e4ba)
- )
- (junction (at 44.45 83.82) (diameter 0) (color 0 0 0 0)
- (uuid 3e3af5be-1b4c-4ba4-b660-3033fdf1caed)
- )
- (junction (at 38.1 91.44) (diameter 0) (color 0 0 0 0)
- (uuid 415d6a7d-98b2-4d17-b46f-6f38749a3ba2)
- )
- (junction (at 118.11 78.74) (diameter 0) (color 0 0 0 0)
- (uuid 422a6702-d1c1-4e76-898e-ec20aaee30c2)
- )
- (junction (at 74.93 85.09) (diameter 0) (color 0 0 0 0)
- (uuid 5d9cc826-4756-4365-b769-24e883398d0a)
- )
- (junction (at 41.91 78.74) (diameter 0) (color 0 0 0 0)
- (uuid 646182ef-83d3-48ef-8f13-39bd3cf49786)
- )
- (junction (at 152.4 85.09) (diameter 0) (color 0 0 0 0)
- (uuid 86a6b9b9-3de3-44b4-b763-98233419d240)
- )
- (junction (at 273.05 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 88b7d164-35a2-420d-9da6-a56db04f962b)
- )
- (junction (at 59.69 80.01) (diameter 0) (color 0 0 0 0)
- (uuid 8aff71fc-0b55-4238-837c-95b0b4aac181)
- )
- (junction (at 147.32 99.06) (diameter 0) (color 0 0 0 0)
- (uuid 9098a6bf-eae0-4636-90c3-6c2f5d9401fd)
- )
- (junction (at 34.29 88.9) (diameter 0) (color 0 0 0 0)
- (uuid b9f8ba78-9b7b-4a7c-8351-c9f145a140ab)
- )
- (junction (at 43.18 99.06) (diameter 0) (color 0 0 0 0)
- (uuid cdce2be4-88ef-44ed-b591-e6404a14a2cf)
- )
- (junction (at 147.32 82.55) (diameter 0) (color 0 0 0 0)
- (uuid d18dfc73-4f65-499b-85e8-0e65b03fabb2)
- )
- (junction (at 85.09 68.58) (diameter 0) (color 0 0 0 0)
- (uuid dbe20cc9-b99f-4e22-ad59-f96e667d1efa)
- )
- (junction (at 152.4 97.79) (diameter 0) (color 0 0 0 0)
- (uuid e085e529-431d-4fe9-aed9-287036ceabd6)
- )
- (junction (at 142.24 100.33) (diameter 0) (color 0 0 0 0)
- (uuid e1a929c4-c484-4255-9524-8c224d1f6e73)
- )
- (junction (at 189.23 58.42) (diameter 0) (color 0 0 0 0)
- (uuid e61e3b10-16bb-45fa-9a42-277efd2ec104)
- )
- (junction (at 142.24 80.01) (diameter 0) (color 0 0 0 0)
- (uuid f1353e9e-7eae-44e9-872c-ec11c41e5657)
- )
- (junction (at 93.98 78.74) (diameter 0) (color 0 0 0 0)
- (uuid f9fdab0b-0971-4c0c-831c-cda73093deb5)
- )
- (no_connect (at 31.75 96.52) (uuid 4ff71e44-dddb-450e-9f6f-fe3947968fd4))
- (no_connect (at 31.75 106.68) (uuid 833beff7-0439-4b25-8f23-ed949f699ed1))
- (no_connect (at 215.9 72.39) (uuid d0292983-0ab9-4b24-b3bd-f154f790c7ec))
- (no_connect (at 215.9 107.95) (uuid e08b3dd0-5717-45d9-897c-a2c963f9de1a))
- (no_connect (at 31.75 81.28) (uuid f094eb5d-05c7-4c16-84d0-9d4665317bfb))
- (wire (pts (xy 185.42 100.33) (xy 184.15 100.33))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 03a79994-33b9-4df6-bdb0-d3807834d731)
- )
- (wire (pts (xy 152.4 95.25) (xy 152.4 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0673bd15-bb27-42a3-b8dd-ff34de638161)
- )
- (wire (pts (xy 86.36 88.9) (xy 86.36 93.98))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 07838c19-bdee-4759-9a7b-a62a5deb9737)
- )
- (wire (pts (xy 85.09 68.58) (xy 93.98 68.58))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0850d44a-6bde-4886-b872-ef2fda5e1590)
- )
- (wire (pts (xy 184.15 120.65) (xy 185.42 120.65))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 08601885-ffd0-426c-9b07-2dc479593fb1)
- )
- (wire (pts (xy 142.24 80.01) (xy 185.42 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 09433d97-62ec-42de-89f2-7d0b68dc1b9d)
- )
- (wire (pts (xy 273.05 140.97) (xy 274.32 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 09684b6c-5d15-4020-b96b-0b388e8ee3ea)
- )
- (wire (pts (xy 93.98 85.09) (xy 100.33 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0f0d22b0-c2a7-436a-931c-fa4be6782d48)
- )
- (wire (pts (xy 246.38 147.32) (xy 246.38 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0f99d31f-3e61-45ba-a78c-4a282f861613)
- )
- (wire (pts (xy 31.75 86.36) (xy 38.1 86.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1002411f-a485-468c-981b-cec2ce41d8bd)
- )
- (wire (pts (xy 127 87.63) (xy 127 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 111c2bf6-9865-4ea4-a9f9-1702355a872d)
- )
- (wire (pts (xy 93.98 49.53) (xy 93.98 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 11896c2c-8771-4362-a4aa-2f8901fb1bc7)
- )
- (wire (pts (xy 127 95.25) (xy 127 100.33))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 15328724-62c0-4c64-8165-7ba7fa235831)
- )
- (wire (pts (xy 147.32 99.06) (xy 147.32 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 15ddbae8-4879-44da-8c42-497366b84781)
- )
- (wire (pts (xy 99.06 104.14) (xy 101.6 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 18ee575f-d41e-4a26-ac0a-b229112d8877)
- )
- (wire (pts (xy 38.1 86.36) (xy 38.1 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1a0c5194-0d7e-4fcc-a11d-049fac80c4dc)
- )
- (wire (pts (xy 44.45 80.01) (xy 44.45 83.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1f2605ff-0052-4214-ba00-e5f83f987c66)
- )
- (wire (pts (xy 127 100.33) (xy 142.24 100.33))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1fcbe337-d147-4e02-846e-7f1ec4528bd0)
- )
- (wire (pts (xy 41.91 101.6) (xy 41.91 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 21a4e5f9-158c-4a1e-a6d3-12c826291e62)
- )
- (wire (pts (xy 132.08 95.25) (xy 132.08 99.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 23a49e10-e7d0-41d9-a15a-25ac614cee99)
- )
- (wire (pts (xy 92.71 59.69) (xy 93.98 59.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 23e32b5c-4ca6-4614-a426-44d605a7d8fd)
- )
- (wire (pts (xy 200.66 64.77) (xy 200.66 67.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 260f62f6-a6cf-45e0-9208-51504e701f69)
- )
- (wire (pts (xy 62.23 95.25) (xy 49.53 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 26fd0d92-e1d7-4ec3-9cd1-0c12f182f0d8)
- )
- (wire (pts (xy 184.15 74.93) (xy 185.42 74.93))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 29e27db0-3c69-4f62-9b26-37b540cf4f34)
- )
- (wire (pts (xy 91.44 116.84) (xy 91.44 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2aabebab-10c6-4637-946b-cda31980f550)
- )
- (wire (pts (xy 93.98 68.58) (xy 93.98 69.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2df83ebe-1ddf-4544-b413-d0b7b3d7c49e)
- )
- (wire (pts (xy 93.98 78.74) (xy 93.98 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2edba9d3-c333-4296-851f-3df46822dd7b)
- )
- (wire (pts (xy 93.98 59.69) (xy 96.52 59.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2fc6c800-22f6-42f6-a664-0677d01cefba)
- )
- (wire (pts (xy 215.9 77.47) (xy 217.17 77.47))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 30d4a5b8-34e9-412f-9d1a-e616a8a28215)
- )
- (wire (pts (xy 152.4 85.09) (xy 152.4 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 31518452-8dcd-4719-9aa4-aad4159920e6)
- )
- (wire (pts (xy 152.4 85.09) (xy 185.42 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 33770b56-77ab-4a0c-a675-0ef4f02f8519)
- )
- (wire (pts (xy 142.24 95.25) (xy 142.24 100.33))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 34d6d782-5641-4526-b346-05de03ea8c0e)
- )
- (wire (pts (xy 38.1 91.44) (xy 73.66 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3520b9bf-2dfc-4868-a650-86ff98682e83)
- )
- (wire (pts (xy 118.11 68.58) (xy 118.11 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3850e2d4-b49e-4213-938e-107014b88c2f)
- )
- (wire (pts (xy 31.75 101.6) (xy 41.91 101.6))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3b5147db-69cc-4871-96a7-79c3437a6213)
- )
- (wire (pts (xy 99.06 78.74) (xy 99.06 76.2))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3b5cbb6d-677b-4641-88bd-7044bfd6bfae)
- )
- (wire (pts (xy 185.42 110.49) (xy 184.15 110.49))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3bdc61da-fd87-4d91-ae6a-f160ef1e6b25)
- )
- (wire (pts (xy 147.32 99.06) (xy 147.32 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3d774050-1f75-473e-bdf5-d052504e6a25)
- )
- (wire (pts (xy 90.17 78.74) (xy 93.98 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3e1cb3e4-d855-414e-b1ff-d8f86a215960)
- )
- (wire (pts (xy 152.4 107.95) (xy 152.4 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 411f21c0-dcce-4bff-ac0e-7c5571730a65)
- )
- (wire (pts (xy 31.75 91.44) (xy 38.1 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4221b138-87b6-4073-a6e3-acb41ba2e601)
- )
- (wire (pts (xy 31.75 76.2) (xy 35.56 76.2))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 443b842e-cdd6-495f-a7fb-0cef04c17274)
- )
- (wire (pts (xy 132.08 82.55) (xy 147.32 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 446c08d7-8986-4d18-8f0f-30d613706dfc)
- )
- (wire (pts (xy 274.32 147.32) (xy 274.32 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 462f8e7e-09c6-4676-ba4f-fd07b2868aa8)
- )
- (wire (pts (xy 274.32 140.97) (xy 274.32 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 471f517c-6d52-459f-9d7a-aedf176fc9e0)
- )
- (wire (pts (xy 41.91 78.74) (xy 74.93 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 494a6b97-f33e-4834-b724-0c3a3ff54317)
- )
- (wire (pts (xy 59.69 80.01) (xy 59.69 74.93))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4be25af8-39f2-4002-9837-911821c1b9cc)
- )
- (wire (pts (xy 31.75 93.98) (xy 34.29 93.98))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4dfbe524-132d-43d4-8ae0-9aa2f72df70b)
- )
- (wire (pts (xy 85.09 49.53) (xy 93.98 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4eeb2bf2-5aa0-4534-94bd-c0dab739d13b)
- )
- (wire (pts (xy 73.66 116.84) (xy 86.36 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 504b138d-cda6-48ea-a44b-2c0d0cf874fc)
- )
- (wire (pts (xy 185.42 105.41) (xy 184.15 105.41))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 505c1d3e-8ca5-438e-9eae-18483f12882c)
- )
- (wire (pts (xy 34.29 88.9) (xy 86.36 88.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 506110af-ac51-4501-bfa6-1552a848d599)
- )
- (wire (pts (xy 35.56 68.58) (xy 39.37 68.58))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 52fe3400-bf18-4fe5-aa6e-2be779b65697)
- )
- (wire (pts (xy 110.49 78.74) (xy 118.11 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5338134d-a05d-4ad9-9bd6-6a3cccd5d5a9)
- )
- (wire (pts (xy 147.32 82.55) (xy 185.42 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 53548090-4b36-44b5-9ef5-2fa214b2fbf4)
- )
- (wire (pts (xy 74.93 85.09) (xy 81.28 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5379d081-922a-4828-9d43-7b2f2572d06c)
- )
- (wire (pts (xy 118.11 87.63) (xy 118.11 88.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 555e8fc3-19b4-40e8-abc6-87d7c193534e)
- )
- (wire (pts (xy 93.98 85.09) (xy 88.9 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 56d5d2e4-dbd9-4665-9c2f-4cd76f3e3bd2)
- )
- (wire (pts (xy 49.53 80.01) (xy 59.69 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 570ee06f-38f1-44a9-ae2b-f08cf56305e0)
- )
- (wire (pts (xy 85.09 71.12) (xy 85.09 68.58))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 57a07bfe-e0c8-4178-9efc-c658d0aa0c5b)
- )
- (wire (pts (xy 93.98 78.74) (xy 99.06 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 58e43a80-a74c-4a45-a990-a8fe7ecac27a)
- )
- (wire (pts (xy 152.4 85.09) (xy 137.16 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5bc4bec0-de82-443a-a56c-94cfb0912fcb)
- )
- (wire (pts (xy 189.23 58.42) (xy 194.31 58.42))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5c4ddc3a-1b67-4d06-8b43-5f565c9d4f71)
- )
- (wire (pts (xy 271.78 142.24) (xy 271.78 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5d00cbc9-46cb-472e-b705-59da8e971192)
- )
- (wire (pts (xy 271.78 140.97) (xy 273.05 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5ecea6c7-cbcd-4340-9db8-55b54a886e1e)
- )
- (wire (pts (xy 74.93 52.07) (xy 74.93 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5edbc061-8621-4c13-864b-a2a2b212044e)
- )
- (wire (pts (xy 59.69 99.06) (xy 59.69 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5f9c5087-aeae-41db-97be-1dd276294553)
- )
- (wire (pts (xy 215.9 95.25) (xy 217.17 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 64bbd1a8-b20b-4d12-891d-7b53b4a0334a)
- )
- (wire (pts (xy 43.18 99.06) (xy 44.45 99.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 64d84e49-aaf5-4eba-8a78-1b20287a1fe2)
- )
- (wire (pts (xy 243.84 148.59) (xy 246.38 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6505825f-43ee-4fb8-b546-c0b2310ed040)
- )
- (wire (pts (xy 194.31 58.42) (xy 194.31 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 65908b01-f0a0-46e1-84f2-bf49d46af2a7)
- )
- (wire (pts (xy 246.38 154.94) (xy 246.38 156.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 69cceaac-6f1b-4182-8e1c-91402953f92a)
- )
- (wire (pts (xy 100.33 85.09) (xy 100.33 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 69e05192-f084-4bb3-aff6-f350c539f1a8)
- )
- (wire (pts (xy 34.29 93.98) (xy 34.29 88.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6b1d6bcd-1928-474b-8dbd-6dab746597ca)
- )
- (wire (pts (xy 31.75 99.06) (xy 43.18 99.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6bdf4c09-0d97-4f84-a45b-4830c8cb3132)
- )
- (wire (pts (xy 39.37 68.58) (xy 39.37 71.12))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7112d2ae-7915-4f1a-aae6-e71244f669d8)
- )
- (wire (pts (xy 215.9 90.17) (xy 217.17 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 713e4d09-6cf1-49fc-bf2e-c643eb7890b8)
- )
- (wire (pts (xy 142.24 100.33) (xy 142.24 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 75080b0b-6140-45af-8605-622af6de8bea)
- )
- (wire (pts (xy 184.15 118.11) (xy 185.42 118.11))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 785187eb-3061-4043-a954-4178556793a1)
- )
- (wire (pts (xy 93.98 59.69) (xy 93.98 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 79fa940a-2b5a-472f-9a29-806c2daad595)
- )
- (wire (pts (xy 35.56 76.2) (xy 35.56 68.58))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7ab8aff0-29e4-4be7-af1f-6a97b7752e20)
- )
- (wire (pts (xy 194.31 50.8) (xy 194.31 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7b1f2f40-abe7-4adb-bfe4-3f1a7f99a0f2)
- )
- (wire (pts (xy 118.11 78.74) (xy 118.11 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7b485fa8-406a-42d5-9a01-13ae76ec07b5)
- )
- (wire (pts (xy 189.23 49.53) (xy 189.23 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7bc13ee4-2194-461b-9242-0d96ebba241b)
- )
- (wire (pts (xy 257.81 139.7) (xy 257.81 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7bd09790-9a37-4331-94a2-940c4fb9585b)
- )
- (wire (pts (xy 215.9 110.49) (xy 217.17 110.49))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 824a1256-25d4-4c20-968f-40a07210c698)
- )
- (wire (pts (xy 43.18 99.06) (xy 43.18 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8524da93-8e55-4af1-8974-d6a0c4c21263)
- )
- (wire (pts (xy 137.16 85.09) (xy 137.16 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 86b1650c-27f6-4516-8b60-2a6a434a183e)
- )
- (wire (pts (xy 215.9 105.41) (xy 217.17 105.41))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 89d9af53-e698-40c4-8ab2-a44fdf0a4c6c)
- )
- (wire (pts (xy 215.9 92.71) (xy 217.17 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8f0c1305-7bd7-41b0-a77d-0a9232a17e2e)
- )
- (wire (pts (xy 273.05 139.7) (xy 273.05 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 92ff4797-ba89-46c8-b3a8-8260d960e660)
- )
- (wire (pts (xy 73.66 91.44) (xy 73.66 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 965bc598-5f52-4615-847f-179635cd5cde)
- )
- (wire (pts (xy 215.9 74.93) (xy 217.17 74.93))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 96bdf5ea-ca81-4096-814f-ff6d6aaf3220)
- )
- (wire (pts (xy 93.98 74.93) (xy 93.98 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 97675b30-915a-43e3-828c-166fb0161c3a)
- )
- (wire (pts (xy 74.93 85.09) (xy 74.93 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 97db24fe-c1f7-4f86-9060-dc632af2d885)
- )
- (wire (pts (xy 85.09 54.61) (xy 85.09 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9a025d13-3f10-4480-b02b-5650c6d28ed8)
- )
- (wire (pts (xy 31.75 104.14) (xy 43.18 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9ad54c14-6dd1-4741-ab11-80a0275cae72)
- )
- (wire (pts (xy 43.18 104.14) (xy 43.18 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9b774066-2c22-4032-af01-4291adb02340)
- )
- (wire (pts (xy 74.93 78.74) (xy 74.93 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9e39ed40-271f-40f8-b1c9-20b888c10512)
- )
- (wire (pts (xy 147.32 107.95) (xy 147.32 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9fb9a654-045f-4c58-ba9d-e6e9d641e3ae)
- )
- (wire (pts (xy 184.15 107.95) (xy 185.42 107.95))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a0129fe7-e9e9-4c74-af85-e2b335707eb4)
- )
- (wire (pts (xy 237.49 148.59) (xy 238.76 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a1533d6a-9d56-4622-800a-f5af923f4a97)
- )
- (wire (pts (xy 200.66 125.73) (xy 200.66 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a559f63f-b3a0-4b81-aa6a-605d4da47af6)
- )
- (wire (pts (xy 86.36 116.84) (xy 86.36 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a6d1221a-1077-412d-8a73-7025f9b4ca20)
- )
- (wire (pts (xy 257.81 147.32) (xy 257.81 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a9240eb1-cd96-4728-9dbf-17ea5e90b45d)
- )
- (wire (pts (xy 215.9 87.63) (xy 217.17 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a9fdce30-e0b1-49dc-914c-0573fb33fbc7)
- )
- (wire (pts (xy 49.53 99.06) (xy 59.69 99.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ab15be4c-1efb-422a-9053-a5c97ba751b0)
- )
- (wire (pts (xy 184.15 115.57) (xy 185.42 115.57))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b0b40da2-8918-4f0b-b11b-1408b929feb5)
- )
- (wire (pts (xy 215.9 80.01) (xy 217.17 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b6670714-a829-420f-8f82-042c74d803a5)
- )
- (wire (pts (xy 101.6 104.14) (xy 101.6 106.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b78bfc8f-0469-4499-ad41-c131461c3c5d)
- )
- (wire (pts (xy 132.08 99.06) (xy 147.32 99.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b8e9717b-c8d9-44dd-9eb5-d37e3b2c2fb5)
- )
- (wire (pts (xy 271.78 147.32) (xy 271.78 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bc007755-47dc-4b01-a9a3-8f34e8741895)
- )
- (wire (pts (xy 142.24 107.95) (xy 142.24 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bf8bfbb4-4b7a-430e-865f-8acab9f8c04d)
- )
- (wire (pts (xy 152.4 97.79) (xy 152.4 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bff35e53-0373-44e5-a0ce-05175bbecd57)
- )
- (wire (pts (xy 85.09 68.58) (xy 85.09 64.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c261f2c7-400a-44c0-9c0a-e7dc7bbb3f90)
- )
- (wire (pts (xy 184.15 72.39) (xy 185.42 72.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c4e3a83a-2945-4c21-9d1d-f3f3be86b7bd)
- )
- (wire (pts (xy 132.08 87.63) (xy 132.08 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c645efa1-5cf3-4d27-be7a-303fdbabecd8)
- )
- (wire (pts (xy 184.15 92.71) (xy 185.42 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c6505e92-8e90-436d-b6f5-959c6248d156)
- )
- (wire (pts (xy 184.15 95.25) (xy 185.42 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c71e1710-20a1-4e33-88ae-549fb47faa61)
- )
- (wire (pts (xy 49.53 83.82) (xy 62.23 83.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c95ae74a-ca90-4a39-aa68-19d5d2714b13)
- )
- (wire (pts (xy 31.75 88.9) (xy 34.29 88.9))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c9dc1467-f8a9-424e-ab40-9eace7cb7fbb)
- )
- (wire (pts (xy 184.15 97.79) (xy 185.42 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cb082ca8-e559-493c-a769-6ac76ddc831e)
- )
- (wire (pts (xy 189.23 58.42) (xy 189.23 59.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ccdce88e-24b7-4692-934b-22bb9b0763dc)
- )
- (wire (pts (xy 215.9 102.87) (xy 217.17 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cf6465a5-cdc8-43ab-af6a-066f3abc4788)
- )
- (wire (pts (xy 215.9 100.33) (xy 217.17 100.33))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d0c5561a-ecf5-4fb9-9963-743c221a8335)
- )
- (wire (pts (xy 215.9 113.03) (xy 237.49 113.03))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d2b76814-7e11-4ea5-b409-7892e0c8500a)
- )
- (wire (pts (xy 246.38 139.7) (xy 246.38 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d2f72b7f-67e2-4cf3-9de6-340a26ecf95b)
- )
- (wire (pts (xy 182.88 113.03) (xy 185.42 113.03))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d5ad3607-7629-4f44-bfe3-a3b510cd5b14)
- )
- (wire (pts (xy 137.16 95.25) (xy 137.16 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d618158f-4184-4754-aa33-65a98e706342)
- )
- (wire (pts (xy 142.24 80.01) (xy 142.24 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d70b07f0-7794-49ac-aab9-bba7744f562e)
- )
- (wire (pts (xy 215.9 82.55) (xy 217.17 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d7329050-0c4f-4d4d-b156-c34af61257ff)
- )
- (wire (pts (xy 99.06 76.2) (xy 102.87 76.2))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d75f1379-cf40-49b3-9b28-2d291ed900e9)
- )
- (wire (pts (xy 189.23 50.8) (xy 189.23 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d98b06b1-d759-4372-889f-6ac21114139f)
- )
- (wire (pts (xy 215.9 97.79) (xy 217.17 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d9c1c6f8-c198-49f9-bff0-eab2393a0053)
- )
- (wire (pts (xy 100.33 78.74) (xy 102.87 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid da423bcf-af02-422a-8d3f-915d7fd393eb)
- )
- (wire (pts (xy 184.15 77.47) (xy 185.42 77.47))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dad24ddf-e25d-4aa8-b795-2adc252edc45)
- )
- (wire (pts (xy 31.75 78.74) (xy 41.91 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dc2e4d69-ab4d-4864-999d-7aa340dd63c7)
- )
- (wire (pts (xy 215.9 115.57) (xy 237.49 115.57))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dd07efd4-24c4-483d-a118-ed58a9223c8c)
- )
- (wire (pts (xy 91.44 116.84) (xy 100.33 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dd4b4783-44b6-4bbf-bf18-b846491e4d4c)
- )
- (wire (pts (xy 189.23 50.8) (xy 194.31 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ddfa4cf0-3486-4284-897b-3a9e51f271d9)
- )
- (wire (pts (xy 43.18 95.25) (xy 44.45 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dfe0615d-48dd-4d5e-ae77-f5a2410688c9)
- )
- (wire (pts (xy 127 80.01) (xy 142.24 80.01))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e0130066-f120-45ab-8ca4-de7cd402c362)
- )
- (wire (pts (xy 189.23 57.15) (xy 189.23 58.42))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e02b47af-92a8-4b6e-841f-f88d0fa73eb7)
- )
- (wire (pts (xy 184.15 102.87) (xy 185.42 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e188f4e0-97d6-45d5-9852-98640c6abc42)
- )
- (wire (pts (xy 91.44 90.17) (xy 100.33 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e325a134-36dc-4151-9d17-8bf13dc78564)
- )
- (wire (pts (xy 215.9 85.09) (xy 217.17 85.09))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e595c6c4-f51e-40bc-a76d-c0a08bbd62be)
- )
- (wire (pts (xy 62.23 83.82) (xy 62.23 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e5e10b7e-d4e1-472a-acd2-b7ba1a3292f0)
- )
- (wire (pts (xy 102.87 76.2) (xy 102.87 71.12))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ee86ad28-2e8a-4b4f-a90f-b244d52f0462)
- )
- (wire (pts (xy 74.93 49.53) (xy 85.09 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f09eeb0b-a016-4287-8ed5-683b4c4b51a3)
- )
- (wire (pts (xy 246.38 148.59) (xy 246.38 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f22aae5d-f6eb-438b-9ba4-dcb7ba01f85f)
- )
- (wire (pts (xy 91.44 93.98) (xy 91.44 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f50538bf-e44a-4d20-ab4a-ccf1e95ea69c)
- )
- (wire (pts (xy 137.16 97.79) (xy 152.4 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f84570f0-8f86-40f4-8c85-4d0ad12444b2)
- )
- (wire (pts (xy 31.75 83.82) (xy 44.45 83.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fc153f76-4971-47fe-9c36-88d5ca4ab507)
- )
- (wire (pts (xy 147.32 82.55) (xy 147.32 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fc48681f-9397-420c-a160-4d40e8208b22)
- )
- (wire (pts (xy 74.93 104.14) (xy 78.74 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fe0a8ab1-7b25-4d9a-9a3b-f8c5e10b289a)
- )
- (wire (pts (xy 74.93 78.74) (xy 80.01 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ff579cc0-821d-40ca-8f3d-8708c2d87acb)
- )
- (label "USB_D+" (at 237.49 113.03 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 3d6472eb-4872-48d0-9b65-1b39f6d4a46a)
- )
- (label "USB_D+" (at 100.33 90.17 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 3eee2221-7af9-4d6a-ba79-a48c3fd1ac35)
- )
- (label "USB_D-" (at 237.49 115.57 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 44c331f8-33e4-4ba1-bb1e-3071cc175bfd)
- )
- (label "USB_D-" (at 100.33 116.84 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 7b694997-43fc-41fd-818b-681c539b1571)
- )
- (global_label "ESP32_MISO" (shape input) (at 217.17 95.25 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 04b78285-4974-4fa0-8f4e-46d399f5727c)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_EN" (shape input) (at 184.15 72.39 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid 0e11718f-21aa-474d-9bf4-88d875870740)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_TCK" (shape input) (at 217.17 90.17 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 1533b475-c834-40d3-ae2c-55eb46ae810f)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FLASH_CS#" (shape input) (at 184.15 77.47 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid 201a8082-80bc-49cb-a857-a9c917ee8418)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_CS1" (shape input) (at 217.17 74.93 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 22127bf3-28e1-4f2a-9132-0b2244d2149e)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_TDI" (shape input) (at 217.17 85.09 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 22312754-c8c2-4400-b598-394e06b2be81)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_TXD" (shape input) (at 217.17 80.01 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 27b32d30-a0e6-48e4-8f63-c61987047d29)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_TDO" (shape input) (at 217.17 87.63 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 2d4ba971-ddd9-4f08-ae0a-4bc49faa5143)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FPGA_TDO" (shape input) (at 184.15 118.11 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid 2f58dd1b-258a-4fb6-a155-4e2931ab012c)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FPGA_SPI_MOSI" (shape input) (at 184.15 105.41 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid 3785db90-bbe9-4018-bab6-3a4673f84f27)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_TMS" (shape input) (at 217.17 82.55 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 38c40dcc-c1da-4f6f-a147-01497313c7b0)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_SDA" (shape input) (at 274.32 148.59 270) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 46255620-16a2-4e81-9e4a-58dddcf89388)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_IO0" (shape input) (at 257.81 148.59 270) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 4c77837f-2440-4b7b-8e7e-430f981c7c04)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_EN" (shape input) (at 237.49 148.59 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 4cbba380-690c-405e-bbfb-a0cd7ef65d0e)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_SCL" (shape input) (at 217.17 102.87 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 5fe5bd8d-5a86-4565-bd10-e08c6de9aa03)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FGPA_SPI_CS_ESP32" (shape input) (at 184.15 100.33 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid 728dda43-38f9-4d13-b2a9-59e599c86d99)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_MOSI" (shape input) (at 217.17 100.33 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 8d9ea4cf-1047-42af-bf72-13258f22d6ad)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_RXD" (shape input) (at 217.17 77.47 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 97972d9a-c8ac-431f-b1f4-0da8477b5639)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_CS0" (shape input) (at 217.17 92.71 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 9cd1ba63-2087-4000-a5a9-797dad78d993)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_CS2" (shape input) (at 217.17 110.49 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid a11284ee-2f71-4eb8-b0ee-e01b498d0140)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "INT_ESP32" (shape input) (at 184.15 97.79 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid a1441258-3477-4706-8540-9e88ae0dac49)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FPGA_SPI_CLK" (shape input) (at 184.15 102.87 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid a65cad0c-0ef1-4ea5-a965-4eae7ac1f6af)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_SDA" (shape input) (at 217.17 105.41 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid af5a6355-b37d-4130-98e5-c563dae6ea34)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_SCK" (shape input) (at 217.17 97.79 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid b2de1057-44b4-4b1a-b3d7-c19d3cd25553)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FPGA_TMS" (shape input) (at 184.15 110.49 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid b45301a2-b6d7-44bd-8834-616acde30aef)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "USB_PWR_EN" (shape input) (at 184.15 92.71 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid b4796a06-5ec1-4b7e-a305-c6447cc5c644)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_SCL" (shape input) (at 271.78 148.59 270) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid ba660766-df56-40bf-b584-d5d4ed6cb6fc)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FPGA_TDI" (shape input) (at 184.15 115.57 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid d23aa89d-c621-4b1b-a845-8c26429d6622)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FPGA_TCK" (shape input) (at 184.15 120.65 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid d32a4687-3a9c-4aaa-9fc8-6c464698f554)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{USB_PWR_SINK}" (shape input) (at 184.15 95.25 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid d432cbe6-4998-44d8-87df-626563ccc34f)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{USB_PWR_SINK}" (shape input) (at 62.23 83.82 0) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify left))
- (uuid db002d44-34dc-4a16-a373-be2b73d8ad8e)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "FPGA_SPI_MISO" (shape input) (at 184.15 107.95 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid e96432f3-c6ee-4cdc-892b-eb9f8e5ebd05)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "USB_PWR_EN" (shape input) (at 96.52 59.69 0) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify left))
- (uuid efb5ebae-d680-4d30-add6-fa2b005bc2e3)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ESP32_IO0" (shape input) (at 184.15 74.93 180) (fields_autoplaced)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid f3642676-ce32-431a-adfa-a8e750bc449d)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (hierarchical_label "FPGA_I2C_SCL" (shape input) (at 185.42 90.17 180)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid 7f29ecb0-6265-4d60-8278-7704387a2057)
- )
- (hierarchical_label "FPGA_I2C_SDA" (shape input) (at 185.42 87.63 180)
- (effects (font (size 0.9906 0.9906)) (justify right))
- (uuid 922b14e9-e5b4-4506-8c7b-f653748d7f34)
- )
- (hierarchical_label "RTC" (shape input) (at 182.88 113.03 180)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid bead2789-cf29-4cdd-ad3a-a7fd6922e223)
- )
- (symbol (lib_id "power:GND") (at 43.18 109.22 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005cc7520b)
- (property "Reference" "#PWR0136" (id 0) (at 43.18 115.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 43.307 113.6142 0))
- (property "Footprint" "" (id 2) (at 43.18 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 43.18 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3663e84d-fbb5-4cbb-a94c-3bf2e0f4528b))
- )
- (symbol (lib_id "Device:R_Small") (at 46.99 95.25 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e79f20f)
- (property "Reference" "R4" (id 0) (at 45.72 92.71 90))
- (property "Value" "5.1k" (id 1) (at 49.53 92.71 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 46.99 93.472 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 46.99 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25905" (id 4) (at 46.99 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Supplier" "" (id 5) (at 46.99 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b2e7f506-f7d4-448a-af52-7dbef3267d9c))
- (pin "2" (uuid 37a13556-8115-4188-a66b-25cd57806830))
- )
- (symbol (lib_id "Device:C_Small") (at 118.11 85.09 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e7feac9)
- (property "Reference" "C52" (id 0) (at 120.65 82.55 0))
- (property "Value" "1uF" (id 1) (at 120.65 87.63 0))
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 117.1448 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 118.11 85.09 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C28323" (id 4) (at 153.67 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MOUSER" "" (id 5) (at 153.67 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "" (id 6) (at 153.67 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Supplier" "" (id 7) (at 118.11 85.09 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid df0f39c5-ac25-4662-916a-1037e83cf195))
- (pin "2" (uuid 5ee72b24-30a2-4ba3-ba3d-ec1cb3a2b25f))
- )
- (symbol (lib_id "Device:D_Schottky") (at 85.09 85.09 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006032d6a5)
- (property "Reference" "D27" (id 0) (at 82.55 83.82 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "1N5819W" (id 1) (at 83.947 87.122 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 85.09 85.09 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 85.09 85.09 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C963381" (id 4) (at 85.09 85.09 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 03697bdb-be93-4e64-898e-2a285d8a1b68))
- (pin "2" (uuid e22ecb52-9362-41d3-a43c-a881b8d24db9))
- )
- (symbol (lib_id "power:+5V") (at 118.11 68.58 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006032df88)
- (property "Reference" "#PWR0161" (id 0) (at 118.11 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 118.491 64.1858 0))
- (property "Footprint" "" (id 2) (at 118.11 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 118.11 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fd4bdd26-e48c-49cf-9f62-cc6bfc3c25b9))
- )
- (symbol (lib_id "power:+3V3") (at 246.38 139.7 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006035b9ad)
- (property "Reference" "#PWR0175" (id 0) (at 246.38 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 246.761 135.3058 0))
- (property "Footprint" "" (id 2) (at 246.38 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 246.38 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 17ae423f-6f17-4fd2-aea5-d3d8c77fc776))
- )
- (symbol (lib_id "Device:R_Small") (at 246.38 144.78 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000060379925)
- (property "Reference" "R1" (id 0) (at 247.8786 143.6116 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10k" (id 1) (at 247.8786 145.923 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 246.38 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 246.38 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 4) (at 246.38 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid cecc35a9-9205-4ae7-a0bd-74fd3ba1022e))
- (pin "2" (uuid ce052e62-9895-4eaf-b763-02bb1f2f2fc0))
- )
- (symbol (lib_id "RF_Module:ESP32-S2-WROVER-I") (at 200.66 97.79 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000610edbda)
- (property "Reference" "U11" (id 0) (at 190.5 67.31 0))
- (property "Value" "ESP32-S2-WROVER-I" (id 1) (at 212.09 67.31 0))
- (property "Footprint" "max80:ESP32-S2-WROVER" (id 2) (at 219.71 127 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf" (id 3) (at 193.04 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C967028" (id 4) (at 200.66 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 228e687f-46bf-4c71-b216-27a36bf502b3))
- (pin "10" (uuid 1ad7167c-d842-43e1-aa03-616956653f99))
- (pin "11" (uuid 1ecc1846-9d45-47c8-a9a5-7ee29d34b71f))
- (pin "12" (uuid acaabde7-e8f4-4725-896f-2d7564a7cbe9))
- (pin "13" (uuid 514b636b-fcea-4b24-9700-348d8bb6d8c3))
- (pin "14" (uuid 756c57ca-b724-416e-bbc3-080fcadffb70))
- (pin "15" (uuid 1a583d77-1271-468e-9e6d-48c6b4b96c33))
- (pin "16" (uuid 4e9748b4-9793-4c68-99f7-24ad5e00abd4))
- (pin "17" (uuid 3ace8ec6-69f0-440a-a0d0-6974f2827dfc))
- (pin "18" (uuid e0e2ca39-d81d-4638-b2d7-b3eff9325a7e))
- (pin "19" (uuid d038719f-bd10-44ee-af1d-bbbbd049eabf))
- (pin "2" (uuid b6e81dd6-ac21-44c4-b41e-33986174ff12))
- (pin "20" (uuid f1d21065-3e98-4f76-bf00-449e62d84735))
- (pin "21" (uuid 92d05aad-ed2d-48a1-8722-6f04baafafa8))
- (pin "22" (uuid 360c2bbd-a0a3-46a6-a8fc-000e22263bb0))
- (pin "23" (uuid 73ff453e-6e39-4800-947b-a5ba4142b15e))
- (pin "24" (uuid 8367ac6f-a401-42a3-80d6-61003e3b96b7))
- (pin "25" (uuid 39b32f38-e85c-4148-a7da-5963c53275c0))
- (pin "26" (uuid 4c436fb9-5de1-4241-82c9-60c46b745983))
- (pin "27" (uuid e1c39d3d-107f-47ac-a722-15091d16106c))
- (pin "28" (uuid e3e3c9f3-0c5c-4c7a-bbd0-cd87170d7267))
- (pin "29" (uuid d6441129-9f99-4c29-8263-dd5ca075e046))
- (pin "3" (uuid beb01147-abc1-4a6b-88ff-a8947d580d9d))
- (pin "30" (uuid e0c90fa4-34d6-4bdd-8060-6f1e3b1600cd))
- (pin "31" (uuid e4c50208-faff-4dc6-92f3-177bc479ae49))
- (pin "32" (uuid 71507327-aca7-400b-91af-35ed0f809b8f))
- (pin "33" (uuid 31d58769-4cff-4557-a551-62670289ca77))
- (pin "34" (uuid e2543627-5409-4a7b-8859-04e0792eebb7))
- (pin "35" (uuid 561099e0-143b-4476-90ab-c417c91b1a04))
- (pin "36" (uuid e7c62455-092d-4b40-96ae-88b150e3c5b0))
- (pin "37" (uuid 37d3bf2b-1361-43a6-a660-8e584912f573))
- (pin "38" (uuid 7a4a755d-2ace-41c1-b10d-7757788b8203))
- (pin "39" (uuid 5fd956ea-65d6-43f8-ada9-d42beef6dfb4))
- (pin "4" (uuid 72eb8031-447e-41e3-aaa5-59f792bf0a9e))
- (pin "40" (uuid 85ae0676-f861-4514-b9fb-20bc3f549861))
- (pin "41" (uuid 50383816-a4cc-4b5e-9339-20372903bf5c))
- (pin "42" (uuid bede1092-872b-4e49-9d3a-d552aec96b57))
- (pin "43" (uuid 83d90ef5-ba1f-4396-a807-2497210769f8))
- (pin "5" (uuid 269dc11e-3732-4b0d-8804-d7467b2caa7b))
- (pin "6" (uuid d04e4a25-fea8-400a-b78a-19b8bbedb78b))
- (pin "7" (uuid cc3751c1-5834-4b4a-b5b0-11d94044b147))
- (pin "8" (uuid ec342f29-7fc9-4394-8f4d-4b6d773540e9))
- (pin "9" (uuid ae6839cd-d76e-41ae-9d9d-d53496654de7))
- )
- (symbol (lib_id "Device:Polyfuse") (at 106.68 78.74 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000610ee853)
- (property "Reference" "F2" (id 0) (at 106.68 76.2 90))
- (property "Value" "Polyfuse 1.8A" (id 1) (at 109.22 81.28 90))
- (property "Footprint" "max80:Fuse_1206_3216Metric" (id 2) (at 101.6 80.01 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf" (id 3) (at 106.68 78.74 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C70082" (id 4) (at 68.58 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MOUSER" "" (id 5) (at 68.58 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "" (id 6) (at 68.58 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f778b720-4dba-4694-97cb-af3248f3da0b))
- (pin "2" (uuid 679644e3-5194-49c9-bc2f-670fb057cc6d))
- )
- (symbol (lib_id "max80:HRO-TYPE-C-31-M-12") (at 29.21 90.17 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000610ee858)
- (property "Reference" "USB2" (id 0) (at 29.21 59.6138 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at 29.21 62.3062 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "max80:HRO-TYPE-C-31-M-12" (id 2) (at 29.21 64.9986 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at 11.43 88.9 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "LCSC" "C165948" (id 4) (at 29.21 90.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f4b1cc82-032f-46e4-b914-51c04d09819d))
- (pin "10" (uuid 16165d61-b1b6-457b-9112-2a44bf6cf509))
- (pin "11" (uuid b2023a43-10ff-43ab-80df-26954228ee9c))
- (pin "12" (uuid dc587071-cf10-4ce9-ae6c-4c72ef2698a5))
- (pin "13" (uuid 31f48bfa-414a-4ea3-87a1-96ca97a99923))
- (pin "2" (uuid e30e2336-2dbc-4130-9889-d5f2eae65709))
- (pin "3" (uuid 2235fd0e-bbb7-4dcf-8575-21064ddca5b1))
- (pin "4" (uuid 393c5f35-b604-403b-bb49-564befc1d4e1))
- (pin "5" (uuid 8908b45d-e610-4e95-b4ce-9dd90ff3d44f))
- (pin "6" (uuid 082217f1-4379-4503-b728-55106d6bf1c7))
- (pin "7" (uuid c8fcd968-155f-44aa-a800-8cf269c9dcc4))
- (pin "8" (uuid a0640d39-d3f5-4c67-8446-2d0c8eeedef9))
- (pin "9" (uuid e75dd901-2fb2-4ad2-9bd3-4f38583036d1))
- )
- (symbol (lib_id "power:GND") (at 118.11 88.9 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000610ee85c)
- (property "Reference" "#PWR0140" (id 0) (at 118.11 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 118.237 93.2942 0))
- (property "Footprint" "" (id 2) (at 118.11 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 118.11 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 58c005b6-6e50-4fc2-9acb-ce195450e776))
- )
- (symbol (lib_id "Power_Protection:USBLC6-2SC6") (at 88.9 104.14 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000610ee85e)
- (property "Reference" "U15" (id 0) (at 80.01 95.25 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "USBLC6-2SC6" (id 1) (at 93.98 95.25 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 78.74 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 80.01 99.06 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C7519" (id 4) (at 88.9 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a0f76d93-112e-417c-b52c-3672f2d1d60a))
- (pin "2" (uuid 27ffb4d8-9026-4ae6-9928-ea9707dfcbd9))
- (pin "3" (uuid 19a5a40d-c31a-4b14-b306-06b0a763bddb))
- (pin "4" (uuid 5881ee20-278a-4e12-9254-07f1db1cba4c))
- (pin "5" (uuid 88a3fa09-9050-4a94-a796-98b43c4981e7))
- (pin "6" (uuid 149f0dc4-9b74-4a1a-a37b-7eb355956a7a))
- )
- (symbol (lib_id "power:GND") (at 101.6 106.68 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000610ee85f)
- (property "Reference" "#PWR0141" (id 0) (at 101.6 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 101.727 111.0742 0))
- (property "Footprint" "" (id 2) (at 101.6 106.68 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 101.6 106.68 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ef0448bc-4f6c-4a2b-b2c1-bcb39e98b287))
- )
- (symbol (lib_id "Device:R_Small") (at 46.99 83.82 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061104569)
- (property "Reference" "R3" (id 0) (at 43.18 86.36 90))
- (property "Value" "5.1k" (id 1) (at 50.8 86.36 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 46.99 83.82 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 46.99 83.82 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25905" (id 4) (at 46.99 83.82 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2d596433-9303-455a-b481-8baffdc68f31))
- (pin "2" (uuid ee16771b-aed3-4080-b343-6e728660dc9f))
- )
- (symbol (lib_id "power:GND") (at 200.66 128.27 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006110ba8e)
- (property "Reference" "#PWR010" (id 0) (at 200.66 134.62 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 200.787 132.6642 0))
- (property "Footprint" "" (id 2) (at 200.66 128.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 200.66 128.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0c100e24-d6e9-4165-9e6a-35608d735eda))
- )
- (symbol (lib_id "power:+3V3") (at 200.66 64.77 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006110e24f)
- (property "Reference" "#PWR09" (id 0) (at 200.66 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 201.041 60.3758 0))
- (property "Footprint" "" (id 2) (at 200.66 64.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 200.66 64.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b270f771-721b-49fe-aa42-63a5cebe1f4d))
- )
- (symbol (lib_id "Device:C_Small") (at 189.23 54.61 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611262ee)
- (property "Reference" "C54" (id 0) (at 182.88 53.34 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "22uF" (id 1) (at 181.61 55.88 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 189.23 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 189.23 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C45783" (id 4) (at 189.23 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1462d938-5411-4e22-aa72-27d46121d151))
- (pin "2" (uuid add861c7-e8f7-4cfa-8bd4-7e4de3f19f7c))
- )
- (symbol (lib_id "Device:C_Small") (at 194.31 54.61 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061126fc2)
- (property "Reference" "C55" (id 0) (at 196.6468 53.4416 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 196.6468 55.753 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 194.31 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 194.31 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 194.31 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2c8d589a-b9f4-4b08-9a5c-2a4974fdd278))
- (pin "2" (uuid 874c218a-578e-4a62-a8c1-fe8414dd125f))
- )
- (symbol (lib_id "power:+3V3") (at 189.23 49.53 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611276ff)
- (property "Reference" "#PWR0143" (id 0) (at 189.23 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 189.611 45.1358 0))
- (property "Footprint" "" (id 2) (at 189.23 49.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 189.23 49.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ad3d2496-9d91-4c3e-a06b-0ce2ea4713c0))
- )
- (symbol (lib_id "power:GND") (at 189.23 59.69 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061127d02)
- (property "Reference" "#PWR0144" (id 0) (at 189.23 66.04 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 189.357 64.0842 0))
- (property "Footprint" "" (id 2) (at 189.23 59.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 189.23 59.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f3ba663e-8563-4c48-a8cc-72c18d8d96e8))
- )
- (symbol (lib_id "Device:C_Small") (at 246.38 152.4 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00006112e6f3)
- (property "Reference" "C53" (id 0) (at 248.7168 151.2316 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 248.7168 153.543 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 246.38 152.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 246.38 152.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 246.38 152.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5d0d7524-b89d-4f6c-9d44-8457b02a6678))
- (pin "2" (uuid 35af6bdd-53ff-42e4-b72a-2b3ff4a35922))
- )
- (symbol (lib_id "power:GND") (at 246.38 156.21 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611302a2)
- (property "Reference" "#PWR0145" (id 0) (at 246.38 162.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 246.507 160.6042 0))
- (property "Footprint" "" (id 2) (at 246.38 156.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 246.38 156.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f6f1d552-75bb-4b55-b8a4-e2bf105fbebb))
- )
- (symbol (lib_id "Device:R_Small") (at 241.3 148.59 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611331f0)
- (property "Reference" "R15" (id 0) (at 242.4684 150.0886 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "1k" (id 1) (at 240.157 150.0886 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 241.3 148.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 241.3 148.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 241.3 148.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e956ff4d-e455-4edd-96aa-f86004139587))
- (pin "2" (uuid 471eb4c1-1fb6-4731-b769-cc81195874cc))
- )
- (symbol (lib_id "Device:R_Small") (at 271.78 144.78 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611ab901)
- (property "Reference" "R19" (id 0) (at 266.7 143.51 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4.7k" (id 1) (at 266.7 146.05 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 271.78 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 271.78 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25900" (id 4) (at 271.78 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2902cb0a-8f42-4c95-9ea3-5e179bfad9e8))
- (pin "2" (uuid c36f8251-808c-4f72-8a4b-d0fe3ef6d78f))
- )
- (symbol (lib_id "Device:R_Small") (at 274.32 144.78 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611abcc5)
- (property "Reference" "R20" (id 0) (at 275.8186 143.6116 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4.7k" (id 1) (at 275.8186 145.923 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 274.32 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 274.32 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25900" (id 4) (at 274.32 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 575a00a1-dec2-49af-ab3a-df281627a881))
- (pin "2" (uuid ad88d1c1-a355-41d5-9f44-f354b8bdcfb9))
- )
- (symbol (lib_id "power:+3V3") (at 273.05 139.7 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611af690)
- (property "Reference" "#PWR034" (id 0) (at 273.05 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 273.431 135.3058 0))
- (property "Footprint" "" (id 2) (at 273.05 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 273.05 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 64221fe8-21fa-49d0-9f10-9851134afcf1))
- )
- (symbol (lib_id "Device:LED") (at 142.24 91.44 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611b5a79)
- (property "Reference" "D1" (id 0) (at 138.43 91.44 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "LED-Y" (id 1) (at 142.24 81.28 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 142.24 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 142.24 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C72038" (id 4) (at 142.24 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6f655528-a61c-4c23-868b-815cc79f5f8e))
- (pin "2" (uuid 780c110f-d675-44a5-9b77-e6d74a308504))
- )
- (symbol (lib_id "Device:R_Small") (at 142.24 105.41 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611b7173)
- (property "Reference" "R16" (id 0) (at 139.7 106.68 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "1k" (id 1) (at 138.43 107.95 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 142.24 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 142.24 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 03b7ea59-04ff-4bfc-a26f-17e4b04b9d62))
- (pin "2" (uuid 16f4e47b-2fb8-4bbd-8c1d-9c3549f80104))
- )
- (symbol (lib_id "Device:R_Small") (at 152.4 105.41 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611b7e9f)
- (property "Reference" "R17" (id 0) (at 149.86 106.68 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "1k" (id 1) (at 148.59 107.95 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 152.4 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 152.4 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C11702" (id 4) (at 152.4 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2d665c4d-1437-426f-b9cd-c53451fe5b1a))
- (pin "2" (uuid 72263aa2-32c4-4252-a768-30b77365cca2))
- )
- (symbol (lib_id "Device:R_Small") (at 147.32 105.41 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611b8401)
- (property "Reference" "R18" (id 0) (at 144.78 106.68 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "820" (id 1) (at 143.51 107.95 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 147.32 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 147.32 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C23253" (id 4) (at 147.32 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 851a5144-622e-4e9b-84aa-b2177ea53c92))
- (pin "2" (uuid bff8daab-48b4-47d4-9ffa-e5f1ce2dcca8))
- )
- (symbol (lib_id "power:GND") (at 142.24 109.22 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611bd13b)
- (property "Reference" "#PWR031" (id 0) (at 142.24 115.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 142.367 113.6142 0))
- (property "Footprint" "" (id 2) (at 142.24 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 142.24 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 95568ddf-be8c-46db-99de-cfd2b3a0cf9e))
- )
- (symbol (lib_id "power:GND") (at 147.32 109.22 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611bd757)
- (property "Reference" "#PWR032" (id 0) (at 147.32 115.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 147.447 113.6142 0))
- (property "Footprint" "" (id 2) (at 147.32 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 147.32 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 15ce1418-55b0-4ffc-8756-eed419e71700))
- )
- (symbol (lib_id "power:GND") (at 152.4 109.22 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611bdcb7)
- (property "Reference" "#PWR033" (id 0) (at 152.4 115.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 152.527 113.6142 0))
- (property "Footprint" "" (id 2) (at 152.4 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 152.4 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3597f731-eae6-47ca-8690-cde5f7bdb161))
- )
- (symbol (lib_id "Device:LED") (at 152.4 91.44 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611d1925)
- (property "Reference" "D2" (id 0) (at 148.59 91.44 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "LED-G" (id 1) (at 144.78 83.82 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 152.4 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 152.4 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C72043" (id 4) (at 152.4 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 633327ee-5c92-4cdd-8991-349aa39eaddb))
- (pin "2" (uuid 7a289eba-f626-41bf-8419-f5e4380e1684))
- )
- (symbol (lib_id "Device:LED") (at 147.32 91.44 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000611d1f01)
- (property "Reference" "D3" (id 0) (at 143.51 91.44 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "LED-B" (id 1) (at 147.32 86.36 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 147.32 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 147.32 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C72041" (id 4) (at 147.32 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 63ba11bb-a8d4-4ad2-916f-bb8801f9c48e))
- (pin "2" (uuid cb6e0760-74c5-4d61-9d5c-e561e72a4768))
- )
- (symbol (lib_id "Device:R_Small") (at 257.81 144.78 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000613a0f9d)
- (property "Reference" "R21" (id 0) (at 259.3086 143.6116 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10k" (id 1) (at 259.3086 145.923 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 257.81 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 257.81 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 4) (at 257.81 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3f7ea723-dba9-4dc0-bf29-c9e6ac75f873))
- (pin "2" (uuid d063ba46-22f6-4e50-9d5e-95f13fbaf268))
- )
- (symbol (lib_id "power:+3V3") (at 257.81 139.7 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000613a45c4)
- (property "Reference" "#PWR0150" (id 0) (at 257.81 143.51 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 258.191 135.3058 0))
- (property "Footprint" "" (id 2) (at 257.81 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 257.81 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 11b01bb4-39ea-409f-925f-51bc6ae57194))
- )
- (symbol (lib_id "Device:R_Small") (at 46.99 80.01 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000619f265c)
- (property "Reference" "R34" (id 0) (at 45.72 77.47 90))
- (property "Value" "68k" (id 1) (at 49.53 77.47 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 46.99 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 46.99 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C36871" (id 4) (at 46.99 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 98af1557-14b5-4fcd-83f4-700ba43358c4))
- (pin "2" (uuid 78d57e68-36dc-47c5-997a-7a524fc0acf1))
- )
- (symbol (lib_id "power:GND") (at 39.37 71.12 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000619f35b6)
- (property "Reference" "#PWR012" (id 0) (at 39.37 77.47 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 39.497 75.5142 0))
- (property "Footprint" "" (id 2) (at 39.37 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 39.37 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4451a169-326b-4ea5-98a4-34b43dbe20d5))
- )
- (symbol (lib_id "Device:R_Small") (at 46.99 99.06 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-0000619fb3aa)
- (property "Reference" "R35" (id 0) (at 45.72 101.6 90))
- (property "Value" "68k" (id 1) (at 50.8 101.6 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 46.99 99.06 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 46.99 99.06 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C36871" (id 4) (at 46.99 99.06 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 74b247e1-12fe-4245-a089-e07f9f950569))
- (pin "2" (uuid 78516991-6fde-4cb5-a03e-6a16e2b8674c))
- )
- (symbol (lib_id "power:+3V3") (at 59.69 74.93 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a2bd43)
- (property "Reference" "#PWR014" (id 0) (at 59.69 78.74 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3V3" (id 1) (at 60.071 70.5358 0))
- (property "Footprint" "" (id 2) (at 59.69 74.93 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 59.69 74.93 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a11f8acc-bae0-4c11-a859-c3c2c341939a))
- )
- (symbol (lib_id "Transistor_FET:AO3400A") (at 87.63 59.69 180) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a76d78)
- (property "Reference" "Q8" (id 0) (at 82.423 58.5216 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "AO3400A" (id 1) (at 82.423 60.833 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 82.55 57.785 0)
- (effects (font (size 1.27 1.27) italic) (justify left) hide)
- )
- (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf" (id 3) (at 87.63 59.69 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C347476" (id 4) (at 87.63 59.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid cd3851c8-43a7-44ba-a57d-7da51bf4d405))
- (pin "2" (uuid b1ffd1fd-32ab-4a8c-9cb0-68c64d5846a8))
- (pin "3" (uuid def56ef8-2877-4427-9903-57250c5a3b07))
- )
- (symbol (lib_id "Transistor_FET:AO3401A") (at 85.09 76.2 90) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a79372)
- (property "Reference" "Q9" (id 0) (at 80.01 73.66 90))
- (property "Value" "AO3401A" (id 1) (at 77.47 76.2 90))
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 86.995 81.28 0)
- (effects (font (size 1.27 1.27) italic) (justify left) hide)
- )
- (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" (id 3) (at 85.09 76.2 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C15127" (id 4) (at 85.09 76.2 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8ec07e79-d89b-4a66-8963-3bbe64adaa98))
- (pin "2" (uuid 9beabaab-ef77-45bf-a024-5b1095c39aa2))
- (pin "3" (uuid e9cfdde6-7112-4587-8587-8eb874bda1d5))
- )
- (symbol (lib_id "Device:R_Small") (at 93.98 72.39 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061a919f7)
- (property "Reference" "R36" (id 0) (at 95.4786 71.2216 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "36k" (id 1) (at 95.4786 73.533 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 93.98 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25556" (id 4) (at 93.98 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4c614581-218c-490b-91c8-5ade65ca0f20))
- (pin "2" (uuid 8d859ebf-9390-4cb5-961d-e7beaa0a4ae4))
- )
- (symbol (lib_id "Device:R_Small") (at 93.98 53.34 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061ac14cb)
- (property "Reference" "R48" (id 0) (at 95.4786 52.1716 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "36k" (id 1) (at 95.4786 54.483 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 93.98 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 93.98 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25556" (id 4) (at 93.98 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1b9d78c4-3203-44e3-958f-425f2e4ec9ec))
- (pin "2" (uuid 2e8a0e7d-b8cb-4d7e-ba29-f94a45314cf7))
- )
- (symbol (lib_id "power:GND") (at 74.93 52.07 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061ad2f8f)
- (property "Reference" "#PWR017" (id 0) (at 74.93 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 75.057 56.4642 0))
- (property "Footprint" "" (id 2) (at 74.93 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 74.93 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid bcfc8ebe-3259-407f-9ca0-83b908ed29de))
- )
- (symbol (lib_id "power:+5VA") (at 102.87 71.12 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061b8cb71)
- (property "Reference" "#PWR0254" (id 0) (at 102.87 74.93 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5VA" (id 1) (at 103.251 66.7258 0))
- (property "Footprint" "" (id 2) (at 102.87 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 102.87 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 79e03ae3-04c1-4136-9d11-edbf8450c5e6))
- )
- (symbol (lib_id "Device:LED") (at 127 91.44 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d533ef)
- (property "Reference" "D11" (id 0) (at 123.19 91.44 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "DNP-Y" (id 1) (at 127 81.28 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 127 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 127 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "" (id 4) (at 127 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2faae2bb-a0c2-4054-ae9f-2d25525a48e8))
- (pin "2" (uuid 08f0a69d-2047-4f15-9147-57cc2889ba57))
- )
- (symbol (lib_id "Device:LED") (at 137.16 91.44 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d5378a)
- (property "Reference" "D13" (id 0) (at 133.35 91.44 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "DNP-G" (id 1) (at 129.54 83.82 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 137.16 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 137.16 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "" (id 4) (at 137.16 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dbf9d52f-7c18-496f-9222-1cd5f4d22ee1))
- (pin "2" (uuid 12290910-e1c4-4f12-a089-9b99be24c1fc))
- )
- (symbol (lib_id "Device:LED") (at 132.08 91.44 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d53795)
- (property "Reference" "D12" (id 0) (at 128.27 91.44 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "DNP-B" (id 1) (at 132.08 86.36 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 132.08 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 132.08 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "" (id 4) (at 132.08 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 797336a2-12e4-4dd0-a33e-dc6624c7dd5e))
- (pin "2" (uuid 63889b5b-319a-4ec7-9d88-38746b1ff624))
- )
- )
|