123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250 |
- (kicad_sch (version 20230121) (generator eeschema)
-
- (uuid a50b51f9-900f-4bbb-8934-4acbc429c37b)
-
- (paper "A4")
-
- (title_block
- (title "Dispensy Mainboard")
- (date "2024-01-10")
- (rev "0")
- (company "DrinkRobotics")
- (comment 1 "https://git.xythobuz.de/thomas/Dispensy")
- (comment 3 "PCB Thickness: 1mm")
- (comment 4 "DRAFT DRAFT DRAFT DRAFT DRAFT")
- )
-
- (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: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---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: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:Header-Female-2_54_1x6" (in_bom yes) (on_board yes)
- (property "Reference" "H" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Header-Female-2_54_1x6" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:HDR-TH_6P-P2.54-V-F" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://so.szlcsc.com/global.html?c=&k=C40877" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C40877" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C40877" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Header-Female-2_54_1x6_0_1"
- (rectangle (start -2.54 8.89) (end 2.54 -8.89)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (circle (center -1.27 7.62) (radius 0.381)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 6.35 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -5.08 3.81 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 -1.27 0) (length 2.54)
- (name "4" (effects (font (size 1 1))))
- (number "4" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -5.08 -3.81 0) (length 2.54)
- (name "5" (effects (font (size 1 1))))
- (number "5" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -5.08 -6.35 0) (length 2.54)
- (name "6" (effects (font (size 1 1))))
- (number "6" (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 "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 44.45 172.72) (diameter 0) (color 0 0 0 0)
- (uuid 4d8ba4b0-ac76-430c-a40f-23aa8d7ad825)
- )
- (junction (at 101.6 104.14) (diameter 0) (color 0 0 0 0)
- (uuid 6530d47c-ab44-46a4-b945-902286143bef)
- )
- (junction (at 44.45 180.34) (diameter 0) (color 0 0 0 0)
- (uuid bbc9ecfe-c2db-4603-bb0f-3a77cb1bddf2)
- )
- (junction (at 77.47 107.95) (diameter 0) (color 0 0 0 0)
- (uuid c5c7774b-0b16-499f-bb94-7ab2aeed82ff)
- )
- (junction (at 143.51 186.69) (diameter 0) (color 0 0 0 0)
- (uuid c6c3f67c-0f17-4f98-8453-4aea06ad7113)
- )
- (junction (at 74.93 100.33) (diameter 0) (color 0 0 0 0)
- (uuid d1a701b9-cae5-49dc-a529-8959566b185d)
- )
- (junction (at 105.41 46.99) (diameter 0) (color 0 0 0 0)
- (uuid e2a95db3-eb6a-41fc-9b07-a7aabe3c4d81)
- )
- (junction (at 105.41 49.53) (diameter 0) (color 0 0 0 0)
- (uuid e3a1475a-5a96-4674-9c6b-a1b52d6e2386)
- )
- (junction (at 80.01 132.08) (diameter 0) (color 0 0 0 0)
- (uuid f16de227-377a-4e4f-8c40-3ed64e83b487)
- )
- (junction (at 90.17 132.08) (diameter 0) (color 0 0 0 0)
- (uuid f49916fe-eaa8-4442-af3c-aec96cdae0ae)
- )
- (junction (at 105.41 44.45) (diameter 0) (color 0 0 0 0)
- (uuid f9ccfe5c-056c-4847-a3a1-4580069df360)
- )
-
- (wire (pts (xy 143.51 186.69) (xy 139.7 186.69))
- (stroke (width 0) (type default))
- (uuid 041f987d-cc46-4039-8428-0ed5f9e0cfca)
- )
- (wire (pts (xy 143.51 176.53) (xy 146.05 176.53))
- (stroke (width 0) (type default))
- (uuid 048e722e-fd14-4a01-b338-a3b87c9e3441)
- )
- (wire (pts (xy 104.14 44.45) (xy 105.41 44.45))
- (stroke (width 0) (type default))
- (uuid 04df78e2-bc0a-45dd-95f6-16578c866e5a)
- )
- (wire (pts (xy 90.17 134.62) (xy 90.17 132.08))
- (stroke (width 0) (type default))
- (uuid 0be3ba36-3101-4452-b140-bee3e7cd6208)
- )
- (wire (pts (xy 147.32 49.53) (xy 127 49.53))
- (stroke (width 0) (type default))
- (uuid 0c362433-f672-47f2-a509-c8ae456c8541)
- )
- (wire (pts (xy 82.55 135.89) (xy 82.55 134.62))
- (stroke (width 0) (type default))
- (uuid 0c7c8d94-24a4-42bc-bd40-6217c0cfea77)
- )
- (wire (pts (xy 165.1 88.9) (xy 147.32 88.9))
- (stroke (width 0) (type default))
- (uuid 0c89d8ba-fe0a-48ea-933f-b781ba5740cb)
- )
- (wire (pts (xy 80.01 132.08) (xy 80.01 135.89))
- (stroke (width 0) (type default))
- (uuid 0f701120-4db1-4e83-88b5-22a31f6bdacd)
- )
- (wire (pts (xy 44.45 177.8) (xy 44.45 180.34))
- (stroke (width 0) (type default))
- (uuid 0fd72819-551e-4929-92eb-549b84c53808)
- )
- (wire (pts (xy 163.83 30.48) (xy 163.83 29.21))
- (stroke (width 0) (type default))
- (uuid 14c7a386-732e-4335-9d23-7dcaec98297d)
- )
- (wire (pts (xy 163.83 43.18) (xy 163.83 44.45))
- (stroke (width 0) (type default))
- (uuid 17f0ce9b-73f8-449f-8e2e-1a78329a84e3)
- )
- (wire (pts (xy 142.24 72.39) (xy 127 72.39))
- (stroke (width 0) (type default))
- (uuid 196395c0-1fba-4cf1-a2c2-eac08f1030b4)
- )
- (wire (pts (xy 144.78 69.85) (xy 127 69.85))
- (stroke (width 0) (type default))
- (uuid 1ad92e31-1c65-4291-aa45-57a7b1638800)
- )
- (wire (pts (xy 77.47 107.95) (xy 77.47 59.69))
- (stroke (width 0) (type default))
- (uuid 1ae9d237-ed07-4889-9072-c4af4b8a6402)
- )
- (wire (pts (xy 46.99 177.8) (xy 44.45 177.8))
- (stroke (width 0) (type default))
- (uuid 1b5bfb5e-742c-4e7b-b7a6-cd2c77932f9b)
- )
- (wire (pts (xy 77.47 59.69) (xy 106.68 59.69))
- (stroke (width 0) (type default))
- (uuid 1d951967-582b-4159-a260-f58a39bd3a63)
- )
- (wire (pts (xy 163.83 110.49) (xy 163.83 109.22))
- (stroke (width 0) (type default))
- (uuid 1e95f1dd-2315-446b-8ccc-269406ba76cb)
- )
- (wire (pts (xy 100.33 107.95) (xy 101.6 107.95))
- (stroke (width 0) (type default))
- (uuid 2412cbbf-b2d4-490f-8efc-2fa4d69c05a8)
- )
- (wire (pts (xy 101.6 78.74) (xy 101.6 72.39))
- (stroke (width 0) (type default))
- (uuid 2c4a6033-cc3d-46e4-804f-fb56d61b51e1)
- )
- (wire (pts (xy 147.32 88.9) (xy 147.32 67.31))
- (stroke (width 0) (type default))
- (uuid 2ffcc41c-54b7-4b4f-b3e5-f66e72c9e852)
- )
- (wire (pts (xy 77.47 107.95) (xy 90.17 107.95))
- (stroke (width 0) (type default))
- (uuid 31f06fed-d9ca-47dc-a48e-36c0eab88d9c)
- )
- (wire (pts (xy 101.6 104.14) (xy 102.87 104.14))
- (stroke (width 0) (type default))
- (uuid 3910efcf-91a2-4b32-a517-bad244e3087c)
- )
- (wire (pts (xy 132.08 120.65) (xy 165.1 120.65))
- (stroke (width 0) (type default))
- (uuid 3ad96539-0c9f-493d-8aee-b7543d4786d9)
- )
- (wire (pts (xy 165.1 67.31) (xy 152.4 67.31))
- (stroke (width 0) (type default))
- (uuid 3b8dec74-1654-42d2-bf31-04a3f2c19d99)
- )
- (wire (pts (xy 80.01 125.73) (xy 80.01 132.08))
- (stroke (width 0) (type default))
- (uuid 3c4bc65f-b535-4a06-810b-864db89b3c74)
- )
- (wire (pts (xy 127 82.55) (xy 132.08 82.55))
- (stroke (width 0) (type default))
- (uuid 3c78bbb7-3167-409a-875b-327dc436a919)
- )
- (wire (pts (xy 144.78 181.61) (xy 146.05 181.61))
- (stroke (width 0) (type default))
- (uuid 3deb7791-4eba-4cb6-8995-d479c23efad2)
- )
- (wire (pts (xy 106.68 52.07) (xy 105.41 52.07))
- (stroke (width 0) (type default))
- (uuid 3e7ee793-8e19-4375-a1f6-9cd2921a2edf)
- )
- (wire (pts (xy 105.41 52.07) (xy 105.41 49.53))
- (stroke (width 0) (type default))
- (uuid 3f1444fd-d30b-4757-bc11-5f4a8ebec8f4)
- )
- (wire (pts (xy 132.08 82.55) (xy 132.08 120.65))
- (stroke (width 0) (type default))
- (uuid 3f497e05-fd59-4cf0-8843-a52386d70f1d)
- )
- (wire (pts (xy 144.78 46.99) (xy 127 46.99))
- (stroke (width 0) (type default))
- (uuid 45fd14e7-44bf-46c0-9f3a-36b2b1beb8b5)
- )
- (wire (pts (xy 165.1 110.49) (xy 163.83 110.49))
- (stroke (width 0) (type default))
- (uuid 473c0b56-d335-407e-9fbf-33b9be89da81)
- )
- (wire (pts (xy 44.45 175.26) (xy 44.45 172.72))
- (stroke (width 0) (type default))
- (uuid 4931ef4c-40e0-4756-aac9-9e7b172e498b)
- )
- (wire (pts (xy 165.1 96.52) (xy 163.83 96.52))
- (stroke (width 0) (type default))
- (uuid 495ad9ec-b8bb-45b8-9056-b1e5b6f12a8c)
- )
- (wire (pts (xy 137.16 115.57) (xy 137.16 77.47))
- (stroke (width 0) (type default))
- (uuid 4a046d3f-8497-4bc2-9da2-390b3f8dba6e)
- )
- (wire (pts (xy 139.7 113.03) (xy 139.7 74.93))
- (stroke (width 0) (type default))
- (uuid 5303b72d-8784-4828-b4fe-324e24496731)
- )
- (wire (pts (xy 90.17 78.74) (xy 101.6 78.74))
- (stroke (width 0) (type default))
- (uuid 55b97038-f1b7-4c14-ae8b-89a648dbf62f)
- )
- (wire (pts (xy 74.93 57.15) (xy 106.68 57.15))
- (stroke (width 0) (type default))
- (uuid 56b6ba50-c6cd-4b08-8ad6-38b89069035b)
- )
- (wire (pts (xy 165.1 62.23) (xy 157.48 62.23))
- (stroke (width 0) (type default))
- (uuid 578ffbf3-0f53-4d59-9a2c-60cd8cae6fc0)
- )
- (wire (pts (xy 160.02 54.61) (xy 160.02 59.69))
- (stroke (width 0) (type default))
- (uuid 57ecb420-c838-4862-9380-18c0b653bf27)
- )
- (wire (pts (xy 40.64 180.34) (xy 44.45 180.34))
- (stroke (width 0) (type default))
- (uuid 582eaa00-be58-42e8-8ee0-e029a5ae5c12)
- )
- (wire (pts (xy 128.27 186.69) (xy 129.54 186.69))
- (stroke (width 0) (type default))
- (uuid 59dc8b76-fd12-4614-af08-2f3908ac53cb)
- )
- (wire (pts (xy 165.1 118.11) (xy 134.62 118.11))
- (stroke (width 0) (type default))
- (uuid 5b0f1b22-1a7e-4d4c-9a99-bbefc1c6451e)
- )
- (wire (pts (xy 88.9 132.08) (xy 90.17 132.08))
- (stroke (width 0) (type default))
- (uuid 5bb89b07-73f8-42ae-8f92-b197a3a28aa6)
- )
- (wire (pts (xy 44.45 172.72) (xy 46.99 172.72))
- (stroke (width 0) (type default))
- (uuid 5f1de49b-373a-43ab-a30e-0f6d7c967d92)
- )
- (wire (pts (xy 147.32 38.1) (xy 147.32 49.53))
- (stroke (width 0) (type default))
- (uuid 6169f145-8170-42f4-bdbb-cbadc2725656)
- )
- (wire (pts (xy 144.78 35.56) (xy 144.78 46.99))
- (stroke (width 0) (type default))
- (uuid 682d7721-7065-45da-914d-acbc1bf3c8c0)
- )
- (wire (pts (xy 165.1 30.48) (xy 163.83 30.48))
- (stroke (width 0) (type default))
- (uuid 68bd7ce0-9a46-4fec-b13d-b509d8fa285c)
- )
- (wire (pts (xy 99.06 76.2) (xy 99.06 69.85))
- (stroke (width 0) (type default))
- (uuid 6c3815b1-389c-4003-bfae-9ff019bdf5be)
- )
- (wire (pts (xy 165.1 69.85) (xy 163.83 69.85))
- (stroke (width 0) (type default))
- (uuid 6dc67eb0-2155-438c-9a06-241006b330f1)
- )
- (wire (pts (xy 74.93 135.89) (xy 74.93 100.33))
- (stroke (width 0) (type default))
- (uuid 6f90c58e-d88c-4efe-ad64-f1a1f73e01ff)
- )
- (wire (pts (xy 101.6 72.39) (xy 106.68 72.39))
- (stroke (width 0) (type default))
- (uuid 6fb70a1e-fbb8-48c8-a9fa-dabaf6f4c419)
- )
- (wire (pts (xy 142.24 33.02) (xy 142.24 44.45))
- (stroke (width 0) (type default))
- (uuid 71c5d719-5b48-40dc-a01c-f7fc847ccb55)
- )
- (wire (pts (xy 90.17 68.58) (xy 91.44 68.58))
- (stroke (width 0) (type default))
- (uuid 78af1950-bd44-40db-9f95-a9edb162c849)
- )
- (wire (pts (xy 90.17 76.2) (xy 99.06 76.2))
- (stroke (width 0) (type default))
- (uuid 790d1f73-d5c7-4395-91dc-69fb0343b86a)
- )
- (wire (pts (xy 146.05 179.07) (xy 143.51 179.07))
- (stroke (width 0) (type default))
- (uuid 79f32846-be37-4f8c-bfb1-c23396c4b516)
- )
- (wire (pts (xy 91.44 81.28) (xy 91.44 82.55))
- (stroke (width 0) (type default))
- (uuid 7ac64628-4a84-4694-bb86-0902fef8fc29)
- )
- (wire (pts (xy 165.1 57.15) (xy 163.83 57.15))
- (stroke (width 0) (type default))
- (uuid 7d8dd25f-1905-48e7-9aed-a1367c7375ca)
- )
- (wire (pts (xy 101.6 107.95) (xy 101.6 104.14))
- (stroke (width 0) (type default))
- (uuid 7e06f7ea-bc4e-4767-b37d-6d5de44af013)
- )
- (wire (pts (xy 77.47 135.89) (xy 77.47 107.95))
- (stroke (width 0) (type default))
- (uuid 7e7de0b8-2dcc-4f84-97ee-e552f96144be)
- )
- (wire (pts (xy 165.1 83.82) (xy 163.83 83.82))
- (stroke (width 0) (type default))
- (uuid 7f6980d6-2e5c-4e6b-a7aa-c243ebd95cca)
- )
- (wire (pts (xy 105.41 49.53) (xy 105.41 46.99))
- (stroke (width 0) (type default))
- (uuid 87d02a58-268d-4003-b808-a0ee13efb7d1)
- )
- (wire (pts (xy 143.51 184.15) (xy 143.51 186.69))
- (stroke (width 0) (type default))
- (uuid 89cc8c6f-6eb2-4d8b-a9b3-c3dd69cac2ef)
- )
- (wire (pts (xy 160.02 59.69) (xy 165.1 59.69))
- (stroke (width 0) (type default))
- (uuid 8afb3886-ba72-44ce-9d58-a4a6773e05bf)
- )
- (wire (pts (xy 100.33 173.99) (xy 102.87 173.99))
- (stroke (width 0) (type default))
- (uuid 8b3eb9be-cd34-465b-baf2-e3d29eaf4df4)
- )
- (wire (pts (xy 157.48 57.15) (xy 127 57.15))
- (stroke (width 0) (type default))
- (uuid 8bdc9a0c-7cc4-4efd-821c-baa060992cfa)
- )
- (wire (pts (xy 154.94 64.77) (xy 154.94 59.69))
- (stroke (width 0) (type default))
- (uuid 8c821195-8f87-4e7a-988b-9113dc1a6e3b)
- )
- (wire (pts (xy 165.1 43.18) (xy 163.83 43.18))
- (stroke (width 0) (type default))
- (uuid 8f3179b7-a17e-44e7-9f3f-09525cdb8f95)
- )
- (wire (pts (xy 165.1 91.44) (xy 144.78 91.44))
- (stroke (width 0) (type default))
- (uuid 970bfff2-31c8-47bf-b7e1-a84d29d421c2)
- )
- (wire (pts (xy 144.78 35.56) (xy 165.1 35.56))
- (stroke (width 0) (type default))
- (uuid 97caf553-fd7f-44fa-8b37-bf53f1c546bf)
- )
- (wire (pts (xy 149.86 40.64) (xy 149.86 52.07))
- (stroke (width 0) (type default))
- (uuid 9d818375-a2d0-4927-bb44-96a1cbeec0ec)
- )
- (wire (pts (xy 142.24 44.45) (xy 127 44.45))
- (stroke (width 0) (type default))
- (uuid ab3ef585-5e9b-47b6-a473-0b1e341da415)
- )
- (wire (pts (xy 91.44 68.58) (xy 91.44 67.31))
- (stroke (width 0) (type default))
- (uuid ab4f447e-5661-4e55-b34b-203dd5f839ad)
- )
- (wire (pts (xy 80.01 132.08) (xy 81.28 132.08))
- (stroke (width 0) (type default))
- (uuid ab59feee-3d4f-4d41-a073-17de829409b6)
- )
- (wire (pts (xy 165.1 93.98) (xy 142.24 93.98))
- (stroke (width 0) (type default))
- (uuid acc02f1c-d298-451b-848e-d36199667353)
- )
- (wire (pts (xy 165.1 64.77) (xy 154.94 64.77))
- (stroke (width 0) (type default))
- (uuid ad418ad1-2392-43fd-88de-fdcabbbd5391)
- )
- (wire (pts (xy 106.68 46.99) (xy 105.41 46.99))
- (stroke (width 0) (type default))
- (uuid afddf146-ec92-4e0a-9d3b-68ac40051350)
- )
- (wire (pts (xy 146.05 184.15) (xy 143.51 184.15))
- (stroke (width 0) (type default))
- (uuid affe7ced-7db1-45e1-8d9b-0aeef329a820)
- )
- (wire (pts (xy 149.86 86.36) (xy 149.86 64.77))
- (stroke (width 0) (type default))
- (uuid b2ca373f-0c93-4c58-9b63-c73835238d7f)
- )
- (wire (pts (xy 90.17 73.66) (xy 96.52 73.66))
- (stroke (width 0) (type default))
- (uuid b414601b-d6a3-4eea-a440-a87639bd3cb4)
- )
- (wire (pts (xy 90.17 71.12) (xy 93.98 71.12))
- (stroke (width 0) (type default))
- (uuid b54ad4e6-6d72-4644-8c71-acdb82858772)
- )
- (wire (pts (xy 147.32 67.31) (xy 127 67.31))
- (stroke (width 0) (type default))
- (uuid b6827b76-0f60-4985-bb78-193c2815023e)
- )
- (wire (pts (xy 40.64 172.72) (xy 44.45 172.72))
- (stroke (width 0) (type default))
- (uuid ba05472a-b5de-4394-8bbb-ca3e4d63ac76)
- )
- (wire (pts (xy 142.24 93.98) (xy 142.24 72.39))
- (stroke (width 0) (type default))
- (uuid bb58b0e6-2400-4e1f-a1d5-0decfca34566)
- )
- (wire (pts (xy 46.99 175.26) (xy 44.45 175.26))
- (stroke (width 0) (type default))
- (uuid bd7c0247-bcb6-4dd5-8c09-71e8057ee655)
- )
- (wire (pts (xy 165.1 115.57) (xy 137.16 115.57))
- (stroke (width 0) (type default))
- (uuid be91a7f6-4905-46aa-8e40-965082aded8a)
- )
- (wire (pts (xy 101.6 100.33) (xy 101.6 104.14))
- (stroke (width 0) (type default))
- (uuid bf8c1662-1dda-41e0-9139-3c33963fa0c6)
- )
- (wire (pts (xy 105.41 46.99) (xy 105.41 44.45))
- (stroke (width 0) (type default))
- (uuid c1cc71ea-3cbe-4c5c-a822-9a6df78c0a68)
- )
- (wire (pts (xy 90.17 81.28) (xy 91.44 81.28))
- (stroke (width 0) (type default))
- (uuid c208ff72-9c7e-4e2b-8187-295a317757d6)
- )
- (wire (pts (xy 157.48 62.23) (xy 157.48 57.15))
- (stroke (width 0) (type default))
- (uuid c4ad8dc8-4621-475d-a307-71193b1934a0)
- )
- (wire (pts (xy 130.81 173.99) (xy 146.05 173.99))
- (stroke (width 0) (type default))
- (uuid c61c883b-caf4-4f28-bf8c-362090af7bde)
- )
- (wire (pts (xy 163.83 57.15) (xy 163.83 55.88))
- (stroke (width 0) (type default))
- (uuid c61f0862-447c-4dd1-8664-d644a3c91c4d)
- )
- (wire (pts (xy 152.4 67.31) (xy 152.4 62.23))
- (stroke (width 0) (type default))
- (uuid c8265695-dff7-4884-aaf0-85fd36200a09)
- )
- (wire (pts (xy 44.45 180.34) (xy 46.99 180.34))
- (stroke (width 0) (type default))
- (uuid c93d0cfc-5ffe-4220-ad87-15db2d53ac93)
- )
- (wire (pts (xy 74.93 100.33) (xy 90.17 100.33))
- (stroke (width 0) (type default))
- (uuid c9876900-89f1-41a6-970a-8ddb31d89de6)
- )
- (wire (pts (xy 147.32 38.1) (xy 165.1 38.1))
- (stroke (width 0) (type default))
- (uuid cbc3a692-d510-44fc-a200-3f3990817e87)
- )
- (wire (pts (xy 144.78 91.44) (xy 144.78 69.85))
- (stroke (width 0) (type default))
- (uuid cc1723d4-8033-448a-b2aa-90d08d1d9c69)
- )
- (wire (pts (xy 100.33 100.33) (xy 101.6 100.33))
- (stroke (width 0) (type default))
- (uuid d1a41c08-0f89-4459-b4f0-b65960429248)
- )
- (wire (pts (xy 90.17 132.08) (xy 91.44 132.08))
- (stroke (width 0) (type default))
- (uuid d3ecb738-a271-4bc0-8af4-dd186b6110f3)
- )
- (wire (pts (xy 105.41 44.45) (xy 106.68 44.45))
- (stroke (width 0) (type default))
- (uuid d3f5a9ab-6a59-4763-a3c1-b257c7da0e23)
- )
- (wire (pts (xy 93.98 71.12) (xy 93.98 64.77))
- (stroke (width 0) (type default))
- (uuid d5809eb8-0355-4481-910d-0e970bfdd22e)
- )
- (wire (pts (xy 139.7 74.93) (xy 127 74.93))
- (stroke (width 0) (type default))
- (uuid db3bd291-43bd-4bdd-98a4-da46d20fe57e)
- )
- (wire (pts (xy 99.06 69.85) (xy 106.68 69.85))
- (stroke (width 0) (type default))
- (uuid dde98da5-19f5-4a08-8a66-5e109b6b2e14)
- )
- (wire (pts (xy 163.83 96.52) (xy 163.83 97.79))
- (stroke (width 0) (type default))
- (uuid e0115a22-cb08-46d1-bbcc-0e5eaf0cd5e6)
- )
- (wire (pts (xy 163.83 123.19) (xy 163.83 124.46))
- (stroke (width 0) (type default))
- (uuid e0c601b9-3b47-4360-b307-1abdfd8d8ddb)
- )
- (wire (pts (xy 93.98 64.77) (xy 106.68 64.77))
- (stroke (width 0) (type default))
- (uuid e121ddea-a22e-4cdb-96ce-16572b68df97)
- )
- (wire (pts (xy 154.94 59.69) (xy 127 59.69))
- (stroke (width 0) (type default))
- (uuid e1bd670d-62e9-4452-9074-d8e94e5e7c4c)
- )
- (wire (pts (xy 152.4 62.23) (xy 127 62.23))
- (stroke (width 0) (type default))
- (uuid e26e6448-30ab-4a7b-8517-537e3dfa2ac0)
- )
- (wire (pts (xy 149.86 40.64) (xy 165.1 40.64))
- (stroke (width 0) (type default))
- (uuid e3804498-534c-4ae4-8327-52a6e76bde65)
- )
- (wire (pts (xy 127 54.61) (xy 160.02 54.61))
- (stroke (width 0) (type default))
- (uuid e3fbca20-8f25-41dd-b50c-38b30f6d1ade)
- )
- (wire (pts (xy 134.62 80.01) (xy 127 80.01))
- (stroke (width 0) (type default))
- (uuid e43aa60a-332d-4856-9866-402d2ec72261)
- )
- (wire (pts (xy 142.24 33.02) (xy 165.1 33.02))
- (stroke (width 0) (type default))
- (uuid e4fe877a-8535-4afd-8e90-684dde8b017e)
- )
- (wire (pts (xy 149.86 52.07) (xy 127 52.07))
- (stroke (width 0) (type default))
- (uuid e7cc3450-db2d-432b-ae99-b09bb530cec1)
- )
- (wire (pts (xy 96.52 67.31) (xy 106.68 67.31))
- (stroke (width 0) (type default))
- (uuid e7e09ba7-cdcd-497a-b6a8-2a595830fdb8)
- )
- (wire (pts (xy 163.83 69.85) (xy 163.83 71.12))
- (stroke (width 0) (type default))
- (uuid e9e23dc5-921d-405a-b481-18e9fd81c62f)
- )
- (wire (pts (xy 105.41 49.53) (xy 106.68 49.53))
- (stroke (width 0) (type default))
- (uuid ea6426e0-b23f-410a-b0c0-41ba8c270431)
- )
- (wire (pts (xy 165.1 113.03) (xy 139.7 113.03))
- (stroke (width 0) (type default))
- (uuid ec07464c-e477-4731-9dc3-2ae6fa2751c6)
- )
- (wire (pts (xy 74.93 100.33) (xy 74.93 57.15))
- (stroke (width 0) (type default))
- (uuid ecff3b94-55aa-4b3a-9efd-dcf909637e83)
- )
- (wire (pts (xy 143.51 186.69) (xy 146.05 186.69))
- (stroke (width 0) (type default))
- (uuid f23cd734-f245-4be6-80cf-35fcd379b40d)
- )
- (wire (pts (xy 163.83 83.82) (xy 163.83 82.55))
- (stroke (width 0) (type default))
- (uuid f9d714d0-f12e-4d25-83f7-a7db5669a6bc)
- )
- (wire (pts (xy 134.62 118.11) (xy 134.62 80.01))
- (stroke (width 0) (type default))
- (uuid fa7d905a-a77b-4a1f-b57c-8c4fb31715e4)
- )
- (wire (pts (xy 82.55 134.62) (xy 90.17 134.62))
- (stroke (width 0) (type default))
- (uuid fccecaea-f9b5-406e-8e88-5b1098b63c09)
- )
- (wire (pts (xy 165.1 86.36) (xy 149.86 86.36))
- (stroke (width 0) (type default))
- (uuid fcda9805-2eaf-45c7-ab60-d5ea3b2f9170)
- )
- (wire (pts (xy 149.86 64.77) (xy 127 64.77))
- (stroke (width 0) (type default))
- (uuid fd0d33d9-fbd2-4bc0-97bb-93c7471597a3)
- )
- (wire (pts (xy 143.51 179.07) (xy 143.51 176.53))
- (stroke (width 0) (type default))
- (uuid fd465c18-8a24-4ebc-8dad-128428b528e4)
- )
- (wire (pts (xy 96.52 73.66) (xy 96.52 67.31))
- (stroke (width 0) (type default))
- (uuid fdec4c10-773b-4be4-8719-e048f612c4be)
- )
- (wire (pts (xy 165.1 123.19) (xy 163.83 123.19))
- (stroke (width 0) (type default))
- (uuid fe02c9eb-5dc6-4195-a928-3d1ac8a594ad)
- )
- (wire (pts (xy 137.16 77.47) (xy 127 77.47))
- (stroke (width 0) (type default))
- (uuid ff1bbe11-c814-4690-a656-0b084b54a021)
- )
-
- (rectangle (start 88.9 163.83) (end 168.91 191.77)
- (stroke (width 0) (type default))
- (fill (type none))
- (uuid ab8773b4-4476-4f3e-93ed-e3c212951b5b)
- )
-
- (text_box "Hardware ID:\n0000 = Mainboard"
- (at 82.55 46.99 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 Power Connector"
- (at 25.4 165.1 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 "I2C Pull-Up Resistors"
- (at 87.63 92.71 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 64.77 119.38 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 133.35 168.91 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 90.17 166.37 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:+3.3V") (at 163.83 82.55 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 13999167-9c58-4f2d-92d5-eee52ede4f82)
- (property "Reference" "#PWR016" (at 163.83 86.36 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 163.83 78.4169 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 163.83 82.55 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 163.83 82.55 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5ecfe30d-0dd1-46e9-bdd9-7654973a8c5c))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR016") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CC0402KRX7R8BB104") (at 85.09 132.08 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 18c5a7a0-1e43-49d0-8208-bfef0e4fd32a)
- (property "Reference" "C1" (at 85.09 126.0307 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "100nF" (at 85.09 128.4549 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:C0402" (at 85.09 121.92 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/15869.html" (at 87.376 132.207 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C105883" (at 85.09 132.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Capacitance" "100nF" (at 85.09 132.08 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 "SSD1306:SSD1306") (at 80.01 140.97 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 2ae5702b-de7e-4727-aba1-09aa8e03487a)
- (property "Reference" "OLED1" (at 84.582 141.0279 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SSD1306" (at 84.582 143.4521 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "extern:SSD1306_0.96_Oled" (at 87.63 140.97 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 80.01 140.97 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 80.01 125.73 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 2dfb0e28-5fa1-410a-bbdc-6f2a596f23af)
- (property "Reference" "#PWR03" (at 80.01 119.38 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 80.01 121.5969 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 80.01 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 80.01 125.73 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 144.78 181.61 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 3913378d-f654-4db0-99cc-e1f4f508c072)
- (property "Reference" "#PWR011" (at 138.43 181.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 141.6051 181.9268 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 144.78 181.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 144.78 181.61 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 153.67 181.61 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 52a21062-c4e0-4e3b-95dd-576fd2e0785a)
- (property "Reference" "U2" (at 161.925 179.6963 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "USB-A" (at 161.925 181.6173 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:USB-A-TH_USB-302-T" (at 153.67 191.77 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/113689.html" (at 151.384 181.483 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C386740" (at 153.67 181.61 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 "power:GND") (at 163.83 97.79 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5495e180-7172-47f6-96ef-1bb81cae7898)
- (property "Reference" "#PWR017" (at 163.83 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 163.83 101.9231 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 163.83 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 163.83 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ca1cf673-4cd6-49e6-b975-df6a9969d65e))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR017") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CR-02FL6---10K") (at 95.25 107.95 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 62175efd-56d0-4f3f-bf21-32d55d3238a3)
- (property "Reference" "R2" (at 95.25 103.7971 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 95.25 105.7181 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 95.25 118.11 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 92.964 107.823 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C406733" (at 95.25 107.95 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "10kΩ" (at 95.25 107.95 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 "jlc:Header-Female-2_54_1x6") (at 170.18 116.84 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 6f616117-1018-439f-a8f1-7eb4c151a637)
- (property "Reference" "H5" (at 170.18 103.9327 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "IO_D" (at 170.18 106.3569 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:HDR-TH_6P-P2.54-V-F" (at 170.18 127 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://so.szlcsc.com/global.html?c=&k=C40877" (at 167.894 116.713 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C40877" (at 170.18 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e56614b4-89e8-494a-bcde-6ca078449258))
- (pin "2" (uuid 5a040b2b-b993-4e5d-8702-211f5b078b2f))
- (pin "3" (uuid 931f91c3-0347-44f3-8346-251398850b31))
- (pin "4" (uuid a491856c-f5f3-4c15-a5df-96adedb4ac7b))
- (pin "5" (uuid bfafae38-1f2b-4584-b229-fd5ea13a15a1))
- (pin "6" (uuid b641d372-fe96-4d6a-bf6e-ec937b4c8834))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H5") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:Header-Female-2_54_1x6") (at 170.18 36.83 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 71037b18-2b78-42f7-9b5a-fc8886923f59)
- (property "Reference" "H2" (at 170.18 23.9227 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "IO_A" (at 170.18 26.3469 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:HDR-TH_6P-P2.54-V-F" (at 170.18 46.99 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://so.szlcsc.com/global.html?c=&k=C40877" (at 167.894 36.703 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C40877" (at 170.18 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9ce038ab-54dd-42c5-b7cc-1120d76a84bd))
- (pin "2" (uuid d9df73e1-198d-4141-85b5-5ed4f7445364))
- (pin "3" (uuid 981b5548-8a26-47df-9eae-8b1402e6fb10))
- (pin "4" (uuid 57dd359e-4c4c-400b-9655-5c590d9b73d9))
- (pin "5" (uuid e3fcab71-84e5-4136-a1b4-65ecd3f3407f))
- (pin "6" (uuid 2ea99efe-e7bf-4702-98c6-5b4fd0ecd396))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 102.87 104.14 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 753e1b9b-9ea2-474d-9422-64515bdb8006)
- (property "Reference" "#PWR08" (at 99.06 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 106.045 104.14 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 102.87 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 102.87 104.14 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 "power:GND") (at 128.27 186.69 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 77a230ca-7c55-4a43-9794-11fb3ed8c805)
- (property "Reference" "#PWR010" (at 121.92 186.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 125.0951 187.0068 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 128.27 186.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 128.27 186.69 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 40.64 172.72 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 7c0ad552-339d-4bc0-933b-701025fd4c2b)
- (property "Reference" "#PWR01" (at 43.18 172.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+VDC" (at 34.798 172.72 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 40.64 172.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 40.64 172.72 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 "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:DBT50G-7_62-4P") (at 52.07 176.53 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 880f7d7b-3223-4c1a-81a0-36f9513bf6e4)
- (property "Reference" "U1" (at 55.245 175.3179 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "DBT50G-7_62-4P" (at 55.245 177.7421 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 52.07 186.69 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/512151.html?ref=editor&logined=true" (at 49.784 176.403 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C496132" (at 52.07 176.53 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 "jlc:AC0402FR-071ML") (at 134.62 186.69 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 8d059a53-268e-4310-b02c-e3cea10095ff)
- (property "Reference" "R3" (at 134.62 182.7911 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "1M" (at 134.62 184.7121 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 134.62 196.85 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 132.334 186.563 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C144787" (at 134.62 186.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "1MΩ" (at 134.62 186.69 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 104.14 44.45 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 8f1379fc-ca1f-4712-afab-92fbeb3f4306)
- (property "Reference" "#PWR09" (at 97.79 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 100.9651 44.7668 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 104.14 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 104.14 44.45 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:GND") (at 163.83 124.46 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 9287d8f0-2721-44fb-ba7a-cf258444fa2f)
- (property "Reference" "#PWR019" (at 163.83 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 163.83 128.5931 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 163.83 124.46 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 163.83 124.46 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4f906c2c-147b-4452-ba41-c2584902e231))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR019") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 91.44 82.55 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 929f17f6-d368-418c-a719-c7478d6b56d2)
- (property "Reference" "#PWR05" (at 91.44 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 91.44 86.6831 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 91.44 82.55 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 91.44 82.55 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 730d581c-8c54-4efa-a4ee-fbdb9694d072))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR05") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+VDC") (at 100.33 173.99 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 98599bfe-3469-4819-a370-e23c95cb33cc)
- (property "Reference" "#PWR07" (at 102.87 173.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+VDC" (at 94.488 174.3068 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 100.33 173.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 100.33 173.99 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:+3.3V") (at 163.83 29.21 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid a20639ca-9f92-47de-92a2-138bbc354f2d)
- (property "Reference" "#PWR012" (at 163.83 33.02 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 163.83 25.0769 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 163.83 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 163.83 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e4866001-eb67-460d-b560-a3d161d5d5ed))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR012") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 163.83 109.22 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid a5a06d92-4372-4b3f-a160-0af9de5a2495)
- (property "Reference" "#PWR018" (at 163.83 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 163.83 105.0869 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 163.83 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 163.83 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 62c9e5db-8355-47cd-b95f-0e67ec89bd67))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR018") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 91.44 67.31 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid b3a3f14c-6fd7-4de0-bc79-77d3c145d223)
- (property "Reference" "#PWR04" (at 91.44 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 91.44 63.1769 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 91.44 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 91.44 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid bbe5e085-b653-4516-a739-580f092aff0e))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR04") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:Header-Female-2_54_1x6") (at 170.18 90.17 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid b6f2c421-b0d9-400b-af65-588d57a8e0cd)
- (property "Reference" "H4" (at 170.18 77.2627 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "IO_C" (at 170.18 79.6869 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:HDR-TH_6P-P2.54-V-F" (at 170.18 100.33 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://so.szlcsc.com/global.html?c=&k=C40877" (at 167.894 90.043 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C40877" (at 170.18 90.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a0a3eec8-9f8b-4535-8e0b-5af8df99f2df))
- (pin "2" (uuid 2c942a75-243f-4fa7-a851-642dfcf66b4f))
- (pin "3" (uuid 005fa85f-f154-42b5-8751-5366bd6491e8))
- (pin "4" (uuid 54e222f8-7f60-4244-8770-ba4a8843adfc))
- (pin "5" (uuid 5f151f50-f1f6-4036-8ca5-7ac472d8f5b7))
- (pin "6" (uuid 8fb5e38a-1ac9-4153-8df2-a2664c9f5db1))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H4") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 40.64 180.34 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid c9ca4f29-b9c5-47c9-95e5-b96c1034994b)
- (property "Reference" "#PWR02" (at 34.29 180.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 37.4651 180.34 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "" (at 40.64 180.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 40.64 180.34 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 "power:GND") (at 163.83 44.45 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid d8d39d9e-ccb6-4cc5-9c52-52aaff41a599)
- (property "Reference" "#PWR013" (at 163.83 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 163.83 48.5831 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 163.83 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 163.83 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c9d33904-8165-4395-aaf0-9cb3e48ed90e))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR013") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 163.83 71.12 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid e20ce802-a106-4359-9d92-cf132ef5d1c1)
- (property "Reference" "#PWR015" (at 163.83 77.47 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 163.83 75.2531 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 163.83 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 163.83 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c63aa2b0-bd2a-45c1-bcbb-1d90e5a70ca0))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR015") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 91.44 132.08 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid e31607e6-f6d1-4211-84be-02a2dd41973e)
- (property "Reference" "#PWR06" (at 87.63 132.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 94.615 132.08 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 91.44 132.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 91.44 132.08 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:Header-Female-2_54_1x6") (at 85.09 74.93 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid e65f24fb-7c5f-4ed4-8ac9-8ee5b2c8b83c)
- (property "Reference" "H1" (at 85.09 62.0227 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "IO_ADC" (at 85.09 64.4469 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:HDR-TH_6P-P2.54-V-F" (at 85.09 85.09 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://so.szlcsc.com/global.html?c=&k=C40877" (at 87.376 74.803 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C40877" (at 85.09 74.93 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 640a26a8-848b-4341-96f5-67d8f6a69004))
- (pin "2" (uuid 1ed8e3aa-c20c-4cc1-b5a9-9aa03bd7f2e3))
- (pin "3" (uuid 9eaf16a6-e0a0-4a5d-aa9c-6b724b44f985))
- (pin "4" (uuid dbb87482-b3e7-4e7e-badd-db72997dd221))
- (pin "5" (uuid 77ca9dcb-bd3a-405a-b342-4f6b64efc003))
- (pin "6" (uuid 2a807e7b-aa38-4d4c-a977-995963937e55))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 163.83 55.88 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid e6fb8a66-0946-40c3-b6d0-ab10461e6568)
- (property "Reference" "#PWR014" (at 163.83 59.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 163.83 51.7469 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 163.83 55.88 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 163.83 55.88 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a2bce386-d017-48b5-8880-7392a07992fa))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "#PWR014") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:Header-Female-2_54_1x6") (at 170.18 63.5 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid e725c634-79d8-4c2e-b902-16ed4d482fb5)
- (property "Reference" "H3" (at 170.18 50.5927 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "IO_B" (at 170.18 53.0169 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:HDR-TH_6P-P2.54-V-F" (at 170.18 73.66 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://so.szlcsc.com/global.html?c=&k=C40877" (at 167.894 63.373 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C40877" (at 170.18 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c3ccd2bf-8bff-43b3-ac0f-10c1b60c0766))
- (pin "2" (uuid f46c6400-5902-40d9-9801-2aea205cce07))
- (pin "3" (uuid 4eaf4233-9187-4eb8-ad9c-5c54417411a7))
- (pin "4" (uuid ff999c97-6d63-4757-af18-e4669bfc7d75))
- (pin "5" (uuid c1d4aac3-ff1f-4910-b4c4-1318f2c00251))
- (pin "6" (uuid 7b666d2a-b97d-4492-a371-117e9a6389de))
- (instances
- (project "dispensy"
- (path "/a50b51f9-900f-4bbb-8934-4acbc429c37b"
- (reference "H3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CR-02FL6---10K") (at 95.25 100.33 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid f2d2013e-631b-4cf6-93b6-f0431ef0af50)
- (property "Reference" "R1" (at 95.25 96.1771 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 95.25 98.0981 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:R0402" (at 95.25 110.49 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/323315.html" (at 92.964 100.203 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C406733" (at 95.25 100.33 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Resistance" "10kΩ" (at 95.25 100.33 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)
- )
- )
- )
- )
-
- (sheet (at 102.87 171.45) (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 102.87 170.7384 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- )
- (property "Sheetfile" "psu_lm2576.kicad_sch" (at 102.87 177.1146 0)
- (effects (font (size 1.27 1.27)) (justify left top))
- )
- (pin "Vout" input (at 130.81 173.99 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 49eeb541-c632-4ff0-a694-09491809ff11)
- )
- (pin "Vin" input (at 102.87 173.99 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 106.68 43.18) (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 106.68 42.4684 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- )
- (property "Sheetfile" "pi.kicad_sch" (at 106.68 84.4046 0)
- (effects (font (size 1.27 1.27)) (justify left top))
- )
- (pin "IO8" bidirectional (at 127 64.77 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid a4983b1c-c7a2-4e00-b97b-3203acb03e53)
- )
- (pin "IO9" bidirectional (at 127 67.31 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 5379e861-0c6f-4c7b-8253-9807a73bba50)
- )
- (pin "IO5" bidirectional (at 127 57.15 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid aabc04bc-65cc-43cb-af17-e40e4fc9bc58)
- )
- (pin "IO6" bidirectional (at 127 59.69 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid e6848a64-2cf9-423b-8438-c28614fe2c3d)
- )
- (pin "IO7" bidirectional (at 127 62.23 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 3c1dee77-8b69-4001-970e-d51217c38fab)
- )
- (pin "IO4" bidirectional (at 127 54.61 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid fbbf8f2f-d5d7-49a5-9910-b2c0de36b1a0)
- )
- (pin "IO3" bidirectional (at 127 52.07 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid ae65f902-74c4-4963-ac6d-50be9b7d110f)
- )
- (pin "IO2" bidirectional (at 127 49.53 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 00ab7294-3bf2-4bb3-850a-053b3d81ef0b)
- )
- (pin "IO1" bidirectional (at 127 46.99 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 45c2b1e4-7bd9-479c-9fd5-94d795168a08)
- )
- (pin "IO0" bidirectional (at 127 44.45 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid d194f5a4-a98f-4c4c-b9b7-716d34d1ee7b)
- )
- (pin "IO15" bidirectional (at 127 82.55 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 6dd1fc9d-556f-4756-8350-96319d2d65a1)
- )
- (pin "IO14" bidirectional (at 127 80.01 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 22759f89-321f-4300-bfc0-5fb353370583)
- )
- (pin "ADC1" bidirectional (at 106.68 67.31 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 08531663-26a4-460b-8e6d-a32e0911e89d)
- )
- (pin "ADC2" bidirectional (at 106.68 69.85 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 3879e06c-039b-4de7-bdf0-13b83112636e)
- )
- (pin "ADC3" bidirectional (at 106.68 72.39 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid c8fa8f0c-ae31-4906-a56a-aa6ef7f4672b)
- )
- (pin "ADC0" bidirectional (at 106.68 64.77 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 14255837-7ea6-42d2-9e24-d8625fd85f6f)
- )
- (pin "IO12" bidirectional (at 127 74.93 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 0c111304-deaa-4060-8d8d-023e0e71ef29)
- )
- (pin "I2C_SDA" bidirectional (at 106.68 59.69 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid f21496d8-1080-40a3-88d4-b42abf4a1a5e)
- )
- (pin "IO13" bidirectional (at 127 77.47 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 1cf80fc1-b6e5-4f0d-a1aa-d665e7d77a42)
- )
- (pin "IO10" bidirectional (at 127 69.85 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 936d5974-d57e-4d55-8575-85e3f9dda271)
- )
- (pin "IO11" bidirectional (at 127 72.39 0)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 04a6f633-c41f-434e-a108-31037821aca6)
- )
- (pin "I2C_SCL" bidirectional (at 106.68 57.15 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 0dd52a52-9265-439f-b4f8-ae26f9df79e9)
- )
- (pin "HWID2" input (at 106.68 49.53 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 5ec3a00b-bc96-494b-9daa-3a5e40ee9a2e)
- )
- (pin "HWID3" input (at 106.68 52.07 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid de20a885-350c-4940-9f0c-847587d21e83)
- )
- (pin "HWID0" input (at 106.68 44.45 180)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 1717ee0f-71c6-4381-be8b-2f11c00f565a)
- )
- (pin "HWID1" input (at 106.68 46.99 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"))
- )
- )
|