123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328 |
- (kicad_sch (version 20230121) (generator eeschema)
-
- (uuid a50b51f9-900f-4bbb-8934-4acbc429c37b)
-
- (paper "A4")
-
- (title_block
- (title "Dispensy Mainboard")
- (date "2024-01-28")
- (rev "0")
- (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 "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "H" (at 0 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MountingHole" (at 0 3.175 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "mounting hole" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Mounting Hole without connection" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "MountingHole*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "MountingHole_0_1"
- (circle (center 0 0) (radius 1.27)
- (stroke (width 1.27) (type default))
- (fill (type none))
- )
- )
- )
- (symbol "SSD1306:SSD1306" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "OLED" (at 0 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "SSD1306" (at 0 -7.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "extern:SSD1306_0.96_Oled" (at 0 7.62 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "oled" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "OLED 0.96 128x64 I2C" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "extern:SSD1306*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "SSD1306_1_1"
- (rectangle (start -1.27 -4.953) (end 0 -5.207)
- (stroke (width 0.1524) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 -2.413) (end 0 -2.667)
- (stroke (width 0.1524) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 0.127) (end 0 -0.127)
- (stroke (width 0.1524) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 2.667) (end 0 2.413)
- (stroke (width 0.1524) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 3.81) (end 3.81 -6.35)
- (stroke (width 0.254) (type default))
- (fill (type background))
- )
- (pin power_in line (at -5.08 0 0) (length 3.81)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -5.08 2.54 0) (length 3.81)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -5.08 -5.08 0) (length 3.81)
- (name "SCL" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -5.08 -2.54 0) (length 3.81)
- (name "SDA" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "jlc:AC0402FR-071ML" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "AC0402FR-071ML" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C144787" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "1MΩ" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C144787" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "AC0402FR-071ML_0_1"
- (rectangle (start -2.54 1.016) (end 2.54 -1.016)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:ASMD1812-350-16V" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "F" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "ASMD1812-350-16V" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:F1812" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/343302.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C2982285" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C2982285" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "ASMD1812-350-16V_0_1"
- (rectangle (start -3.302 0.762) (end 3.302 -0.762)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (polyline
- (pts
- (xy -2.54 0)
- (xy 2.54 0)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:CC0402KRX7R8BB104" (pin_names hide) (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) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/15869.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C105883" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Capacitance" "100nF" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C105883" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (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:CR-02FL6----1K" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CR-02FL6----1K" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C279981" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "1kΩ" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C279981" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CR-02FL6----1K_0_1"
- (rectangle (start -2.54 1.016) (end 2.54 -1.016)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:CR-02FL6---10K" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CR-02FL6---10K" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C406733" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "10kΩ" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C406733" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CR-02FL6---10K_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:CR0402F147KQ10Z" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CR0402F147KQ10Z" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C881044" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C881044" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CR0402F147KQ10Z_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:DBT50G-7_62-4P" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "DBT50G-7_62-4P" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_4P-P7.62_L15.2-W31.7-EX4.2" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/512151.html?ref=editor&logined=true" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C496132" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C496132" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "DBT50G-7_62-4P_0_1"
- (rectangle (start -2.54 6.35) (end 2.54 -6.35)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (circle (center -1.27 5.08) (radius 0.381)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 3.81 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -5.08 1.27 0) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -5.08 -1.27 0) (length 2.54)
- (name "3" (effects (font (size 1 1))))
- (number "3" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -5.08 -3.81 0) (length 2.54)
- (name "4" (effects (font (size 1 1))))
- (number "4" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:FC-D1608HGK-572C" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "LED" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "FC-D1608HGK-572C" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:LED0603-RD" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/347874.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C84264" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C84264" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "FC-D1608HGK-572C_0_1"
- (polyline
- (pts
- (xy -1.27 1.524)
- (xy -1.27 -1.524)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.508 2.032)
- (xy -2.286 3.81)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.508 3.048)
- (xy -1.27 4.826)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.286 3.81)
- (xy -1.27 3.302)
- (xy -1.778 2.794)
- (xy -2.286 3.81)
- )
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (polyline
- (pts
- (xy -1.27 4.826)
- (xy -0.254 4.318)
- (xy -0.762 3.81)
- (xy -1.27 4.826)
- )
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (polyline
- (pts
- (xy 1.27 -1.524)
- (xy -1.27 0)
- (xy 1.27 1.524)
- (xy 1.27 -1.524)
- )
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin input line (at -5.08 0 0) (length 3.81)
- (name "-" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin input line (at 5.08 0 180) (length 3.81)
- (name "+" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:TS-1092U-B3D2" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "SW" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "TS-1092U-B3D2" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/537807.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C520861" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C520861" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "TS-1092U-B3D2_0_1"
- (circle (center -2.032 0) (radius 0.508)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (polyline
- (pts
- (xy 2.032 1.524)
- (xy -2.032 0.508)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (circle (center 2.032 0) (radius 0.508)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:U-USBAR04P-F000" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "U-USBAR04P-F000" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:USB-A-TH_USB-302-T" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/113689.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C386740" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C386740" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "U-USBAR04P-F000_0_1"
- (rectangle (start -2.54 10.16) (end 7.62 -7.62)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -7.62 7.62 0) (length 5.08)
- (name "VCC" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -7.62 5.08 0) (length 5.08)
- (name "D-" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -7.62 2.54 0) (length 5.08)
- (name "D+" (effects (font (size 1 1))))
- (number "3" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -7.62 0 0) (length 5.08)
- (name "GND" (effects (font (size 1 1))))
- (number "4" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -7.62 -2.54 0) (length 5.08)
- (name "SH1" (effects (font (size 1 1))))
- (number "5" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -7.62 -5.08 0) (length 5.08)
- (name "SH2" (effects (font (size 1 1))))
- (number "6" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:XY300V-A-5_0-2P" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "XY300V-A-5_0-2P" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_XY300V-A-5.0-2P" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200527/C557648_4A2FA4132AA24EE423B62B1474E9B5BB.pdf" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C557648" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C557648" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "XY300V-A-5_0-2P_0_1"
- (rectangle (start -2.54 3.81) (end 2.54 -3.81)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (circle (center -1.27 2.54) (radius 0.381)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 1.27 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -5.08 -1.27 0) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (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)
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "global power" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+3.3V_0_1"
- (polyline
- (pts
- (xy -0.762 1.27)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default))
- (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 "+3.3V_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+3.3V" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+VDC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+VDC" (at 0 6.35 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "global power" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+VDC\"" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+VDC_0_1"
- (polyline
- (pts
- (xy -1.143 3.175)
- (xy 1.143 3.175)
- )
- (stroke (width 0.508) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 1.27)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.032)
- (xy 0 4.318)
- )
- (stroke (width 0.508) (type default))
- (fill (type none))
- )
- (circle (center 0 3.175) (radius 1.905)
- (stroke (width 0.254) (type default))
- (fill (type none))
- )
- )
- (symbol "+VDC_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+VDC" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (at 0 -6.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (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)
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "global power" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 -1.27)
- (xy 1.27 -1.27)
- (xy 0 -2.54)
- (xy -1.27 -1.27)
- (xy 0 -1.27)
- )
- (stroke (width 0) (type default))
- (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 71.12 106.68) (diameter 0) (color 0 0 0 0)
- (uuid 30ee1ecc-cd27-4605-82ce-0595cefb9661)
- )
- (junction (at 82.55 167.64) (diameter 0) (color 0 0 0 0)
- (uuid 4d8ba4b0-ac76-430c-a40f-23aa8d7ad825)
- )
- (junction (at 95.25 102.87) (diameter 0) (color 0 0 0 0)
- (uuid 6530d47c-ab44-46a4-b945-902286143bef)
- )
- (junction (at 81.28 66.04) (diameter 0) (color 0 0 0 0)
- (uuid 9b4af328-43fe-47dd-88f4-a65f4bbb731f)
- )
- (junction (at 195.58 120.65) (diameter 0) (color 0 0 0 0)
- (uuid b7606c25-b49d-4e92-9cf3-174804a62ab5)
- )
- (junction (at 82.55 175.26) (diameter 0) (color 0 0 0 0)
- (uuid bbc9ecfe-c2db-4603-bb0f-3a77cb1bddf2)
- )
- (junction (at 220.98 125.73) (diameter 0) (color 0 0 0 0)
- (uuid c6c3f67c-0f17-4f98-8453-4aea06ad7113)
- )
- (junction (at 68.58 99.06) (diameter 0) (color 0 0 0 0)
- (uuid c7470263-11cd-4431-b05b-5562d9113d2b)
- )
- (junction (at 107.95 24.13) (diameter 0) (color 0 0 0 0)
- (uuid e2a95db3-eb6a-41fc-9b07-a7aabe3c4d81)
- )
- (junction (at 107.95 26.67) (diameter 0) (color 0 0 0 0)
- (uuid e3a1475a-5a96-4674-9c6b-a1b52d6e2386)
- )
- (junction (at 73.66 130.81) (diameter 0) (color 0 0 0 0)
- (uuid f16de227-377a-4e4f-8c40-3ed64e83b487)
- )
- (junction (at 83.82 130.81) (diameter 0) (color 0 0 0 0)
- (uuid f49916fe-eaa8-4442-af3c-aec96cdae0ae)
- )
- (junction (at 107.95 21.59) (diameter 0) (color 0 0 0 0)
- (uuid f9ccfe5c-056c-4847-a3a1-4580069df360)
- )
- (junction (at 220.98 113.03) (diameter 0) (color 0 0 0 0)
- (uuid fd381a87-36ac-401c-a0ba-481c9584cace)
- )
-
- (wire (pts (xy 181.61 124.46) (xy 189.23 124.46))
- (stroke (width 0) (type default))
- (uuid 00e6506f-17b8-4c24-961d-48a63484945f)
- )
- (wire (pts (xy 210.82 116.84) (xy 220.98 116.84))
- (stroke (width 0) (type default))
- (uuid 01e6ea71-25a1-4b0f-b6f8-a59931b2f381)
- )
- (wire (pts (xy 220.98 125.73) (xy 217.17 125.73))
- (stroke (width 0) (type default))
- (uuid 041f987d-cc46-4039-8428-0ed5f9e0cfca)
- )
- (wire (pts (xy 222.25 115.57) (xy 223.52 115.57))
- (stroke (width 0) (type default))
- (uuid 048e722e-fd14-4a01-b338-a3b87c9e3441)
- )
- (wire (pts (xy 106.68 21.59) (xy 107.95 21.59))
- (stroke (width 0) (type default))
- (uuid 04df78e2-bc0a-45dd-95f6-16578c866e5a)
- )
- (wire (pts (xy 81.28 64.77) (xy 81.28 66.04))
- (stroke (width 0) (type default))
- (uuid 04f8f19f-c82d-48cf-bd9b-cbf6fc382bb8)
- )
- (wire (pts (xy 129.54 54.61) (xy 168.91 54.61))
- (stroke (width 0) (type default))
- (uuid 058a9a4c-e0f3-42a0-b164-dfe0f6583820)
- )
- (wire (pts (xy 129.54 57.15) (xy 158.75 57.15))
- (stroke (width 0) (type default))
- (uuid 069ca55f-e9e6-410b-a4d7-e94416ca4800)
- )
- (wire (pts (xy 83.82 133.35) (xy 83.82 130.81))
- (stroke (width 0) (type default))
- (uuid 0be3ba36-3101-4452-b140-bee3e7cd6208)
- )
- (wire (pts (xy 76.2 134.62) (xy 76.2 133.35))
- (stroke (width 0) (type default))
- (uuid 0c7c8d94-24a4-42bc-bd40-6217c0cfea77)
- )
- (wire (pts (xy 73.66 130.81) (xy 73.66 134.62))
- (stroke (width 0) (type default))
- (uuid 0f701120-4db1-4e83-88b5-22a31f6bdacd)
- )
- (wire (pts (xy 82.55 172.72) (xy 82.55 175.26))
- (stroke (width 0) (type default))
- (uuid 0fd72819-551e-4929-92eb-549b84c53808)
- )
- (wire (pts (xy 85.09 172.72) (xy 82.55 172.72))
- (stroke (width 0) (type default))
- (uuid 1b5bfb5e-742c-4e7b-b7a6-cd2c77932f9b)
- )
- (wire (pts (xy 71.12 36.83) (xy 109.22 36.83))
- (stroke (width 0) (type default))
- (uuid 1d951967-582b-4159-a260-f58a39bd3a63)
- )
- (wire (pts (xy 93.98 106.68) (xy 95.25 106.68))
- (stroke (width 0) (type default))
- (uuid 2412cbbf-b2d4-490f-8efc-2fa4d69c05a8)
- )
- (wire (pts (xy 210.82 120.65) (xy 210.82 116.84))
- (stroke (width 0) (type default))
- (uuid 26240e01-c6d6-46b6-810f-49a44f79a7ff)
- )
- (wire (pts (xy 71.12 106.68) (xy 83.82 106.68))
- (stroke (width 0) (type default))
- (uuid 31f06fed-d9ca-47dc-a48e-36c0eab88d9c)
- )
- (wire (pts (xy 228.6 135.89) (xy 231.14 135.89))
- (stroke (width 0) (type default))
- (uuid 32165112-9167-4b8b-b702-34226f10d33f)
- )
- (wire (pts (xy 95.25 102.87) (xy 96.52 102.87))
- (stroke (width 0) (type default))
- (uuid 3910efcf-91a2-4b32-a517-bad244e3087c)
- )
- (wire (pts (xy 195.58 120.65) (xy 210.82 120.65))
- (stroke (width 0) (type default))
- (uuid 39552c20-bb8e-4835-b999-f3242ca1f161)
- )
- (wire (pts (xy 73.66 124.46) (xy 73.66 130.81))
- (stroke (width 0) (type default))
- (uuid 3c4bc65f-b535-4a06-810b-864db89b3c74)
- )
- (wire (pts (xy 222.25 120.65) (xy 223.52 120.65))
- (stroke (width 0) (type default))
- (uuid 3deb7791-4eba-4cb6-8995-d479c23efad2)
- )
- (wire (pts (xy 109.22 29.21) (xy 107.95 29.21))
- (stroke (width 0) (type default))
- (uuid 3e7ee793-8e19-4375-a1f6-9cd2921a2edf)
- )
- (wire (pts (xy 107.95 29.21) (xy 107.95 26.67))
- (stroke (width 0) (type default))
- (uuid 3f1444fd-d30b-4757-bc11-5f4a8ebec8f4)
- )
- (wire (pts (xy 82.55 170.18) (xy 82.55 167.64))
- (stroke (width 0) (type default))
- (uuid 4931ef4c-40e0-4756-aac9-9e7b172e498b)
- )
- (wire (pts (xy 158.75 72.39) (xy 158.75 73.66))
- (stroke (width 0) (type default))
- (uuid 4d969fdf-a342-4275-8a8f-1bd9721f6179)
- )
- (wire (pts (xy 195.58 135.89) (xy 195.58 120.65))
- (stroke (width 0) (type default))
- (uuid 4e6c77c6-6b78-4c34-85ae-910a1c240dcb)
- )
- (wire (pts (xy 189.23 120.65) (xy 195.58 120.65))
- (stroke (width 0) (type default))
- (uuid 533e6a99-02b7-4815-a0d6-de01990603df)
- )
- (wire (pts (xy 68.58 34.29) (xy 109.22 34.29))
- (stroke (width 0) (type default))
- (uuid 56b6ba50-c6cd-4b08-8ad6-38b89069035b)
- )
- (wire (pts (xy 78.74 175.26) (xy 82.55 175.26))
- (stroke (width 0) (type default))
- (uuid 582eaa00-be58-42e8-8ee0-e029a5ae5c12)
- )
- (wire (pts (xy 205.74 125.73) (xy 207.01 125.73))
- (stroke (width 0) (type default))
- (uuid 59dc8b76-fd12-4614-af08-2f3908ac53cb)
- )
- (wire (pts (xy 181.61 127) (xy 184.15 127))
- (stroke (width 0) (type default))
- (uuid 5b9dcbd7-201c-4336-9b00-a750c74f8760)
- )
- (wire (pts (xy 82.55 130.81) (xy 83.82 130.81))
- (stroke (width 0) (type default))
- (uuid 5bb89b07-73f8-42ae-8f92-b197a3a28aa6)
- )
- (wire (pts (xy 90.17 41.91) (xy 90.17 66.04))
- (stroke (width 0) (type default))
- (uuid 5d4d92e3-d681-4b21-83ab-62ba442cebd9)
- )
- (wire (pts (xy 82.55 167.64) (xy 85.09 167.64))
- (stroke (width 0) (type default))
- (uuid 5f1de49b-373a-43ab-a30e-0f6d7c967d92)
- )
- (wire (pts (xy 219.71 113.03) (xy 220.98 113.03))
- (stroke (width 0) (type default))
- (uuid 608a9c42-d76f-4cfa-9013-4efbf80cd2a6)
- )
- (wire (pts (xy 220.98 113.03) (xy 223.52 113.03))
- (stroke (width 0) (type default))
- (uuid 6f178d67-5ba1-4ec4-a369-3ceadc96b256)
- )
- (wire (pts (xy 68.58 134.62) (xy 68.58 99.06))
- (stroke (width 0) (type default))
- (uuid 6f90c58e-d88c-4efe-ad64-f1a1f73e01ff)
- )
- (wire (pts (xy 148.59 59.69) (xy 148.59 62.23))
- (stroke (width 0) (type default))
- (uuid 77dc2f81-7857-4138-a8e6-f9d83bb4b25f)
- )
- (wire (pts (xy 223.52 118.11) (xy 222.25 118.11))
- (stroke (width 0) (type default))
- (uuid 79f32846-be37-4f8c-bfb1-c23396c4b516)
- )
- (wire (pts (xy 95.25 106.68) (xy 95.25 102.87))
- (stroke (width 0) (type default))
- (uuid 7e06f7ea-bc4e-4767-b37d-6d5de44af013)
- )
- (wire (pts (xy 71.12 134.62) (xy 71.12 106.68))
- (stroke (width 0) (type default))
- (uuid 7e7de0b8-2dcc-4f84-97ee-e552f96144be)
- )
- (wire (pts (xy 81.28 53.34) (xy 81.28 54.61))
- (stroke (width 0) (type default))
- (uuid 8330573b-1789-4470-b02d-feee70af3094)
- )
- (wire (pts (xy 107.95 26.67) (xy 107.95 24.13))
- (stroke (width 0) (type default))
- (uuid 87d02a58-268d-4003-b808-a0ee13efb7d1)
- )
- (wire (pts (xy 168.91 54.61) (xy 168.91 62.23))
- (stroke (width 0) (type default))
- (uuid 87e1f5d8-cd41-49f9-97b3-6daa9293f429)
- )
- (wire (pts (xy 220.98 123.19) (xy 220.98 125.73))
- (stroke (width 0) (type default))
- (uuid 89cc8c6f-6eb2-4d8b-a9b3-c3dd69cac2ef)
- )
- (wire (pts (xy 177.8 113.03) (xy 180.34 113.03))
- (stroke (width 0) (type default))
- (uuid 8b3eb9be-cd34-465b-baf2-e3d29eaf4df4)
- )
- (wire (pts (xy 90.17 66.04) (xy 81.28 66.04))
- (stroke (width 0) (type default))
- (uuid 8e77a1cd-9478-4a2c-aa5d-9625f2196769)
- )
- (wire (pts (xy 168.91 72.39) (xy 168.91 73.66))
- (stroke (width 0) (type default))
- (uuid 9dc4447e-cfbd-469f-a0c4-0dc00456b67c)
- )
- (wire (pts (xy 208.28 113.03) (xy 209.55 113.03))
- (stroke (width 0) (type default))
- (uuid a65b0584-a8da-4182-a510-617451968770)
- )
- (wire (pts (xy 73.66 130.81) (xy 74.93 130.81))
- (stroke (width 0) (type default))
- (uuid ab59feee-3d4f-4d41-a073-17de829409b6)
- )
- (wire (pts (xy 109.22 24.13) (xy 107.95 24.13))
- (stroke (width 0) (type default))
- (uuid afddf146-ec92-4e0a-9d3b-68ac40051350)
- )
- (wire (pts (xy 223.52 123.19) (xy 220.98 123.19))
- (stroke (width 0) (type default))
- (uuid affe7ced-7db1-45e1-8d9b-0aeef329a820)
- )
- (wire (pts (xy 148.59 72.39) (xy 148.59 73.66))
- (stroke (width 0) (type default))
- (uuid b3e91ba0-4a83-4846-a50c-7aafcda90fac)
- )
- (wire (pts (xy 78.74 167.64) (xy 82.55 167.64))
- (stroke (width 0) (type default))
- (uuid ba05472a-b5de-4394-8bbb-ca3e4d63ac76)
- )
- (wire (pts (xy 85.09 170.18) (xy 82.55 170.18))
- (stroke (width 0) (type default))
- (uuid bd7c0247-bcb6-4dd5-8c09-71e8057ee655)
- )
- (wire (pts (xy 158.75 57.15) (xy 158.75 62.23))
- (stroke (width 0) (type default))
- (uuid bdca73a0-6837-41cb-a189-18a988ea1371)
- )
- (wire (pts (xy 220.98 116.84) (xy 220.98 113.03))
- (stroke (width 0) (type default))
- (uuid be619e84-891a-4f18-bc3e-e1bf2bbc2eda)
- )
- (wire (pts (xy 95.25 99.06) (xy 95.25 102.87))
- (stroke (width 0) (type default))
- (uuid bf8c1662-1dda-41e0-9139-3c33963fa0c6)
- )
- (wire (pts (xy 107.95 24.13) (xy 107.95 21.59))
- (stroke (width 0) (type default))
- (uuid c1cc71ea-3cbe-4c5c-a822-9a6df78c0a68)
- )
- (wire (pts (xy 71.12 36.83) (xy 71.12 106.68))
- (stroke (width 0) (type default))
- (uuid c3344221-6f24-441c-b886-1c8e01755eee)
- )
- (wire (pts (xy 82.55 175.26) (xy 85.09 175.26))
- (stroke (width 0) (type default))
- (uuid c93d0cfc-5ffe-4220-ad87-15db2d53ac93)
- )
- (wire (pts (xy 68.58 99.06) (xy 83.82 99.06))
- (stroke (width 0) (type default))
- (uuid c9876900-89f1-41a6-970a-8ddb31d89de6)
- )
- (wire (pts (xy 129.54 59.69) (xy 148.59 59.69))
- (stroke (width 0) (type default))
- (uuid caa09903-9eb1-46f1-8840-4a1a651d05e7)
- )
- (wire (pts (xy 93.98 99.06) (xy 95.25 99.06))
- (stroke (width 0) (type default))
- (uuid d1a41c08-0f89-4459-b4f0-b65960429248)
- )
- (wire (pts (xy 83.82 130.81) (xy 85.09 130.81))
- (stroke (width 0) (type default))
- (uuid d3ecb738-a271-4bc0-8af4-dd186b6110f3)
- )
- (wire (pts (xy 107.95 21.59) (xy 109.22 21.59))
- (stroke (width 0) (type default))
- (uuid d3f5a9ab-6a59-4763-a3c1-b257c7da0e23)
- )
- (wire (pts (xy 81.28 66.04) (xy 81.28 67.31))
- (stroke (width 0) (type default))
- (uuid d42420fa-dad2-483a-9416-ff9537c61c5c)
- )
- (wire (pts (xy 215.9 135.89) (xy 218.44 135.89))
- (stroke (width 0) (type default))
- (uuid dae8994a-2967-4bb6-bd6d-aea661d297f0)
- )
- (wire (pts (xy 81.28 77.47) (xy 81.28 78.74))
- (stroke (width 0) (type default))
- (uuid e5f90796-5f24-4dfc-b5d1-3df36942bcbc)
- )
- (wire (pts (xy 107.95 26.67) (xy 109.22 26.67))
- (stroke (width 0) (type default))
- (uuid ea6426e0-b23f-410a-b0c0-41ba8c270431)
- )
- (wire (pts (xy 189.23 124.46) (xy 189.23 120.65))
- (stroke (width 0) (type default))
- (uuid efec10f3-2d2c-48d1-9d00-df3cb20aa201)
- )
- (wire (pts (xy 68.58 34.29) (xy 68.58 99.06))
- (stroke (width 0) (type default))
- (uuid f01f4285-6ff6-45cb-97c0-ae7fad0776e0)
- )
- (wire (pts (xy 220.98 125.73) (xy 223.52 125.73))
- (stroke (width 0) (type default))
- (uuid f23cd734-f245-4be6-80cf-35fcd379b40d)
- )
- (wire (pts (xy 90.17 41.91) (xy 109.22 41.91))
- (stroke (width 0) (type default))
- (uuid f4ee9f6e-9f31-4c89-b5ab-992336634daf)
- )
- (wire (pts (xy 205.74 135.89) (xy 195.58 135.89))
- (stroke (width 0) (type default))
- (uuid f807a349-a372-43f5-a694-d8f1e47060d4)
- )
- (wire (pts (xy 76.2 133.35) (xy 83.82 133.35))
- (stroke (width 0) (type default))
- (uuid fccecaea-f9b5-406e-8e88-5b1098b63c09)
- )
- (wire (pts (xy 222.25 118.11) (xy 222.25 115.57))
- (stroke (width 0) (type default))
- (uuid fd465c18-8a24-4ebc-8dad-128428b528e4)
- )
-
- (rectangle (start 166.37 102.87) (end 246.38 146.05)
- (stroke (width 0) (type default))
- (fill (type none))
- (uuid ab8773b4-4476-4f3e-93ed-e3c212951b5b)
- )
-
- (text_box "Hardware ID:\n0000 = Mainboard"
- (at 85.09 24.13 0) (size 20.32 5.08)
- (stroke (width 0) (type default))
- (fill (type none))
- (effects (font (size 1.27 1.27)) (justify left top))
- (uuid 283bb816-b914-46c8-9e92-8d16e6f63539)
- )
- (text_box "DC ADC\nMax. 50V"
- (at 73.66 39.37 0) (size 21.59 45.72)
- (stroke (width 0) (type default))
- (fill (type none))
- (effects (font (size 1.27 1.27)) (justify left top))
- (uuid 2cf03278-a334-44dc-8c7d-a7a10a3619bc)
- )
- (text_box "DC Power Connector"
- (at 63.5 160.02 0) (size 49.53 21.59)
- (stroke (width 0) (type default))
- (fill (type none))
- (effects (font (size 1.27 1.27)) (justify left top))
- (uuid 38bbb3e9-47a4-4488-8404-a19765dcb423)
- )
- (text_box "UI Buttons"
- (at 142.24 50.8 0) (size 35.56 29.21)
- (stroke (width 0) (type default))
- (fill (type none))
- (effects (font (size 1.27 1.27)) (justify left top))
- (uuid 8fc4ad5e-33f4-446b-a09b-9c7557a69cf8)
- )
- (text_box "I2C Pull-Up Resistors"
- (at 81.28 91.44 0) (size 25.4 17.78)
- (stroke (width 0) (type default))
- (fill (type none))
- (effects (font (size 1.27 1.27)) (justify left top))
- (uuid 956bfb89-59a2-413b-b5af-a383b5caded5)
- )
- (text_box "Display"
- (at 58.42 118.11 0) (size 36.83 26.67)
- (stroke (width 0) (type default))
- (fill (type none))
- (effects (font (size 1.27 1.27)) (justify left top))
- (uuid d036e742-cd76-4c49-a34c-827de52262db)
- )
- (text_box "Mechanical"
- (at 19.05 17.78 0) (size 20.32 24.13)
- (stroke (width 0) (type default))
- (fill (type none))
- (effects (font (size 1.27 1.27)) (justify left top))
- (uuid d894969c-1d2d-4584-b2c1-9197467360e1)
- )
-
- (text "Dedicated Charging Port (DCP)" (at 215.9 105.41 0)
- (effects (font (size 1.27 1.27)) (justify left bottom) (href "https://electronics.stackexchange.com/a/200581"))
- (uuid 265049e8-2545-49f9-9a36-dd3d784c41cc)
- )
- (text "External Raspberry Pi Power Supply" (at 167.64 105.41 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 8fa74168-1d20-4eee-9f9f-a9468c23b852)
- )
-
- (symbol (lib_id "Mechanical:MountingHole") (at 21.59 22.86 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 00bf0cda-b8c6-4bc8-971a-693844a1e1d3)
- (property "Reference" "H11" (at 24.13 21.6479 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MountingHole" (at 24.13 24.0721 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (at 21.59 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 21.59 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H11") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 81.28 78.74 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 107f1c98-ced2-44fe-8d5e-2a45af532af5)
- (property "Reference" "#PWR079" (at 81.28 85.09 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 81.28 82.8731 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 81.28 78.74 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 81.28 78.74 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c9da4bed-4f24-4bfb-99c4-6d6f703c23cf))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR079") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CR0402F147KQ10Z") (at 81.28 59.69 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 157b3fba-278d-424d-bf2e-c52a91f7837f)
- (property "Reference" "R24" (at 83.82 58.42 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "147K" (at 83.82 60.96 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 71.12 59.69 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 81.407 57.404 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C881044" (at 81.28 59.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c804ffc5-6cf3-494b-acae-d0d2729e0e70))
- (pin "2" (uuid c414fc8a-3743-4f99-a300-de1453ae0f5b))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "R24") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CC0402KRX7R8BB104") (at 78.74 130.81 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 18c5a7a0-1e43-49d0-8208-bfef0e4fd32a)
- (property "Reference" "C1" (at 78.74 124.7607 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "100nF" (at 78.74 127.1849 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:C0402" (at 78.74 120.65 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/15869.html" (at 81.026 130.937 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C105883" (at 78.74 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Capacitance" "100nF" (at 78.74 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4519e6a6-6421-4733-9f19-a73eacdfcad1))
- (pin "2" (uuid c329bfae-36e5-4a11-98ed-7fd60deee189))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "C1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CR-02FL6----1K") (at 210.82 135.89 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 2125afab-f43b-48e4-97d7-9740dc2764b6)
- (property "Reference" "R23" (at 210.82 129.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "1K" (at 210.82 132.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 210.82 146.05 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 208.534 135.763 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C279981" (at 210.82 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "1kΩ" (at 210.82 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 509e6b4a-5247-4530-abd9-9fbbc6f49eb4))
- (pin "2" (uuid 0392e2d0-dfae-4268-abf9-f00c5f7b90d1))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "R23") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "SSD1306:SSD1306") (at 73.66 139.7 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 2ae5702b-de7e-4727-aba1-09aa8e03487a)
- (property "Reference" "OLED1" (at 78.232 139.7579 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SSD1306" (at 78.232 142.1821 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "extern:SSD1306_0.96_Oled" (at 81.28 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 73.66 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "3" (uuid 390aa87c-25cc-40b7-88c3-0b502d49c8c0))
- (pin "4" (uuid 30d14770-3bec-4ea0-aeec-bad029a6b42e))
- (pin "1" (uuid 772b7a6b-d149-462a-b38f-df0fb2029376))
- (pin "2" (uuid c70010f8-4bf7-4789-8b7d-64079364d813))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "OLED1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 73.66 124.46 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 2dfb0e28-5fa1-410a-bbdc-6f2a596f23af)
- (property "Reference" "#PWR03" (at 73.66 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 73.66 120.3269 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 73.66 124.46 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 73.66 124.46 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f36aec8f-0f63-4a7d-b3ed-2dec5ffd5d94))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR03") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 222.25 120.65 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 3913378d-f654-4db0-99cc-e1f4f508c072)
- (property "Reference" "#PWR011" (at 215.9 120.65 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 219.0751 120.9668 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 222.25 120.65 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 222.25 120.65 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 609116c2-8c75-48d1-83fb-3995382ef914))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR011") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Mechanical:MountingHole") (at 21.59 33.02 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 482ef8f8-535d-4e59-9160-1934137298b2)
- (property "Reference" "H13" (at 24.13 31.8079 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MountingHole" (at 24.13 34.2321 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (at 21.59 33.02 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 21.59 33.02 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H13") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:U-USBAR04P-F000") (at 231.14 120.65 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 52a21062-c4e0-4e3b-95dd-576fd2e0785a)
- (property "Reference" "U2" (at 239.395 118.7363 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "USB-A" (at 239.395 120.6573 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:USB-A-TH_USB-302-T" (at 231.14 130.81 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/113689.html" (at 228.854 120.523 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C386740" (at 231.14 120.65 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 28b5af7a-04a1-466f-ae71-5834ce8ddd55))
- (pin "2" (uuid 9b04a85c-5e70-433b-94b2-3ff630318ac2))
- (pin "3" (uuid 3889f638-2dd6-4f23-9c26-9de476aa47ab))
- (pin "4" (uuid 0f1126f2-c6cb-4568-86d6-6f9054a1460d))
- (pin "5" (uuid 310d49d2-b019-4972-81cf-6b321e3faf28))
- (pin "6" (uuid 787b7d61-3353-49f7-82ad-6c727ed6424e))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "U2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:XY300V-A-5_0-2P") (at 176.53 125.73 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5d77193b-eb49-4e71-a8a5-7fe6d08c238e)
- (property "Reference" "U18" (at 176.53 117.9027 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "XY300V-A-5_0-2P" (at 176.53 120.3269 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_XY300V-A-5.0-2P" (at 176.53 115.57 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200527/C557648_4A2FA4132AA24EE423B62B1474E9B5BB.pdf" (at 178.816 125.857 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C557648" (at 176.53 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid c5422714-d619-41ca-9145-82b6b4d46931))
- (pin "1" (uuid 39682e73-6b61-4916-8a3c-95ed7b288ca7))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "U18") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CR-02FL6---10K") (at 88.9 106.68 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 62175efd-56d0-4f3f-bf21-32d55d3238a3)
- (property "Reference" "R2" (at 88.9 102.5271 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 88.9 104.4481 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 88.9 116.84 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 86.614 106.553 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C406733" (at 88.9 106.68 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "10kΩ" (at 88.9 106.68 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 459b472f-a33c-4a76-96ec-37bb09bee2e4))
- (pin "2" (uuid d3b7bba7-4aae-4596-a8ef-3fac9de8b21b))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "R2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 96.52 102.87 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 753e1b9b-9ea2-474d-9422-64515bdb8006)
- (property "Reference" "#PWR08" (at 92.71 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 99.695 102.87 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 96.52 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 96.52 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b4dcd44a-b352-484e-8591-78670d0a079a))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR08") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:ASMD1812-350-16V") (at 214.63 113.03 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 75c590aa-dd6e-4017-ad6b-301f87d648a8)
- (property "Reference" "F1" (at 214.63 115.57 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "ASMD1812-350-16V" (at 214.63 110.49 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:F1812" (at 214.63 123.19 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/343302.html" (at 212.344 112.903 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C2982285" (at 214.63 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 13735ee4-6626-4812-9227-7be5a22d6d77))
- (pin "2" (uuid 0ac833a9-6cd5-40d7-b3f3-5a00700dd68e))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "F1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 205.74 125.73 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 77a230ca-7c55-4a43-9794-11fb3ed8c805)
- (property "Reference" "#PWR010" (at 199.39 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 202.5651 126.0468 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 205.74 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 205.74 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fd24f219-fe9a-492f-9bb1-bed339160cb5))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR010") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+VDC") (at 78.74 167.64 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 7c0ad552-339d-4bc0-933b-701025fd4c2b)
- (property "Reference" "#PWR01" (at 81.28 167.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+VDC" (at 72.898 167.64 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 78.74 167.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 78.74 167.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fc070359-f01d-40c1-a201-6f81e64e2dca))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR01") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 184.15 127 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 7d40ef7f-4046-478a-8202-835e982a50d1)
- (property "Reference" "#PWR073" (at 190.5 127 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 187.325 127 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 184.15 127 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 184.15 127 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6a73e148-839b-4b7f-a556-5ccab0d327f6))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR073") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Mechanical:MountingHole") (at 21.59 27.94 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 8245835b-6904-4b68-a5aa-8efe32ec8b78)
- (property "Reference" "H12" (at 24.13 26.7279 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MountingHole" (at 24.13 29.1521 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (at 21.59 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 21.59 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H12") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:FC-D1608HGK-572C") (at 223.52 135.89 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 836d4190-18b0-44cf-ba93-d64b9192ea73)
- (property "Reference" "LED3" (at 224.028 129.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "FC-D1608HGK-572C" (at 224.028 132.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:LED0603-RD" (at 223.52 125.73 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/347874.html" (at 225.806 136.017 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C84264" (at 223.52 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 09682898-801d-4e31-998c-0775538d5790))
- (pin "2" (uuid c5177f63-d369-4b82-814c-bd916a2cfdb1))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "LED3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 168.91 73.66 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 84fb55ee-25fc-4448-a279-029835f46ea0)
- (property "Reference" "#PWR012" (at 168.91 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 168.91 77.7931 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 168.91 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 168.91 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 12d8c673-0783-4c3b-8b4b-b2a980bee1c9))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR012") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:DBT50G-7_62-4P") (at 90.17 171.45 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 880f7d7b-3223-4c1a-81a0-36f9513bf6e4)
- (property "Reference" "U1" (at 93.345 170.2379 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "DBT50G-7_62-4P" (at 93.345 172.6621 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_4P-P7.62_L15.2-W31.7-EX4.2" (at 90.17 181.61 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/512151.html?ref=editor&logined=true" (at 87.884 171.323 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C496132" (at 90.17 171.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "4" (uuid 19a29d22-4843-4c26-b213-280fb7e172d2))
- (pin "3" (uuid 5629ed67-f702-4567-a2a6-a9179053adb6))
- (pin "1" (uuid ac4f7972-f789-4615-9833-bab764a3f68d))
- (pin "2" (uuid 3b8e5ce3-f516-4905-a39b-84bd1b9aa27d))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "U1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 231.14 135.89 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 88b02c20-bd92-4721-b1fe-bbfc7fd3eb09)
- (property "Reference" "#PWR078" (at 237.49 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 234.95 135.89 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 231.14 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 231.14 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a844a8d0-234d-4814-a56c-078320a171b7))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR078") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:AC0402FR-071ML") (at 212.09 125.73 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 8d059a53-268e-4310-b02c-e3cea10095ff)
- (property "Reference" "R3" (at 212.09 121.8311 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "1M" (at 212.09 123.7521 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 212.09 135.89 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 209.804 125.603 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C144787" (at 212.09 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "1MΩ" (at 212.09 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d18295a8-41fd-4c5e-ac8f-dbbb230847b9))
- (pin "2" (uuid 9630c0dd-bd18-4281-bc9b-9038f39cdad3))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "R3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 106.68 21.59 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 8f1379fc-ca1f-4712-afab-92fbeb3f4306)
- (property "Reference" "#PWR09" (at 100.33 21.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 103.5051 21.9068 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 106.68 21.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 106.68 21.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 28967d3e-5e67-4364-9b47-b14cd439121f))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR09") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+VDC") (at 177.8 113.03 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 98599bfe-3469-4819-a370-e23c95cb33cc)
- (property "Reference" "#PWR07" (at 180.34 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+VDC" (at 171.958 113.3468 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 177.8 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 177.8 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1716baff-d4e7-49a3-8d58-2164eba45025))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR07") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 158.75 73.66 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 9e29583a-dca5-44a8-81fa-3d046bb8cfb4)
- (property "Reference" "#PWR05" (at 158.75 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 158.75 77.7931 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 158.75 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 158.75 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fe940557-f885-4e54-8204-97f89cf67291))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR05") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 78.74 175.26 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid c9ca4f29-b9c5-47c9-95e5-b96c1034994b)
- (property "Reference" "#PWR02" (at 72.39 175.26 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 75.5651 175.26 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 78.74 175.26 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 78.74 175.26 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1d53759f-5d1f-4005-b2d7-7e731c7712ab))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR02") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CR-02FL6---10K") (at 81.28 72.39 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid cb95cb63-388e-4891-966b-4853519c292a)
- (property "Reference" "R25" (at 83.82 71.12 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10K" (at 83.82 73.66 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 71.12 72.39 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 81.407 70.104 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C406733" (at 81.28 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "10kΩ" (at 81.28 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 72cdde18-55b2-472e-a36b-00c28ca76c8f))
- (pin "2" (uuid d16f0f55-5e1c-4f13-bf26-b3fbb392c95f))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "R25") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 148.59 73.66 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid cd87114f-6e25-4bab-bc10-08b88b29d2c8)
- (property "Reference" "#PWR04" (at 148.59 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 148.59 77.7931 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 148.59 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 148.59 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2b6e8a77-077b-48f3-9685-7f564d6ab473))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR04") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:TS-1092U-B3D2") (at 168.91 67.31 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid db345434-e2dc-4dda-8f97-2cbd41b974fe)
- (property "Reference" "SW5" (at 171.45 66.04 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "DOWN" (at 171.45 68.58 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (at 158.75 67.31 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/537807.html" (at 169.037 69.596 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C520861" (at 168.91 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 282b6da3-2c6a-4bed-9126-3813a450b27f))
- (pin "2" (uuid a1bb8c36-5884-4657-a3af-b89cab51ad68))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "SW5") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 85.09 130.81 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid e31607e6-f6d1-4211-84be-02a2dd41973e)
- (property "Reference" "#PWR06" (at 81.28 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 88.265 130.81 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 85.09 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 85.09 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ccb9e7e4-1b8e-4f83-85a2-49f187849443))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR06") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:TS-1092U-B3D2") (at 148.59 67.31 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid eb60f3c1-d222-4fde-88b7-33c747d7332b)
- (property "Reference" "SW3" (at 151.13 66.04 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "UP" (at 151.13 68.58 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (at 138.43 67.31 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/537807.html" (at 148.717 69.596 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C520861" (at 148.59 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8a828a22-6fce-4eed-a132-8945c112f261))
- (pin "2" (uuid 5c2ea286-a839-4b15-b886-1f54f0f573d3))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "SW3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+VDC") (at 81.28 53.34 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid f295e63b-8dee-49ce-91e5-5bcd9ed83326)
- (property "Reference" "#PWR080" (at 81.28 55.88 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+VDC" (at 81.28 45.72 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 81.28 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 81.28 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2331965e-616f-4a48-bbdd-ba4d11dd43a9))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR080") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CR-02FL6---10K") (at 88.9 99.06 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid f2d2013e-631b-4cf6-93b6-f0431ef0af50)
- (property "Reference" "R1" (at 88.9 94.9071 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 88.9 96.8281 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 88.9 109.22 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 86.614 98.933 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C406733" (at 88.9 99.06 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "10kΩ" (at 88.9 99.06 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 703ea756-0de0-4269-9fe8-44f086bf9f1b))
- (pin "2" (uuid 6ce3d95e-f4b3-4e09-95cb-7d320cb16be2))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "R1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Mechanical:MountingHole") (at 21.59 38.1 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid fcc00026-dae3-4fe3-818b-ea9f4ed733a4)
- (property "Reference" "H14" (at 24.13 36.8879 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MountingHole" (at 24.13 39.3121 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_TopBottom" (at 21.59 38.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 21.59 38.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H14") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:TS-1092U-B3D2") (at 158.75 67.31 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid ff8b9055-a146-47bb-8d3b-5261a1d01b0e)
- (property "Reference" "SW4" (at 161.29 66.04 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MENU" (at 161.29 68.58 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:SW-SMD_L6.1-W3.6-LS6.6" (at 148.59 67.31 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/537807.html" (at 158.877 69.596 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C520861" (at 158.75 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f596023a-073c-4ac4-a93f-0e439a01e78c))
- (pin "2" (uuid 7c8fc5e2-c7da-48bf-b3d9-a67ecd97f01f))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "SW4") (unit 1)
- )
- )
- )
- )
-
- (sheet (at 180.34 110.49) (size 27.94 5.08) (fields_autoplaced)
- (stroke (width 0.1524) (type solid))
- (fill (color 0 0 0 0.0000))
- (uuid 635c7f01-c861-45f9-bb15-e53673572e1d)
- (property "Sheetname" "EXT_PSU" (at 180.34 109.7784 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- )
- (property "Sheetfile" "psu_lm2576.kicad_sch" (at 180.34 116.1546 0)
- (effects (font (size 1.27 1.27)) (justify left top))
- )
- (pin "Vout" input (at 208.28 113.03 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 49eeb541-c632-4ff0-a694-09491809ff11)
- )
- (pin "Vin" input (at 180.34 113.03 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 73b3f677-8bd5-4dfa-987a-f7def7bf3fc5)
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b" (page "2"))
- )
- )
- )
-
- (sheet (at 109.22 20.32) (size 20.32 40.64) (fields_autoplaced)
- (stroke (width 0.1524) (type solid))
- (fill (color 0 0 0 0.0000))
- (uuid f8ce2893-59d6-4502-b3c7-412c7467c1ef)
- (property "Sheetname" "PI" (at 109.22 19.6084 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- )
- (property "Sheetfile" "pi.kicad_sch" (at 109.22 61.5446 0)
- (effects (font (size 1.27 1.27)) (justify left top))
- )
- (pin "IO8" bidirectional (at 129.54 41.91 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid a4983b1c-c7a2-4e00-b97b-3203acb03e53)
- )
- (pin "IO9" bidirectional (at 129.54 44.45 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 5379e861-0c6f-4c7b-8253-9807a73bba50)
- )
- (pin "IO5" bidirectional (at 129.54 34.29 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid aabc04bc-65cc-43cb-af17-e40e4fc9bc58)
- )
- (pin "IO6" bidirectional (at 129.54 36.83 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid e6848a64-2cf9-423b-8438-c28614fe2c3d)
- )
- (pin "IO7" bidirectional (at 129.54 39.37 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 3c1dee77-8b69-4001-970e-d51217c38fab)
- )
- (pin "IO4" bidirectional (at 129.54 31.75 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid fbbf8f2f-d5d7-49a5-9910-b2c0de36b1a0)
- )
- (pin "IO3" bidirectional (at 129.54 29.21 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid ae65f902-74c4-4963-ac6d-50be9b7d110f)
- )
- (pin "IO2" bidirectional (at 129.54 26.67 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 00ab7294-3bf2-4bb3-850a-053b3d81ef0b)
- )
- (pin "IO1" bidirectional (at 129.54 24.13 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 45c2b1e4-7bd9-479c-9fd5-94d795168a08)
- )
- (pin "IO0" bidirectional (at 129.54 21.59 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid d194f5a4-a98f-4c4c-b9b7-716d34d1ee7b)
- )
- (pin "IO15" bidirectional (at 129.54 59.69 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 6dd1fc9d-556f-4756-8350-96319d2d65a1)
- )
- (pin "IO14" bidirectional (at 129.54 57.15 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 22759f89-321f-4300-bfc0-5fb353370583)
- )
- (pin "ADC1" bidirectional (at 109.22 44.45 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 08531663-26a4-460b-8e6d-a32e0911e89d)
- )
- (pin "ADC2" bidirectional (at 109.22 46.99 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 3879e06c-039b-4de7-bdf0-13b83112636e)
- )
- (pin "ADC3" bidirectional (at 109.22 49.53 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid c8fa8f0c-ae31-4906-a56a-aa6ef7f4672b)
- )
- (pin "ADC0" bidirectional (at 109.22 41.91 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 14255837-7ea6-42d2-9e24-d8625fd85f6f)
- )
- (pin "IO12" bidirectional (at 129.54 52.07 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 0c111304-deaa-4060-8d8d-023e0e71ef29)
- )
- (pin "I2C_SDA" bidirectional (at 109.22 36.83 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid f21496d8-1080-40a3-88d4-b42abf4a1a5e)
- )
- (pin "IO13" bidirectional (at 129.54 54.61 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 1cf80fc1-b6e5-4f0d-a1aa-d665e7d77a42)
- )
- (pin "IO10" bidirectional (at 129.54 46.99 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 936d5974-d57e-4d55-8575-85e3f9dda271)
- )
- (pin "IO11" bidirectional (at 129.54 49.53 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 04a6f633-c41f-434e-a108-31037821aca6)
- )
- (pin "I2C_SCL" bidirectional (at 109.22 34.29 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 0dd52a52-9265-439f-b4f8-ae26f9df79e9)
- )
- (pin "HWID2" input (at 109.22 26.67 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 5ec3a00b-bc96-494b-9daa-3a5e40ee9a2e)
- )
- (pin "HWID3" input (at 109.22 29.21 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid de20a885-350c-4940-9f0c-847587d21e83)
- )
- (pin "HWID0" input (at 109.22 21.59 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 1717ee0f-71c6-4381-be8b-2f11c00f565a)
- )
- (pin "HWID1" input (at 109.22 24.13 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 9de7cfb3-c69d-4558-ba52-9186d265ad0b)
- )
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b" (page "3"))
- )
- )
- )
-
- (sheet_instances
- (path "/" (page "1"))
- )
- )
|