123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748 |
- (kicad_sch (version 20230121) (generator eeschema)
-
- (uuid 13d14c25-8baa-4714-9b30-86acf6c3cb37)
-
- (paper "A4")
-
- (lib_symbols
- (symbol "Connector:Conn_01x04_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "J" (at 0 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Conn_01x04_Female" (at 0 -7.62 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" "connector" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Conn_01x04_Female_1_1"
- (arc (start 0 -4.572) (mid -0.5058 -5.08) (end 0 -5.588)
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (arc (start 0 -2.032) (mid -0.5058 -2.54) (end 0 -3.048)
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 -5.08)
- (xy -0.508 -5.08)
- )
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 -2.54)
- (xy -0.508 -2.54)
- )
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 0)
- (xy -0.508 0)
- )
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 2.54)
- (xy -0.508 2.54)
- )
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (arc (start 0 0.508) (mid -0.5058 0) (end 0 -0.508)
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (arc (start 0 3.048) (mid -0.5058 2.54) (end 0 2.032)
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (pin passive line (at -5.08 2.54 0) (length 3.81)
- (name "Pin_1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 0 0) (length 3.81)
- (name "Pin_2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -2.54 0) (length 3.81)
- (name "Pin_3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -5.08 0) (length 3.81)
- (name "Pin_4" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Connector:Screw_Terminal_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "J" (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Screw_Terminal_01x02" (at 0 -5.08 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" "screw terminal" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "TerminalBlock*:*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Screw_Terminal_01x02_1_1"
- (rectangle (start -1.27 1.27) (end 1.27 -3.81)
- (stroke (width 0.254) (type solid))
- (fill (type background))
- )
- (circle (center 0 -2.54) (radius 0.635)
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.5334 -2.2098)
- (xy 0.3302 -3.048)
- )
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.5334 0.3302)
- (xy 0.3302 -0.508)
- )
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.3556 -2.032)
- (xy 0.508 -2.8702)
- )
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.3556 0.508)
- (xy 0.508 -0.3302)
- )
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (circle (center 0 0) (radius 0.635)
- (stroke (width 0.1524) (type solid))
- (fill (type none))
- )
- (pin passive line (at -5.08 0 0) (length 3.81)
- (name "Pin_1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -2.54 0) (length 3.81)
- (name "Pin_2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "LED" (at 0 -2.54 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" "LED diode" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Light emitting diode" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "LED_0_1"
- (polyline
- (pts
- (xy -1.27 -1.27)
- (xy -1.27 1.27)
- )
- (stroke (width 0.2032) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 0)
- (xy 1.27 0)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 -1.27)
- (xy 1.27 1.27)
- (xy -1.27 0)
- (xy 1.27 -1.27)
- )
- (stroke (width 0.2032) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -3.048 -0.762)
- (xy -4.572 -2.286)
- (xy -3.81 -2.286)
- (xy -4.572 -2.286)
- (xy -4.572 -1.524)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.778 -0.762)
- (xy -3.302 -2.286)
- (xy -2.54 -2.286)
- (xy -3.302 -2.286)
- (xy -3.302 -1.524)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- )
- (symbol "LED_1_1"
- (pin passive line (at -3.81 0 0) (length 2.54)
- (name "K" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 3.81 0 180) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 2.032 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "R" (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at -1.778 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "R res resistor" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Resistor" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "R_*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_0_1"
- (rectangle (start -1.016 -2.54) (end 1.016 2.54)
- (stroke (width 0.254) (type solid))
- (fill (type none))
- )
- )
- (symbol "R_1_1"
- (pin passive line (at 0 3.81 270) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "GND_1" (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_1" (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_1_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_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))))
- )
- )
- )
- (symbol "MCU_RaspberryPi_and_Boards:Pico" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at -13.97 27.94 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Pico" (at 0 19.05 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "RPi_Pico:RPi_Pico_SMD_TH" (at 0 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Pico_0_0"
- (text "Raspberry Pi Pico" (at 0 21.59 0)
- (effects (font (size 1.27 1.27)))
- )
- )
- (symbol "Pico_0_1"
- (rectangle (start -15.24 26.67) (end 15.24 -26.67)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- )
- (symbol "Pico_1_1"
- (pin bidirectional line (at -17.78 24.13 0) (length 2.54)
- (name "GPIO0" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 1.27 0) (length 2.54)
- (name "GPIO7" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 -1.27 0) (length 2.54)
- (name "GPIO8" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 -3.81 0) (length 2.54)
- (name "GPIO9" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -17.78 -6.35 0) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 -8.89 0) (length 2.54)
- (name "GPIO10" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 -11.43 0) (length 2.54)
- (name "GPIO11" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 -13.97 0) (length 2.54)
- (name "GPIO12" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 -16.51 0) (length 2.54)
- (name "GPIO13" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -17.78 -19.05 0) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 -21.59 0) (length 2.54)
- (name "GPIO14" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 21.59 0) (length 2.54)
- (name "GPIO1" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 -24.13 0) (length 2.54)
- (name "GPIO15" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 -24.13 180) (length 2.54)
- (name "GPIO16" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 -21.59 180) (length 2.54)
- (name "GPIO17" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 17.78 -19.05 180) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "23" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 -16.51 180) (length 2.54)
- (name "GPIO18" (effects (font (size 1.27 1.27))))
- (number "24" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 -13.97 180) (length 2.54)
- (name "GPIO19" (effects (font (size 1.27 1.27))))
- (number "25" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 -11.43 180) (length 2.54)
- (name "GPIO20" (effects (font (size 1.27 1.27))))
- (number "26" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 -8.89 180) (length 2.54)
- (name "GPIO21" (effects (font (size 1.27 1.27))))
- (number "27" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 17.78 -6.35 180) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "28" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 -3.81 180) (length 2.54)
- (name "GPIO22" (effects (font (size 1.27 1.27))))
- (number "29" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -17.78 19.05 0) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 -1.27 180) (length 2.54)
- (name "RUN" (effects (font (size 1.27 1.27))))
- (number "30" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 1.27 180) (length 2.54)
- (name "GPIO26_ADC0" (effects (font (size 1.27 1.27))))
- (number "31" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 3.81 180) (length 2.54)
- (name "GPIO27_ADC1" (effects (font (size 1.27 1.27))))
- (number "32" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 17.78 6.35 180) (length 2.54)
- (name "AGND" (effects (font (size 1.27 1.27))))
- (number "33" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 8.89 180) (length 2.54)
- (name "GPIO28_ADC2" (effects (font (size 1.27 1.27))))
- (number "34" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 17.78 11.43 180) (length 2.54)
- (name "ADC_VREF" (effects (font (size 1.27 1.27))))
- (number "35" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 17.78 13.97 180) (length 2.54)
- (name "3V3" (effects (font (size 1.27 1.27))))
- (number "36" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 16.51 180) (length 2.54)
- (name "3V3_EN" (effects (font (size 1.27 1.27))))
- (number "37" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 17.78 19.05 180) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "38" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 17.78 21.59 180) (length 2.54)
- (name "VSYS" (effects (font (size 1.27 1.27))))
- (number "39" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 16.51 0) (length 2.54)
- (name "GPIO2" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 17.78 24.13 180) (length 2.54)
- (name "VBUS" (effects (font (size 1.27 1.27))))
- (number "40" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -2.54 -29.21 90) (length 2.54)
- (name "SWCLK" (effects (font (size 1.27 1.27))))
- (number "41" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -29.21 90) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "42" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 2.54 -29.21 90) (length 2.54)
- (name "SWDIO" (effects (font (size 1.27 1.27))))
- (number "43" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 13.97 0) (length 2.54)
- (name "GPIO3" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 11.43 0) (length 2.54)
- (name "GPIO4" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 8.89 0) (length 2.54)
- (name "GPIO5" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -17.78 6.35 0) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -17.78 3.81 0) (length 2.54)
- (name "GPIO6" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "R_1" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 2.032 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "R" (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at -1.778 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "R res resistor" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Resistor" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "R_*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_1_0_1"
- (rectangle (start -1.016 -2.54) (end 1.016 2.54)
- (stroke (width 0.254) (type default))
- (fill (type none))
- )
- )
- (symbol "R_1_1_1"
- (pin passive line (at 0 3.81 270) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Switch:SW_DPST_x2" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "SW" (at 0 3.175 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "SW_DPST_x2" (at 0 -2.54 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" "switch lever" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Single Pole Single Throw (SPST) switch, separate symbol" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "SW_DPST_x2_0_0"
- (circle (center -2.032 0) (radius 0.508)
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 0.254)
- (xy 1.524 1.778)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (circle (center 2.032 0) (radius 0.508)
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- )
- (symbol "SW_DPST_x2_1_1"
- (pin passive line (at -5.08 0 0) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 0 180) (length 2.54)
- (name "B" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "SW_DPST_x2_2_1"
- (pin passive line (at -5.08 0 0) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 0 180) (length 2.54)
- (name "B" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "SW" (at 1.27 2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SW_Push" (at 0 -1.524 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 5.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 0 5.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Push button switch, generic, two pins" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "SW_Push_0_1"
- (circle (center -2.032 0) (radius 0.508)
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 1.27)
- (xy 0 3.048)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 1.27)
- (xy -2.54 1.27)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (circle (center 2.032 0) (radius 0.508)
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (pin passive line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "chinese_modules:charger" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "" (at 0 0 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)
- )
- (symbol "charger_0_1"
- (rectangle (start -6.35 5.08) (end 6.35 -5.08)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "charger_1_1"
- (pin input line (at 8.89 2.54 180) (length 2.54)
- (name "Vin+" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 8.89 -2.54 180) (length 2.54)
- (name "Vin-" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -8.89 2.54 0) (length 2.54)
- (name "B+" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -8.89 -2.54 0) (length 2.54)
- (name "B-" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "chinese_modules:dc-dc" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "" (at 0 0 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)
- )
- (symbol "dc-dc_0_1"
- (rectangle (start -3.81 5.08) (end 3.81 -5.08)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "dc-dc_1_1"
- (pin power_in line (at -6.35 -2.54 0) (length 2.54)
- (name "Vin+" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -6.35 2.54 0) (length 2.54)
- (name "Vin+" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 6.35 -2.54 180) (length 2.54)
- (name "Out-" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 6.35 2.54 180) (length 2.54)
- (name "Out+" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "chinese_modules:xy-mos" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at -11.43 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "" (at 0 0 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)
- )
- (symbol "xy-mos_0_1"
- (rectangle (start -3.81 5.08) (end 3.81 -5.08)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "xy-mos_1_1"
- (pin power_in line (at -6.35 2.54 0) (length 2.54)
- (name "Vin+" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -6.35 -2.54 0) (length 2.54)
- (name "Vin-" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 6.35 2.54 180) (length 2.54)
- (name "Out+" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 6.35 -2.54 180) (length 2.54)
- (name "Out-" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -7.62 90) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 7.62 270) (length 2.54)
- (name "trig" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "dk_Encoders:PEC11R-4215F-S0024" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "S" (at -1.27 5.715 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "PEC11R-4215F-S0024" (at -1.27 -9.906 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "digikey-footprints:Rotary_Encoder_Switched_PEC11R" (at 5.08 5.08 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Datasheet" "https://www.bourns.com/docs/Product-Datasheets/PEC11R.pdf" (at 5.08 7.62 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Digi-Key_PN" "PEC11R-4215F-S0024-ND" (at 5.08 10.16 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "MPN" "PEC11R-4215F-S0024" (at 5.08 12.7 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Category" "Sensors, Transducers" (at 5.08 15.24 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Family" "Encoders" (at 5.08 17.78 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "DK_Datasheet_Link" "https://www.bourns.com/docs/Product-Datasheets/PEC11R.pdf" (at 5.08 20.32 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "DK_Detail_Page" "/product-detail/en/bourns-inc/PEC11R-4215F-S0024/PEC11R-4215F-S0024-ND/4499665" (at 5.08 22.86 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Description" "ROTARY ENCODER MECHANICAL 24PPR" (at 5.08 25.4 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Manufacturer" "Bourns Inc." (at 5.08 27.94 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Status" "Active" (at 5.08 30.48 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "ki_keywords" "PEC11R-4215F-S0024-ND PEC11R" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "ROTARY ENCODER MECHANICAL 24PPR" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "PEC11R-4215F-S0024_0_1"
- (rectangle (start -5.08 4.699) (end 2.54 -8.89)
- (stroke (width 0) (type solid))
- (fill (type background))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 2.54 2.54)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -5.08 2.54)
- (xy -3.81 2.54)
- (xy 0 3.81)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- )
- (symbol "PEC11R-4215F-S0024_1_1"
- (pin bidirectional line (at -7.62 2.54 0) (length 2.54)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 5.08 2.54 180) (length 2.54)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin unspecified line (at -7.62 -7.62 0) (length 2.54)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -7.62 0 0) (length 2.54)
- (name "CH_A" (effects (font (size 1.27 1.27))))
- (number "A" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -7.62 -5.08 0) (length 2.54)
- (name "CH_B" (effects (font (size 1.27 1.27))))
- (number "B" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -7.62 -2.54 0) (length 2.54)
- (name "COM" (effects (font (size 1.27 1.27))))
- (number "C" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (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" "power-flag" (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 solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 2.54)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0.762 1.27)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- )
- (symbol "+3.3V_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+3V3" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+BATT" (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" "+BATT" (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" "power-flag battery" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+BATT\"" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+BATT_0_1"
- (polyline
- (pts
- (xy -0.762 1.27)
- (xy 0 2.54)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 2.54)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0.762 1.27)
- )
- (stroke (width 0) (type solid))
- (fill (type none))
- )
- )
- (symbol "+BATT_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+BATT" (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" "power-flag" (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 solid))
- (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 247.65 82.55) (diameter 0) (color 0 0 0 0)
- (uuid 0532d35c-d54a-45a5-886a-b549eadbf3f4)
- )
- (junction (at 27.94 114.3) (diameter 0) (color 0 0 0 0)
- (uuid 0ffc34b5-7873-47ac-a0ad-6fb56d1bc750)
- )
- (junction (at 62.23 182.88) (diameter 0) (color 0 0 0 0)
- (uuid 23bd548e-b2b3-4757-b89c-680b4c2b5191)
- )
- (junction (at 144.78 124.46) (diameter 0) (color 0 0 0 0)
- (uuid 3306493f-5c21-4aa9-bb91-59ce29e3a0d9)
- )
- (junction (at 29.21 30.48) (diameter 0) (color 0 0 0 0)
- (uuid 4e1d28da-52cb-4597-9e03-dcb3c46b77f4)
- )
- (junction (at 260.35 82.55) (diameter 0) (color 0 0 0 0)
- (uuid 5078bf96-a4c5-4107-90b9-024a473ab0e5)
- )
- (junction (at 27.94 138.43) (diameter 0) (color 0 0 0 0)
- (uuid 63d62df2-fec8-4981-89b4-23a40c860e75)
- )
- (junction (at 143.51 58.42) (diameter 0) (color 0 0 0 0)
- (uuid 6890ed3a-005b-4db5-9e85-0963becd47b1)
- )
- (junction (at 27.94 127) (diameter 0) (color 0 0 0 0)
- (uuid 69042b50-17d9-40a3-abf2-5477fa94892a)
- )
- (junction (at 52.07 182.88) (diameter 0) (color 0 0 0 0)
- (uuid 6da3f92e-7b3f-449c-aaf1-2ca99438d981)
- )
- (junction (at 72.39 182.88) (diameter 0) (color 0 0 0 0)
- (uuid c1f7f4b8-a52d-4067-a1f9-48d024c9d5df)
- )
- (junction (at 151.13 147.32) (diameter 0) (color 0 0 0 0)
- (uuid c6844cfa-a8f0-40f4-93bd-0f963aea3d89)
- )
- (junction (at 27.94 182.88) (diameter 0) (color 0 0 0 0)
- (uuid ce1128ca-dc06-4916-aa1a-98c7eb8bf407)
- )
- (junction (at 31.75 27.94) (diameter 0) (color 0 0 0 0)
- (uuid da1e9bfe-771f-4fbc-a31a-06b73d79bf2f)
- )
-
- (wire (pts (xy 29.21 60.96) (xy 29.21 30.48))
- (stroke (width 0) (type default))
- (uuid 0298bcce-bd72-4bdf-abbc-b202152ddef6)
- )
- (wire (pts (xy 144.78 109.22) (xy 144.78 124.46))
- (stroke (width 0) (type default))
- (uuid 02be8cd2-19fb-4405-bd72-0bbe94e9d278)
- )
- (wire (pts (xy 204.47 83.82) (xy 201.93 83.82))
- (stroke (width 0) (type default))
- (uuid 0b1e1fab-5676-4474-91c5-7b344895b8f1)
- )
- (wire (pts (xy 165.1 83.82) (xy 162.56 83.82))
- (stroke (width 0) (type default))
- (uuid 0eb95f30-13f3-4f15-a009-7af7062cf2eb)
- )
- (wire (pts (xy 247.65 82.55) (xy 260.35 82.55))
- (stroke (width 0) (type default))
- (uuid 0f2d4f46-0b12-4736-bf4e-a163e2f51809)
- )
- (wire (pts (xy 260.35 82.55) (xy 264.16 82.55))
- (stroke (width 0) (type default))
- (uuid 0fb4ec2d-8cc6-4c40-91f3-ca7d4ee1ecd2)
- )
- (wire (pts (xy 54.61 38.1) (xy 54.61 78.74))
- (stroke (width 0) (type default))
- (uuid 0fd88b82-73bc-47a1-b27d-ceed806130f2)
- )
- (wire (pts (xy 30.48 127) (xy 27.94 127))
- (stroke (width 0) (type default))
- (uuid 119848d1-52f8-4e7c-9e64-5a7eff48e65f)
- )
- (wire (pts (xy 201.93 73.66) (xy 201.93 78.74))
- (stroke (width 0) (type default))
- (uuid 119bdc31-a2b6-4f1b-a106-55c94c6ca9c2)
- )
- (wire (pts (xy 52.07 149.86) (xy 74.93 149.86))
- (stroke (width 0) (type default))
- (uuid 130db2a9-e196-4c31-bf58-a24307d49a18)
- )
- (wire (pts (xy 148.59 38.1) (xy 270.51 38.1))
- (stroke (width 0) (type default))
- (uuid 1462f3cf-76cd-42c0-8cfe-814a1e325f45)
- )
- (wire (pts (xy 80.01 106.68) (xy 80.01 154.94))
- (stroke (width 0) (type default))
- (uuid 16181900-91f3-4998-ad02-f0b5a9cf7b1f)
- )
- (wire (pts (xy 187.96 43.18) (xy 187.96 73.66))
- (stroke (width 0) (type default))
- (uuid 1ab470e1-35d9-4c0b-a40f-33cd18364d70)
- )
- (wire (pts (xy 139.7 81.28) (xy 139.7 58.42))
- (stroke (width 0) (type default))
- (uuid 1ae91a0a-2815-4ba0-a75e-5dd75b6a0376)
- )
- (wire (pts (xy 157.48 124.46) (xy 160.02 124.46))
- (stroke (width 0) (type default))
- (uuid 1cadf9d5-f1fb-4d54-95fc-f6ad22b610bd)
- )
- (wire (pts (xy 27.94 182.88) (xy 27.94 185.42))
- (stroke (width 0) (type default))
- (uuid 20304bb0-8e73-4136-9301-3e2aace6466d)
- )
- (wire (pts (xy 40.64 138.43) (xy 67.31 138.43))
- (stroke (width 0) (type default))
- (uuid 2128ba13-c7c6-47a5-ab27-56f70e322581)
- )
- (wire (pts (xy 43.18 101.6) (xy 40.64 101.6))
- (stroke (width 0) (type default))
- (uuid 28c1d093-b3ee-4c2b-86e3-d66550fd6d86)
- )
- (wire (pts (xy 66.04 60.96) (xy 78.74 60.96))
- (stroke (width 0) (type default))
- (uuid 29295c7c-132d-402e-af24-469a01d6155d)
- )
- (wire (pts (xy 67.31 138.43) (xy 67.31 111.76))
- (stroke (width 0) (type default))
- (uuid 29c3a7cd-3aec-4780-af1b-c4f77b270f14)
- )
- (wire (pts (xy 153.67 43.18) (xy 187.96 43.18))
- (stroke (width 0) (type default))
- (uuid 2a2b7943-ba73-4eec-9045-d64e67436a5a)
- )
- (wire (pts (xy 57.15 76.2) (xy 57.15 40.64))
- (stroke (width 0) (type default))
- (uuid 34b57771-738c-4259-acb3-ebe1b780162e)
- )
- (wire (pts (xy 81.28 68.58) (xy 90.17 68.58))
- (stroke (width 0) (type default))
- (uuid 35f7d663-5910-4ebf-a0e1-08f7034d6023)
- )
- (wire (pts (xy 30.48 101.6) (xy 27.94 101.6))
- (stroke (width 0) (type default))
- (uuid 37f06944-a369-4bf2-8dbe-a52b0e281c1e)
- )
- (wire (pts (xy 227.33 40.64) (xy 227.33 73.66))
- (stroke (width 0) (type default))
- (uuid 3af32720-ae9b-4abb-af9e-a5ce4de1f914)
- )
- (wire (pts (xy 62.23 152.4) (xy 62.23 161.29))
- (stroke (width 0) (type default))
- (uuid 41ae13f3-5e83-4258-94eb-0fc4a4be7f86)
- )
- (wire (pts (xy 148.59 86.36) (xy 148.59 38.1))
- (stroke (width 0) (type default))
- (uuid 426c7c27-c589-4b97-855e-ebc0f8bb74ee)
- )
- (wire (pts (xy 72.39 168.91) (xy 72.39 172.72))
- (stroke (width 0) (type default))
- (uuid 479decac-794b-4181-a1a2-9eb46ffec100)
- )
- (wire (pts (xy 157.48 129.54) (xy 161.29 129.54))
- (stroke (width 0) (type default))
- (uuid 4a4badf9-4fbb-4cb0-986c-9b119f13d6db)
- )
- (wire (pts (xy 153.67 93.98) (xy 153.67 43.18))
- (stroke (width 0) (type default))
- (uuid 4bd0302c-6d88-47d3-81fd-6db7712b6c3a)
- )
- (wire (pts (xy 162.56 127) (xy 162.56 111.76))
- (stroke (width 0) (type default))
- (uuid 4be4d549-dfbb-407c-bc44-136c145985d2)
- )
- (wire (pts (xy 78.74 60.96) (xy 78.74 57.15))
- (stroke (width 0) (type default))
- (uuid 4be8e6fc-4945-402b-950b-ec584df63d14)
- )
- (wire (pts (xy 151.13 88.9) (xy 125.73 88.9))
- (stroke (width 0) (type default))
- (uuid 4befa359-e1bf-4f14-9ddb-02906566b33d)
- )
- (wire (pts (xy 177.8 78.74) (xy 181.61 78.74))
- (stroke (width 0) (type default))
- (uuid 4cfaac48-4319-46c8-8d83-216240143289)
- )
- (wire (pts (xy 52.07 182.88) (xy 62.23 182.88))
- (stroke (width 0) (type default))
- (uuid 4cfd2875-f4e6-4e77-bbf6-0b178fe4b908)
- )
- (wire (pts (xy 82.55 168.91) (xy 82.55 172.72))
- (stroke (width 0) (type default))
- (uuid 4df5107c-b415-436a-8735-fa26fc2fe81b)
- )
- (wire (pts (xy 217.17 83.82) (xy 220.98 83.82))
- (stroke (width 0) (type default))
- (uuid 4e76d5e4-5abb-48fb-b612-a4c823dd01d7)
- )
- (wire (pts (xy 260.35 77.47) (xy 264.16 77.47))
- (stroke (width 0) (type default))
- (uuid 4f164e99-4f10-4661-80d9-067f36e3a236)
- )
- (wire (pts (xy 27.94 101.6) (xy 27.94 114.3))
- (stroke (width 0) (type default))
- (uuid 4fcfbe95-3f69-4434-a32c-9720eaaa806f)
- )
- (wire (pts (xy 245.11 77.47) (xy 247.65 77.47))
- (stroke (width 0) (type default))
- (uuid 5026050e-095c-4688-a6ba-b1e560c846c3)
- )
- (wire (pts (xy 165.1 106.68) (xy 165.1 132.08))
- (stroke (width 0) (type default))
- (uuid 508a8dbb-7b04-4160-8869-2095764fea25)
- )
- (wire (pts (xy 74.93 99.06) (xy 90.17 99.06))
- (stroke (width 0) (type default))
- (uuid 5978da11-6cbb-4a93-8369-ed52b5fdebcd)
- )
- (wire (pts (xy 151.13 40.64) (xy 151.13 88.9))
- (stroke (width 0) (type default))
- (uuid 5c0dff20-656a-4191-8bf9-5829bae90bb6)
- )
- (wire (pts (xy 52.07 182.88) (xy 52.07 180.34))
- (stroke (width 0) (type default))
- (uuid 5fb0c655-39af-4ce4-a4f6-abd4aaabc388)
- )
- (wire (pts (xy 82.55 182.88) (xy 82.55 180.34))
- (stroke (width 0) (type default))
- (uuid 6452835d-03a2-4415-83f4-e29d85ab406e)
- )
- (wire (pts (xy 125.73 81.28) (xy 139.7 81.28))
- (stroke (width 0) (type default))
- (uuid 65e768eb-dc31-4fce-a59c-fc0d0ecbcbe2)
- )
- (wire (pts (xy 62.23 168.91) (xy 62.23 172.72))
- (stroke (width 0) (type default))
- (uuid 6638ccd4-5e3a-429d-a800-399614bc7a2f)
- )
- (wire (pts (xy 45.72 30.48) (xy 45.72 36.83))
- (stroke (width 0) (type default))
- (uuid 69465f39-df03-4585-aa04-b8ea8107009f)
- )
- (wire (pts (xy 125.73 76.2) (xy 135.89 76.2))
- (stroke (width 0) (type default))
- (uuid 6ca708ec-20a6-49a3-ba37-265ca57df3ed)
- )
- (wire (pts (xy 27.94 114.3) (xy 30.48 114.3))
- (stroke (width 0) (type default))
- (uuid 71f92fb0-e9d8-4d0e-970e-e11a1021ca76)
- )
- (wire (pts (xy 27.94 114.3) (xy 27.94 127))
- (stroke (width 0) (type default))
- (uuid 779d292f-1306-4301-a9e6-af56b25c071f)
- )
- (wire (pts (xy 43.18 91.44) (xy 90.17 91.44))
- (stroke (width 0) (type default))
- (uuid 77c2b2c0-fd2b-4804-832b-aa68dd361891)
- )
- (wire (pts (xy 40.64 127) (xy 63.5 127))
- (stroke (width 0) (type default))
- (uuid 7c5d2dc4-9a01-4d42-ae9d-9c2a3ec3b463)
- )
- (wire (pts (xy 177.8 83.82) (xy 181.61 83.82))
- (stroke (width 0) (type default))
- (uuid 7daf281a-3c45-4660-8475-b857d62c732e)
- )
- (wire (pts (xy 129.54 68.58) (xy 129.54 58.42))
- (stroke (width 0) (type default))
- (uuid 7dddd38a-d451-4963-b446-be47020730a9)
- )
- (wire (pts (xy 72.39 154.94) (xy 80.01 154.94))
- (stroke (width 0) (type default))
- (uuid 82a64d70-871c-40a7-aea8-518a58f72eea)
- )
- (wire (pts (xy 83.82 66.04) (xy 90.17 66.04))
- (stroke (width 0) (type default))
- (uuid 8349b1b1-f9b9-4b73-8768-4409ac6a7ba0)
- )
- (wire (pts (xy 125.73 106.68) (xy 165.1 106.68))
- (stroke (width 0) (type default))
- (uuid 839577a9-517e-4d29-b306-fb0ee62bff6b)
- )
- (wire (pts (xy 90.17 104.14) (xy 63.5 104.14))
- (stroke (width 0) (type default))
- (uuid 8543476c-543e-4866-9d5e-87afdeffb181)
- )
- (wire (pts (xy 45.72 27.94) (xy 45.72 24.13))
- (stroke (width 0) (type default))
- (uuid 861812c5-99f1-48a1-a4d7-32ab586cabde)
- )
- (wire (pts (xy 77.47 152.4) (xy 62.23 152.4))
- (stroke (width 0) (type default))
- (uuid 865ab263-fea8-4df5-b4b3-5160bca029be)
- )
- (wire (pts (xy 160.02 114.3) (xy 125.73 114.3))
- (stroke (width 0) (type default))
- (uuid 8720fe43-7311-4301-8f99-546b7746a8de)
- )
- (wire (pts (xy 245.11 82.55) (xy 245.11 88.9))
- (stroke (width 0) (type default))
- (uuid 87ce4057-706e-4fb2-a4bb-91848197baf7)
- )
- (wire (pts (xy 161.29 129.54) (xy 161.29 147.32))
- (stroke (width 0) (type default))
- (uuid 89958150-fc2c-40c2-8e36-7e0a3fc8a704)
- )
- (wire (pts (xy 41.91 27.94) (xy 45.72 27.94))
- (stroke (width 0) (type default))
- (uuid 8a3e2d56-2587-4b00-9a29-6ecbc0a23c72)
- )
- (wire (pts (xy 26.67 30.48) (xy 29.21 30.48))
- (stroke (width 0) (type default))
- (uuid 8f442320-6572-47a0-a33c-9dfa7c41932d)
- )
- (wire (pts (xy 143.51 58.42) (xy 143.51 60.96))
- (stroke (width 0) (type default))
- (uuid 8f4482c5-4751-4c48-9cfc-6325ff4fd4d0)
- )
- (wire (pts (xy 67.31 111.76) (xy 90.17 111.76))
- (stroke (width 0) (type default))
- (uuid 93f28c77-80ff-4fa4-9399-22f363e654b3)
- )
- (wire (pts (xy 72.39 182.88) (xy 72.39 180.34))
- (stroke (width 0) (type default))
- (uuid 99b78b2b-871e-4dcb-a4e2-9d0a637dac6d)
- )
- (wire (pts (xy 80.01 106.68) (xy 90.17 106.68))
- (stroke (width 0) (type default))
- (uuid 9a302ca7-bde0-48c6-815b-6b1b07764e1e)
- )
- (wire (pts (xy 135.89 76.2) (xy 135.89 68.58))
- (stroke (width 0) (type default))
- (uuid 9b5d9afe-e12f-4635-a35e-c3e984cb918b)
- )
- (wire (pts (xy 74.93 149.86) (xy 74.93 99.06))
- (stroke (width 0) (type default))
- (uuid 9eee6d55-2724-43e2-bc6c-38b048dcf711)
- )
- (wire (pts (xy 29.21 60.96) (xy 31.75 60.96))
- (stroke (width 0) (type default))
- (uuid a2d859fc-51fc-41d9-bb2a-a8de33975605)
- )
- (wire (pts (xy 245.11 82.55) (xy 247.65 82.55))
- (stroke (width 0) (type default))
- (uuid a618424d-75af-4b8f-a555-1e2449eb820d)
- )
- (wire (pts (xy 143.51 55.88) (xy 143.51 58.42))
- (stroke (width 0) (type default))
- (uuid b04fba74-92c7-418f-a275-542bca4030cd)
- )
- (wire (pts (xy 52.07 161.29) (xy 52.07 149.86))
- (stroke (width 0) (type default))
- (uuid b10f71dc-c422-48f0-8faf-a993b20bf6ae)
- )
- (wire (pts (xy 144.78 124.46) (xy 144.78 147.32))
- (stroke (width 0) (type default))
- (uuid b4341e0f-2a64-478e-959c-5e0849520a7f)
- )
- (wire (pts (xy 125.73 68.58) (xy 129.54 68.58))
- (stroke (width 0) (type default))
- (uuid b4d9aedc-1d4a-4373-abcb-2ff3263ec6fc)
- )
- (wire (pts (xy 270.51 38.1) (xy 270.51 72.39))
- (stroke (width 0) (type default))
- (uuid b5ccea67-5323-4ae2-85e9-e1bb175416da)
- )
- (wire (pts (xy 139.7 58.42) (xy 143.51 58.42))
- (stroke (width 0) (type default))
- (uuid b5cff7e4-0635-4e8d-8aed-3375c0ef5237)
- )
- (wire (pts (xy 90.17 114.3) (xy 82.55 114.3))
- (stroke (width 0) (type default))
- (uuid b6708da1-7d59-4ecd-82e4-bd26a9cc3d97)
- )
- (wire (pts (xy 27.94 138.43) (xy 27.94 182.88))
- (stroke (width 0) (type default))
- (uuid b7762818-1382-4016-8d10-3e246acb696e)
- )
- (wire (pts (xy 217.17 78.74) (xy 220.98 78.74))
- (stroke (width 0) (type default))
- (uuid b894be67-f74d-47e7-9686-def76c60ee67)
- )
- (wire (pts (xy 165.1 132.08) (xy 157.48 132.08))
- (stroke (width 0) (type default))
- (uuid b8993c50-b3c7-440c-9055-33c2fe7d0400)
- )
- (wire (pts (xy 60.96 93.98) (xy 90.17 93.98))
- (stroke (width 0) (type default))
- (uuid b8cd8070-6df0-45c7-9b9c-1bcc29a2b871)
- )
- (wire (pts (xy 227.33 40.64) (xy 151.13 40.64))
- (stroke (width 0) (type default))
- (uuid b92cd23e-7173-44ae-bf16-fc30012d0a25)
- )
- (wire (pts (xy 40.64 114.3) (xy 60.96 114.3))
- (stroke (width 0) (type default))
- (uuid b93d1d35-97f2-432b-8f4e-ddf2572e7e9f)
- )
- (wire (pts (xy 43.18 91.44) (xy 43.18 101.6))
- (stroke (width 0) (type default))
- (uuid ba7d1279-6585-4a49-bc84-7958a2150ffd)
- )
- (wire (pts (xy 162.56 83.82) (xy 162.56 90.17))
- (stroke (width 0) (type default))
- (uuid bcd0f28a-1b17-45b7-b854-3011dbcfd77c)
- )
- (wire (pts (xy 72.39 182.88) (xy 82.55 182.88))
- (stroke (width 0) (type default))
- (uuid bd4b000e-6bd4-4190-862e-6f3e0be77f33)
- )
- (wire (pts (xy 76.2 57.15) (xy 76.2 96.52))
- (stroke (width 0) (type default))
- (uuid be71c5a3-7f53-4acb-bab5-24aad7842101)
- )
- (wire (pts (xy 201.93 78.74) (xy 204.47 78.74))
- (stroke (width 0) (type default))
- (uuid c6dca0e6-5f0b-4ea4-a3ba-ade84294a0a3)
- )
- (wire (pts (xy 77.47 101.6) (xy 77.47 152.4))
- (stroke (width 0) (type default))
- (uuid c7352df8-e12f-42ab-b72c-a5ef8d4bc332)
- )
- (wire (pts (xy 29.21 30.48) (xy 45.72 30.48))
- (stroke (width 0) (type default))
- (uuid c895ec26-ec70-44ed-838e-2e826d8e975f)
- )
- (wire (pts (xy 66.04 57.15) (xy 66.04 60.96))
- (stroke (width 0) (type default))
- (uuid c96f8ff8-8222-420c-a74d-f6bc5a3c9502)
- )
- (wire (pts (xy 60.96 114.3) (xy 60.96 93.98))
- (stroke (width 0) (type default))
- (uuid ca43ed88-f2f0-4a85-bc83-f044ac77135b)
- )
- (wire (pts (xy 82.55 114.3) (xy 82.55 161.29))
- (stroke (width 0) (type default))
- (uuid cb53fef6-23d3-4bd5-81bc-36901567bd74)
- )
- (wire (pts (xy 27.94 138.43) (xy 30.48 138.43))
- (stroke (width 0) (type default))
- (uuid ce3ef495-db74-4ffb-b3f8-67de4943fd73)
- )
- (wire (pts (xy 72.39 161.29) (xy 72.39 154.94))
- (stroke (width 0) (type default))
- (uuid cf5fde4d-9fbc-4983-aeab-da82a5d2e67c)
- )
- (wire (pts (xy 27.94 182.88) (xy 52.07 182.88))
- (stroke (width 0) (type default))
- (uuid d06d957e-dc5c-42e0-8ba0-ec4224b12d52)
- )
- (wire (pts (xy 76.2 96.52) (xy 90.17 96.52))
- (stroke (width 0) (type default))
- (uuid d7e0b817-e0ce-4b65-8303-412ccd5830b5)
- )
- (wire (pts (xy 162.56 73.66) (xy 162.56 78.74))
- (stroke (width 0) (type default))
- (uuid d81c8346-a738-4f54-89ba-6bc43d913396)
- )
- (wire (pts (xy 160.02 124.46) (xy 160.02 114.3))
- (stroke (width 0) (type default))
- (uuid d907a16d-17b7-4283-a55f-296dabe0e2b7)
- )
- (wire (pts (xy 162.56 111.76) (xy 125.73 111.76))
- (stroke (width 0) (type default))
- (uuid d9e65762-69ed-43b7-ac78-3db16d09dc2a)
- )
- (wire (pts (xy 143.51 68.58) (xy 143.51 71.12))
- (stroke (width 0) (type default))
- (uuid dee665e0-2d2e-42a9-a2b0-d88eac014d81)
- )
- (wire (pts (xy 59.69 73.66) (xy 59.69 43.18))
- (stroke (width 0) (type default))
- (uuid df8f4860-da5d-45b7-8952-2acfad6abb5e)
- )
- (wire (pts (xy 157.48 127) (xy 162.56 127))
- (stroke (width 0) (type default))
- (uuid dfcd4520-133c-4413-85b2-6d3fca79b77f)
- )
- (wire (pts (xy 31.75 27.94) (xy 31.75 55.88))
- (stroke (width 0) (type default))
- (uuid e19d4bff-ae12-4ec7-8b8b-1a1c4e0f8309)
- )
- (wire (pts (xy 162.56 78.74) (xy 165.1 78.74))
- (stroke (width 0) (type default))
- (uuid e29b887a-a071-4e52-a9ae-ddf79d3ae708)
- )
- (wire (pts (xy 52.07 168.91) (xy 52.07 172.72))
- (stroke (width 0) (type default))
- (uuid e33669ec-d01f-415a-bfaa-531dc5bf9ca5)
- )
- (wire (pts (xy 27.94 127) (xy 27.94 138.43))
- (stroke (width 0) (type default))
- (uuid e4f02ae6-1cd4-46fb-a69f-f91ce9597b42)
- )
- (wire (pts (xy 62.23 182.88) (xy 62.23 180.34))
- (stroke (width 0) (type default))
- (uuid e4f12316-2e3b-4157-a5c3-a15156a844b8)
- )
- (wire (pts (xy 81.28 57.15) (xy 81.28 68.58))
- (stroke (width 0) (type default))
- (uuid e6d052b6-14d8-46ad-8484-0f1e36af1563)
- )
- (wire (pts (xy 63.5 104.14) (xy 63.5 127))
- (stroke (width 0) (type default))
- (uuid e895da20-9e7e-4572-a780-448dffd9df5d)
- )
- (wire (pts (xy 201.93 83.82) (xy 201.93 90.17))
- (stroke (width 0) (type default))
- (uuid eaae3dcd-2b4c-41ee-a974-1299f03fb1bb)
- )
- (wire (pts (xy 161.29 147.32) (xy 151.13 147.32))
- (stroke (width 0) (type default))
- (uuid ede3c101-2638-4ce6-bf23-3fa05d52ce44)
- )
- (wire (pts (xy 125.73 93.98) (xy 153.67 93.98))
- (stroke (width 0) (type default))
- (uuid ee8a1874-bf30-4801-911f-bcabe1797fa2)
- )
- (wire (pts (xy 62.23 182.88) (xy 72.39 182.88))
- (stroke (width 0) (type default))
- (uuid f1c4ace8-c0b9-4f68-aa9b-774c8293cd0d)
- )
- (wire (pts (xy 151.13 147.32) (xy 144.78 147.32))
- (stroke (width 0) (type default))
- (uuid f31ffa5e-38cd-41ac-bce5-c8ff6e9f2d6d)
- )
- (wire (pts (xy 125.73 109.22) (xy 144.78 109.22))
- (stroke (width 0) (type default))
- (uuid f35b3c24-7f5b-46f9-9221-062d6eb7369a)
- )
- (wire (pts (xy 125.73 86.36) (xy 148.59 86.36))
- (stroke (width 0) (type default))
- (uuid f3ddedd5-3286-4c7f-a88e-eb9719212294)
- )
- (wire (pts (xy 77.47 101.6) (xy 90.17 101.6))
- (stroke (width 0) (type default))
- (uuid f4cc5a6f-74bf-450f-8e80-3e2cc156a96c)
- )
- (wire (pts (xy 26.67 27.94) (xy 31.75 27.94))
- (stroke (width 0) (type default))
- (uuid f5da9026-3eee-416b-828d-4ea7e5552dc2)
- )
- (wire (pts (xy 83.82 57.15) (xy 83.82 66.04))
- (stroke (width 0) (type default))
- (uuid fc5c29cc-3de2-4c41-ade9-c52ed94985d1)
- )
- (wire (pts (xy 245.11 72.39) (xy 245.11 77.47))
- (stroke (width 0) (type default))
- (uuid fd028e89-4944-4c27-abd8-b451d1e862bf)
- )
- (wire (pts (xy 151.13 147.32) (xy 151.13 149.86))
- (stroke (width 0) (type default))
- (uuid fd136a68-1fb1-4cd0-89a6-875a225f18f9)
- )
-
- (symbol (lib_id "power:GND") (at 201.93 90.17 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 0ea73ea9-9c89-4067-bea7-ea7803560552)
- (property "Reference" "#PWR09" (at 201.93 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 201.93 95.25 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 201.93 90.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 201.93 90.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2461f0ba-e1c2-4516-83c0-a590d810fd0f))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR09") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+BATT") (at 45.72 24.13 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 0f79b718-efb3-45e3-8919-8bd370cde9a0)
- (property "Reference" "#PWR06" (at 45.72 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+BATT" (at 45.72 19.05 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 45.72 24.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 45.72 24.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5e13b73e-cae3-48f3-9dca-5da2a517dde8))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR06") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Device:LED") (at 72.39 165.1 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 1becbc74-70ce-4c59-b986-469421a7b0cd)
- (property "Reference" "D3" (at 76.2 166.0652 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "LED3" (at 76.2 168.6052 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "LED_THT:LED_D5.0mm" (at 72.39 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 72.39 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c1e82c60-6a7b-4bc7-987a-965fc57cc76c))
- (pin "2" (uuid 3eb6d294-ff1b-48e3-b297-2d77432b219e))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "D3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+BATT") (at 245.11 72.39 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 2874ea20-cde3-4cbd-a646-dc4ab1cbc281)
- (property "Reference" "#PWR04" (at 245.11 76.2 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+BATT" (at 245.11 67.31 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 245.11 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 245.11 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3cd06233-1271-4863-9c86-559fadb01fd6))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR04") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Switch:SW_DPST_x2") (at 36.83 27.94 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 28951cf1-c440-45c2-9950-66244612f9f8)
- (property "Reference" "SW5" (at 36.83 22.86 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "POWER_SW" (at 36.83 25.4 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 36.83 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 36.83 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 95918f6a-ed27-4831-8422-617f0a73e5b3))
- (pin "2" (uuid ecaa19b7-37eb-4e7d-b81d-ed543f5c99e1))
- (pin "3" (uuid 15166d96-f97d-43cb-b64e-fe45cf79ba5b))
- (pin "4" (uuid 89b5acaf-9a82-4a46-8af8-0ae2ec07b4b6))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "SW5") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_name "R_1") (lib_id "Device:R") (at 143.51 64.77 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 291bfd14-d578-42ac-97de-853c20eb5982)
- (property "Reference" "R6" (at 146.05 63.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "R" (at 146.05 66.04 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (at 141.732 64.77 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 143.51 64.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e25eb58d-1d0a-4f33-803f-6f60fe6ae0fd))
- (pin "2" (uuid 83110e1b-7909-43de-acee-e9c94d0fef98))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "R6") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "chinese_modules:xy-mos") (at 187.96 81.28 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 2b57a300-3f72-4e49-b5fc-c2959d94a74f)
- (property "Reference" "U8" (at 189.9159 74.93 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "~" (at 187.96 81.28 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "chinese_modules:xy-mos" (at 187.96 81.28 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 187.96 81.28 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5f924406-fb25-461f-8967-344a2e19ec2a))
- (pin "2" (uuid 71c54fdd-a35a-4d4e-be40-fd928fa56864))
- (pin "3" (uuid 803633d6-1fe5-4787-8aa5-480883cfb380))
- (pin "4" (uuid ac538778-8f8a-4f1b-88f7-8a6968ec0402))
- (pin "5" (uuid 8cd52fa0-3d95-4cf1-8acc-b8de1e5fcdaa))
- (pin "6" (uuid 510a4757-2bb4-435f-9b57-6e12f80329eb))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "U8") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Device:R") (at 82.55 176.53 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 3bb11ca3-2a02-4615-8dab-229ed0c84f8d)
- (property "Reference" "R4" (at 85.09 175.895 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "R" (at 85.09 178.435 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical" (at 80.772 176.53 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 82.55 176.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1595aea0-3b4f-47b2-94b7-7bbb4d833bac))
- (pin "2" (uuid 674f03bf-2631-4bb4-9fc8-6d4be95eb7cc))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "R4") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 135.89 68.58 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 437a39eb-9fca-4e23-ab6b-35086cb69dab)
- (property "Reference" "#PWR07" (at 135.89 72.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 135.89 64.77 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 135.89 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 135.89 68.58 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 04eb011e-f4fe-4594-a3b1-3c6db64183a4))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR07") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 143.51 71.12 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 5790fbc5-1328-46eb-8b1d-87550a88c649)
- (property "Reference" "#PWR011" (at 143.51 77.47 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 143.51 76.2 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 143.51 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 143.51 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ea59a1b5-90fc-407d-a88e-c9f2dbbd5f81))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR011") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+BATT") (at 143.51 48.26 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 582a6f70-fa82-4439-85e0-4f8d11af2afe)
- (property "Reference" "#PWR05" (at 143.51 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+BATT" (at 143.51 43.18 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 143.51 48.26 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 143.51 48.26 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d063f6a4-e49a-43b5-9b73-5876ff2def11))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR05") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Device:LED") (at 82.55 165.1 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5bb5f30d-381b-4649-87ed-80378fb8b3d1)
- (property "Reference" "D4" (at 86.36 166.0652 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "LED4" (at 86.36 168.6052 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "LED_THT:LED_D5.0mm" (at 82.55 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 82.55 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ebe0e885-5588-4ea7-b1a2-8ffc54934924))
- (pin "2" (uuid be3c64d2-5fde-45e2-94b8-860c3165e1c5))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "D4") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "chinese_modules:charger") (at 40.64 58.42 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5ebd9238-18a6-49e6-8d94-ee3fa12ffb8d)
- (property "Reference" "U2" (at 40.64 52.07 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "~" (at 40.64 58.42 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "chinese_modules:charger" (at 40.64 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 40.64 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a5d4302d-9567-4c5e-acd4-57060fd60551))
- (pin "2" (uuid 8ba5684e-04dd-4fe4-b623-4233f436670e))
- (pin "3" (uuid bb4894d4-455d-4a05-a956-aa0ba49c895f))
- (pin "4" (uuid 015797c3-40c8-4276-a273-4c2efc088cbc))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "U2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "chinese_modules:dc-dc") (at 210.82 81.28 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5ee6339b-e8b6-45cb-991c-d17a454d7d38)
- (property "Reference" "U5" (at 210.82 74.93 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "~" (at 210.82 81.28 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "chinese_modules:dc-dc module" (at 210.82 81.28 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 210.82 81.28 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c9dde62a-dd2e-4a7c-97da-730535ee7185))
- (pin "2" (uuid 6c90ac1a-d410-41ee-aa6d-31fe0604258a))
- (pin "3" (uuid b654bbf4-ba01-4eff-8605-2f96639036ec))
- (pin "4" (uuid 521bca73-422e-4ce7-a06f-3273b3e1bf5b))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "U5") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 21.59 27.94 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 6d607a13-bfd7-435c-b1e9-e96893dcd052)
- (property "Reference" "J1" (at 21.59 35.56 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "BATTERY" (at 21.59 33.02 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "TerminalBlock:TerminalBlock_bornier-2_P5.08mm" (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)
- )
- (pin "1" (uuid 1343440d-01b2-4a64-9eaa-f4e2de67c8bd))
- (pin "2" (uuid 83e343e3-4a0f-427e-b978-29a79a2f4616))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "J1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Switch:SW_Push") (at 35.56 101.6 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 727eac62-67d5-4200-ac8d-4c8ca03a5d6f)
- (property "Reference" "SW1" (at 35.56 95.25 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "BUTTON1" (at 35.56 97.79 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 35.56 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 35.56 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 59b31214-00bc-4a58-9414-2afa6a5e6aa5))
- (pin "2" (uuid 35b50add-0768-4e89-86c8-6673b06c24ec))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "SW1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Switch:SW_Push") (at 35.56 114.3 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 74100909-2805-4177-9ddc-10e31ed04d9c)
- (property "Reference" "SW2" (at 35.56 107.95 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "BUTTON2" (at 35.56 110.49 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 35.56 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 35.56 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 25c55610-cf80-4b9c-8e31-49890adfc748))
- (pin "2" (uuid c506e68d-93f4-4e52-b674-8ca6ae840aef))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "SW2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "chinese_modules:xy-mos") (at 227.33 81.28 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 7a8cc745-b78a-401b-af89-5ddba94d3f2d)
- (property "Reference" "U6" (at 229.2859 74.93 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "~" (at 227.33 81.28 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "chinese_modules:xy-mos" (at 227.33 81.28 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 227.33 81.28 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 51e45cdc-78be-4e2a-a8ba-4b3ff269ad52))
- (pin "2" (uuid 97e3dca4-bed5-43fe-8e15-dc0201ca80a4))
- (pin "3" (uuid 996a0861-d4c2-4ed8-80a8-ca6e5a26460f))
- (pin "4" (uuid d4a87fc5-5b53-4e30-905e-c70e1f038356))
- (pin "5" (uuid da385ed8-fd6b-44d3-8d99-549b715d8e42))
- (pin "6" (uuid e0f99754-92b2-4218-a1df-e435a44cd127))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "U6") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Switch:SW_Push") (at 35.56 127 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 81306a07-f5a0-49fc-8561-0919cfe16799)
- (property "Reference" "SW3" (at 35.56 120.65 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "BUTTON3" (at 35.56 123.19 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 35.56 121.92 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 35.56 121.92 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4f4b8260-b89c-43eb-940f-12bf7fcb5cb6))
- (pin "2" (uuid b0816c83-9133-4c20-9852-17e5f8285cb0))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "SW3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_name "GND_1") (lib_id "power:GND") (at 245.11 88.9 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 94e4abe8-3ff0-4fda-87cf-7ac9a69c783b)
- (property "Reference" "#PWR014" (at 245.11 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 245.11 93.98 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 245.11 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 245.11 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 85b81bd4-8e5d-48b6-b322-6cb1cf463946))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR014") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+BATT") (at 129.54 58.42 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 9aad85f4-69cb-4cff-9eeb-757904e4d093)
- (property "Reference" "#PWR03" (at 129.54 62.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+BATT" (at 129.54 53.34 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 129.54 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 129.54 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 72e07d73-ddf9-4bba-a1b6-abbf88e6d7ca))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR03") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Device:R") (at 62.23 176.53 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid a1074ff5-a42b-4437-8c70-20694ada8fd8)
- (property "Reference" "R2" (at 64.77 175.895 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "R" (at 64.77 178.435 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical" (at 60.452 176.53 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 62.23 176.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ba0b1a94-5de8-4683-9b30-fa91c6009094))
- (pin "2" (uuid 5789935d-0a58-4773-970a-444fb84b9898))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "R2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "chinese_modules:dc-dc") (at 254 80.01 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid a4deb734-c35c-4975-9535-4e0bbaa6eeaf)
- (property "Reference" "U3" (at 254 73.66 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "~" (at 254 80.01 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "chinese_modules:dc-dc module" (at 254 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 254 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3ef22c63-32af-45fb-82d7-0d273d01024d))
- (pin "2" (uuid 7431b858-ef68-4679-b65f-76c5d4dab0be))
- (pin "3" (uuid 92f191f6-d53e-4dcf-9765-8712b2846c77))
- (pin "4" (uuid e2cb83f5-9981-4226-a9a9-b2b2a1bbac3f))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "U3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "chinese_modules:xy-mos") (at 270.51 80.01 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid a613c9fc-fbce-434e-935c-7629469d1a12)
- (property "Reference" "U4" (at 272.4659 73.66 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "~" (at 270.51 80.01 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "chinese_modules:xy-mos" (at 270.51 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 270.51 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 376660f0-d315-4500-818b-9e295ff15fe0))
- (pin "2" (uuid 21a9b2db-a31b-4e6e-b091-c6b8aeea222e))
- (pin "3" (uuid 3db81a8c-78f8-4fca-bcb6-221ab7ce4c4d))
- (pin "4" (uuid f1d5a24d-ea6c-48ad-b0dd-aa7538c9e747))
- (pin "5" (uuid a02da0a2-e44b-4f45-b887-5b5fb9253116))
- (pin "6" (uuid 0e22fcb8-927a-4147-936f-5bfe18af0d2c))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "U4") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 151.13 149.86 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid ae9ca78d-0375-45f4-8e40-425ce5cd3d04)
- (property "Reference" "#PWR015" (at 151.13 156.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 151.13 154.94 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 151.13 149.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 151.13 149.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6ca16969-2375-4904-ada4-355202605239))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR015") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 27.94 185.42 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid af81895e-437d-43c8-a780-1736cb412e55)
- (property "Reference" "#PWR01" (at 27.94 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 27.94 190.5 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 27.94 185.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 27.94 185.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3209b29f-1b67-441f-bb5f-ac64ff0857cf))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR01") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Device:R") (at 52.07 176.53 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid b4eb0df1-ddd8-4dd6-8c95-d2c9a327d547)
- (property "Reference" "R1" (at 54.61 175.895 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "R" (at 54.61 178.435 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical" (at 50.292 176.53 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 52.07 176.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9fcadd8b-37e6-44e4-a795-f1096689ab0f))
- (pin "2" (uuid 1622b567-e958-43dc-9f30-8e9e086ed729))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "R1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Device:LED") (at 62.23 165.1 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid b7340417-61ea-400f-88b5-3064de8c1dff)
- (property "Reference" "D2" (at 66.04 166.0652 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "LED2" (at 66.04 168.6052 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "LED_THT:LED_D5.0mm" (at 62.23 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 62.23 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid edb4a6b0-fbfb-4f93-92a2-c50148077628))
- (pin "2" (uuid 3bf102ab-3439-4d7d-b4fb-68100a3095e0))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "D2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 45.72 36.83 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid b8daaf2f-d6cd-47bd-8f44-742fdfc75b6a)
- (property "Reference" "#PWR02" (at 45.72 43.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 45.72 41.91 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 45.72 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 45.72 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ea6c6e52-992a-46ef-9a9b-a127c6b98274))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR02") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+3.3V") (at 66.04 57.15 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid ca91c08c-34e7-4e34-b9d6-aaad09ece6c3)
- (property "Reference" "#PWR012" (at 66.04 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+3.3V" (at 66.04 53.34 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 66.04 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 66.04 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 50aced68-5254-4326-a59e-11b9084459fe))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR012") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "dk_Encoders:PEC11R-4215F-S0024") (at 149.86 127 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid d055ceb9-d809-4631-92c1-18c54afd2dcd)
- (property "Reference" "S1" (at 151.13 118.11 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "ENCODER" (at 151.13 120.65 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "digikey-footprints:Rotary_Encoder_Switched_PEC11R" (at 144.78 121.92 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Datasheet" "https://www.bourns.com/docs/Product-Datasheets/PEC11R.pdf" (at 144.78 119.38 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Digi-Key_PN" "PEC11R-4215F-S0024-ND" (at 144.78 116.84 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "MPN" "PEC11R-4215F-S0024" (at 144.78 114.3 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Category" "Sensors, Transducers" (at 144.78 111.76 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Family" "Encoders" (at 144.78 109.22 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "DK_Datasheet_Link" "https://www.bourns.com/docs/Product-Datasheets/PEC11R.pdf" (at 144.78 106.68 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "DK_Detail_Page" "/product-detail/en/bourns-inc/PEC11R-4215F-S0024/PEC11R-4215F-S0024-ND/4499665" (at 144.78 104.14 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Description" "ROTARY ENCODER MECHANICAL 24PPR" (at 144.78 101.6 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Manufacturer" "Bourns Inc." (at 144.78 99.06 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Status" "Active" (at 144.78 96.52 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (pin "1" (uuid feb15aa2-52f3-4a8e-8615-116c8b65987d))
- (pin "2" (uuid 063ed5bc-c129-4f79-9206-6fda5af416fa))
- (pin "3" (uuid 19b3e3fa-e785-48f1-9514-08ce3963e474))
- (pin "A" (uuid 6989b4ac-fa94-4143-b139-bfab0edb45b3))
- (pin "B" (uuid f082f788-3087-49ad-9714-a2261f47bcaf))
- (pin "C" (uuid fc757684-5f79-4fcc-af63-a98af7fa54fd))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "S1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_name "R_1") (lib_id "Device:R") (at 143.51 52.07 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid d1f82fc6-6034-4a05-97b4-5000624e8cfb)
- (property "Reference" "R5" (at 146.05 50.8 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "R" (at 146.05 53.34 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal" (at 141.732 52.07 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 143.51 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a02df809-5d53-428b-b6f6-0dd728054f23))
- (pin "2" (uuid 5d8457fe-e1ba-412c-bb70-c09a29010ddc))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "R5") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "chinese_modules:dc-dc") (at 171.45 81.28 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid e0c3a93e-f737-4b5a-a1c2-b9f4ada6ca5c)
- (property "Reference" "U7" (at 171.45 74.93 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "~" (at 171.45 81.28 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "chinese_modules:dc-dc module" (at 171.45 81.28 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 171.45 81.28 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid af561cc4-8474-498a-9ea7-9180e35c4507))
- (pin "2" (uuid 5c2797ca-346e-4797-96bf-d600426dae1c))
- (pin "3" (uuid 479781ab-8a6c-4bd0-9b59-13af3dab26ba))
- (pin "4" (uuid 07e2735d-0d14-4424-8047-a30446b9d8cf))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "U7") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "MCU_RaspberryPi_and_Boards:Pico") (at 107.95 90.17 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid ed8e5ba1-6dc9-4326-8936-6e1df5b8bdf0)
- (property "Reference" "U1" (at 107.95 59.69 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Pico" (at 107.95 62.23 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH" (at 107.95 90.17 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 107.95 90.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 60416bef-37d4-44fa-bb51-c3ce80d30b6a))
- (pin "10" (uuid 0d40ebf6-03e8-4bae-8018-4c2e92b2c70b))
- (pin "11" (uuid 812f662c-1241-4335-9d20-151419a4d112))
- (pin "12" (uuid 0455f6b4-9d63-4d0d-b72a-d288782b860f))
- (pin "13" (uuid bd835177-d0bd-43fa-a816-fca5f0eb03c7))
- (pin "14" (uuid e6ca5712-5101-4ad1-a370-bf00e250b7d3))
- (pin "15" (uuid 91db1e96-9d4e-4b4f-8711-805b09605b7c))
- (pin "16" (uuid 2aa476d4-b6d0-4bdd-ab44-0c8205e3da7a))
- (pin "17" (uuid 4f0b9856-3284-478a-8176-808a6994e269))
- (pin "18" (uuid 52afd796-313a-4a8c-b58e-ef65ec608b60))
- (pin "19" (uuid 6f653aa3-ab1d-440c-9583-d5e808bcff43))
- (pin "2" (uuid 5e4178ba-11b5-4443-a6d0-99e88aa19bf7))
- (pin "20" (uuid ce8a73f9-df33-4f7b-b2d2-46046d5169e9))
- (pin "21" (uuid d6cd77fa-1588-4e3e-b3cc-234ab264e6ab))
- (pin "22" (uuid 668b9adc-d62f-4f54-a384-d9dc83d52b9a))
- (pin "23" (uuid be9cbd49-3682-444e-83ab-a69fc8bb6834))
- (pin "24" (uuid ba81e62b-0507-4ff8-aa30-c11bc92b3a03))
- (pin "25" (uuid 95a99804-1c85-4c1d-92fc-e634dfeb18ef))
- (pin "26" (uuid 46b71d53-2526-4d15-90bc-8e873002bf66))
- (pin "27" (uuid addf485a-6434-4dd3-8a5f-376cfa85ee85))
- (pin "28" (uuid cfcbefd3-56ad-47e2-a7fd-e93c530408f1))
- (pin "29" (uuid 9c3d2b87-96ef-4f90-a127-7ff26df024d6))
- (pin "3" (uuid 0d476819-0910-41e8-b4d1-a4180123b969))
- (pin "30" (uuid 16947e8b-7e0d-49b8-bcef-6139a5dd1edd))
- (pin "31" (uuid ff0990ce-5c57-48b9-9acc-b6136ef203ac))
- (pin "32" (uuid 4f32d522-c0a6-4445-a175-245028162dae))
- (pin "33" (uuid 07c0ae61-b46f-4d4e-b632-721f872519b2))
- (pin "34" (uuid 3f88431e-dbf4-480e-82ea-352ffac269db))
- (pin "35" (uuid 34e540f6-e984-4958-9083-214b725d76cf))
- (pin "36" (uuid 4c8376c3-2cd8-4443-bef0-99562c65b1fc))
- (pin "37" (uuid c7e06263-2eb0-4b9f-9a86-74c551a7b167))
- (pin "38" (uuid cb9f26af-8ba7-4745-9d83-bfc3f89ef949))
- (pin "39" (uuid 24b9e8a2-18a5-490a-b5fb-6e3cd83b5689))
- (pin "4" (uuid cf923210-a5d7-42ec-8393-611d1e0e19ca))
- (pin "40" (uuid 1af0dffa-8e64-4f6f-9a09-4c7d15e483ab))
- (pin "41" (uuid 10e9cf23-dd58-4859-871d-15d0cd1ed9c3))
- (pin "42" (uuid ad158448-74af-405c-a605-7c7c0b0088a3))
- (pin "43" (uuid 6adecfec-04c5-4d1f-8a22-591ed032d9d1))
- (pin "5" (uuid 68052368-d6fb-443f-bfb1-3b429a936daa))
- (pin "6" (uuid 62397d8c-46cc-4f6e-b90a-85bd4c472f67))
- (pin "7" (uuid 8a344010-0722-42b1-8119-8340047ce504))
- (pin "8" (uuid 9de62b55-6ae7-47dc-b312-35e9b3507932))
- (pin "9" (uuid 972e394b-5aa4-450c-93e6-4b1b414d52a6))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "U1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Switch:SW_Push") (at 35.56 138.43 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid f0c7d0c6-7873-4280-a61a-5f3101b3bfea)
- (property "Reference" "SW4" (at 35.56 132.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "BUTTON4" (at 35.56 134.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Inductor_THT:L_Radial_D12.0mm_P6.00mm_MuRATA_1900R" (at 35.56 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 35.56 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c51b4383-5295-4a16-8380-e3e1f2eb4ace))
- (pin "2" (uuid 2511681f-9a3d-43b9-9f96-07b58ca1f723))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "SW4") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Connector:Conn_01x04_Female") (at 78.74 52.07 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid f35a9b0c-a495-4129-95a7-c7ee962e2eb3)
- (property "Reference" "J2" (at 80.01 48.26 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Conn_01x04_Female" (at 80.01 50.8 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (at 78.74 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 78.74 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4d1675ca-83c3-47a1-aea1-d827d9d305bb))
- (pin "2" (uuid 000b35d8-8b4f-4a3f-9c44-61946ec5aa01))
- (pin "3" (uuid 93c424a2-89a4-478e-aaa9-5ff9b62a453d))
- (pin "4" (uuid f14b62a8-0144-4579-9c15-28e9eb3cdad5))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "J2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Device:R") (at 72.39 176.53 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid f40e2108-4b7c-41fd-8481-87ba7c829f60)
- (property "Reference" "R3" (at 74.93 175.895 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "R" (at 74.93 178.435 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_THT:R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical" (at 70.612 176.53 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 72.39 176.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 902aecdc-b652-4e38-af99-111ab2962d93))
- (pin "2" (uuid d0dc01e1-120a-413d-8878-8e55b1f839b5))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "R3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "Device:LED") (at 52.07 165.1 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid f72dd769-b458-4e8f-9b15-07dd1c00512d)
- (property "Reference" "D1" (at 55.88 166.0652 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "LED1" (at 55.88 168.6052 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "LED_THT:LED_D5.0mm" (at 52.07 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (at 52.07 165.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d8b88341-7cbf-4ec0-ac0e-6a23cbe14b12))
- (pin "2" (uuid 5dde16fa-82f9-4827-ac40-705aa2eb9c09))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "D1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+BATT") (at 162.56 73.66 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid fc92545c-205d-4a84-b2fe-80373f190ff0)
- (property "Reference" "#PWR010" (at 162.56 77.47 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+BATT" (at 162.56 68.58 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 162.56 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 162.56 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5fbdf28b-5597-4dbd-ab96-9f145373d318))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR010") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+BATT") (at 201.93 73.66 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid fdc1e00b-8c5c-4dcc-b267-5adf76031d6a)
- (property "Reference" "#PWR08" (at 201.93 77.47 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+BATT" (at 201.93 68.58 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 201.93 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 201.93 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b4d57a95-925d-4b96-b4e9-c2f9a1d2251a))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR08") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 162.56 90.17 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid fddac022-907e-40de-bbe0-29d7186d7eb8)
- (property "Reference" "#PWR013" (at 162.56 96.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 162.56 95.25 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 162.56 90.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 162.56 90.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 570341e8-4cb5-435e-ba26-b7b448239d59))
- (instances
- (project "drumkit"
- (path "/13d14c25-8baa-4714-9b30-86acf6c3cb37"
- (reference "#PWR013") (unit 1)
- )
- )
- )
- )
-
- (sheet_instances
- (path "/" (page "1"))
- )
- )
|