123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043 |
- (kicad_sch
- (version 20231120)
- (generator "eeschema")
- (generator_version "8.0")
- (uuid "458e1825-17e7-40cf-8f6e-7b4610339d31")
- (paper "A4")
- (title_block
- (title "LARS V3")
- (date "2024-05-15")
- (rev "1")
- (comment 1 "https://git.xythobuz.de/thomas/drumkit")
- (comment 2 "Licensed under the CERN-OHL-S-2.0+")
- (comment 4 "Copyright (c) 2024 Thomas Buck, Kauzerei")
- )
- (lib_symbols
- (symbol "5236ab:5236AB"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "S"
- (at 19.05 7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- )
- )
- (property "Value" "5236AB"
- (at 19.05 5.08 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- )
- )
- (property "Footprint" "5236AB"
- (at 19.05 -94.92 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/dk/DKDS-29/572872.pdf"
- (at 19.05 -194.92 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Description" "SWITCH TOGGLE SPDT 6A 125V"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Height" "31.8"
- (at 19.05 -394.92 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Bürklin Part Number" ""
- (at 19.05 -494.92 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Bürklin Price/Stock" ""
- (at 19.05 -594.92 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Manufacturer_Name" "Apem"
- (at 19.05 -694.92 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Manufacturer_Part_Number" "5236AB"
- (at 19.05 -794.92 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (symbol "5236AB_1_1"
- (rectangle
- (start 5.08 2.54)
- (end 17.78 -7.62)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (pin passive line
- (at 0 0 0)
- (length 5.08)
- (name "NO"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -2.54 0)
- (length 5.08)
- (name "COM"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin no_connect line
- (at 0 -5.08 0)
- (length 5.08)
- (name "NC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "Connector_Audio:AudioJack3"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "J"
- (at 0 8.89 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "AudioJack3"
- (at 0 6.35 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Audio Jack, 3 Poles (Stereo / TRS)"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "Jack*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "AudioJack3_0_1"
- (rectangle
- (start -5.08 -5.08)
- (end -6.35 -2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type outline)
- )
- )
- (polyline
- (pts
- (xy 0 -2.54) (xy 0.635 -3.175) (xy 1.27 -2.54) (xy 2.54 -2.54)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.905 -2.54) (xy -1.27 -3.175) (xy -0.635 -2.54) (xy -0.635 0) (xy 2.54 0)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 2.54 2.54) (xy -2.54 2.54) (xy -2.54 -2.54) (xy -3.175 -3.175) (xy -3.81 -2.54)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start 2.54 3.81)
- (end -5.08 -5.08)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- )
- (symbol "AudioJack3_1_1"
- (pin passive line
- (at 5.08 0 180)
- (length 2.54)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "R"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 5.08 2.54 180)
- (length 2.54)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "S"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 5.08 -2.54 180)
- (length 2.54)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "T"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "Device:Battery_Cell"
- (pin_numbers hide)
- (pin_names
- (offset 0) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "BT"
- (at 2.54 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Battery_Cell"
- (at 2.54 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0 1.524 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 1.524 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Single-cell battery"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "battery cell"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "Battery_Cell_0_1"
- (rectangle
- (start -2.286 1.778)
- (end 2.286 1.524)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type outline)
- )
- )
- (rectangle
- (start -1.524 1.016)
- (end 1.524 0.508)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type outline)
- )
- )
- (polyline
- (pts
- (xy 0 0.762) (xy 0 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 1.778) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0.762 3.048) (xy 1.778 3.048)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 3.556) (xy 1.27 2.54)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "Battery_Cell_1_1"
- (pin passive line
- (at 0 5.08 270)
- (length 2.54)
- (name "+"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -2.54 90)
- (length 2.54)
- (name "-"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "Device:C"
- (pin_numbers hide)
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "cap capacitor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "C_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762) (xy 2.032 -0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 0.762) (xy 2.032 0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "C_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "Device:R"
- (pin_numbers hide)
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "R"
- (at 2.032 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "R"
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "R res resistor"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "R_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "R_0_1"
- (rectangle
- (start -1.016 -2.54)
- (end 1.016 2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "R_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "Diode:1N914"
- (pin_numbers hide)
- (pin_names hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "D"
- (at 0 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "1N914"
- (at 0 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal"
- (at 0 -4.445 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "http://www.vishay.com/docs/85622/1n914.pdf"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "100V 0.3A Small Signal Fast Switching Diode, DO-35"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Sim.Device" "D"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Sim.Pins" "1=K 2=A"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "diode"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "D*DO?35*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "1N914_0_1"
- (polyline
- (pts
- (xy -1.27 1.27) (xy -1.27 -1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 0) (xy -1.27 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (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.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "1N914_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 "Isolator:6N138"
- (pin_names
- (offset 1.016) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U"
- (at -4.064 8.89 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "6N138"
- (at 2.286 8.89 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 7.366 -7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "http://www.onsemi.com/pub/Collateral/HCPL2731-D.pdf"
- (at 7.366 -7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Low Input Current high Gain Split Darlington Optocouplers, -0.5V to 7V VDD, DIP-8"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "darlington optocoupler"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "DIP*W7.62mm* SMDIP*W9.53mm*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "6N138_0_1"
- (rectangle
- (start -5.08 7.62)
- (end 5.08 -7.62)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (polyline
- (pts
- (xy -4.572 -0.635) (xy -3.302 -0.635)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0.889 -0.635) (xy -0.381 -0.635)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.397 -2.667) (xy 2.54 -3.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.397 -2.413) (xy 2.54 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 2.54 -3.81) (xy 3.175 -3.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 3.429 -3.937) (xy 4.572 -5.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 3.429 -3.683) (xy 4.572 -2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 4.572 -5.08) (xy 5.08 -5.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 4.572 -2.54) (xy 5.08 -2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.397 -1.524) (xy 1.397 -3.556) (xy 1.397 -3.556)
- )
- (stroke
- (width 0.3556)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 2.54 -1.27) (xy 2.54 5.08) (xy 5.08 5.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 3.429 -2.794) (xy 3.429 -4.826) (xy 3.429 -4.826)
- )
- (stroke
- (width 0.3556)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 5.08 2.54) (xy 3.048 2.54) (xy 3.048 -3.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -5.08 -2.54) (xy -3.937 -2.54) (xy -3.937 2.54) (xy -5.08 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -3.937 -0.635) (xy -4.572 0.635) (xy -3.302 0.635) (xy -3.937 -0.635)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0.254 -0.635) (xy 0.889 -1.905) (xy -0.381 -1.905) (xy 0.254 -0.635)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 -2.54) (xy 0.254 -2.54) (xy 0.254 5.08) (xy 2.54 5.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 2.413 -3.683) (xy 2.159 -3.175) (xy 1.905 -3.429) (xy 2.413 -3.683)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 4.445 -4.953) (xy 4.191 -4.445) (xy 3.937 -4.699) (xy 4.445 -4.953)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.794 -0.508) (xy -1.524 -0.508) (xy -1.905 -0.635) (xy -1.905 -0.381) (xy -1.524 -0.508)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.794 0.508) (xy -1.524 0.508) (xy -1.905 0.381) (xy -1.905 0.635) (xy -1.524 0.508)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "6N138_1_1"
- (pin no_connect line
- (at -5.08 5.08 0)
- (length 2.54) hide
- (name "NC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -7.62 2.54 0)
- (length 2.54)
- (name "C1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -7.62 -2.54 0)
- (length 2.54)
- (name "C2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin no_connect line
- (at -5.08 -5.08 0)
- (length 2.54) hide
- (name "NC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 -5.08 180)
- (length 2.54)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 -2.54 180)
- (length 2.54)
- (name "VO2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 2.54 180)
- (length 2.54)
- (name "VO1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 5.08 180)
- (length 2.54)
- (name "VCC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "KiCad-RP-Pico:Pico"
- (exclude_from_sim no)
- (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" "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH"
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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 input 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_out 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 power_in 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 "power:+3.3V"
- (power)
- (pin_numbers hide)
- (pin_names
- (offset 0) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+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 yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3.3V\""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "+3.3V_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+3.3V_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "power:GND"
- (power)
- (pin_numbers hide)
- (pin_names
- (offset 0) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "#PWR"
- (at 0 -6.35 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 0 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "GND_1_1"
- (pin power_in line
- (at 0 0 270)
- (length 0)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "ssd1306:SSD1306"
- (pin_names
- (offset 1.016)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "OLED"
- (at 0 5.08 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "SSD1306"
- (at 0 -7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "extern:SSD1306_0.96_Oled"
- (at 0 7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "OLED 0.96 128x64 I2C"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_keywords" "oled"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "extern:SSD1306*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "SSD1306_1_1"
- (rectangle
- (start -1.27 -4.953)
- (end 0 -5.207)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 -2.413)
- (end 0 -2.667)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 0.127)
- (end 0 -0.127)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 2.667)
- (end 0 2.413)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 3.81)
- (end 3.81 -6.35)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (pin power_in line
- (at -5.08 0 0)
- (length 3.81)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at -5.08 2.54 0)
- (length 3.81)
- (name "VCC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -5.08 -5.08 0)
- (length 3.81)
- (name "SCL"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -5.08 -2.54 0)
- (length 3.81)
- (name "SDA"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- )
- (junction
- (at 203.2 55.88)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "090edfe6-b9be-4e84-a358-0deaee1ea8de")
- )
- (junction
- (at 240.03 91.44)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "33119462-88a5-4799-9514-2bbd5abe0f97")
- )
- (junction
- (at 205.74 96.52)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "a8fa8550-1b53-478b-bf06-07662a2080c7")
- )
- (junction
- (at 240.03 83.82)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "ba628b59-b7b7-4a87-8225-94b229e90680")
- )
- (junction
- (at 212.09 86.36)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "ce5e790a-4bf7-405d-9ef6-adafd621fe8d")
- )
- (wire
- (pts
- (xy 256.54 64.77) (xy 256.54 66.04)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "12e99148-b2e3-437a-a224-f4707fdc061b")
- )
- (wire
- (pts
- (xy 203.2 96.52) (xy 203.2 55.88)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2737e7db-98c2-4598-9ebe-daf81a10d471")
- )
- (wire
- (pts
- (xy 254 62.23) (xy 259.08 62.23)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "27f1c29e-9412-4230-9447-cc20a0abda46")
- )
- (wire
- (pts
- (xy 247.65 87.63) (xy 243.84 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2a653f9c-b3b8-441f-be50-47be93173719")
- )
- (wire
- (pts
- (xy 184.15 55.88) (xy 203.2 55.88)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2ddaf29b-5cdd-4f49-80f9-aa673cbcd61f")
- )
- (wire
- (pts
- (xy 242.57 64.77) (xy 243.84 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3508df73-0d17-497d-bb30-89abd5e2773c")
- )
- (wire
- (pts
- (xy 203.2 31.75) (xy 203.2 53.34)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "35c38689-3f44-45a8-a492-32007a202d22")
- )
- (wire
- (pts
- (xy 254 55.88) (xy 254 59.69)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "37004fda-f75d-444d-a7b6-943a608cb412")
- )
- (wire
- (pts
- (xy 251.46 64.77) (xy 254 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "38ec12ab-2678-4edf-b268-4bc9028a331a")
- )
- (wire
- (pts
- (xy 203.2 55.88) (xy 243.84 55.88)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3a92c044-bfa4-437a-bc0a-3c39c69bea4c")
- )
- (wire
- (pts
- (xy 212.09 86.36) (xy 212.09 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3b61bff6-6b02-4d83-b7cd-b819714029ba")
- )
- (wire
- (pts
- (xy 228.6 91.44) (xy 240.03 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4812c0dd-a1ad-4c47-8ba2-1d203dd65a8d")
- )
- (wire
- (pts
- (xy 259.08 39.37) (xy 256.54 39.37)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5aad00b4-a024-4c7b-ac26-4f3a356bf5c2")
- )
- (wire
- (pts
- (xy 252.73 36.83) (xy 252.73 40.64)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5e55d624-73d5-4c40-adcd-9f8989e776db")
- )
- (wire
- (pts
- (xy 252.73 34.29) (xy 252.73 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6029c573-e2f9-45d5-85b3-16c5670db742")
- )
- (wire
- (pts
- (xy 256.54 90.17) (xy 256.54 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "67290aab-1e05-4c46-8931-bffdfbf1ff75")
- )
- (wire
- (pts
- (xy 243.84 87.63) (xy 243.84 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "68e65c67-0759-4e0d-b728-0fe81fd162b8")
- )
- (wire
- (pts
- (xy 254 59.69) (xy 259.08 59.69)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6b7fdefb-37b7-4de2-bd5d-60b282bff2b4")
- )
- (wire
- (pts
- (xy 251.46 55.88) (xy 254 55.88)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6b9cbbab-b6ca-4fe8-b8c5-6c9810d40810")
- )
- (wire
- (pts
- (xy 205.74 87.63) (xy 205.74 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "74f0e09a-7526-4163-9293-d4f2c00b8ae3")
- )
- (wire
- (pts
- (xy 256.54 39.37) (xy 256.54 40.64)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "78dd4cf6-36b5-4a61-bade-6b1ba825db29")
- )
- (wire
- (pts
- (xy 259.08 64.77) (xy 256.54 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8126adfa-4128-4737-a8c8-4a808d076ed2")
- )
- (wire
- (pts
- (xy 252.73 31.75) (xy 251.46 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "82b8139c-4bc8-443c-bbb3-a9f2f0228720")
- )
- (wire
- (pts
- (xy 231.14 83.82) (xy 240.03 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "89dcd657-6aa0-4ecb-b9de-faf475d2b2f0")
- )
- (wire
- (pts
- (xy 259.08 90.17) (xy 256.54 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "97772b8a-9a8a-422d-b884-633840134854")
- )
- (wire
- (pts
- (xy 254 64.77) (xy 254 62.23)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "97fa2133-1ce5-402c-b13c-0632b659a18a")
- )
- (wire
- (pts
- (xy 231.14 96.52) (xy 228.6 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "98eef80c-2ffc-4ff3-9c57-5129ec290646")
- )
- (wire
- (pts
- (xy 213.36 99.06) (xy 212.09 99.06)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9b5e6874-3836-47f2-bc73-535b90df5950")
- )
- (wire
- (pts
- (xy 259.08 36.83) (xy 252.73 36.83)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9eb85d6d-7b12-492b-90a1-d73cd6b63075")
- )
- (wire
- (pts
- (xy 212.09 88.9) (xy 212.09 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a2064603-fbfb-4b6a-a073-deba03b3bfb2")
- )
- (wire
- (pts
- (xy 259.08 34.29) (xy 252.73 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a6e4687c-74fa-4995-815f-3681a68ee87d")
- )
- (wire
- (pts
- (xy 240.03 83.82) (xy 243.84 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b3877d31-da1d-48ab-8caa-f30869ad457d")
- )
- (wire
- (pts
- (xy 243.84 85.09) (xy 243.84 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b48d0ecd-22fa-46db-85eb-6e98d205b7de")
- )
- (wire
- (pts
- (xy 259.08 85.09) (xy 243.84 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b54def7d-42af-4644-a1cc-e7a97ad55148")
- )
- (wire
- (pts
- (xy 212.09 99.06) (xy 212.09 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b8ee350c-71f1-47e6-a075-941e05aeff64")
- )
- (wire
- (pts
- (xy 213.36 96.52) (xy 205.74 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ba0129b7-222a-4d34-9f45-91e24ae93508")
- )
- (wire
- (pts
- (xy 243.84 31.75) (xy 203.2 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bb900767-a69f-46ae-a376-307a1da400a3")
- )
- (wire
- (pts
- (xy 255.27 87.63) (xy 259.08 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bc14f48c-ba75-4edf-9199-9f772042532c")
- )
- (wire
- (pts
- (xy 252.73 40.64) (xy 251.46 40.64)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cc376ef7-e1bc-4fca-89a1-a66088f7dc25")
- )
- (wire
- (pts
- (xy 231.14 83.82) (xy 231.14 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d73486df-6979-487e-bd99-d22b899daa4d")
- )
- (wire
- (pts
- (xy 240.03 91.44) (xy 243.84 91.44)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d7df6dca-176a-42e2-9e72-eb89f526aae5")
- )
- (wire
- (pts
- (xy 184.15 53.34) (xy 203.2 53.34)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d93749a9-66f4-44fd-bb72-9000eec64af5")
- )
- (wire
- (pts
- (xy 205.74 96.52) (xy 203.2 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "dbb155b6-2bd4-4ac6-8f5c-5e888c33cd0f")
- )
- (wire
- (pts
- (xy 205.74 95.25) (xy 205.74 96.52)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ed6c451b-e6ed-4fcb-bb2b-2eba987a976a")
- )
- (wire
- (pts
- (xy 213.36 88.9) (xy 212.09 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f09bc202-85aa-4a23-acc2-cefc716b8c2e")
- )
- (wire
- (pts
- (xy 205.74 86.36) (xy 212.09 86.36)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f3387bbf-4789-4997-9495-8a3a4e7ad75f")
- )
- (wire
- (pts
- (xy 256.54 99.06) (xy 256.54 101.6)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f6c64fb3-3d72-4ac4-8c0a-01d14cc861db")
- )
- (wire
- (pts
- (xy 242.57 40.64) (xy 243.84 40.64)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fa8200c6-cdec-4ee1-87ba-ad576d2f770d")
- )
- (text "MIDI DIN 5-pin to TRS 3-pin mapping:\nMIDI 5 (Sink) = TRS TIP\nMIDI 4 (Source) = TRS RING\nMIDI 2 (Shield) = TRS SLEEVE"
- (exclude_from_sim no)
- (at 257.556 19.05 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "04c03848-1084-403c-98ff-affc296a34ca")
- )
- (text "MIDI Tx"
- (exclude_from_sim no)
- (at 195.834 52.324 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "64b8f5e6-1373-4b9a-a8e2-d4c19c725ed4")
- )
- (text "MIDI Rx"
- (exclude_from_sim no)
- (at 195.834 57.404 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "ded7895d-b709-4a61-a69d-6cffb10fa56d")
- )
- (symbol
- (lib_id "power:GND")
- (at 256.54 66.04 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "06689e47-068e-4576-b533-1ab52e218451")
- (property "Reference" "#PWR03"
- (at 256.54 72.39 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 256.54 70.1731 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 256.54 66.04 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 256.54 66.04 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 256.54 66.04 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "1b806042-a831-46e8-889b-a7d369ce30c0")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "#PWR03")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 256.54 40.64 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "116ad287-68b7-40f5-9fcc-a587bec751ed")
- (property "Reference" "#PWR01"
- (at 256.54 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 256.54 44.7731 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 256.54 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 256.54 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 256.54 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "d5764a26-93bb-469d-ab48-3e26e0acbc80")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "#PWR01")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 205.74 91.44 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "1e173915-27f5-44e2-a9a0-26b5e24cbb1a")
- (property "Reference" "R6"
- (at 207.518 90.2278 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "1k"
- (at 207.518 92.6521 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 203.962 91.44 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 205.74 91.44 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 205.74 91.44 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "f4a23d3f-ae0c-4b0f-913d-e4acff0ac4c6")
- )
- (pin "2"
- (uuid "1100fea6-803c-4fcf-9b79-c08b656b8494")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "R6")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 247.65 64.77 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "3a179a5d-835f-475a-ac22-4ef0267fa401")
- (property "Reference" "R4"
- (at 247.65 59.6095 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "33R"
- (at 247.65 62.0338 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 247.65 66.548 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 247.65 64.77 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 247.65 64.77 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "a89ed7e9-bcb5-48dc-a4cd-267ed0c55979")
- )
- (pin "2"
- (uuid "3782a484-fe5c-4a2c-9556-5fbc3eee6d7c")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "R4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3.3V")
- (at 212.09 85.09 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "4180eb55-0320-4ac3-8125-86d2afe4cc3b")
- (property "Reference" "#PWR07"
- (at 212.09 88.9 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3.3V"
- (at 212.09 80.9569 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 212.09 85.09 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 212.09 85.09 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3.3V\""
- (at 212.09 85.09 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "a4fef0ce-71f8-45eb-a6b8-afb622036c11")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "#PWR07")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 256.54 95.25 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "445084bb-5fdd-432b-af00-bda2ba187728")
- (property "Reference" "C1"
- (at 259.461 94.0378 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100nF"
- (at 259.461 96.4621 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 257.5052 99.06 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 256.54 95.25 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 256.54 95.25 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "a7069b70-e01e-470e-b24b-5036279143f0")
- )
- (pin "2"
- (uuid "c21bc925-980f-43eb-969e-af45bdfcb921")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "C1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "5236ab:5236AB")
- (at 39.37 143.51 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "4580d80b-a751-4f0c-b83b-af5ef61e3fe6")
- (property "Reference" "S1"
- (at 57.912 144.8378 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "5236AB"
- (at 57.912 147.2621 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "5236AB"
- (at 58.42 238.43 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/dk/DKDS-29/572872.pdf"
- (at 58.42 338.43 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Description" "SWITCH TOGGLE SPDT 6A 125V"
- (at 39.37 143.51 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Height" "31.8"
- (at 58.42 538.43 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Bürklin Part Number" ""
- (at 58.42 638.43 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Bürklin Price/Stock" ""
- (at 58.42 738.43 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Manufacturer_Name" "Apem"
- (at 58.42 838.43 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (property "Manufacturer_Part_Number" "5236AB"
- (at 58.42 938.43 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- (hide yes)
- )
- )
- (pin "3"
- (uuid "ff12827e-8c86-40c2-a10d-7b7fa447eac9")
- )
- (pin "1"
- (uuid "af76f108-56d7-4d71-af67-6bdbaa62d047")
- )
- (pin "2"
- (uuid "3625841a-916c-4dc3-b0af-68ed0914448f")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "S1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 251.46 87.63 270)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "459a6dda-9993-4dd8-9ae0-887d1b0cd5ba")
- (property "Reference" "R5"
- (at 251.46 92.7905 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "220R"
- (at 251.46 90.3662 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 251.46 85.852 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 251.46 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 251.46 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "f9facf03-28cc-495d-a722-cbbd029d0b44")
- )
- (pin "2"
- (uuid "12c05f9a-8ea8-42eb-a1ac-5c4451acc656")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "R5")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector_Audio:AudioJack3")
- (at 264.16 87.63 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "4cae7190-7dde-4b17-9c21-7442a816414e")
- (property "Reference" "J1"
- (at 271.272 85.7828 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "MIDI IN"
- (at 271.272 88.2071 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Connector_Audio:Jack_3.5mm_Lumberg_1503_02_Horizontal"
- (at 264.16 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 264.16 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Audio Jack, 3 Poles (Stereo / TRS)"
- (at 264.16 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "R"
- (uuid "343eb62e-649a-4342-ace8-81330111e81d")
- )
- (pin "T"
- (uuid "9b7e8d5a-64ad-48c5-9d42-58a13f2a40d8")
- )
- (pin "S"
- (uuid "3820a71f-36ce-461f-b55c-0d9e0e9e3a44")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "J1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 247.65 31.75 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "4ede8f8f-b90a-4a87-9f21-251dc47d68d6")
- (property "Reference" "R1"
- (at 247.65 26.5895 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10R"
- (at 247.65 29.0138 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 247.65 33.528 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 247.65 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 247.65 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "96354867-a86f-4bb1-828f-78543d241a32")
- )
- (pin "2"
- (uuid "7fba3607-985a-4583-8077-b3a6cd382027")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "R1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector_Audio:AudioJack3")
- (at 264.16 36.83 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "648465c5-ee1f-44f1-b30b-8b0280e2d667")
- (property "Reference" "J2"
- (at 271.272 34.9828 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "MIDI OUT"
- (at 271.272 37.4071 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Connector_Audio:Jack_3.5mm_Lumberg_1503_02_Horizontal"
- (at 264.16 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 264.16 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Audio Jack, 3 Poles (Stereo / TRS)"
- (at 264.16 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "R"
- (uuid "343eb62e-649a-4342-ace8-81330111e81e")
- )
- (pin "T"
- (uuid "9b7e8d5a-64ad-48c5-9d42-58a13f2a40d9")
- )
- (pin "S"
- (uuid "3820a71f-36ce-461f-b55c-0d9e0e9e3a45")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "J2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 247.65 40.64 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "82644ee9-4d11-451b-8608-f53dbfc298bd")
- (property "Reference" "R2"
- (at 247.65 35.4795 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "33R"
- (at 247.65 37.9038 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 247.65 42.418 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 247.65 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 247.65 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "96354867-a86f-4bb1-828f-78543d241a32")
- )
- (pin "2"
- (uuid "7fba3607-985a-4583-8077-b3a6cd382027")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "R2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Diode:1N914")
- (at 240.03 87.63 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "85e5625a-0596-495b-bf41-80f33611f590")
- (property "Reference" "D1"
- (at 237.998 88.8422 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "1N914"
- (at 237.998 86.4179 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal"
- (at 244.475 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "http://www.vishay.com/docs/85622/1n914.pdf"
- (at 240.03 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "100V 0.3A Small Signal Fast Switching Diode, DO-35"
- (at 240.03 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Sim.Device" "D"
- (at 240.03 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Sim.Pins" "1=K 2=A"
- (at 240.03 87.63 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "1cde9e91-3e03-4a89-85dd-12a7f9881305")
- )
- (pin "1"
- (uuid "b6844b85-b36c-4b8f-b352-0b124498a2da")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "D1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Isolator:6N138")
- (at 220.98 93.98 0)
- (mirror y)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "8dfbb1db-5926-48dd-a7bd-d034ed09d58f")
- (property "Reference" "U2"
- (at 220.98 82.2155 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "6N138"
- (at 220.98 84.6398 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Package_DIP:DIP-8_W7.62mm"
- (at 213.614 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "http://www.onsemi.com/pub/Collateral/HCPL2731-D.pdf"
- (at 213.614 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Low Input Current high Gain Split Darlington Optocouplers, -0.5V to 7V VDD, DIP-8"
- (at 220.98 93.98 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "7"
- (uuid "cc09406b-2c48-44c4-b35a-dc35e6121879")
- )
- (pin "8"
- (uuid "44adab1a-0c76-4f04-aacb-840f48f05fa3")
- )
- (pin "6"
- (uuid "e6543820-96f3-4c5a-b4ab-fdb50a9218fd")
- )
- (pin "3"
- (uuid "ee32223d-e040-428d-8a38-9c0e720f913f")
- )
- (pin "1"
- (uuid "abeb40c5-396d-4137-a626-1c798a5dcf1f")
- )
- (pin "5"
- (uuid "6079e157-45e1-4add-bc32-d7847b992ffe")
- )
- (pin "4"
- (uuid "c46d0c15-7cba-4cd4-bd65-fcca70e7fcaa")
- )
- (pin "2"
- (uuid "5f26d421-981d-466f-acfa-c939988d3bf6")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "U2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "KiCad-RP-Pico:Pico")
- (at 80.01 71.12 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "9038b30c-001e-4c53-a3ab-b3a71a1c915e")
- (property "Reference" "U1"
- (at 80.01 40.4325 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Pico"
- (at 80.01 42.8568 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "KiCad-RP-Pico:RPi_Pico_SMD_TH"
- (at 80.01 71.12 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 80.01 71.12 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 80.01 71.12 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "8"
- (uuid "c4fe426e-28ba-4891-8693-a6fd6e0c0543")
- )
- (pin "33"
- (uuid "99ffb6e1-dada-46f7-b7d5-74eb5c5c9f92")
- )
- (pin "7"
- (uuid "5386330f-11cc-4080-bd35-6b9aea96306c")
- )
- (pin "20"
- (uuid "0515cf7b-c695-45c4-a504-4c8aa36fa24f")
- )
- (pin "3"
- (uuid "2ade4588-cf28-430d-873b-ac22ca4e6092")
- )
- (pin "32"
- (uuid "21a06772-a2e3-4836-a32b-3ee013809bc0")
- )
- (pin "17"
- (uuid "b6216a1f-c54d-4af3-9744-9b4fce5d163a")
- )
- (pin "38"
- (uuid "5edaf654-1e79-4a91-a5e3-8889258b9521")
- )
- (pin "6"
- (uuid "f8398a1b-8d1e-41e0-820c-437be98949c6")
- )
- (pin "12"
- (uuid "29c3ff79-652b-42bf-808e-c5d57154353b")
- )
- (pin "11"
- (uuid "429b0bb3-e4e4-487c-b311-55ca22dd6c54")
- )
- (pin "26"
- (uuid "df3a1408-0328-4624-afaa-23d739392734")
- )
- (pin "35"
- (uuid "9184a8a0-607f-4b84-ab29-a082141a928a")
- )
- (pin "24"
- (uuid "524b9fcd-c1b1-49b3-a681-b771e7e1818d")
- )
- (pin "39"
- (uuid "64cf432a-5c60-414b-a293-9852cb74e3a9")
- )
- (pin "15"
- (uuid "838046dd-5ec0-4b34-bcc1-b7cf2a1413fc")
- )
- (pin "10"
- (uuid "4f165438-caab-464f-b78c-20459d9b4bbc")
- )
- (pin "1"
- (uuid "c641b200-d6c1-4fd9-83f6-a324581d4c88")
- )
- (pin "13"
- (uuid "c5f547e2-b177-46ca-b04f-d21257ec1dcd")
- )
- (pin "30"
- (uuid "505e4fae-3c1f-4637-b968-1cda8a29c07e")
- )
- (pin "25"
- (uuid "54b2136c-f085-483f-8633-ca9ee4dc67c4")
- )
- (pin "34"
- (uuid "cf5158fb-56fa-4106-8e4c-fb0593119838")
- )
- (pin "31"
- (uuid "3a273090-f6d4-4a47-b733-a234ecd7ffcb")
- )
- (pin "9"
- (uuid "35a4f31b-37b6-486a-b37c-a9276aeb22b7")
- )
- (pin "41"
- (uuid "967c8844-5281-438f-8ea2-c710e459ac6f")
- )
- (pin "29"
- (uuid "a315a619-20cd-4f82-844a-33c620fb527f")
- )
- (pin "36"
- (uuid "454a8132-4268-42f2-b1e2-7042e65fcad6")
- )
- (pin "23"
- (uuid "1d4124ab-0e7e-412d-8063-6479828f8550")
- )
- (pin "4"
- (uuid "88084929-bbd3-4a89-bf07-52068f1da0b1")
- )
- (pin "2"
- (uuid "4bce306e-3b61-4126-8d20-0aeb234fc587")
- )
- (pin "40"
- (uuid "2e54d8c6-685e-4d8a-8c1e-d3401efa7fd1")
- )
- (pin "27"
- (uuid "a96b5a70-d9ab-4d64-a218-6cc935ec3e92")
- )
- (pin "19"
- (uuid "c4f48325-f77b-4fe2-92c6-ed0c01be6699")
- )
- (pin "14"
- (uuid "bed78d67-57c4-4de9-9899-746f792a3a29")
- )
- (pin "28"
- (uuid "c0543368-9be2-44fe-ab5e-cd01b7b4dd58")
- )
- (pin "18"
- (uuid "40943399-06ad-4961-8560-85d086a1ec17")
- )
- (pin "21"
- (uuid "18728de6-6e87-4fb6-9996-3ba93551847f")
- )
- (pin "22"
- (uuid "d5fc1cd4-fbf2-4316-bed4-0fde3b9774c5")
- )
- (pin "5"
- (uuid "58394b4d-78c5-4e16-b92f-10eb2f62883c")
- )
- (pin "43"
- (uuid "b731ca15-e99e-4d11-befb-da79d992edcb")
- )
- (pin "42"
- (uuid "ae2f69d8-9dfd-467a-804f-8a91fd6dec01")
- )
- (pin "37"
- (uuid "837f087c-6913-412a-a046-fea23fe0cacf")
- )
- (pin "16"
- (uuid "fdeef63d-007f-4496-942a-5355de34f537")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "U1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:Battery_Cell")
- (at 52.07 158.75 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "9090186c-27c0-4d4b-8156-3c605d9af2ea")
- (property "Reference" "BT1"
- (at 54.991 155.6963 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Battery_Cell"
- (at 54.991 158.1206 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Battery:BatteryHolder_Keystone_1042_1x18650"
- (at 52.07 157.226 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 52.07 157.226 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Single-cell battery"
- (at 52.07 158.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "07dabf73-2729-4afc-9029-679e8ff0887d")
- )
- (pin "2"
- (uuid "bd4d3fdb-76bd-4868-b732-1ddcb26108a1")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "BT1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3.3V")
- (at 242.57 64.77 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "a9c65ace-d475-4181-93d2-f857c0a35ebd")
- (property "Reference" "#PWR04"
- (at 246.38 64.77 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3.3V"
- (at 239.395 64.77 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 242.57 64.77 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 242.57 64.77 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3.3V\""
- (at 242.57 64.77 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "9a439000-70a4-4fa1-841c-94915241ffa4")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "#PWR04")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3.3V")
- (at 242.57 40.64 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "ab2f658e-d88c-43a5-94e9-600bf993fea5")
- (property "Reference" "#PWR02"
- (at 246.38 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "+3.3V"
- (at 239.395 40.64 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 242.57 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 242.57 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3.3V\""
- (at 242.57 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "e234dbf0-f4e9-4237-8fd3-396f7cb2eeb7")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "#PWR02")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 247.65 55.88 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "b03107d3-f629-44aa-9535-4408c0e7493b")
- (property "Reference" "R3"
- (at 247.65 50.7195 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10R"
- (at 247.65 53.1438 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 247.65 57.658 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 247.65 55.88 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Resistor"
- (at 247.65 55.88 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "8b640294-f986-4409-9c28-90712dc86f25")
- )
- (pin "2"
- (uuid "554d3fb4-3a91-4955-9f7f-43c84b2df19f")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "R3")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "ssd1306:SSD1306")
- (at 105.41 119.38 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "cd6b21d2-4347-450a-92a3-de4b15f96991")
- (property "Reference" "OLED1"
- (at 109.982 119.4378 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "SSD1306"
- (at 109.982 121.8621 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "ssd1306:SSD1306_0.96_Oled"
- (at 105.41 111.76 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 105.41 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "OLED 0.96 128x64 I2C"
- (at 105.41 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "4"
- (uuid "0e6e7036-d20f-4ba4-b578-06b88351734e")
- )
- (pin "1"
- (uuid "657fc547-ba6f-4f0b-bc65-1414b2c975b8")
- )
- (pin "2"
- (uuid "22182fa0-1bb7-42cf-8216-5d892bf665b8")
- )
- (pin "3"
- (uuid "83cecd09-37e4-4511-b5f9-1b8441c6a64b")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "OLED1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 212.09 100.33 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "e449d54e-ecf0-42d8-b526-a474af9a1e98")
- (property "Reference" "#PWR06"
- (at 212.09 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 212.09 104.4631 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 212.09 100.33 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 212.09 100.33 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 212.09 100.33 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "97a46159-6e57-4ab5-bac0-172b75458adf")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "#PWR06")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 256.54 101.6 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "f7eb299d-847b-4b95-a7b0-2076d7b6b262")
- (property "Reference" "#PWR05"
- (at 256.54 107.95 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Value" "GND"
- (at 256.54 105.7331 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 256.54 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 256.54 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 256.54 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "7a571448-1631-485d-8181-0ed2b0875d67")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "#PWR05")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector_Audio:AudioJack3")
- (at 264.16 62.23 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "fff53802-1a25-42d2-b752-af46476057d9")
- (property "Reference" "J3"
- (at 271.272 60.3828 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "MIDI THRU"
- (at 271.272 62.8071 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Connector_Audio:Jack_3.5mm_Lumberg_1503_02_Horizontal"
- (at 264.16 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" "~"
- (at 264.16 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" "Audio Jack, 3 Poles (Stereo / TRS)"
- (at 264.16 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "R"
- (uuid "343eb62e-649a-4342-ace8-81330111e81f")
- )
- (pin "T"
- (uuid "9b7e8d5a-64ad-48c5-9d42-58a13f2a40da")
- )
- (pin "S"
- (uuid "3820a71f-36ce-461f-b55c-0d9e0e9e3a46")
- )
- (instances
- (project "lars3"
- (path "/458e1825-17e7-40cf-8f6e-7b4610339d31"
- (reference "J3")
- (unit 1)
- )
- )
- )
- )
- (sheet_instances
- (path "/"
- (page "1")
- )
- )
- )
|