123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271 |
- (kicad_sch
- (version 20231120)
- (generator "eeschema")
- (generator_version "8.0")
- (uuid "e2ee8a97-0807-4327-9a05-9b57bbffc076")
- (paper "A4")
- (title_block
- (title "LM2576 5V Power Supply")
- (date "2024-02-05")
- (rev "1")
- (company "DrinkRobotics")
- (comment 1 "https://git.xythobuz.de/thomas/Dispensy")
- (comment 2 "Licensed under the CERN-OHL-S-2.0+")
- (comment 3 "PCB Thickness: 1mm")
- (comment 4 "Copyright (c) 2023 - 2024 Thomas Buck <thomas@xythobuz.de>")
- )
- (lib_symbols
- (symbol "jlc:CC0402KRX7R8BB104"
- (pin_names hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C"
- (at 0 1.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "CC0402KRX7R8BB104"
- (at 0 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "jlc_footprints:C0402"
- (at 0 -10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/15869.html"
- (at -2.286 0.127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C105883"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Capacitance" "100nF"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "C105883"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "CC0402KRX7R8BB104_0_1"
- (polyline
- (pts
- (xy -1.27 0) (xy -0.508 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -0.508 2.032) (xy -0.508 -2.032)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0.508 0) (xy 1.27 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0.508 2.032) (xy 0.508 -2.032)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin input line
- (at -3.81 0 0)
- (length 2.54)
- (name "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin input line
- (at 3.81 0 180)
- (length 2.54)
- (name "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- )
- )
- (symbol "jlc:LM2576S-5_0_TR"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U"
- (at 0 1.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LM2576S-5_0_TR"
- (at 0 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "jlc_footprints:TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR"
- (at 0 -10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/139878.html"
- (at -2.286 0.127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C194472"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "C194472"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "LM2576S-5_0_TR_0_1"
- (rectangle
- (start -10.16 7.62)
- (end 10.16 -7.62)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (pin power_in line
- (at -15.24 5.08 0)
- (length 5.08)
- (name "VIN"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin power_in line
- (at 15.24 5.08 180)
- (length 5.08)
- (name "OUT"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin power_in line
- (at -15.24 -5.08 0)
- (length 5.08)
- (name "GND"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin unspecified line
- (at 15.24 0 180)
- (length 5.08)
- (name "FB"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin unspecified line
- (at -15.24 0 0)
- (length 5.08)
- (name "ON#/OFF"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin power_in line
- (at 15.24 -5.08 180)
- (length 5.08)
- (name "TAB"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- )
- )
- (symbol "jlc:MBR340F"
- (pin_names hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "D"
- (at 0 1.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "MBR340F"
- (at 0 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "jlc_footprints:SOD-123_L2.8-W1.8-LS3.7-RD"
- (at 0 -10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/301422.html"
- (at -2.286 0.127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C475721"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "C475721"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "MBR340F_0_1"
- (polyline
- (pts
- (xy -1.27 0) (xy -1.27 -2.032) (xy -0.762 -2.032) (xy -0.762 -1.778)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.27 0) (xy -1.27 2.032) (xy -1.778 2.032) (xy -1.778 1.778)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 1.524) (xy -1.27 0) (xy 1.27 -1.778) (xy 1.27 1.524)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (pin unspecified line
- (at -5.08 0 0)
- (length 3.81)
- (name "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin unspecified line
- (at 5.08 0 180)
- (length 3.81)
- (name "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- )
- )
- (symbol "jlc:VT1C102M1010"
- (pin_names hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C25"
- (at 0 5.731 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "VT1C102M1010"
- (at 0 3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "jlc_footprints:CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD"
- (at 0 -10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20170630/1498816639192.pdf"
- (at -2.286 0.127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C310843"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Capacitance" "1000uF"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "C310843"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "VT1C102M1010_0_1"
- (rectangle
- (start -2.032 -2.0066)
- (end -1.016 -2.032)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (rectangle
- (start -1.524 -1.524)
- (end -1.4986 -2.54)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (polyline
- (pts
- (xy -0.762 -2.54) (xy -0.762 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start 1.9722 2.54)
- (mid -0.0627 0)
- (end 1.9722 -2.54)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin unspecified line
- (at -5.08 0 0)
- (length 4.318)
- (name "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin unspecified line
- (at 5.08 0 180)
- (length 4.826)
- (name "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- )
- )
- (symbol "jlc:VZH101M1K1010-TRO"
- (pin_names hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C24"
- (at 3.81 0.651 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "VZH101M1K1010-TRO"
- (at 3.81 -1.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "jlc_footprints:CAP-SMD_BD10.0-L10.3-W10.3-FD"
- (at 0 -10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/245683.html"
- (at -2.286 0.127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C249838"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Capacitance" "100uF"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "C249838"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "VZH101M1K1010-TRO_0_1"
- (rectangle
- (start -2.54 1.524)
- (end -1.524 1.4986)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (rectangle
- (start -2.032 2.032)
- (end -2.0066 1.016)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (polyline
- (pts
- (xy -2.54 0.762) (xy 2.54 0.762)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start 2.402 -2.3373)
- (mid -0.0054 -0.1295)
- (end -2.4028 -2.348)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin unspecified line
- (at 0 5.08 270)
- (length 4.318)
- (name "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin unspecified line
- (at 0 -5.08 90)
- (length 4.826)
- (name "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- )
- )
- (symbol "jlc:YSPI1050-101M"
- (pin_names hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U13"
- (at -0.1265 3.8988 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "YSPI1050-101M"
- (at -0.1265 1.9778 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "jlc_footprints:IND-SMD_L11.5-W10.0_YSPI1050"
- (at 0 -10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/509548.html"
- (at -2.286 0.127 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C497903"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Inductance" "100uH"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "C497903"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "YSPI1050-101M_0_1"
- (arc
- (start -2.1684 -0.1369)
- (mid -3.0337 1.006)
- (end -4.1806 0.1457)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start -0.1364 -0.1369)
- (mid -1.0017 1.006)
- (end -2.1486 0.1457)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start 1.8956 -0.1369)
- (mid 1.0303 1.006)
- (end -0.1166 0.1457)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start 3.9276 -0.1369)
- (mid 3.0623 1.006)
- (end 1.9154 0.1457)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin unspecified line
- (at -5.08 0 0)
- (length 1.016)
- (name "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- (pin unspecified line
- (at 5.08 0 180)
- (length 1.016)
- (name "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1 1)
- )
- )
- )
- )
- )
- )
- (symbol "power:GND"
- (power)
- (pin_names
- (offset 0)
- )
- (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) hide
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- )
- (junction
- (at 127 100.33)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "001295d2-2486-405d-97ef-e579951a58c6")
- )
- (junction
- (at 127 97.79)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1b574731-bfb7-4f0a-ab00-d29417d5a178")
- )
- (junction
- (at 173.99 105.41)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "3d9d0c6a-2f22-466d-80fe-ff5c6e084447")
- )
- (junction
- (at 123.19 87.63)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "44ae13a5-d58a-4014-8c27-96faf69bbe6e")
- )
- (junction
- (at 187.96 92.71)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "5e6f692f-4637-4a10-b8a8-8944ba5b2e90")
- )
- (junction
- (at 173.99 92.71)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "6641fdb0-827c-49df-a9cd-64511a8c8650")
- )
- (junction
- (at 161.29 87.63)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "84079769-14c0-463c-8ed1-b2ca523e11a2")
- )
- (wire
- (pts
- (xy 173.99 87.63) (xy 172.72 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "04ec7351-df7f-49b6-8fe6-d77bcba9492e")
- )
- (wire
- (pts
- (xy 121.92 87.63) (xy 123.19 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "06446716-a4d1-45c7-a7d4-d1919ec7ca8c")
- )
- (wire
- (pts
- (xy 123.19 87.63) (xy 123.19 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "08d1d48a-5355-4a1c-b3df-8fc9d6a9646d")
- )
- (wire
- (pts
- (xy 187.96 105.41) (xy 173.99 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "15f15ba8-9d43-4f00-806a-153086b34391")
- )
- (wire
- (pts
- (xy 173.99 92.71) (xy 187.96 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "184bce81-cb0e-4ddf-9095-7f22c37d7d2f")
- )
- (wire
- (pts
- (xy 129.54 92.71) (xy 127 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1dc77949-3cfa-45e6-a462-100a13a9389b")
- )
- (wire
- (pts
- (xy 127 97.79) (xy 127 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2026acc0-0cf1-4a23-9494-6a1ad62bfdd2")
- )
- (wire
- (pts
- (xy 160.02 92.71) (xy 173.99 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2049be78-2beb-4f3e-aee5-2b189fbf6d55")
- )
- (wire
- (pts
- (xy 187.96 92.71) (xy 187.96 95.25)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "211ca166-4f91-400f-86fa-e75a897f043a")
- )
- (wire
- (pts
- (xy 160.02 87.63) (xy 161.29 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2e3c848d-96c9-4466-97ec-e152dcb3cfd9")
- )
- (wire
- (pts
- (xy 123.19 87.63) (xy 129.54 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3ddb8dba-6350-4dcb-94e0-f79908209597")
- )
- (wire
- (pts
- (xy 187.96 102.87) (xy 187.96 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "478be2f5-d374-4aee-b241-50e31dff3c45")
- )
- (wire
- (pts
- (xy 175.26 83.82) (xy 176.53 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4f098095-0121-47bb-a450-df3e7aedaf2b")
- )
- (wire
- (pts
- (xy 123.19 100.33) (xy 127 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6b4f1dfe-45dc-4db1-9895-b9a15142df01")
- )
- (wire
- (pts
- (xy 127 92.71) (xy 127 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "89250b16-c72a-41cb-9286-3d9c719a790d")
- )
- (wire
- (pts
- (xy 173.99 105.41) (xy 173.99 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8989ff74-f916-4f1e-ad2e-92d2c1a45223")
- )
- (wire
- (pts
- (xy 160.02 97.79) (xy 162.56 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "98dc8523-d3e7-4d7e-b1cc-6e95b9e1f6b8")
- )
- (wire
- (pts
- (xy 165.1 83.82) (xy 161.29 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9a51958c-bf37-4009-bea2-47adb42779d0")
- )
- (wire
- (pts
- (xy 127 101.6) (xy 127 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9b2b4db4-17f2-47dc-ab9d-9e03e850615b")
- )
- (wire
- (pts
- (xy 173.99 92.71) (xy 173.99 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a8f3b999-2832-48f5-8ef8-57eed99e01dc")
- )
- (wire
- (pts
- (xy 127 97.79) (xy 129.54 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a946b4b0-d0d6-4a15-bded-5f8466cb30c5")
- )
- (wire
- (pts
- (xy 161.29 87.63) (xy 162.56 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cbd637c7-23f5-46dd-accf-ec575aeb9625")
- )
- (wire
- (pts
- (xy 187.96 92.71) (xy 198.12 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "eca83eeb-47f5-479f-9b37-7fcb4a75ce71")
- )
- (wire
- (pts
- (xy 173.99 104.14) (xy 173.99 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f017919c-fc13-4f00-9329-e00c54b89067")
- )
- (wire
- (pts
- (xy 173.99 92.71) (xy 173.99 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f2b7c467-4674-44b6-b089-48f648fb6511")
- )
- (wire
- (pts
- (xy 161.29 83.82) (xy 161.29 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fa9373cc-0a68-4713-a0a8-9011a7f8a698")
- )
- (wire
- (pts
- (xy 123.19 99.06) (xy 123.19 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fa9a5d15-cbf0-4afe-b5f7-0d2b3d3df030")
- )
- (hierarchical_label "Vin"
- (shape input)
- (at 121.92 87.63 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "0dc4cd50-9def-4d96-9466-fbd34e12e021")
- )
- (hierarchical_label "Vout"
- (shape input)
- (at 198.12 92.71 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "90c4d967-37f9-4aa5-bd92-490c59ce559d")
- )
- (symbol
- (lib_id "jlc:VZH101M1K1010-TRO")
- (at 123.19 93.98 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "04ef562d-6ae5-43ee-951a-6683c9942340")
- (property "Reference" "C27"
- (at 120.0151 93.4943 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "100uF"
- (at 120.0151 95.4153 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "jlc_footprints:CAP-SMD_BD10.0-L10.3-W10.3-FD"
- (at 123.19 104.14 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/245683.html"
- (at 120.904 93.853 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 123.19 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C249838"
- (at 123.19 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Capacitance" "100uF"
- (at 123.19 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "708e9d40-1055-4850-ac25-836be885550f")
- )
- (pin "2"
- (uuid "19e80673-31af-4a25-b4dc-4f0bdf0625f0")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "C27")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "C2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "jlc:MBR340F")
- (at 170.18 83.82 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "20dd6577-8636-444a-97ff-a0d42be2ea02")
- (property "Reference" "D2"
- (at 169.926 78.9051 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "MBR340F"
- (at 169.926 80.8261 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "jlc_footprints:SOD-123_L2.8-W1.8-LS3.7-RD"
- (at 170.18 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/301422.html"
- (at 167.894 83.693 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 170.18 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C475721"
- (at 170.18 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "29e5c76b-44c4-4644-95c9-01ac714a3325")
- )
- (pin "2"
- (uuid "cfa1358e-e651-4c23-9773-a49a1c9cc6f0")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "D2")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "D1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 127 101.6 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "7269ed94-7ea0-4e51-8a93-2dccdd5233df")
- (property "Reference" "#PWR069"
- (at 127 107.95 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 127 105.7355 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 127 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 127 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 127 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "c7ee235a-37be-4fed-9905-ac45005f897d")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "#PWR069")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "#PWR020")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 173.99 106.68 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "bb1ccf4d-8beb-4fe8-81fe-e3030072a926")
- (property "Reference" "#PWR071"
- (at 173.99 113.03 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 173.99 110.8155 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 173.99 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 173.99 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 173.99 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "6a2edc21-dc3c-44b7-8694-e704c8b1645f")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "#PWR071")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "#PWR022")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 162.56 97.79 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "bf5c3f8a-5bae-493f-8de4-35fa99a6b35e")
- (property "Reference" "#PWR070"
- (at 168.91 97.79 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 165.735 98.1068 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" ""
- (at 162.56 97.79 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 162.56 97.79 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 162.56 97.79 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "68a78952-2831-499d-b4b1-0327e60f9d7f")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "#PWR070")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "#PWR021")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "jlc:VT1C102M1010")
- (at 173.99 99.06 270)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "c30613b2-05e8-4268-9e6b-caf9d6e976a9")
- (property "Reference" "C28"
- (at 177.165 98.3864 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "1000uF"
- (at 177.165 100.3074 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "jlc_footprints:CAP-SMD_BD10.0-L10.3-W10.3-LS11.3-FD"
- (at 163.83 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20170630/1498816639192.pdf"
- (at 174.117 96.774 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 173.99 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C310843"
- (at 173.99 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Capacitance" "1000uF"
- (at 173.99 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "2c0a454a-a9ee-48e2-9338-77ce6a82f472")
- )
- (pin "2"
- (uuid "c1b4924f-0659-4e62-b3ac-5a2d09359d02")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "C28")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "C3")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 176.53 83.82 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "ccd9e379-2dab-41d9-87c0-5e46aba5e5c4")
- (property "Reference" "#PWR072"
- (at 182.88 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 179.705 84.1368 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" ""
- (at 176.53 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 176.53 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 176.53 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "015b3a01-3154-48f9-8b6b-32798698ad04")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "#PWR072")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "#PWR023")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "jlc:LM2576S-5_0_TR")
- (at 144.78 92.71 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "e2ea5dce-aadc-4b92-9967-8de923c62659")
- (property "Reference" "U16"
- (at 144.78 82.2071 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LM2576S-5_0_TR"
- (at 144.78 84.1281 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "jlc_footprints:TO-263-5_L10.6-W9.6-P1.70-LS15.9-BR"
- (at 144.78 102.87 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/139878.html"
- (at 142.494 92.583 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 144.78 92.71 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C194472"
- (at 144.78 92.71 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "441208ba-30ff-4a04-8f46-aa77b4ef7d68")
- )
- (pin "2"
- (uuid "522fa417-c896-4d64-9c19-a574bd6aa59b")
- )
- (pin "3"
- (uuid "6223ba26-9a0c-4b76-83ea-2a4dc8ec441d")
- )
- (pin "4"
- (uuid "ce43ccbd-f28b-4e3b-9400-b19c736f0a94")
- )
- (pin "5"
- (uuid "6d5b3509-40fc-4839-a06f-88b5251c0ed9")
- )
- (pin "6"
- (uuid "58c626f3-44a0-41cc-b8b4-a0d41356b83e")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "U16")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "U3")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "jlc:YSPI1050-101M")
- (at 167.64 87.63 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "ed82bf06-16a6-400c-a38e-7f8b455b7995")
- (property "Reference" "U17"
- (at 167.5817 89.3624 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "100uH"
- (at 167.5817 91.2834 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "jlc_footprints:IND-SMD_L11.5-W10.0_YSPI1050"
- (at 167.64 97.79 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/509548.html"
- (at 165.354 87.503 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 167.64 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C497903"
- (at 167.64 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Inductance" "100uH"
- (at 167.64 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "0d99bf79-59e3-42fe-be93-3790757b5316")
- )
- (pin "2"
- (uuid "51377190-3914-4ad1-aff9-54d0883ab1e0")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "U17")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "U4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "jlc:CC0402KRX7R8BB104")
- (at 187.96 99.06 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "f822b994-be54-4161-9c2e-759add250e25")
- (property "Reference" "C29"
- (at 190.627 98.4163 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "100nF"
- (at 190.627 100.3373 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "jlc_footprints:C0402"
- (at 198.12 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- (italic yes)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "https://item.szlcsc.com/15869.html"
- (at 187.833 101.346 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Description" ""
- (at 187.96 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "LCSC" "C105883"
- (at 187.96 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Capacitance" "100nF"
- (at 187.96 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "5c9f9aab-729c-4e83-a94c-c2c762602317")
- )
- (pin "2"
- (uuid "29292024-33ab-4fdc-8cc5-579f720290b6")
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/635c7f01-c861-45f9-bb15-e53673572e1d"
- (reference "C29")
- (unit 1)
- )
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b/f8ce2893-59d6-4502-b3c7-412c7467c1ef/2c5a08e6-462b-42d7-a36a-f09062d79876"
- (reference "C30")
- (unit 1)
- )
- )
- )
- )
- )
|