123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985 |
- (kicad_sch
- (version 20231120)
- (generator "eeschema")
- (generator_version "8.0")
- (uuid "ff2f00dc-dff2-4a19-af27-f5c793a8d261")
- (paper "A4")
- (title_block
- (title "Greaseweazle F7 Lighting, USB PD")
- (date "2023-08-27")
- (rev "2.04")
- (company "SweProj.com")
- )
- (lib_symbols
- (symbol "Device:C"
- (pin_numbers hide)
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "cap capacitor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "C_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762) (xy 2.032 -0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 0.762) (xy 2.032 0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "C_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "Device:C_Small"
- (pin_numbers hide)
- (pin_names
- (offset 0.254) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C"
- (at 0.254 1.778 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C_Small"
- (at 0.254 -2.032 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor, small symbol"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "capacitor cap"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "C_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "C_Small_0_1"
- (polyline
- (pts
- (xy -1.524 -0.508) (xy 1.524 -0.508)
- )
- (stroke
- (width 0.3302)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.524 0.508) (xy 1.524 0.508)
- )
- (stroke
- (width 0.3048)
- (type default)
- )
- (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:Polyfuse"
- (pin_numbers hide)
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "F"
- (at -2.54 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Polyfuse"
- (at 2.54 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 1.27 -5.08 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resettable fuse, polymeric positive temperature coefficient"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "*polyfuse* *PTC*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "Polyfuse_0_1"
- (rectangle
- (start -0.762 2.54)
- (end 0.762 -2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0 -2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (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)
- )
- (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"
- (pin_numbers hide)
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "R"
- (at 2.032 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "R"
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "R res resistor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "R_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "R_0_1"
- (rectangle
- (start -1.016 -2.54)
- (end 1.016 2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "R_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "Greaseweazle:HRO-TYPE-C-31-M-12"
- (pin_names
- (offset 1.016)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "USB"
- (at -5.08 16.51 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- )
- )
- (property "Value" "HRO-TYPE-C-31-M-12"
- (at -10.16 -1.27 90)
- (effects
- (font
- (size 1.524 1.524)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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)
- )
- (fill
- (type background)
- )
- )
- (rectangle
- (start 0 -17.78)
- (end -8.89 15.24)
- (stroke
- (width 0)
- (type default)
- )
- (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_Protection:USBLC6-2SC6"
- (pin_names hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U"
- (at 0.635 5.715 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "USBLC6-2SC6"
- (at 0.635 3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6"
- (at 1.27 -6.35 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf"
- (at 1.27 -8.255 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "usb ethernet video"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "SOT?23*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "USBLC6-2SC6_0_0"
- (circle
- (center -1.524 0)
- (radius 0.0001)
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (circle
- (center -0.508 -4.572)
- (radius 0.0001)
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (circle
- (center -0.508 2.032)
- (radius 0.0001)
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (circle
- (center 0.508 -4.572)
- (radius 0.0001)
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (circle
- (center 0.508 2.032)
- (radius 0.0001)
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (circle
- (center 1.524 -2.54)
- (radius 0.0001)
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "USBLC6-2SC6_0_1"
- (polyline
- (pts
- (xy -2.54 -2.54) (xy 2.54 -2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.54 0) (xy 2.54 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 -3.048) (xy -1.016 -3.048)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.016 1.524) (xy -2.032 1.524)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.016 -3.048) (xy 2.032 -3.048)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.016 1.524) (xy 2.032 1.524)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -0.508 -1.143) (xy -0.508 -0.762) (xy 0.508 -0.762)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 0.508) (xy -1.016 0.508) (xy -1.524 1.524) (xy -2.032 0.508)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.016 -4.064) (xy -2.032 -4.064) (xy -1.524 -3.048) (xy -1.016 -4.064)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0.508 -1.778) (xy -0.508 -1.778) (xy 0 -0.762) (xy 0.508 -1.778)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 2.032 -4.064) (xy 1.016 -4.064) (xy 1.524 -3.048) (xy 2.032 -4.064)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 2.032 0.508) (xy 1.016 0.508) (xy 1.524 1.524) (xy 2.032 0.508)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy -0.508 2.032) (xy 0.508 2.032) (xy 0 1.524) (xy 0 -4.064) (xy -0.508 -4.572) (xy 0.508 -4.572)
- (xy 0 -5.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "USBLC6-2SC6_1_1"
- (rectangle
- (start -2.54 2.794)
- (end 2.54 -5.334)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (polyline
- (pts
- (xy -0.508 2.032) (xy -1.524 2.032) (xy -1.524 -4.572) (xy -0.508 -4.572)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0.508 -4.572) (xy 1.524 -4.572) (xy 1.524 2.032) (xy 0.508 2.032)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin passive line
- (at -5.08 0 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 -7.62 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 -5.08 -2.54 0)
- (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 5.08 -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 5.08 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 5.08 0 180)
- (length 2.54)
- (name "I/O1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "power:+5V"
- (power)
- (pin_numbers hide)
- (pin_names
- (offset 0) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+5V"
- (at 0 3.556 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+5V\""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "+5V_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+5V_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "power:GND"
- (power)
- (pin_numbers hide)
- (pin_names
- (offset 0) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "#PWR"
- (at 0 -6.35 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 0 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "GND_1_1"
- (pin power_in line
- (at 0 0 270)
- (length 0)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- )
- (junction
- (at 87.63 71.12)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "05e45f00-3c6b-4c0c-9ffb-3fe26fcda007")
- )
- (junction
- (at 90.17 91.44)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2a6ee718-8cdf-4fa6-be7c-8fe885d98fd7")
- )
- (junction
- (at 143.51 71.12)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "58a87288-e2bf-4c88-9871-a753efc69e9d")
- )
- (junction
- (at 90.17 96.52)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "621c8eb9-ae87-439a-b350-badb5d559a5a")
- )
- (junction
- (at 81.28 81.28)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "68377e50-69bc-450e-988d-db77ebfcf394")
- )
- (junction
- (at 90.17 76.2)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "9c8eae28-a7c3-4e6a-bd81-98cf70031070")
- )
- (junction
- (at 96.52 71.12)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c62adb8b-b306-48da-b0ae-f6a287e54f62")
- )
- (junction
- (at 80.01 83.82)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c7780180-ed39-465b-b4f2-f403f2fe9dea")
- )
- (no_connect
- (at 77.47 73.66)
- (uuid "0fc912fd-5036-4a55-b598-a9af40810824")
- )
- (no_connect
- (at 77.47 88.9)
- (uuid "1765d6b9-ca0e-49c2-8c3c-8ab35eb3909b")
- )
- (wire
- (pts
- (xy 77.47 83.82) (xy 80.01 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "046ca2d8-3ca1-4c64-8090-c45e9adcf30e")
- )
- (wire
- (pts
- (xy 111.76 101.6) (xy 111.76 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0734ddba-38fe-4b33-aa54-cc7356af1444")
- )
- (wire
- (pts
- (xy 143.51 58.42) (xy 143.51 71.12)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0c9bbc06-f1c0-4359-8448-9c515b32a886")
- )
- (wire
- (pts
- (xy 78.74 99.06) (xy 78.74 104.14)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "10ccbac2-9803-4b72-ad47-24278c53aee9")
- )
- (wire
- (pts
- (xy 111.76 83.82) (xy 118.11 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "10e1ac58-f063-4048-ae6f-aa58e7730d80")
- )
- (wire
- (pts
- (xy 80.01 78.74) (xy 80.01 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "132a293d-17e0-408d-a959-abc7411de4c4")
- )
- (wire
- (pts
- (xy 77.47 99.06) (xy 78.74 99.06)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1528875a-d8cd-41a6-ba8b-3096dba5d1ae")
- )
- (wire
- (pts
- (xy 77.47 86.36) (xy 81.28 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "16d74262-8635-4a64-9f97-17014fb25562")
- )
- (wire
- (pts
- (xy 77.47 96.52) (xy 90.17 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1b5a32e4-0b8e-4f38-b679-71dc277c2087")
- )
- (wire
- (pts
- (xy 81.28 81.28) (xy 81.28 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1fb32039-a12b-427e-b06a-f0e9a133d6f9")
- )
- (wire
- (pts
- (xy 143.51 82.55) (xy 143.51 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "22ab392d-1989-4185-9178-8083812ea067")
- )
- (wire
- (pts
- (xy 132.08 71.12) (xy 143.51 71.12)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2dc66f7e-d85d-4081-ae71-fd8851d6aeda")
- )
- (wire
- (pts
- (xy 87.63 71.12) (xy 87.63 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2fb9964c-4cd4-4e81-b5e8-f78759d3adb5")
- )
- (wire
- (pts
- (xy 80.01 83.82) (xy 93.98 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "39896e95-d5b7-4b2d-91fb-a97d46123782")
- )
- (wire
- (pts
- (xy 86.36 76.2) (xy 90.17 76.2)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3c66e6e2-f12d-4b23-910e-e478d272dfd5")
- )
- (wire
- (pts
- (xy 90.17 91.44) (xy 90.17 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "55cff608-ab38-48d9-ac09-2d0a877ceca1")
- )
- (wire
- (pts
- (xy 77.47 71.12) (xy 87.63 71.12)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5a889284-4c9f-49be-8f02-e43e18550914")
- )
- (wire
- (pts
- (xy 90.17 76.2) (xy 90.17 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6b69fc79-c78f-4df1-9a05-c51d4173705f")
- )
- (wire
- (pts
- (xy 77.47 81.28) (xy 81.28 81.28)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6e77d4d6-0239-4c20-98f8-23ae4f71d638")
- )
- (wire
- (pts
- (xy 81.28 81.28) (xy 106.68 81.28)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "74343e9f-cac0-4aec-a43c-c4538e48108c")
- )
- (wire
- (pts
- (xy 116.84 93.98) (xy 120.65 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "77e7f64d-ea66-4532-98cf-5f9a96305766")
- )
- (wire
- (pts
- (xy 116.84 96.52) (xy 120.65 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "78d99dc5-1f26-47b0-b13b-acf627d85ae6")
- )
- (wire
- (pts
- (xy 90.17 68.58) (xy 90.17 76.2)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8385d9f6-6997-423b-b38d-d0ab00c45f3f")
- )
- (wire
- (pts
- (xy 77.47 76.2) (xy 78.74 76.2)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "84febc35-87fd-4cad-8e04-2b66390cfc12")
- )
- (wire
- (pts
- (xy 78.74 109.22) (xy 78.74 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "85483135-5174-4e04-95b6-60212dbc7216")
- )
- (wire
- (pts
- (xy 96.52 71.12) (xy 96.52 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "87a0ffb1-5477-4b20-a3ac-fef5af129a33")
- )
- (wire
- (pts
- (xy 90.17 96.52) (xy 90.17 101.6)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8b022692-69b7-4bd6-bf38-57edecf356fa")
- )
- (wire
- (pts
- (xy 106.68 81.28) (xy 106.68 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "929c74c0-78bf-4efe-a778-fa328e951865")
- )
- (wire
- (pts
- (xy 93.98 83.82) (xy 93.98 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a4541b62-7a39-4707-9c6f-80dce1be9cee")
- )
- (wire
- (pts
- (xy 77.47 78.74) (xy 80.01 78.74)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a6aea586-fa7f-410e-b933-25e3766c3410")
- )
- (wire
- (pts
- (xy 93.98 96.52) (xy 106.68 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b4e6ce83-2fe1-4009-9ddb-06ed8aae48a1")
- )
- (wire
- (pts
- (xy 143.51 71.12) (xy 143.51 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b606e532-e4c7-444d-b9ff-879f52cfde92")
- )
- (wire
- (pts
- (xy 87.63 71.12) (xy 96.52 71.12)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b9c0c276-e6f1-47dd-b072-0f92904248ca")
- )
- (wire
- (pts
- (xy 111.76 88.9) (xy 111.76 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c85a2634-b985-4db3-ab11-0610338bc7d4")
- )
- (wire
- (pts
- (xy 96.52 105.41) (xy 111.76 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d1df80f5-cbeb-42f5-b7a7-146e981c3c8a")
- )
- (wire
- (pts
- (xy 96.52 71.12) (xy 124.46 71.12)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d5a7688c-7438-4b6d-999f-4f2a3cb18fd6")
- )
- (wire
- (pts
- (xy 77.47 91.44) (xy 78.74 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d8370835-89ad-4b62-9f40-d0c10470788a")
- )
- (wire
- (pts
- (xy 118.11 83.82) (xy 118.11 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "db929a7f-5085-45df-8dbc-8426d646a27c")
- )
- (wire
- (pts
- (xy 77.47 68.58) (xy 90.17 68.58)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "dc7523a5-4408-4a51-bc92-6a47a538c094")
- )
- (wire
- (pts
- (xy 77.47 93.98) (xy 87.63 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "eb7e294c-b398-413b-8b78-85a66ed5f3ea")
- )
- (wire
- (pts
- (xy 86.36 91.44) (xy 90.17 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f2392fe0-54af-4e02-8793-9ba2471944b5")
- )
- (hierarchical_label "USB_D_P"
- (shape input)
- (at 120.65 93.98 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "1527299a-08b3-47c3-929f-a75c83be365e")
- )
- (hierarchical_label "USB_D_N"
- (shape input)
- (at 120.65 96.52 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "aa288a22-ea1d-474d-8dae-efe971580843")
- )
- (symbol
- (lib_id "Device:Polyfuse")
- (at 128.27 71.12 270)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005cc74192")
- (property "Reference" "F1"
- (at 128.27 68.58 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Polyfuse 1 A"
- (at 128.27 74.93 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Greaseweazle:Fuse_1206_3216Metric"
- (at 123.19 72.39 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 128.27 71.12 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resettable fuse, polymeric positive temperature coefficient"
- (at 128.27 71.12 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C720075"
- (at 90.17 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "MOUSER" ""
- (at 90.17 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "MPN" ""
- (at 90.17 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "e3e54dc4-b78e-4f5d-8cb8-bba525840bd1")
- )
- (pin "2"
- (uuid "7923f4cf-3720-454e-a63c-1335d61ae90c")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "F1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 90.17 101.6 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005cc7520b")
- (property "Reference" "#PWR0104"
- (at 90.17 107.95 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 90.297 105.9942 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 90.17 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 90.17 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 90.17 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "d237b04b-80a2-4654-ba41-e47cfae37f65")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "#PWR0104")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 143.51 83.82 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005cc8b39c")
- (property "Reference" "#PWR0102"
- (at 143.51 90.17 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 143.637 88.2142 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 143.51 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 143.51 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 143.51 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "535abd59-de73-4701-a51d-ea8da17274cc")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "#PWR0102")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Greaseweazle:HRO-TYPE-C-31-M-12")
- (at 74.93 82.55 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005e68a6b6")
- (property "Reference" "USB1"
- (at 74.93 51.9938 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- )
- )
- (property "Value" "HRO-TYPE-C-31-M-12"
- (at 74.93 54.6862 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- )
- )
- (property "Footprint" "Greaseweazle:HRO-TYPE-C-31-M-12"
- (at 74.93 57.3786 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"
- (at 57.15 81.28 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 74.93 82.55 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C165948"
- (at 74.93 82.55 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "844ae084-b702-4cc4-b628-72ea41b1f0b7")
- )
- (pin "10"
- (uuid "9369e5ea-caad-42d6-9087-a2617ed111ff")
- )
- (pin "11"
- (uuid "445530eb-3c60-4dbb-a9d2-972cfbcab07c")
- )
- (pin "12"
- (uuid "842ba290-aaad-4bdb-be72-30a94d8f1939")
- )
- (pin "13"
- (uuid "eac2f2e2-5f42-48c2-9089-d8676c73c42c")
- )
- (pin "2"
- (uuid "208940d8-fe18-4dbb-a3ab-dfb6808c3a6c")
- )
- (pin "3"
- (uuid "9348f73e-0de9-4560-a2fa-c7bed9f689f2")
- )
- (pin "4"
- (uuid "778afe45-9f16-4ca1-a254-07a0979cd9bb")
- )
- (pin "5"
- (uuid "2d74bb8d-de77-4958-a1db-56a01f938d3b")
- )
- (pin "6"
- (uuid "03eb300a-5f6e-4d3f-b371-2bdb6f7d76d9")
- )
- (pin "7"
- (uuid "041568c4-9dc7-475c-8bfb-b87e32a2005d")
- )
- (pin "8"
- (uuid "7e5ec390-f97b-4804-9629-b010a74c0caf")
- )
- (pin "9"
- (uuid "342334b7-6092-4f61-9771-2b8fc04c1cdc")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "USB1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 82.55 76.2 270)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005e733708")
- (property "Reference" "R1"
- (at 82.55 73.66 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "5.1k"
- (at 82.55 78.74 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric"
- (at 82.55 74.422 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 82.55 76.2 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 82.55 76.2 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C25905"
- (at 82.55 76.2 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Supplier" ""
- (at 82.55 76.2 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "0a595de8-49f3-499c-ae51-7b72e1bd481e")
- )
- (pin "2"
- (uuid "dc033443-2703-4264-8c14-41a3d67b6c49")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "R1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 82.55 91.44 270)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005e79f20f")
- (property "Reference" "R2"
- (at 82.55 86.1822 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "5.1k"
- (at 82.55 88.4936 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric"
- (at 82.55 89.662 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 82.55 91.44 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 82.55 91.44 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C25905"
- (at 82.55 91.44 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Supplier" ""
- (at 82.55 91.44 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "f105b2f9-77bd-4edf-ad2c-330df90ea317")
- )
- (pin "2"
- (uuid "0ad2dbcc-680f-4d79-840c-e8ea7bda806d")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "R2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 143.51 78.74 0)
- (mirror x)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005e7feac9")
- (property "Reference" "C1"
- (at 137.1092 78.74 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "1uF"
- (at 138.43 81.28 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0603_1608Metric"
- (at 144.4752 74.93 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 143.51 78.74 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 143.51 78.74 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C15849"
- (at 107.95 54.61 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "MOUSER" ""
- (at 107.95 54.61 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "MPN" ""
- (at 107.95 54.61 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Supplier" ""
- (at 143.51 78.74 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "dc7ff2c0-4946-410e-a713-3255c290e916")
- )
- (pin "2"
- (uuid "a9113c66-602d-470b-b24f-4d1784f6a5e0")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "C1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Power_Protection:USBLC6-2SC6")
- (at 111.76 96.52 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005e95f9cd")
- (property "Reference" "U2"
- (at 102.87 90.17 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "USBLC6-2SC6"
- (at 100.33 91.44 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6"
- (at 130.81 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf"
- (at 106.68 105.41 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"
- (at 111.76 96.52 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C7519"
- (at 111.76 96.52 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "c3156dfe-ad86-452a-942c-d88fa4ce14f4")
- )
- (pin "2"
- (uuid "af89d63d-3be6-4dcb-a825-41cb31178289")
- )
- (pin "3"
- (uuid "2e84c38e-66af-4af6-afe9-1ffa7a4dfbae")
- )
- (pin "4"
- (uuid "1bab46dd-f520-45a1-83fe-b0c86807ba63")
- )
- (pin "5"
- (uuid "e64dd6cf-b25a-44a7-a209-ae75962a691a")
- )
- (pin "6"
- (uuid "5e96b56d-27a5-417e-b0ec-349bf63d0a73")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "U2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 118.11 86.36 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005e9ecde8")
- (property "Reference" "#PWR0105"
- (at 118.11 92.71 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 118.237 90.7542 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 118.11 86.36 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 118.11 86.36 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 118.11 86.36 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "9c733c71-8913-4317-8a13-37349cc819db")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "#PWR0105")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+5V")
- (at 143.51 58.42 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-000062237a55")
- (property "Reference" "#PWR0106"
- (at 143.51 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+5V"
- (at 143.891 54.0258 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 143.51 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 143.51 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+5V\""
- (at 143.51 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "489a3036-9fd5-47fc-be8b-57babb17c701")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "#PWR0106")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 78.74 110.49 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "1b961ab8-b992-4361-ada7-487e4887f97d")
- (property "Reference" "#PWR042"
- (at 78.74 116.84 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 78.74 115.57 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 78.74 110.49 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 78.74 110.49 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 78.74 110.49 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "dbfc475f-cf39-41bc-8e30-c526a99a9f68")
- )
- (instances
- (project ""
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "#PWR042")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C_Small")
- (at 78.74 106.68 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "da2adebc-f006-40fc-9df6-1bcd06dc6ee1")
- (property "Reference" "C98"
- (at 81.0768 105.5116 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100nF"
- (at 81.0768 107.823 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric"
- (at 78.74 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 78.74 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor, small symbol"
- (at 78.74 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C1525"
- (at 78.74 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "3197f4e0-8d03-410b-9595-4edeb7c24533")
- )
- (pin "2"
- (uuid "aff0ce11-1a2c-429f-af14-1ccf80c7a6cc")
- )
- (instances
- (project "Greaseweazle"
- (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/00000000-0000-0000-0000-000060f22a52"
- (reference "C98")
- (unit 1)
- )
- )
- )
- )
- )
|