| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809 |
- (kicad_sch (version 20230121) (generator eeschema)
- (uuid e097b152-7eac-4218-984f-e86f016c5a43)
- (paper "A4")
- (lib_symbols
- (symbol "DIodeInc:AP3211KTR-G1" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 3.81 -10.16 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "AP3211KTR-G1" (at 0 10.16 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 2.54 -2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 2.54 -2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "?" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "AP3211KTR-G1_0_0"
- (pin power_in line (at 0 -11.43 90) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -6.35 180) (length 2.54)
- (name "FB" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -7.62 -6.35 0) (length 2.54)
- (name "EN" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -7.62 6.35 0) (length 2.54)
- (name "IN" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 7.62 0 180) (length 2.54)
- (name "SW" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "AP3211KTR-G1_0_1"
- (rectangle (start -5.08 8.89) (end 5.08 -8.89)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- )
- (symbol "AP3211KTR-G1_1_1"
- (pin passive line (at 7.62 6.35 180) (length 2.54)
- (name "BS" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Module:ESP-12F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 11.43 -15.24 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "ESP-12F" (at 0 15.24 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (at 0 -1.27 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (at 0 -1.27 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "ESP-12F_0_1"
- (rectangle (start -12.7 -12.7) (end 12.7 13.97)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start 6.35 -12.7) (end 6.35 -12.7)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "ESP-12F_1_1"
- (pin input line (at -17.78 11.43 0) (length 5.08)
- (name "RST" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -3.81 -17.78 90) (length 5.08)
- (name "MISO" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -1.27 -17.78 90) (length 5.08)
- (name "GPIO9" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 1.27 -17.78 90) (length 5.08)
- (name "GPIO10" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 3.81 -17.78 90) (length 5.08)
- (name "MOSI" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 6.35 -17.78 90) (length 5.08)
- (name "SCLK" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 -6.35 180) (length 5.08)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 -3.81 180) (length 5.08)
- (name "GPIO15" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 -1.27 180) (length 5.08)
- (name "GPIO2" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 1.27 180) (length 5.08)
- (name "GPIO0" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 3.81 180) (length 5.08)
- (name "GPIO4" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -17.78 8.89 0) (length 5.08)
- (name "ADC" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 6.35 180) (length 5.08)
- (name "GPIO5" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 8.89 180) (length 5.08)
- (name "RXD" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 17.78 11.43 180) (length 5.08)
- (name "TXD" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -17.78 6.35 0) (length 5.08)
- (name "EN" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -17.78 3.81 0) (length 5.08)
- (name "GPIO16" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -17.78 1.27 0) (length 5.08)
- (name "GPIO14" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -17.78 -1.27 0) (length 5.08)
- (name "GPIO12" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -17.78 -3.81 0) (length 5.08)
- (name "GPIO13" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -17.78 -6.35 0) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -6.35 -17.78 90) (length 5.08)
- (name "CS0" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "ST:M24C32" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 5.08 -1.27 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "M24C32" (at 0 11.43 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.524 1.524)))
- )
- (symbol "M24C32_0_1"
- (rectangle (start -6.35 10.16) (end 6.35 0)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "M24C32_1_1"
- (pin input line (at 11.43 8.89 180) (length 5.08)
- (name "E0" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 11.43 6.35 180) (length 5.08)
- (name "E1" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 11.43 3.81 180) (length 5.08)
- (name "E2" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 11.43 1.27 180) (length 5.08)
- (name "VSS" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -11.43 8.89 0) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 6.35 0) (length 5.08)
- (name "~{WC}" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -11.43 3.81 0) (length 5.08)
- (name "SCL" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -11.43 1.27 0) (length 5.08)
- (name "SDA" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "ST:M41T83" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 35.56 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "M41T83" (at 0 5.08 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.524 1.524)))
- )
- (symbol "M41T83_0_1"
- (rectangle (start -11.43 7.62) (end 11.43 33.02)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "M41T83_1_1"
- (pin input line (at -16.51 30.48 0) (length 5.08)
- (name "NC" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 10.16 180) (length 5.08)
- (name "SDA" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 12.7 180) (length 5.08)
- (name "SCL" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 15.24 180) (length 5.08)
- (name "~{IRQ1}/FT/OUT" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 17.78 180) (length 5.08)
- (name "NC" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 20.32 180) (length 5.08)
- (name "~{IRQ2}" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 22.86 180) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 25.4 180) (length 5.08)
- (name "NF" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 27.94 180) (length 5.08)
- (name "NF" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 16.51 30.48 180) (length 5.08)
- (name "NC" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -16.51 27.94 0) (length 5.08)
- (name "NF" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -16.51 25.4 0) (length 5.08)
- (name "NF" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -16.51 22.86 0) (length 5.08)
- (name "NC" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -16.51 20.32 0) (length 5.08)
- (name "~{RST}" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -16.51 17.78 0) (length 5.08)
- (name "DU" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -16.51 15.24 0) (length 5.08)
- (name "SQW" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -16.51 12.7 0) (length 5.08)
- (name "VBAT" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -16.51 10.16 0) (length 5.08)
- (name "VSS" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "ST:STM32F401RC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 25.4 -27.94 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "STM32F401RC" (at -1.27 -17.78 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "U:LQFP64" (at -30.48 -16.51 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (at -30.48 -16.51 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "STM32F401RC_0_1"
- (rectangle (start -26.67 -26.67) (end 26.67 26.67)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "STM32F401RC_1_1"
- (pin power_in line (at -31.75 19.05 0) (length 5.08)
- (name "VBAT" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 -3.81 0) (length 5.08)
- (name "PC2" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 -6.35 0) (length 5.08)
- (name "PC3" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -31.75 -8.89 0) (length 5.08)
- (name "VSSA" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -31.75 -11.43 0) (length 5.08)
- (name "VDDA" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 -13.97 0) (length 5.08)
- (name "PA0" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 -16.51 0) (length 5.08)
- (name "PA1" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 -19.05 0) (length 5.08)
- (name "PA2" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -19.05 -31.75 90) (length 5.08)
- (name "PA3" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -16.51 -31.75 90) (length 5.08)
- (name "VSS" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -13.97 -31.75 90) (length 5.08)
- (name "VDD" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 16.51 0) (length 5.08)
- (name "PC13" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -11.43 -31.75 90) (length 5.08)
- (name "PA4" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -8.89 -31.75 90) (length 5.08)
- (name "PA5" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -6.35 -31.75 90) (length 5.08)
- (name "PA6" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -3.81 -31.75 90) (length 5.08)
- (name "PA7" (effects (font (size 1.27 1.27))))
- (number "23" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -1.27 -31.75 90) (length 5.08)
- (name "PC4" (effects (font (size 1.27 1.27))))
- (number "24" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 1.27 -31.75 90) (length 5.08)
- (name "PC5" (effects (font (size 1.27 1.27))))
- (number "25" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 3.81 -31.75 90) (length 5.08)
- (name "PB0" (effects (font (size 1.27 1.27))))
- (number "26" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 6.35 -31.75 90) (length 5.08)
- (name "PB1" (effects (font (size 1.27 1.27))))
- (number "27" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 8.89 -31.75 90) (length 5.08)
- (name "PB2" (effects (font (size 1.27 1.27))))
- (number "28" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 11.43 -31.75 90) (length 5.08)
- (name "PB10" (effects (font (size 1.27 1.27))))
- (number "29" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 13.97 0) (length 5.08)
- (name "PC14" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 13.97 -31.75 90) (length 5.08)
- (name "VCAP1" (effects (font (size 1.27 1.27))))
- (number "30" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 16.51 -31.75 90) (length 5.08)
- (name "VSS" (effects (font (size 1.27 1.27))))
- (number "31" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 19.05 -31.75 90) (length 5.08)
- (name "VDD" (effects (font (size 1.27 1.27))))
- (number "32" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 -19.05 180) (length 5.08)
- (name "PB12" (effects (font (size 1.27 1.27))))
- (number "33" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 -16.51 180) (length 5.08)
- (name "PB13" (effects (font (size 1.27 1.27))))
- (number "34" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 -13.97 180) (length 5.08)
- (name "PB14" (effects (font (size 1.27 1.27))))
- (number "35" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 -11.43 180) (length 5.08)
- (name "PB15" (effects (font (size 1.27 1.27))))
- (number "36" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 -8.89 180) (length 5.08)
- (name "PC6" (effects (font (size 1.27 1.27))))
- (number "37" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 -6.35 180) (length 5.08)
- (name "PC7" (effects (font (size 1.27 1.27))))
- (number "38" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 -3.81 180) (length 5.08)
- (name "PC8" (effects (font (size 1.27 1.27))))
- (number "39" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 11.43 0) (length 5.08)
- (name "PC15" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 -1.27 180) (length 5.08)
- (name "PC9" (effects (font (size 1.27 1.27))))
- (number "40" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 1.27 180) (length 5.08)
- (name "PA8" (effects (font (size 1.27 1.27))))
- (number "41" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 3.81 180) (length 5.08)
- (name "PA9" (effects (font (size 1.27 1.27))))
- (number "42" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 6.35 180) (length 5.08)
- (name "PA10" (effects (font (size 1.27 1.27))))
- (number "43" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 8.89 180) (length 5.08)
- (name "PA11" (effects (font (size 1.27 1.27))))
- (number "44" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 11.43 180) (length 5.08)
- (name "PA12" (effects (font (size 1.27 1.27))))
- (number "45" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 31.75 13.97 180) (length 5.08)
- (name "PA13" (effects (font (size 1.27 1.27))))
- (number "46" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 31.75 16.51 180) (length 5.08)
- (name "VDD" (effects (font (size 1.27 1.27))))
- (number "47" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 31.75 19.05 180) (length 5.08)
- (name "VSS" (effects (font (size 1.27 1.27))))
- (number "48" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 19.05 31.75 270) (length 5.08)
- (name "PA14" (effects (font (size 1.27 1.27))))
- (number "49" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 8.89 0) (length 5.08)
- (name "PH0" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 16.51 31.75 270) (length 5.08)
- (name "PA15" (effects (font (size 1.27 1.27))))
- (number "50" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 13.97 31.75 270) (length 5.08)
- (name "PC10" (effects (font (size 1.27 1.27))))
- (number "51" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 11.43 31.75 270) (length 5.08)
- (name "PC11" (effects (font (size 1.27 1.27))))
- (number "52" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 8.89 31.75 270) (length 5.08)
- (name "PC12" (effects (font (size 1.27 1.27))))
- (number "53" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 6.35 31.75 270) (length 5.08)
- (name "PD2" (effects (font (size 1.27 1.27))))
- (number "54" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 3.81 31.75 270) (length 5.08)
- (name "PB3" (effects (font (size 1.27 1.27))))
- (number "55" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 1.27 31.75 270) (length 5.08)
- (name "PB4" (effects (font (size 1.27 1.27))))
- (number "56" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -1.27 31.75 270) (length 5.08)
- (name "PB5" (effects (font (size 1.27 1.27))))
- (number "57" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -3.81 31.75 270) (length 5.08)
- (name "PB6" (effects (font (size 1.27 1.27))))
- (number "58" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -6.35 31.75 270) (length 5.08)
- (name "PB7" (effects (font (size 1.27 1.27))))
- (number "59" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 6.35 0) (length 5.08)
- (name "PH1" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -8.89 31.75 270) (length 5.08)
- (name "BOOT0" (effects (font (size 1.27 1.27))))
- (number "60" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -11.43 31.75 270) (length 5.08)
- (name "PB8" (effects (font (size 1.27 1.27))))
- (number "61" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -13.97 31.75 270) (length 5.08)
- (name "PB9" (effects (font (size 1.27 1.27))))
- (number "62" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -16.51 31.75 270) (length 5.08)
- (name "VSS" (effects (font (size 1.27 1.27))))
- (number "63" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -19.05 31.75 270) (length 5.08)
- (name "VDD" (effects (font (size 1.27 1.27))))
- (number "64" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 3.81 0) (length 5.08)
- (name "NRST" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 1.27 0) (length 5.08)
- (name "PC0" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -31.75 -1.27 0) (length 5.08)
- (name "PC1" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X01" (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X01 Pin_Header_Angled_1X01 Socket_Strip_Straight_1X01 Socket_Strip_Angled_1X01" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X01_0_1"
- (rectangle (start -1.27 0.127) (end 0.254 -0.127)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 1.27) (end 1.27 -1.27)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "CONN_01X01_1_1"
- (pin passive line (at -5.08 0 0) (length 3.81)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X02" (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X02 Pin_Header_Angled_1X02 Socket_Strip_Straight_1X02 Socket_Strip_Angled_1X02" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X02_0_1"
- (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 1.397) (end 0.254 1.143)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 2.54) (end 1.27 -2.54)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "CONN_01X02_1_1"
- (pin passive line (at -5.08 1.27 0) (length 3.81)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -1.27 0) (length 3.81)
- (name "P2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (at 0 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X03" (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X03 Pin_Header_Angled_1X03 Socket_Strip_Straight_1X03 Socket_Strip_Angled_1X03" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X03_0_1"
- (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 0.127) (end 0.254 -0.127)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 2.667) (end 0.254 2.413)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 3.81) (end 1.27 -3.81)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "CONN_01X03_1_1"
- (pin passive line (at -5.08 2.54 0) (length 3.81)
- (name "P1" (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 "P2" (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 "P3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (at 0 6.35 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X04" (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X04 Pin_Header_Angled_1X04 Socket_Strip_Straight_1X04 Socket_Strip_Angled_1X04" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X04_0_1"
- (rectangle (start -1.27 -3.683) (end 0.254 -3.937)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 1.397) (end 0.254 1.143)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 3.937) (end 0.254 3.683)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 5.08) (end 1.27 -5.08)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "CONN_01X04_1_1"
- (pin passive line (at -5.08 3.81 0) (length 3.81)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 1.27 0) (length 3.81)
- (name "P2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -1.27 0) (length 3.81)
- (name "P3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -3.81 0) (length 3.81)
- (name "P4" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X05" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (at 0 7.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X05" (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X05 Pin_Header_Angled_1X05 Socket_Strip_Straight_1X05 Socket_Strip_Angled_1X05" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X05_0_1"
- (rectangle (start -1.27 -4.953) (end 0.254 -5.207)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 0.127) (end 0.254 -0.127)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 2.667) (end 0.254 2.413)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 5.207) (end 0.254 4.953)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 6.35) (end 1.27 -6.35)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "CONN_01X05_1_1"
- (pin passive line (at -5.08 5.08 0) (length 3.81)
- (name "P1" (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 "P2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 0 0) (length 3.81)
- (name "P3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -2.54 0) (length 3.81)
- (name "P4" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -5.08 0) (length 3.81)
- (name "P5" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (at 0 8.89 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X06" (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X06 Pin_Header_Angled_1X06 Socket_Strip_Straight_1X06 Socket_Strip_Angled_1X06" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X06_0_1"
- (rectangle (start -1.27 -6.223) (end 0.254 -6.477)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 -3.683) (end 0.254 -3.937)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 1.397) (end 0.254 1.143)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 3.937) (end 0.254 3.683)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 6.477) (end 0.254 6.223)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 7.62) (end 1.27 -7.62)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "CONN_01X06_1_1"
- (pin passive line (at -5.08 6.35 0) (length 3.81)
- (name "P1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 3.81 0) (length 3.81)
- (name "P2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 1.27 0) (length 3.81)
- (name "P3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -1.27 0) (length 3.81)
- (name "P4" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -3.81 0) (length 3.81)
- (name "P5" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -6.35 0) (length 3.81)
- (name "P6" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:Micro_USB" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "J" (at 6.35 -8.89 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "Micro_USB" (at 1.27 8.89 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (at 5.08 -5.08 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (at 5.08 -5.08 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "Micro_USB_0_1"
- (polyline
- (pts
- (xy -5.08 -7.62)
- (xy -7.62 -5.08)
- (xy -7.62 5.08)
- (xy -5.08 7.62)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start 7.62 -7.62) (end -5.08 7.62)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "Micro_USB_1_1"
- (pin input line (at -3.81 -10.16 90) (length 2.54)
- (name "USB_SH" (effects (font (size 1.27 1.27))))
- (number "0" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 12.7 5.08 180) (length 5.08)
- (name "USB_VBUS" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 12.7 2.54 180) (length 5.08)
- (name "USB_N" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 12.7 0 180) (length 5.08)
- (name "USB_P" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 12.7 -2.54 180) (length 5.08)
- (name "USB_ID" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 12.7 -5.08 180) (length 5.08)
- (name "USB_GND" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "connconn:CONN_01X03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (at 0 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X03" (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X03 Pin_Header_Angled_1X03 Socket_Strip_Straight_1X03 Socket_Strip_Angled_1X03" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X03_0_1"
- (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 0.127) (end 0.254 -0.127)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 2.667) (end 0.254 2.413)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (rectangle (start -1.27 3.81) (end 1.27 -3.81)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "CONN_01X03_1_1"
- (pin passive line (at -5.08 2.54 0) (length 3.81)
- (name "P1" (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 "P2" (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 "P3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:Battery" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "BT" (at 2.54 1.27 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "Battery" (at 2.54 -1.27 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (at 0 1.016 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 1.016 90)
- (effects (font (size 1.27 1.27)))
- )
- (symbol "Battery_0_1"
- (rectangle (start -2.286 -0.1778) (end 2.286 -0.4318)
- (stroke (width 0) (type default))
- (fill (type outline))
- )
- (rectangle (start -2.286 1.27) (end 2.286 1.016)
- (stroke (width 0) (type default))
- (fill (type outline))
- )
- (rectangle (start -1.5748 -0.762) (end 1.4732 -1.27)
- (stroke (width 0) (type default))
- (fill (type outline))
- )
- (rectangle (start -1.5748 0.6858) (end 1.4732 0.1778)
- (stroke (width 0) (type default))
- (fill (type outline))
- )
- (polyline
- (pts
- (xy 0.508 2.413)
- (xy 1.524 2.413)
- )
- (stroke (width 0.254) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.016 2.921)
- (xy 1.016 1.905)
- )
- (stroke (width 0.254) (type default))
- (fill (type none))
- )
- )
- (symbol "Battery_1_1"
- (pin power_out line (at 0 3.81 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 -3.81 90) (length 2.54)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:C" (pin_numbers hide) (pin_names (offset 0.254)) (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)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (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.016 1.016))))
- (number "1" (effects (font (size 1.016 1.016))))
- )
- (pin passive line (at 0 -3.81 90) (length 2.794)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "2" (effects (font (size 1.016 1.016))))
- )
- )
- )
- (symbol "global:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "Y" (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Crystal" (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)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Crystal_*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Crystal_0_1"
- (rectangle (start -1.27 2.54) (end 1.27 -2.54)
- (stroke (width 0.3048) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.54 -1.27)
- (xy -2.54 1.27)
- )
- (stroke (width 0.3048) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 -1.27)
- (xy 2.54 1.27)
- )
- (stroke (width 0.3048) (type default))
- (fill (type none))
- )
- )
- (symbol "Crystal_1_1"
- (pin passive line (at -3.81 0 0) (length 1.27)
- (name "1" (effects (font (size 1.016 1.016))))
- (number "1" (effects (font (size 1.016 1.016))))
- )
- (pin passive line (at 3.81 0 180) (length 1.27)
- (name "2" (effects (font (size 1.016 1.016))))
- (number "2" (effects (font (size 1.016 1.016))))
- )
- )
- )
- (symbol "global:D" (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" "D" (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)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "D_0_1"
- (polyline
- (pts
- (xy -1.27 1.27)
- (xy -1.27 -1.27)
- )
- (stroke (width 0.1524) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy -1.27 0)
- (xy 1.27 -1.27)
- )
- (stroke (width 0) (type default))
- (fill (type outline))
- )
- )
- (symbol "D_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 "global:FUSE" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
- (property "Reference" "F" (at 2.54 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "FUSE" (at -2.54 -1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (symbol "FUSE_0_1"
- (arc (start 0 0) (mid -1.905 1.8967) (end -3.81 0)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (arc (start 0 0) (mid 1.905 -1.8967) (end 3.81 0)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "FUSE_1_1"
- (pin input line (at -6.35 0 0) (length 2.54)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "1" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at 6.35 0 180) (length 2.54)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "2" (effects (font (size 1.016 1.016))))
- )
- )
- )
- (symbol "global:INDUCTOR" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "L" (at -1.27 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "INDUCTOR" (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (symbol "INDUCTOR_0_1"
- (arc (start 0.0254 -5.0546) (mid 1.2449 -3.8097) (end 0.0254 -2.54)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (arc (start 0.0254 -2.5146) (mid 1.2703 -1.2444) (end 0.0254 0.0508)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (arc (start 0.0254 0.0254) (mid 1.2703 1.2956) (end 0.0254 2.5908)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (arc (start 0.0254 2.5654) (mid 1.1941 3.7595) (end 0.0254 4.9784)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- )
- (symbol "INDUCTOR_1_1"
- (pin passive line (at 0 7.62 270) (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 0 -7.62 90) (length 2.54)
- (name "2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:LED" (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)))
- )
- (property "ki_fp_filters" "LED-3MM LED-5MM LED-10MM LED-0603 LED-0805 LED-1206 LEDV" (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) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.032 -0.635)
- (xy -3.175 -1.651)
- (xy -3.048 -1.016)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.651 -1.016)
- (xy -2.794 -2.032)
- (xy -2.667 -1.397)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy -1.27 0)
- (xy 1.27 -1.27)
- )
- (stroke (width 0) (type default))
- (fill (type outline))
- )
- )
- (symbol "LED_1_1"
- (pin passive line (at -5.08 0 0) (length 3.81)
- (name "K" (effects (font (size 1.016 1.016))))
- (number "1" (effects (font (size 1.016 1.016))))
- )
- (pin passive line (at 5.08 0 180) (length 3.81)
- (name "A" (effects (font (size 1.016 1.016))))
- (number "2" (effects (font (size 1.016 1.016))))
- )
- )
- )
- (symbol "global: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)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "R_* Resistor_*" (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 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 "global:SW_PUSH" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "SW" (at 3.81 2.794 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "SW_PUSH" (at 0 -2.032 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (symbol "SW_PUSH_0_1"
- (rectangle (start -4.318 1.27) (end 4.318 1.524)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.016 1.524)
- (xy -0.762 2.286)
- (xy 0.762 2.286)
- (xy 1.016 1.524)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin passive inverted (at -7.62 0 0) (length 5.08)
- (name "1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive inverted (at 7.62 0 180) (length 5.08)
- (name "2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (at 3.81 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "TVS" (at -3.81 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "TVS_0_1"
- (polyline
- (pts
- (xy -1.27 1.27)
- (xy -2.54 0)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy -1.27 1.27)
- )
- (stroke (width 0.1524) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy 2.54 2.54)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 -1.27)
- (xy 0 1.27)
- (xy -1.27 -1.27)
- )
- (stroke (width 0) (type default))
- (fill (type outline))
- )
- )
- (symbol "TVS_1_1"
- (pin passive line (at 0 3.81 270) (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 0 -3.81 90) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- )
- (junction (at 158.75 149.86) (diameter 0) (color 0 0 0 0)
- (uuid 046a655e-d959-4343-aa81-bb9fb6305320)
- )
- (junction (at 129.54 29.21) (diameter 0) (color 0 0 0 0)
- (uuid 07a61ad5-020a-4ecd-b328-6ced800d1c76)
- )
- (junction (at 40.64 22.86) (diameter 0) (color 0 0 0 0)
- (uuid 0942a490-a6b6-4270-ba6d-ab23ddd60ce5)
- )
- (junction (at 116.84 29.21) (diameter 0) (color 0 0 0 0)
- (uuid 16e95311-3516-44d3-a298-2f22d7601232)
- )
- (junction (at 260.35 22.225) (diameter 0) (color 0 0 0 0)
- (uuid 17164ce1-f714-4f3e-9a2e-78754645d48d)
- )
- (junction (at 158.75 154.94) (diameter 0) (color 0 0 0 0)
- (uuid 1af4a106-8485-4e0a-b1ea-2bbaf56aa31c)
- )
- (junction (at 184.15 33.02) (diameter 0) (color 0 0 0 0)
- (uuid 20893af9-ce7a-4799-a2bb-3bc65430bb21)
- )
- (junction (at 53.34 191.77) (diameter 0) (color 0 0 0 0)
- (uuid 22a1dd6c-d6c5-42d9-8504-4c2f716948c7)
- )
- (junction (at 179.07 21.59) (diameter 0) (color 0 0 0 0)
- (uuid 28ae6c99-e15f-438a-ad58-b8ebcbe160bd)
- )
- (junction (at 62.23 22.86) (diameter 0) (color 0 0 0 0)
- (uuid 3bac670d-205f-485a-a659-4634a93ed1d9)
- )
- (junction (at 246.38 104.14) (diameter 0) (color 0 0 0 0)
- (uuid 3ec135cd-b2e4-459c-91e5-3fe900b572fe)
- )
- (junction (at 220.98 80.01) (diameter 0) (color 0 0 0 0)
- (uuid 488b8362-2274-4ea4-b936-90a51d7114a5)
- )
- (junction (at 53.34 184.15) (diameter 0) (color 0 0 0 0)
- (uuid 5023539c-4c4b-42f4-b9fd-08c98e0e4fc0)
- )
- (junction (at 187.96 93.98) (diameter 0) (color 0 0 0 0)
- (uuid 5088e3b7-5e44-4255-bba4-a5285d280ef0)
- )
- (junction (at 30.48 191.77) (diameter 0) (color 0 0 0 0)
- (uuid 54c96308-bb29-4759-b201-7ea8c114bd79)
- )
- (junction (at 37.465 184.15) (diameter 0) (color 0 0 0 0)
- (uuid 62f401cb-640c-4099-a957-4d52c3772b58)
- )
- (junction (at 262.89 52.07) (diameter 0) (color 0 0 0 0)
- (uuid 63035f8a-03f5-4efa-92e4-4795a9ca14e1)
- )
- (junction (at 220.98 72.39) (diameter 0) (color 0 0 0 0)
- (uuid 7170e1d2-b085-4ba6-8645-1369c831f676)
- )
- (junction (at 173.99 38.1) (diameter 0) (color 0 0 0 0)
- (uuid 74e58d40-ac1f-49a1-bdc7-81464711e757)
- )
- (junction (at 93.98 29.21) (diameter 0) (color 0 0 0 0)
- (uuid 75256b0d-7001-4bf9-aedc-3fad32d38bfd)
- )
- (junction (at 252.73 90.17) (diameter 0) (color 0 0 0 0)
- (uuid 757d5cfe-a15c-4755-9d99-7f6a7c5b08e1)
- )
- (junction (at 55.88 22.86) (diameter 0) (color 0 0 0 0)
- (uuid 76ae0f0d-6a3f-41f7-8381-d017d6284b72)
- )
- (junction (at 179.07 35.56) (diameter 0) (color 0 0 0 0)
- (uuid 76f92104-98ad-43cd-8e2b-932615cacee5)
- )
- (junction (at 22.86 184.15) (diameter 0) (color 0 0 0 0)
- (uuid 7ac5b004-9729-4572-9569-58e169b6f4d6)
- )
- (junction (at 194.31 152.4) (diameter 0) (color 0 0 0 0)
- (uuid 7b992900-11da-44aa-831e-e6787c2e2519)
- )
- (junction (at 34.29 127) (diameter 0) (color 0 0 0 0)
- (uuid 85908a73-5a2d-47f2-b796-5b60980b517b)
- )
- (junction (at 90.17 29.21) (diameter 0) (color 0 0 0 0)
- (uuid 8dd20b3f-af35-41ac-9a4f-1a0fd82fe79f)
- )
- (junction (at 158.75 152.4) (diameter 0) (color 0 0 0 0)
- (uuid 8f2faa10-2c95-495c-ac14-f992e4f6f03e)
- )
- (junction (at 60.96 184.15) (diameter 0) (color 0 0 0 0)
- (uuid 9735943b-a2e3-476f-85d0-646d02f76b1e)
- )
- (junction (at 26.67 77.47) (diameter 0) (color 0 0 0 0)
- (uuid a1f6baf8-d621-4662-ad5c-a36da33054f0)
- )
- (junction (at 44.45 191.77) (diameter 0) (color 0 0 0 0)
- (uuid a2320f41-0e1f-4512-8181-0712f57f4b29)
- )
- (junction (at 34.29 134.62) (diameter 0) (color 0 0 0 0)
- (uuid abbb9536-8b31-4339-81c8-beeaab843c31)
- )
- (junction (at 30.48 184.15) (diameter 0) (color 0 0 0 0)
- (uuid b7b53d4a-79f5-4e44-b2b3-6311a4553af0)
- )
- (junction (at 116.84 39.37) (diameter 0) (color 0 0 0 0)
- (uuid c3590806-3207-4e87-890e-ef2d118ecf94)
- )
- (junction (at 60.96 191.77) (diameter 0) (color 0 0 0 0)
- (uuid c3fa4aac-fa8d-4456-b06e-9dda65292162)
- )
- (junction (at 22.86 191.77) (diameter 0) (color 0 0 0 0)
- (uuid dabcd6c7-1852-4962-919f-f17083ee68ac)
- )
- (junction (at 44.45 184.15) (diameter 0) (color 0 0 0 0)
- (uuid de3cd423-d3d7-4475-96a0-4d27b2892069)
- )
- (junction (at 181.61 82.55) (diameter 0) (color 0 0 0 0)
- (uuid ef33d032-6417-47b5-9811-7ffcb6d12dba)
- )
- (junction (at 37.465 191.77) (diameter 0) (color 0 0 0 0)
- (uuid fbf44756-24aa-4f19-85e6-aacf893ee84c)
- )
- (junction (at 41.91 77.47) (diameter 0) (color 0 0 0 0)
- (uuid ff312f20-0fe5-4290-b05c-32b59f22beb8)
- )
- (no_connect (at 52.705 144.78) (uuid 048c5920-95c0-4bcf-85ef-0770d6f9715c))
- (no_connect (at 224.79 45.72) (uuid 05c5612e-bf10-44c0-925f-308208ba9912))
- (no_connect (at 224.79 53.34) (uuid 0b34f40a-6ed4-4318-94f5-21c669c02b10))
- (no_connect (at 218.44 123.19) (uuid 0b4958e7-bc06-497b-adb3-d9ac19c09762))
- (no_connect (at 191.77 53.34) (uuid 1b24b570-b223-48f4-b759-cd1f52bbc833))
- (no_connect (at 167.64 188.595) (uuid 1b6bfca1-97b3-4b05-a3f7-87b0718ffc20))
- (no_connect (at 152.4 189.865) (uuid 1c236a2c-194e-4c1c-ba65-84e0562e65b9))
- (no_connect (at 83.185 170.18) (uuid 24b50a77-7ac5-40ff-97f5-9adb09d2f04e))
- (no_connect (at 208.28 123.19) (uuid 2889c0e4-84da-47b5-aba3-ef7adacd8ff7))
- (no_connect (at 194.31 101.6) (uuid 297816c2-cc56-4daf-b7a3-53fbe9f20237))
- (no_connect (at 224.79 38.1) (uuid 2b66f669-b354-4e62-9780-915c11e4022a))
- (no_connect (at 52.705 119.38) (uuid 2c02be56-6c5d-41f9-a88b-1bc9cde0c4fa))
- (no_connect (at 210.82 123.19) (uuid 33269aef-d51f-4441-9fd6-c3cdf1a97b31))
- (no_connect (at 152.4 174.625) (uuid 41b0b023-2273-416a-b503-4c7049f550dc))
- (no_connect (at 93.345 106.68) (uuid 4432fa25-1f8f-4898-bc28-08c1530554bc))
- (no_connect (at 52.705 142.24) (uuid 450951b1-ee9f-4769-84aa-699fd25109f0))
- (no_connect (at 85.725 170.18) (uuid 4d3434b3-b555-41b5-86da-9663d8e2bcde))
- (no_connect (at 194.31 96.52) (uuid 4f75d3fb-0564-4526-b6dd-d6048c755819))
- (no_connect (at 116.205 142.24) (uuid 5da48c3f-96c7-451a-baea-811e2e3371b3))
- (no_connect (at 224.79 43.18) (uuid 61ad6d15-4f8a-4258-9689-c77228f8ae91))
- (no_connect (at 213.36 123.19) (uuid 61f93433-0135-41c7-978c-7793e8ca0900))
- (no_connect (at 52.705 121.92) (uuid 63d0d6e0-0915-4dae-b2f5-206e31372ec0))
- (no_connect (at 83.185 106.68) (uuid 69f16fa9-bf84-4ce6-90fa-d92b6cb1e57f))
- (no_connect (at 191.77 40.64) (uuid 6c23495a-ce6c-449e-b85a-439b42019003))
- (no_connect (at 75.565 170.18) (uuid 791ada29-831b-46e4-bf30-628fea534853))
- (no_connect (at 98.425 106.68) (uuid 7d00809e-89bd-4287-afd3-3efd3d180af9))
- (no_connect (at 61.595 88.9) (uuid 7e9600d2-f829-403f-9569-40578456bca9))
- (no_connect (at 215.9 123.19) (uuid 82b12ca1-683a-4795-825b-7dabc427fe97))
- (no_connect (at 229.87 101.6) (uuid 8af3e693-17d2-44f7-94cd-98b818195f96))
- (no_connect (at 194.31 109.22) (uuid 8efcfaaf-7155-4a0a-9001-1f3504585945))
- (no_connect (at 100.965 106.68) (uuid 96887178-318e-4aee-8b0a-2aaadecabe0b))
- (no_connect (at 229.87 99.06) (uuid 9b8e4271-f772-4c17-af2a-4b279b16024c))
- (no_connect (at 95.885 106.68) (uuid 9caeb40a-aa04-45cd-be09-1de3b0b89c2a))
- (no_connect (at 205.74 123.19) (uuid 9fd70b94-41b9-4e9a-9cca-dec6153465a4))
- (no_connect (at 52.705 127) (uuid a1a3432b-898d-4df3-90cd-ff67d7e66204))
- (no_connect (at 167.64 174.625) (uuid a419e3e0-da0c-41ea-b6cf-4760f5a8062b))
- (no_connect (at 85.725 106.68) (uuid ae0850e1-5ef1-41e4-853a-1fcd6f6e63f3))
- (no_connect (at 52.705 137.16) (uuid b9828ff5-d00c-4d03-aa1b-68b20d709558))
- (no_connect (at 52.705 139.7) (uuid bc122e4c-4e18-45a7-8034-cd880af43710))
- (no_connect (at 194.31 106.68) (uuid bdb1c8e1-0066-472e-8b74-4f72de8f3fe0))
- (no_connect (at 194.31 104.14) (uuid c57f82ee-e0e2-41ff-8a6a-40e5b1d4fdde))
- (no_connect (at 90.805 106.68) (uuid e06cfe33-460b-49da-ad2d-dc9a342c67be))
- (no_connect (at 116.205 149.86) (uuid e40cf66b-e5a9-42b3-b29b-bf3a732052a1))
- (no_connect (at 191.77 43.18) (uuid e4ceb0e8-fd22-469e-986b-32564ff76dc0))
- (wire (pts (xy 116.84 29.21) (xy 129.54 29.21))
- (stroke (width 0) (type default))
- (uuid 001c2e10-cf08-498d-854b-ba5b624d2b98)
- )
- (polyline (pts (xy 161.29 67.31) (xy 161.29 12.7))
- (stroke (width 0) (type default))
- (uuid 009ef41a-fb4d-4ca5-8578-798d78e5c5ee)
- )
- (wire (pts (xy 191.77 48.26) (xy 187.96 48.26))
- (stroke (width 0) (type default))
- (uuid 02737ac3-d852-44c0-8ffa-7180cfac613e)
- )
- (wire (pts (xy 246.38 90.17) (xy 252.73 90.17))
- (stroke (width 0) (type default))
- (uuid 078bf642-e453-490a-a9db-a01200f70a21)
- )
- (wire (pts (xy 260.35 27.94) (xy 264.16 27.94))
- (stroke (width 0) (type default))
- (uuid 080f95e0-bccb-47a8-b792-ae2961088fe1)
- )
- (wire (pts (xy 173.99 38.1) (xy 173.99 29.21))
- (stroke (width 0) (type default))
- (uuid 0ae3e1f3-b4a6-45d0-8e24-55fd3f102f00)
- )
- (wire (pts (xy 262.89 52.07) (xy 259.08 52.07))
- (stroke (width 0) (type default))
- (uuid 0fc60457-492e-4af6-8053-837db2fe93c5)
- )
- (polyline (pts (xy 151.13 67.31) (xy 151.13 127))
- (stroke (width 0) (type default))
- (uuid 10e0a4a6-4c64-4972-be4a-476cad0ac20d)
- )
- (wire (pts (xy 229.87 104.14) (xy 246.38 104.14))
- (stroke (width 0) (type default))
- (uuid 10fa1442-235b-4dd3-90b5-3805820b70ea)
- )
- (wire (pts (xy 181.61 152.4) (xy 194.31 152.4))
- (stroke (width 0) (type default))
- (uuid 11386ce6-c8d1-4b45-a2c5-6b50ad6e447b)
- )
- (wire (pts (xy 224.79 50.8) (xy 224.79 48.26))
- (stroke (width 0) (type default))
- (uuid 14162e01-b257-4e30-9a79-7b32b62ce4b1)
- )
- (wire (pts (xy 27.305 134.62) (xy 34.29 134.62))
- (stroke (width 0) (type default))
- (uuid 1444451c-eeed-47c5-93d9-115fe839cc3b)
- )
- (polyline (pts (xy 104.14 67.31) (xy 104.14 92.71))
- (stroke (width 0) (type default))
- (uuid 1a2f6b4c-9abd-477b-a622-8437b10bdab0)
- )
- (wire (pts (xy 246.38 97.79) (xy 246.38 104.14))
- (stroke (width 0) (type default))
- (uuid 1acf168d-881c-4fe4-b920-fa3e3cf5af90)
- )
- (wire (pts (xy 34.29 134.62) (xy 42.545 134.62))
- (stroke (width 0) (type default))
- (uuid 1ce97292-caed-4301-aed6-cf447fabbe48)
- )
- (wire (pts (xy 44.45 184.15) (xy 53.34 184.15))
- (stroke (width 0) (type default))
- (uuid 20a90d8a-5ea8-4fe0-99b1-ba562b7914f0)
- )
- (wire (pts (xy 181.61 82.55) (xy 187.96 82.55))
- (stroke (width 0) (type default))
- (uuid 22bdf90b-9302-4b26-93d4-0af1025316e6)
- )
- (wire (pts (xy 42.545 127) (xy 42.545 129.54))
- (stroke (width 0) (type default))
- (uuid 23b4645a-2eb7-4b72-afcb-54ef3f018af8)
- )
- (wire (pts (xy 19.05 184.15) (xy 22.86 184.15))
- (stroke (width 0) (type default))
- (uuid 27e83b16-afd5-49a9-a2cd-27a19af203c5)
- )
- (wire (pts (xy 82.55 29.21) (xy 90.17 29.21))
- (stroke (width 0) (type default))
- (uuid 290c8bf3-1e62-4700-a598-9577f78bffa1)
- )
- (wire (pts (xy 30.48 191.77) (xy 37.465 191.77))
- (stroke (width 0) (type default))
- (uuid 2d6ddb65-9a58-43e6-b38c-0c3e5b292c47)
- )
- (polyline (pts (xy 207.01 127) (xy 205.74 127))
- (stroke (width 0) (type default))
- (uuid 2e2a7648-0bb4-47ee-9874-8a268222dd53)
- )
- (wire (pts (xy 278.13 52.07) (xy 279.4 52.07))
- (stroke (width 0) (type default))
- (uuid 2fb7f4f7-f169-4924-8ee5-f93e305d0a85)
- )
- (wire (pts (xy 27.305 127) (xy 34.29 127))
- (stroke (width 0) (type default))
- (uuid 2feb17c6-ed9d-45a7-b918-b8b4db0f3927)
- )
- (wire (pts (xy 179.07 21.59) (xy 184.15 21.59))
- (stroke (width 0) (type default))
- (uuid 336985e2-cb7d-4fb5-a994-a00a79956823)
- )
- (wire (pts (xy 26.67 77.47) (xy 26.67 85.09))
- (stroke (width 0) (type default))
- (uuid 342c741b-5a74-4300-a8ae-fe7c9974d657)
- )
- (wire (pts (xy 275.59 27.94) (xy 275.59 22.225))
- (stroke (width 0) (type default))
- (uuid 367345a2-08fc-4e54-9a83-d20888d85964)
- )
- (wire (pts (xy 26.67 69.85) (xy 26.67 77.47))
- (stroke (width 0) (type default))
- (uuid 37d09eb7-368c-4141-9c65-d0a13d803ea2)
- )
- (polyline (pts (xy 250.19 67.31) (xy 250.19 11.43))
- (stroke (width 0) (type default))
- (uuid 44178978-0a94-46da-835a-de62e7659a26)
- )
- (polyline (pts (xy 177.8 166.37) (xy 151.13 166.37))
- (stroke (width 0) (type default))
- (uuid 48e87f57-b752-404f-9a54-5403c527fa18)
- )
- (polyline (pts (xy 12.7 67.31) (xy 285.75 67.31))
- (stroke (width 0) (type default))
- (uuid 48f599ef-e530-4d20-94fd-00a12f258cb9)
- )
- (wire (pts (xy 246.38 104.14) (xy 257.81 104.14))
- (stroke (width 0) (type default))
- (uuid 4b16e085-e1dd-4a0a-bcc4-d3c7961646cd)
- )
- (wire (pts (xy 184.15 29.21) (xy 184.15 33.02))
- (stroke (width 0) (type default))
- (uuid 4b4aa8d4-0a8f-44ce-9f14-3a4985ffa093)
- )
- (wire (pts (xy 187.96 93.98) (xy 194.31 93.98))
- (stroke (width 0) (type default))
- (uuid 4c7686fd-90ae-489e-a9ca-4ae393356159)
- )
- (wire (pts (xy 173.99 38.1) (xy 191.77 38.1))
- (stroke (width 0) (type default))
- (uuid 52650057-a475-41cd-bb54-0c96262b6141)
- )
- (wire (pts (xy 224.79 48.26) (xy 228.6 48.26))
- (stroke (width 0) (type default))
- (uuid 55e969ab-262f-4362-adce-1092c6286360)
- )
- (wire (pts (xy 40.64 22.86) (xy 55.88 22.86))
- (stroke (width 0) (type default))
- (uuid 56b7f59d-1da9-488b-8b55-508e3796b503)
- )
- (wire (pts (xy 260.35 15.875) (xy 260.35 22.225))
- (stroke (width 0) (type default))
- (uuid 58bb9421-f14b-4e89-ae8a-11a30a2272b9)
- )
- (wire (pts (xy 82.55 35.56) (xy 82.55 39.37))
- (stroke (width 0) (type default))
- (uuid 59881c65-00b7-4e47-ac17-6e9b9ecfa99d)
- )
- (wire (pts (xy 22.86 184.15) (xy 30.48 184.15))
- (stroke (width 0) (type default))
- (uuid 5bcc4608-719e-4de0-9a4d-6f869bf15aa1)
- )
- (wire (pts (xy 260.35 22.225) (xy 260.35 27.94))
- (stroke (width 0) (type default))
- (uuid 5c7346f0-c5bc-4c5f-893d-d0d750132579)
- )
- (wire (pts (xy 19.05 191.77) (xy 22.86 191.77))
- (stroke (width 0) (type default))
- (uuid 5dad4086-de31-4808-bd9a-ed48c13f4d78)
- )
- (wire (pts (xy 42.545 129.54) (xy 52.705 129.54))
- (stroke (width 0) (type default))
- (uuid 6198135f-ec52-4ab7-9f0a-044ec6a01167)
- )
- (wire (pts (xy 181.61 99.06) (xy 194.31 99.06))
- (stroke (width 0) (type default))
- (uuid 64d40153-104f-42fa-90e2-1a0f0c2b5723)
- )
- (wire (pts (xy 52.705 132.08) (xy 42.545 132.08))
- (stroke (width 0) (type default))
- (uuid 6731ad11-8a42-4d5c-b2c6-37afd784c91c)
- )
- (wire (pts (xy 55.88 22.86) (xy 62.23 22.86))
- (stroke (width 0) (type default))
- (uuid 679816ce-b4cb-4106-8ad5-5af29a9859f9)
- )
- (wire (pts (xy 30.48 69.85) (xy 26.67 69.85))
- (stroke (width 0) (type default))
- (uuid 68f0e8d4-da0c-420c-844e-9279560077b3)
- )
- (wire (pts (xy 194.31 152.4) (xy 200.66 152.4))
- (stroke (width 0) (type default))
- (uuid 6dadd00e-696b-4140-9c0d-991ef51bbff4)
- )
- (wire (pts (xy 115.57 29.21) (xy 116.84 29.21))
- (stroke (width 0) (type default))
- (uuid 6ec576ae-c123-4131-a9c5-ef3feb675f7d)
- )
- (wire (pts (xy 34.29 127) (xy 42.545 127))
- (stroke (width 0) (type default))
- (uuid 74928715-3496-4bd8-b1e8-95a0191199b4)
- )
- (wire (pts (xy 179.07 82.55) (xy 181.61 82.55))
- (stroke (width 0) (type default))
- (uuid 75b22925-1f4a-4346-b63e-5bc6afe09169)
- )
- (polyline (pts (xy 54.61 67.31) (xy 54.61 92.71))
- (stroke (width 0) (type default))
- (uuid 76e4736b-97f4-466c-8236-d0cf2a0251f9)
- )
- (wire (pts (xy 53.34 191.77) (xy 60.96 191.77))
- (stroke (width 0) (type default))
- (uuid 77533d73-0a10-40c1-8167-d5048bd79304)
- )
- (wire (pts (xy 181.61 90.17) (xy 181.61 99.06))
- (stroke (width 0) (type default))
- (uuid 776e3b59-3815-4076-816d-335a333cdcd2)
- )
- (wire (pts (xy 179.07 29.21) (xy 179.07 35.56))
- (stroke (width 0) (type default))
- (uuid 7870389e-11c4-4286-97e0-e5de03ff1647)
- )
- (wire (pts (xy 212.09 154.94) (xy 218.44 154.94))
- (stroke (width 0) (type default))
- (uuid 804792d8-1e7c-4f2a-b57f-a6fc3b81adae)
- )
- (wire (pts (xy 158.75 154.94) (xy 158.75 157.48))
- (stroke (width 0) (type default))
- (uuid 804d95d3-57d8-41cd-9564-9f7b3f446420)
- )
- (wire (pts (xy 90.17 29.21) (xy 93.98 29.21))
- (stroke (width 0) (type default))
- (uuid 823d2bc8-0716-4faf-8f13-0849687a05fd)
- )
- (wire (pts (xy 229.87 106.68) (xy 252.73 106.68))
- (stroke (width 0) (type default))
- (uuid 84c5e138-99de-40d8-b942-34a4f9be70c1)
- )
- (wire (pts (xy 271.78 27.94) (xy 275.59 27.94))
- (stroke (width 0) (type default))
- (uuid 87415549-6b31-4e72-8b40-5040be02a21c)
- )
- (wire (pts (xy 37.465 184.15) (xy 44.45 184.15))
- (stroke (width 0) (type default))
- (uuid 8ac122a2-d0ae-4c9e-8a05-305908a3cb57)
- )
- (wire (pts (xy 98.425 170.18) (xy 98.425 180.34))
- (stroke (width 0) (type default))
- (uuid 8f829c97-556b-4628-8d26-9c6a0e403b95)
- )
- (polyline (pts (xy 207.01 166.37) (xy 207.01 127))
- (stroke (width 0) (type default))
- (uuid 901c29f5-4d9a-426b-9253-c8cdf7de43db)
- )
- (wire (pts (xy 38.1 85.09) (xy 41.91 85.09))
- (stroke (width 0) (type default))
- (uuid 964c3e94-24b9-4b69-8ca1-5db1ed5937a2)
- )
- (polyline (pts (xy 284.48 127) (xy 151.13 127))
- (stroke (width 0) (type default))
- (uuid 985beb5f-bdd8-4827-b72f-ecc58ed8b48a)
- )
- (wire (pts (xy 62.23 22.86) (xy 67.31 22.86))
- (stroke (width 0) (type default))
- (uuid 9bbfa685-364d-4fff-bfd7-89fb3ce1dee5)
- )
- (wire (pts (xy 260.35 15.875) (xy 264.16 15.875))
- (stroke (width 0) (type default))
- (uuid 9d66fbee-8849-45e1-8d1b-895367606e42)
- )
- (wire (pts (xy 170.18 38.1) (xy 173.99 38.1))
- (stroke (width 0) (type default))
- (uuid 9dabfa15-9e9b-42cc-82e0-ba34850d197d)
- )
- (wire (pts (xy 170.18 33.02) (xy 184.15 33.02))
- (stroke (width 0) (type default))
- (uuid 9e087426-2813-4c8f-8ecb-2ad50eb4ec06)
- )
- (wire (pts (xy 179.07 35.56) (xy 191.77 35.56))
- (stroke (width 0) (type default))
- (uuid 9ee38967-600b-4177-842c-f4f19e8a6b5f)
- )
- (wire (pts (xy 187.96 90.17) (xy 187.96 93.98))
- (stroke (width 0) (type default))
- (uuid a10ae24d-2809-4404-b41d-ed9b30efb327)
- )
- (wire (pts (xy 170.18 35.56) (xy 179.07 35.56))
- (stroke (width 0) (type default))
- (uuid a1e533a7-3860-4845-95fd-7072ef3370a8)
- )
- (wire (pts (xy 129.54 29.21) (xy 142.24 29.21))
- (stroke (width 0) (type default))
- (uuid a47924eb-5411-447f-a91e-f8c5782ec6a2)
- )
- (wire (pts (xy 35.56 22.86) (xy 40.64 22.86))
- (stroke (width 0) (type default))
- (uuid a5fe1c28-e408-408a-86ba-dc4d0fc96e0e)
- )
- (wire (pts (xy 42.545 132.08) (xy 42.545 134.62))
- (stroke (width 0) (type default))
- (uuid a81719ad-0f7d-4a4d-909f-124a6ed6a059)
- )
- (wire (pts (xy 240.03 35.56) (xy 224.79 35.56))
- (stroke (width 0) (type default))
- (uuid aa575866-e46f-45fb-9aa0-fe0597f7628a)
- )
- (wire (pts (xy 60.96 191.77) (xy 68.58 191.77))
- (stroke (width 0) (type default))
- (uuid aa7a8304-f35f-4a3b-a8e4-5739dbf1e9e0)
- )
- (wire (pts (xy 266.7 44.45) (xy 262.89 44.45))
- (stroke (width 0) (type default))
- (uuid ab9e9bbc-21cd-45e3-bc90-3b39661996b7)
- )
- (wire (pts (xy 278.13 59.69) (xy 278.13 52.07))
- (stroke (width 0) (type default))
- (uuid ad4d8d05-5981-4bdd-9230-870cbc3cc16f)
- )
- (wire (pts (xy 53.34 184.15) (xy 60.96 184.15))
- (stroke (width 0) (type default))
- (uuid ae0b2107-5abf-463a-ae0f-2b71520d229e)
- )
- (wire (pts (xy 43.18 69.85) (xy 38.1 69.85))
- (stroke (width 0) (type default))
- (uuid ae3afb11-50c3-4b21-99cc-4bed8ccaa50d)
- )
- (wire (pts (xy 41.91 85.09) (xy 41.91 77.47))
- (stroke (width 0) (type default))
- (uuid afd872c6-daf3-4b6e-82fd-e905357587eb)
- )
- (wire (pts (xy 191.77 50.8) (xy 191.77 48.26))
- (stroke (width 0) (type default))
- (uuid b0e30ef2-4b31-4f43-bb07-c339745f9336)
- )
- (wire (pts (xy 215.9 80.01) (xy 220.98 80.01))
- (stroke (width 0) (type default))
- (uuid b31203c9-1f1e-4686-aada-69afe0d0419f)
- )
- (wire (pts (xy 158.75 147.32) (xy 158.75 149.86))
- (stroke (width 0) (type default))
- (uuid b5450184-0826-4565-8c0f-c291cddc1811)
- )
- (wire (pts (xy 262.89 44.45) (xy 262.89 52.07))
- (stroke (width 0) (type default))
- (uuid b816f470-d575-4459-af2a-8e78d40c63be)
- )
- (wire (pts (xy 271.78 15.875) (xy 279.4 15.875))
- (stroke (width 0) (type default))
- (uuid ba93c7a8-9e13-43a1-9059-ba162eaca0c5)
- )
- (wire (pts (xy 60.96 184.15) (xy 68.58 184.15))
- (stroke (width 0) (type default))
- (uuid bba5ea19-2949-4e60-9f12-7291a863e8c7)
- )
- (wire (pts (xy 63.5 35.56) (xy 67.31 35.56))
- (stroke (width 0) (type default))
- (uuid c12a944f-abd3-4293-b43f-43b22e9e2e79)
- )
- (wire (pts (xy 175.26 93.98) (xy 187.96 93.98))
- (stroke (width 0) (type default))
- (uuid c190e40f-02cc-4ce1-8fa2-b36e91b840c9)
- )
- (wire (pts (xy 26.67 77.47) (xy 22.86 77.47))
- (stroke (width 0) (type default))
- (uuid c41d2c50-ac2b-495f-90bd-143edd1dceb2)
- )
- (wire (pts (xy 220.98 72.39) (xy 229.87 72.39))
- (stroke (width 0) (type default))
- (uuid c8c3d23f-590e-4014-bd71-c069dfdca76c)
- )
- (wire (pts (xy 83.82 22.86) (xy 83.82 21.59))
- (stroke (width 0) (type default))
- (uuid c8d24e9d-0abc-4c71-a38a-4082d6ff1af9)
- )
- (wire (pts (xy 116.84 39.37) (xy 116.84 40.64))
- (stroke (width 0) (type default))
- (uuid c9e5141f-7e6c-4133-89d2-4a700da21dac)
- )
- (wire (pts (xy 179.07 21.59) (xy 179.07 20.32))
- (stroke (width 0) (type default))
- (uuid cb7eaf61-be69-4fd0-94a0-facc174863f5)
- )
- (wire (pts (xy 82.55 39.37) (xy 116.84 39.37))
- (stroke (width 0) (type default))
- (uuid d0ab4c7b-ad80-4b80-bc2c-f1c0903ce96e)
- )
- (wire (pts (xy 275.59 22.225) (xy 278.765 22.225))
- (stroke (width 0) (type default))
- (uuid d3a373c0-0a66-43b6-8c85-5cccc72fce96)
- )
- (wire (pts (xy 82.55 22.86) (xy 83.82 22.86))
- (stroke (width 0) (type default))
- (uuid d404337a-aa86-435c-ab72-5d0111dec657)
- )
- (wire (pts (xy 83.82 21.59) (xy 90.17 21.59))
- (stroke (width 0) (type default))
- (uuid d441b495-aebc-4f86-9989-d4a8cdda890d)
- )
- (wire (pts (xy 158.75 149.86) (xy 158.75 152.4))
- (stroke (width 0) (type default))
- (uuid d460434d-650c-4d6a-9ad8-d2d13027aa4b)
- )
- (wire (pts (xy 26.67 85.09) (xy 30.48 85.09))
- (stroke (width 0) (type default))
- (uuid d518d090-92a7-4388-b842-e6dd5ee506b0)
- )
- (wire (pts (xy 93.98 29.21) (xy 100.33 29.21))
- (stroke (width 0) (type default))
- (uuid d6a0638b-a88c-446e-8657-55285b5142a2)
- )
- (wire (pts (xy 215.9 72.39) (xy 220.98 72.39))
- (stroke (width 0) (type default))
- (uuid d902ef84-8068-4240-b882-ba298d100c30)
- )
- (wire (pts (xy 262.89 52.07) (xy 262.89 59.69))
- (stroke (width 0) (type default))
- (uuid d9dfa2d4-afe1-40e9-a68d-a08c082c2d30)
- )
- (wire (pts (xy 260.35 22.225) (xy 258.445 22.225))
- (stroke (width 0) (type default))
- (uuid da8d1712-40d2-4505-b317-9fd8b0855390)
- )
- (wire (pts (xy 22.86 191.77) (xy 30.48 191.77))
- (stroke (width 0) (type default))
- (uuid dbbbd6d9-fa2c-4e68-941d-ae8d00896555)
- )
- (wire (pts (xy 116.84 29.21) (xy 116.84 30.48))
- (stroke (width 0) (type default))
- (uuid dcf1263d-068d-452f-a727-b65b87b0357f)
- )
- (wire (pts (xy 116.84 38.1) (xy 116.84 39.37))
- (stroke (width 0) (type default))
- (uuid dea393d2-e46b-43a9-a553-eac1047133ea)
- )
- (wire (pts (xy 44.45 191.77) (xy 53.34 191.77))
- (stroke (width 0) (type default))
- (uuid dee4917a-0009-4b27-9129-cd75828127a6)
- )
- (wire (pts (xy 37.465 191.77) (xy 44.45 191.77))
- (stroke (width 0) (type default))
- (uuid e2f9358a-b60a-4324-b5c3-22bdcd704baa)
- )
- (polyline (pts (xy 151.13 127) (xy 151.13 198.12))
- (stroke (width 0) (type default))
- (uuid e5b8a23c-5180-40ee-9d20-467baeec8e26)
- )
- (wire (pts (xy 184.15 33.02) (xy 191.77 33.02))
- (stroke (width 0) (type default))
- (uuid e652e349-b688-4477-81e0-d475e84259e1)
- )
- (wire (pts (xy 41.91 77.47) (xy 43.18 77.47))
- (stroke (width 0) (type default))
- (uuid e66d409c-3e37-44e9-b556-2798907c35c4)
- )
- (wire (pts (xy 262.89 59.69) (xy 266.7 59.69))
- (stroke (width 0) (type default))
- (uuid e7f689ad-7658-46a5-aee1-3b6e9ec7ccd8)
- )
- (wire (pts (xy 252.73 90.17) (xy 255.27 90.17))
- (stroke (width 0) (type default))
- (uuid eacdffba-93d5-4cdc-b6d2-251c6f9d06ae)
- )
- (wire (pts (xy 279.4 44.45) (xy 274.32 44.45))
- (stroke (width 0) (type default))
- (uuid ed64fbef-06f5-4da6-9484-e16b71bf2697)
- )
- (wire (pts (xy 173.99 21.59) (xy 179.07 21.59))
- (stroke (width 0) (type default))
- (uuid ed9cfeff-5007-4fa2-bd5f-ce76b53f8414)
- )
- (wire (pts (xy 55.88 35.56) (xy 55.88 22.86))
- (stroke (width 0) (type default))
- (uuid ef64f944-1092-4018-8afc-0c28ade042bd)
- )
- (wire (pts (xy 158.75 152.4) (xy 158.75 154.94))
- (stroke (width 0) (type default))
- (uuid f6f9d302-5687-4bab-a063-c5809ca4550d)
- )
- (wire (pts (xy 220.98 80.01) (xy 229.87 80.01))
- (stroke (width 0) (type default))
- (uuid f8f06393-6349-4768-bfe5-f78c86e1236b)
- )
- (wire (pts (xy 274.32 59.69) (xy 278.13 59.69))
- (stroke (width 0) (type default))
- (uuid f943360e-e417-411e-939f-9f4b413c10cc)
- )
- (wire (pts (xy 252.73 97.79) (xy 252.73 106.68))
- (stroke (width 0) (type default))
- (uuid fb1eeb1a-0b91-4939-8a3c-7ada68081582)
- )
- (wire (pts (xy 30.48 184.15) (xy 37.465 184.15))
- (stroke (width 0) (type default))
- (uuid fb24793d-5712-4184-a755-76f3128aba67)
- )
- (polyline (pts (xy 12.7 92.71) (xy 151.13 92.71))
- (stroke (width 0) (type default))
- (uuid ff72d355-b971-4248-8189-2803811c686d)
- )
- (text "RTC\n" (at 205.74 16.51 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 0579f118-26ff-4124-96e1-3252fe2edb1e)
- )
- (text "V4 : changement de l'ali et de l'esp, rajout d'une résistance en série pour la pt1000"
- (at 179.07 168.91 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 641f2142-3058-49c8-b29b-d831a813dacc)
- )
- (text "montage\n" (at 160.02 196.85 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 8b3b8173-bf62-48ea-affa-e6a98238e239)
- )
- (label "GND" (at 34.29 43.18 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 0021b708-fed0-4326-bab2-a85ee14f1bce)
- )
- (label "sda" (at 170.18 33.02 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 021f471f-687f-4dd2-bd58-ac7814273e5b)
- )
- (label "GND" (at 228.6 48.26 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 03405ce8-0ff0-4fca-b54b-b2c6728be36b)
- )
- (label "CMD" (at 52.705 154.94 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 0466c02c-fb2c-441a-9f11-f640af90e739)
- )
- (label "L_orange" (at 142.24 166.37 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 04b38da3-0fa7-4163-b44d-00d96bf30c61)
- )
- (label "Themp" (at 218.44 157.48 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 0580dfe1-1060-4208-8959-706b619cd7c4)
- )
- (label "3.3V" (at 215.9 72.39 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 05ee8da1-371b-473e-b053-2902738519a1)
- )
- (label "GND" (at 116.205 121.92 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 06e32014-7625-4e48-b2c0-464a2ad7c01b)
- )
- (label "GND" (at 234.95 160.655 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 0bbf697e-2e3f-4978-84e5-3da8616c26d7)
- )
- (label "USB_OTG_FS_N" (at 116.205 129.54 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 0fcda57c-75fb-46c5-8061-8e13a18d65ca)
- )
- (label "S2" (at 219.075 137.795 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 1390947c-461c-4984-adca-43f4dc6b0401)
- )
- (label "GND" (at 93.98 36.83 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 16d72a4b-7b96-48d4-8fb4-7efb3689cddd)
- )
- (label "S10" (at 234.95 142.875 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 171a23a8-88f2-4557-a180-3cc0827b0445)
- )
- (label "3.3V" (at 70.485 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 1ce21285-2066-4b1b-9051-35c0f8f81d07)
- )
- (label "L_orange" (at 116.205 152.4 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 23194221-7a18-46b0-9491-98ff847abbb7)
- )
- (label "mfp" (at 170.18 38.1 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 260c07dc-aea1-4301-bc64-f285166af053)
- )
- (label "GND" (at 98.425 187.96 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 272dadb6-6b1c-464d-80e0-f0a0451d925d)
- )
- (label "3.3V" (at 194.31 111.76 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 292a1c76-78c9-457c-8ce2-eba6e654d04b)
- )
- (label "GND" (at 278.765 22.225 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 2b84cfbc-4b37-4a42-a9af-52e263cc9401)
- )
- (label "12V" (at 234.95 155.575 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 2c0e7ed6-a6b5-452a-8aec-376fb44ecb7f)
- )
- (label "boot0" (at 259.08 52.07 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 319e3401-f904-4f8b-bc5c-17310d756634)
- )
- (label "3.3V" (at 52.705 149.86 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 31cab4f6-057a-4a3c-b123-68df69d009ea)
- )
- (label "swdio" (at 135.89 107.95 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 344c3712-71eb-4ba1-acb0-a09690dad886)
- )
- (label "TX" (at 116.205 144.78 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 3594dd91-7a4d-473e-a4df-28728be14268)
- )
- (label "3.3V" (at 179.07 20.32 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 37ce1562-0974-4a28-b583-b9258fb529a2)
- )
- (label "GND" (at 19.685 127 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 394cb2f9-8bec-41e8-b270-87ff3ca79054)
- )
- (label "GND" (at 74.93 40.64 270) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 399b8b9a-fe91-43da-9cb6-c4470baff4bc)
- )
- (label "sdl" (at 181.61 149.86 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 3d261eee-3bff-412b-af58-69c37a491318)
- )
- (label "aquit" (at 22.86 77.47 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 3de23887-7b4c-4663-a62c-c3a06fbce74f)
- )
- (label "3.3V" (at 65.405 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 3df98879-3f93-4f01-a68b-c1ad0e703156)
- )
- (label "12V" (at 22.86 22.86 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 3ea442f5-c0c9-4379-a481-30a8c32d9630)
- )
- (label "RX" (at 229.87 96.52 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 401f6a68-4a87-4a31-9695-0ba28f3516c2)
- )
- (label "Themp" (at 73.025 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 43ad75d7-e739-45ac-8895-71aee8989e98)
- )
- (label "3.3V" (at 194.31 144.78 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 4418207c-f553-48a4-b7cd-fee073f6229b)
- )
- (label "GPIO0" (at 271.78 93.98 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 4d12cc50-3139-49aa-a0c0-94a908b22fd2)
- )
- (label "GND" (at 129.54 36.83 270) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 4edb91b3-0de3-4581-aaa0-bec83ff7df80)
- )
- (label "3.3V" (at 181.61 154.94 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 526da67c-98a3-4a9c-a451-38b272f5a6cf)
- )
- (label "S10" (at 70.485 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 53efcebb-e3c6-4a29-b643-dfe779785779)
- )
- (label "GND" (at 215.9 80.01 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 544bd3dd-90de-4f20-9f6c-20832babf70c)
- )
- (label "3.3V" (at 179.07 82.55 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 56af1fa1-2c3e-4a67-aca3-2987a081dcc3)
- )
- (label "S1" (at 219.075 135.255 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 5a9e18f4-0a11-4ae2-a143-167465348fdf)
- )
- (label "swclk" (at 135.89 102.87 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 5f46da3d-2c63-4d8e-8856-c93ba2b9da4c)
- )
- (label "RST" (at 271.78 96.52 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 616c507c-f0b5-4f23-8b99-f05b85d2d3a3)
- )
- (label "S6" (at 90.805 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 6491a9f7-8fb7-4dba-866d-887906f61971)
- )
- (label "GND" (at 279.4 44.45 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 66470888-e606-469b-8855-d47f6f1bd2f4)
- )
- (label "nrst" (at 258.445 22.225 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 66e1bccf-54a4-4803-944a-4dda2fe99a72)
- )
- (label "I2C2_SDL" (at 95.885 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 6a294da2-a70c-4ddf-b6d3-ca4734e6226e)
- )
- (label "3.3V" (at 103.505 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 6d8f9f40-21e8-4263-a74f-23b2a50842bb)
- )
- (label "GND" (at 132.08 184.15 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 779e0830-c526-433d-84ff-800104a0730d)
- )
- (label "GND" (at 158.75 157.48 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 77aa2d52-7e50-4457-a243-396464e3308b)
- )
- (label "GND" (at 257.81 155.575 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 79f76c26-f0f4-4160-8c80-f815332ad23d)
- )
- (label "mfp" (at 93.345 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 7aa57a1c-e85d-48c7-bda0-f7426580a1ec)
- )
- (label "GND" (at 67.945 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 80dbc1d9-35e3-4c2b-9dac-f40fe79ec690)
- )
- (label "RST" (at 175.26 93.98 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 833b5572-3e77-4aa9-bffa-355b3f6ffd26)
- )
- (label "S4" (at 80.645 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 87293bd3-54c1-4332-b68b-1a49496f9506)
- )
- (label "GND" (at 67.945 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 8956e11d-565e-425e-882e-a21b13887ada)
- )
- (label "3.3V" (at 19.05 184.15 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 89831278-f793-48f5-8d5b-adb511902494)
- )
- (label "GND" (at 218.44 160.02 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 8d067603-6eca-478a-9ed2-6a7f04164957)
- )
- (label "USB_OTG_FS_P" (at 78.105 78.74 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 8d526a41-4ae6-45b8-be60-212695cafcc1)
- )
- (label "sda" (at 116.205 139.7 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 8e52e590-ddbd-4e72-831f-1f0be7d921d9)
- )
- (label "GND" (at 19.05 191.77 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 934d9955-f69a-42bf-adb4-6e3598b754d7)
- )
- (label "boot0" (at 75.565 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 95a385a0-887d-41a9-8638-2aa7f7de6dc4)
- )
- (label "I2C2_SDA" (at 257.81 158.115 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 95c9e6c8-1644-4f03-ae37-80e4be4cae2a)
- )
- (label "nrst" (at 52.705 134.62 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 97502f93-5f36-44b1-8a4b-420bab62d9da)
- )
- (label "12V" (at 34.29 40.64 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 97987b99-2ede-405c-9798-d1e0711d5606)
- )
- (label "sdl" (at 116.205 137.16 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 9890a9f0-3877-4123-874e-fc4638f5a6bc)
- )
- (label "3.3V" (at 116.205 119.38 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 9a586f1a-3025-4298-a545-191d6bcbdb8a)
- )
- (label "GND" (at 229.87 109.22 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 9aa7865a-1396-4b06-952d-acee742b1bbb)
- )
- (label "GND" (at 187.96 48.26 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 9b0456b0-0e98-4954-82a1-ccc70e365fed)
- )
- (label "swclk" (at 103.505 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 9d43939c-714c-43f4-9e1d-a5fbabc193b8)
- )
- (label "RX" (at 116.205 147.32 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 9d5a5e6d-d66f-4120-a20a-6a0a15a4cecc)
- )
- (label "S8" (at 78.105 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 9f149468-df27-4ea3-ac68-6bc192d627a4)
- )
- (label "GND" (at 19.685 134.62 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid a2bb0301-1099-4e1d-b036-c1ce5de35d5b)
- )
- (label "sdl" (at 170.18 35.56 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid a33d9c93-13aa-4718-a94f-5f0bac86fc02)
- )
- (label "3.3V" (at 142.24 29.21 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid a7536fca-9ed5-4dea-8482-9d93a93044f8)
- )
- (label "USB_OTG_FS_N" (at 78.105 76.2 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid a8824b4f-5873-46a1-882f-3bedfcebc298)
- )
- (label "S4" (at 219.075 142.875 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid a8aa7a54-e25e-4223-a9d7-29492be241da)
- )
- (label "S1" (at 52.705 157.48 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid a8f98b0f-49bb-4d21-8b12-a4d97c5e797a)
- )
- (label "GND" (at 229.87 111.76 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid aa1d7d9d-5f17-4d2d-accc-5877bb108b93)
- )
- (label "S6" (at 219.075 147.955 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid aedc1746-bc85-4146-8162-03da8be750c2)
- )
- (label "RX" (at 271.78 91.44 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid b415dc9b-81f9-459a-999e-8ed90a3086ad)
- )
- (label "GND" (at 135.89 105.41 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid b415e97d-0afc-4bc8-85a9-6bff6476b563)
- )
- (label "3.3V" (at 43.18 69.85 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid b4611b5c-6e50-4a9f-babe-e189e3b5b88b)
- )
- (label "USB_OTG_FS_VBUS" (at 116.205 134.62 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid b5965461-ddca-4ab8-983f-6df9982944d7)
- )
- (label "USB_OTG_FS_VBUS" (at 78.105 73.66 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid b7ef6f71-f6b2-423f-ba86-4a4b6ad533de)
- )
- (label "USB_OTG_FS_ID" (at 116.205 132.08 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid b9c7a092-9a18-4899-9451-bb5c802b69f8)
- )
- (label "3.3V" (at 135.89 100.33 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid ba0b1b30-de0d-42a9-9ecc-f431072c9940)
- )
- (label "wc" (at 200.66 152.4 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid bcda1c86-873b-40ef-8ae2-12bc8d4c7392)
- )
- (label "3.3V" (at 279.4 52.07 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid bd1ca98f-af63-43c1-89a7-27d821a619e1)
- )
- (label "TX" (at 229.87 93.98 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid bec2ceea-af85-438c-a8ae-d0d489bf310f)
- )
- (label "S9" (at 73.025 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid c1d75a32-7b6d-4dc6-9350-58976303b000)
- )
- (label "L_vert" (at 116.205 154.94 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid c47d5fd5-dc7a-4c8e-bc3b-2356f28ea770)
- )
- (label "3.3V" (at 279.4 15.875 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid c6057ea4-e81f-4256-b421-eee597d58551)
- )
- (label "3.3V" (at 212.09 147.32 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid c6c15d4d-2c26-4dc9-9e0e-5a383370e7e1)
- )
- (label "L_vert" (at 132.08 166.37 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid c733a55e-5ff8-46a5-a0e6-4b2a297fa4ab)
- )
- (label "S7" (at 80.645 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid c95a5706-5251-47a3-a028-5492e7244710)
- )
- (label "3.3V" (at 191.77 45.72 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid cba7f6b5-e1b1-425a-a758-8458a7537f60)
- )
- (label "S5" (at 219.075 145.415 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid ccbeb253-522d-4be5-9173-6c1d75b74e98)
- )
- (label "I2C2_SDA" (at 88.265 106.68 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid cfdeef8d-d51d-4ff6-b131-920580c27c96)
- )
- (label "aquit" (at 52.705 152.4 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid d0ab2c14-6f32-471b-a6d8-5fda623349c1)
- )
- (label "wc" (at 52.705 124.46 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid d38fdca9-00dc-4883-91bc-4cd8c4b2844a)
- )
- (label "swdio" (at 116.205 124.46 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid d68fdc5c-d664-4f7b-b6de-1e1929e69b25)
- )
- (label "L_rouge" (at 137.16 166.37 90) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid d7465603-8b8e-4a71-b0b2-5566be3cd7f1)
- )
- (label "GND" (at 240.03 43.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid d89985fa-9859-4795-a1b5-8eccf8095f51)
- )
- (label "S3" (at 78.105 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid d8db4cb5-bd4f-4f83-b0a3-06bcaac6db75)
- )
- (label "GND" (at 43.18 77.47 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid da3c809c-bff6-4b71-af9d-899b48aadb93)
- )
- (label "nrst" (at 135.89 110.49 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid db93a35d-92e3-40a7-8007-ef5d757b8c10)
- )
- (label "USB_OTG_FS_P" (at 116.205 127 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid dba4b138-d130-4946-bb01-ac19d1154af7)
- )
- (label "3.3V" (at 224.79 40.64 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid dc8df901-de4b-4b97-a2db-a6864b2afa39)
- )
- (label "GND" (at 224.79 33.02 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid dee70b5c-4189-408f-9f17-7fe8625becac)
- )
- (label "CMD" (at 234.95 158.115 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid df6900db-3ca0-4801-ac0e-5943f4d1e547)
- )
- (label "GND" (at 100.965 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid e19af755-1f91-4c2a-b262-d65cdfc30d4a)
- )
- (label "L_rouge" (at 116.205 157.48 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid e3176c81-8bfe-4f81-a17c-603ba4d59d92)
- )
- (label "I2C2_SDL" (at 257.81 160.655 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid e361df45-3a5d-4b3f-a350-a45c0a667482)
- )
- (label "S2" (at 65.405 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid e52fc21a-012a-4667-8934-b320691b4180)
- )
- (label "S7" (at 234.95 135.255 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid e57e43dd-af0a-4bc6-8de7-f46d41fa21e2)
- )
- (label "S8" (at 234.95 137.795 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid e599e43b-f4f4-4d38-aa71-3beab369cb0a)
- )
- (label "GND" (at 40.64 30.48 270) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid e6028230-379e-464d-8f5f-d1b2b6d9b1d4)
- )
- (label "GND" (at 52.705 147.32 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid e68fd6f0-f7a4-4e43-b9f4-0b6e3822a84b)
- )
- (label "GND" (at 271.78 99.06 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid ea85d7cc-1bd6-4990-ba6d-2afc9c5a1a97)
- )
- (label "GND" (at 78.105 83.82 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid ee5c008b-80f5-4478-9e4a-c5f3e844673f)
- )
- (label "GPIO0" (at 257.81 104.14 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid eea493ab-b62d-41da-9c92-33ae9dd5522f)
- )
- (label "S5" (at 88.265 170.18 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid eea903df-32ee-436f-aad9-1b6ab166e523)
- )
- (label "GND" (at 62.23 30.48 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid ef1bb0d1-7e43-4a3d-9e18-d55112bcb402)
- )
- (label "3.3V" (at 255.27 90.17 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid f10b8a24-7005-4fdb-b76b-242528e43230)
- )
- (label "S9" (at 234.95 140.335 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid f69a0247-0249-40fd-a325-a3896a59045c)
- )
- (label "TX" (at 271.78 88.9 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid f6f095a1-a5e0-40eb-965a-c6d1b7152661)
- )
- (label "USB_OTG_FS_ID" (at 78.105 81.28 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid f8844f16-5039-432e-8688-286c662c1492)
- )
- (label "GND" (at 137.16 184.15 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid f978b897-74b3-4456-98fe-ea195a42c839)
- )
- (label "S3" (at 219.075 140.335 180) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid fa6646a3-8370-4f6a-be15-c82ebfb5045e)
- )
- (label "GND" (at 116.84 48.26 270) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid fb2434aa-e3eb-4f5f-8c58-3f24fc79a938)
- )
- (label "sda" (at 181.61 147.32 0) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid fb951a07-a6ae-4f21-a6f4-2c5e51c79fd2)
- )
- (label "GND" (at 142.24 184.15 270) (fields_autoplaced)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid fc8ee32f-3119-4b9d-b780-3cd40dcdc6b1)
- )
- (symbol (lib_id "global:R") (at 184.15 25.4 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000056c61bdd)
- (property "Reference" "R5" (at 186.182 25.4 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 184.15 25.4 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 182.372 25.4 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 184.15 25.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0910" (at 1.27 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e53fb559-cae3-47ee-86c2-03e041a1d078))
- (pin "2" (uuid 0a52a871-f77a-43ac-a1fb-2fbbe8c10005))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R5") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 179.07 25.4 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000056c61c77)
- (property "Reference" "R4" (at 181.102 25.4 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 179.07 25.4 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 177.292 25.4 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 179.07 25.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0910" (at 1.27 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 76e5deba-9775-4022-b685-e052d12f30cb))
- (pin "2" (uuid 2aac5a4a-4f32-4e93-ab49-7d519acb9092))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R4") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 173.99 25.4 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000056c61cd4)
- (property "Reference" "R3" (at 176.022 25.4 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 173.99 25.4 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 172.212 25.4 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 173.99 25.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0910" (at 1.27 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5b0fbc56-3057-4ecb-b547-b2895f4f04db))
- (pin "2" (uuid 59911c1b-2802-4164-9f25-4d15d49f79b2))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R3") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X02") (at 29.21 41.91 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000056c85860)
- (property "Reference" "P7" (at 29.21 45.72 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Alim" (at 26.67 41.91 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (at 29.21 41.91 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 29.21 41.91 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0004" (at 252.73 -38.735 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d62a93d3-504f-4ba5-8259-7c465c3cd618))
- (pin "2" (uuid 1b48811c-1817-4839-8b2e-0cc5ee43b428))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P7") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 30.48 187.96 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057054bc2)
- (property "Reference" "C2" (at 31.115 185.42 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (at 31.115 190.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 31.4452 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 30.48 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0605" (at -34.925 291.465 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6af8bb8f-d43c-48db-a7e9-9cb107e7cffb))
- (pin "2" (uuid d7695879-e76f-4672-a5b0-a8147758f0c3))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C2") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:SW_PUSH") (at 267.97 22.225 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057061862)
- (property "Reference" "SW1" (at 271.78 19.431 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "boot" (at 267.97 24.257 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "SW:1812" (at 267.97 22.225 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 267.97 22.225 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0200" (at 1.27 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5d4be9b1-9ff5-47ab-a0d4-49e1d7a7ba5f))
- (pin "2" (uuid 4938653c-bfee-4cb0-9a83-9673cec60202))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "SW1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 270.51 44.45 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057061f55)
- (property "Reference" "R9" (at 270.51 46.482 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 270.51 44.45 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 270.51 42.672 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 270.51 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0910" (at 226.06 -224.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2af158a3-f1cb-480f-b52c-8f453d950dae))
- (pin "2" (uuid 4f693ee5-f1b7-471b-9bc6-7a1158a305a5))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R9") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:SW_PUSH") (at 270.51 52.07 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057061f5b)
- (property "Reference" "SW2" (at 274.32 49.276 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "reset" (at 270.51 54.102 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "SW:1812" (at 270.51 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 270.51 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0200" (at 1.27 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d12cac52-f2a1-4565-9d20-95e4602c8c11))
- (pin "2" (uuid 2503e44f-8ec6-40e3-b782-af5a0b25b301))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "SW2") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X05") (at 140.97 105.41 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057062f1c)
- (property "Reference" "P8" (at 140.97 97.79 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Debug" (at 143.51 105.41 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "PinHeader:PinHeader2.54_1X5" (at 140.97 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 140.97 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0100" (at -139.065 261.62 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 20c7bd82-3056-4e31-a7b5-4da1eb216ac8))
- (pin "2" (uuid f7e09954-af1e-40e8-85fa-170ea72380cf))
- (pin "3" (uuid 49866773-75c9-4223-8502-c3a6d4d32a27))
- (pin "4" (uuid 6d17839b-b767-42be-b6ef-7e954c24e99e))
- (pin "5" (uuid 64d94403-5438-4c3f-a5ad-d70789dd755d))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P8") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X06") (at 224.155 141.605 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000570cfb57)
- (property "Reference" "P5" (at 224.155 132.715 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X06" (at 226.695 141.605 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x6" (at 224.155 141.605 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 224.155 141.605 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0002" (at 4.445 282.575 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 36839f4e-b1a5-4061-a10e-d2c06b0982a3))
- (pin "2" (uuid f42716eb-df8e-4745-8b45-aa0a077d069e))
- (pin "3" (uuid 74dda219-2619-4a24-a414-70a507742da1))
- (pin "4" (uuid 830c4e5a-9025-4007-83a1-934dfc51e394))
- (pin "5" (uuid 66e10b0d-a093-4e36-9c96-3017977337d8))
- (pin "6" (uuid f84d5509-f50c-405b-a6f9-c216d7e9549b))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P5") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 137.16 170.18 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000570e42c5)
- (property "Reference" "R1" (at 135.128 170.18 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "100" (at 137.16 170.18 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 138.938 170.18 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 137.16 170.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0912" (at 273.05 -1.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 99f132d2-b20b-4bb0-83fc-1e97f07003ba))
- (pin "2" (uuid 4db804b5-43c5-48bc-ad3a-5212816d76a3))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:LED") (at 137.16 179.07 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000570e4326)
- (property "Reference" "D1" (at 139.065 183.515 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "rouge" (at 139.065 177.165 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "LED:0805" (at 137.16 179.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 137.16 179.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "1103" (at 317.5 314.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3c43f88c-43e9-488c-975f-ec94657142ee))
- (pin "2" (uuid 41b65eaa-4e44-40e3-ad39-11ec86755cfb))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "D1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 132.08 170.18 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000570e4510)
- (property "Reference" "R2" (at 130.048 170.18 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "100" (at 132.08 170.18 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 133.858 170.18 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 132.08 170.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0912" (at 262.89 -1.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b31bdfbd-bafa-4d78-9979-3efcbf092826))
- (pin "2" (uuid bbafcbd6-3fa4-4c5b-8dc2-f25ec15fa1be))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R2") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:LED") (at 132.08 179.07 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000570e4516)
- (property "Reference" "D2" (at 133.35 183.515 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "vert" (at 133.985 176.53 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "LED:0805" (at 132.08 179.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 132.08 179.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "1106" (at 312.42 309.88 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 02956ccd-9f49-4a6f-a28f-a98e04ac044d))
- (pin "2" (uuid 20c8a90c-e2ba-41ca-860a-3f0a749376af))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "D2") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X01") (at 172.72 174.625 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057237b4f)
- (property "Reference" "P3" (at 172.72 172.085 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MH" (at 175.26 174.625 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "MH:MH3mm" (at 172.72 174.625 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 172.72 174.625 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "NC" (at 1.27 349.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e4e100dd-36bd-45ae-aae9-7c5e8556c788))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P3") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X01") (at 172.72 188.595 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057237bda)
- (property "Reference" "P4" (at 172.72 186.055 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MH" (at 175.26 188.595 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "MH:MH3mm" (at 172.72 188.595 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 172.72 188.595 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "NC" (at 1.27 377.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 357b835d-5c4b-4e3f-9e98-0225526641db))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P4") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X01") (at 157.48 174.625 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057237c51)
- (property "Reference" "P1" (at 157.48 172.085 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MH" (at 160.02 174.625 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "MH:MH3mm" (at 157.48 174.625 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 157.48 174.625 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "NC" (at 1.27 349.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a5ceaed9-35d0-4ede-bec7-6f6f545a7dc5))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X01") (at 157.48 189.865 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057237cc8)
- (property "Reference" "P2" (at 157.48 187.325 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MH" (at 160.02 189.865 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "MH:MH3mm" (at 157.48 189.865 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 157.48 189.865 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "NC" (at 1.27 379.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3d6d9997-164f-4267-b505-b353c233f017))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P2") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:Battery") (at 240.03 39.37 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005725fa6c)
- (property "Reference" "BT1" (at 242.57 38.1 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "Battery" (at 242.57 40.64 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Connector:batterie" (at 240.03 38.354 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 240.03 38.354 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0003" (at 240.03 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dd898406-c060-421b-8450-76f2fb7a24d8))
- (pin "2" (uuid aab80474-dfb4-489e-aa0d-5b4dfcd36680))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "BT1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 194.31 148.59 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005729f1b3)
- (property "Reference" "R10" (at 196.342 148.59 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 194.31 148.59 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 192.532 148.59 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 194.31 148.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0910" (at 1.27 297.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b20767ab-7a58-4fd5-a842-f1874d4a3284))
- (pin "2" (uuid 5ce4efc0-95a4-42de-9b47-ffd120ad8e23))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R10") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "ST:M24C32") (at 170.18 146.05 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057e3bdff)
- (property "Reference" "U2" (at 165.1 144.78 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "M24C32" (at 170.18 157.48 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "U:SO8N" (at 170.18 146.05 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (at 170.18 146.05 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "1700" (at 339.09 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 66fd7abb-7380-4fed-b46b-db8137ef270e))
- (pin "2" (uuid 11232156-7ea8-4495-9523-db41469ad725))
- (pin "3" (uuid 57dc07ad-6536-4427-8be9-7bb9ddc1ebd8))
- (pin "4" (uuid b983c6c4-5617-4d2e-92f7-b7eb6e1c234f))
- (pin "5" (uuid a7d8ebd5-7257-4295-9739-3e062bc71053))
- (pin "6" (uuid c0ea19a2-f571-43b4-8004-12c6e9c66196))
- (pin "7" (uuid 2a00d1c4-7ecf-4e77-8155-274b4450a783))
- (pin "8" (uuid 97ee4c98-1944-4e6a-b650-22845364c6f4))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "U2") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "ST:M41T83") (at 208.28 22.86 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057e3c0bf)
- (property "Reference" "U3" (at 208.28 58.42 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "M41T83" (at 208.28 27.94 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "U:SOX18" (at 208.28 22.86 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (at 208.28 22.86 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "1600" (at 415.29 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5ab43838-6281-4ec4-b8fd-0491b2e26846))
- (pin "10" (uuid 00beb7c9-4cbc-4f6c-b5ae-bb97511f1b23))
- (pin "11" (uuid 3b8ab805-e665-469a-a451-4b28d87fca01))
- (pin "12" (uuid f1ddc3d7-79b4-4c15-9cf8-60d632f9e78b))
- (pin "13" (uuid 906dc7d1-e5b0-4e84-a603-d9f324d35a8e))
- (pin "14" (uuid c0d3061a-4c5a-447a-9de2-3869ba6aaa27))
- (pin "15" (uuid 1f2ddadf-a7ef-420c-ab37-124be8c73947))
- (pin "16" (uuid 37f064a7-8f98-457c-be76-bd1cef4d3280))
- (pin "17" (uuid 2d39f751-92d3-431a-9f45-43e54fd2c8af))
- (pin "18" (uuid 19b1dd7e-e68a-43e7-8f4c-9a6de1ba91e2))
- (pin "2" (uuid ef805683-558b-44f4-a1fe-3fe657474b76))
- (pin "3" (uuid ca1a132d-e902-421d-a0e0-b47a874736ea))
- (pin "4" (uuid 67e6e9b7-9dfd-4f2f-bc7f-80c829893a8f))
- (pin "5" (uuid dae5c794-6d69-4ff6-bd43-485cf3ab7cac))
- (pin "6" (uuid d6dec7cc-a3d3-4220-990e-62e0d47e8c81))
- (pin "7" (uuid b6307f26-09c4-48d8-9890-7c1fbaf94df7))
- (pin "8" (uuid 500285d7-9d55-437d-a3b6-7f23f2914532))
- (pin "9" (uuid 50e545b0-8099-4740-a54f-4e87da0801d6))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "U3") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 267.97 27.94 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057e50214)
- (property "Reference" "C6" (at 270.51 28.575 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "1µF" (at 265.43 28.575 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 264.16 28.9052 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 267.97 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0606" (at 240.03 -238.76 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5dc3cf1f-2e87-462f-a3a5-88066f97f3a1))
- (pin "2" (uuid 56cc6b4c-40f3-496d-b5e4-63240b13ec42))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C6") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 267.97 15.875 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057e50ded)
- (property "Reference" "R8" (at 267.97 17.907 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "100K" (at 267.97 15.875 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 267.97 14.097 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 267.97 15.875 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0916" (at 252.095 -250.825 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 83c7a9ab-f353-45d3-b3e9-93bfd7ac0988))
- (pin "2" (uuid 84c094ef-4769-4fe2-bcc5-cdd1e523867b))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R8") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 270.51 59.69 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000057e518cc)
- (property "Reference" "C7" (at 273.05 60.325 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (at 267.97 60.325 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 266.7 60.6552 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 270.51 59.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0605" (at 210.82 -209.55 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 48250c20-6cfe-4b71-9272-f87d3982305a))
- (pin "2" (uuid 99930e5d-9239-4318-b94a-cc068343c12e))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C7") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:Micro_USB") (at 65.405 78.74 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000059256a87)
- (property "Reference" "J1" (at 71.755 87.63 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "Micro_USB" (at 66.675 69.85 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "Connector:Micro-USB" (at 70.485 83.82 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (at 70.485 83.82 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "0050" (at -95.885 171.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "0" (uuid e7d1cf28-5b71-4cd2-9a3f-a76076f35404))
- (pin "1" (uuid 14a740eb-b4b2-4746-8f46-552232f036f5))
- (pin "2" (uuid 518c8991-1c1a-4791-914a-56f527a384f7))
- (pin "3" (uuid a1d799ce-c682-4d47-911d-c505192f1227))
- (pin "4" (uuid 98bf53d2-b699-409a-a0fa-bfc3d39fd22a))
- (pin "5" (uuid 007fad06-0861-4e10-9571-0a55370a009d))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "J1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "ST:STM32F401RC") (at 84.455 138.43 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592dbf4d)
- (property "Reference" "U1" (at 109.855 166.37 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "STM32F401RC" (at 83.185 156.21 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "U:LQFP64" (at 53.975 154.94 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (at 53.975 154.94 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2102" (at 1.27 278.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2a24203b-775b-4e87-8773-e04660d98099))
- (pin "10" (uuid 34fb610c-bf1f-43fe-b3f6-883fdd7a409f))
- (pin "11" (uuid 2bb2f070-333f-43f3-b836-43af5a4341ea))
- (pin "12" (uuid 81c73015-aaf8-48a1-a6c5-1022a1f8899b))
- (pin "13" (uuid 1c5b86f7-1d24-4d59-b5d1-34f209b3b982))
- (pin "14" (uuid 5315f2b5-f04d-4245-bc0c-263e8fc07362))
- (pin "15" (uuid 7c7069f8-bf7b-4a91-85ee-aa7f3b9b50f4))
- (pin "16" (uuid 89172958-9ddf-4ea5-9ac6-7e4ac2eafc27))
- (pin "17" (uuid d03b2591-ae09-418f-b2e4-e41743f8cad8))
- (pin "18" (uuid ecb49b2f-8020-4aa1-9d3f-1b49cdf00b11))
- (pin "19" (uuid 7f36df90-3b17-4d65-95bd-f02d4cb26a44))
- (pin "2" (uuid 024c6a74-a590-458e-acb8-2c1ad4a055dc))
- (pin "20" (uuid ca192db0-8500-43f7-bdf8-55077f59d5b0))
- (pin "21" (uuid 21e0a0d1-f7d4-4717-b649-894936594231))
- (pin "22" (uuid 47843965-ee14-4ae3-b8ed-ecc010dd6930))
- (pin "23" (uuid dfd0e49d-c9e3-42f9-a738-f8d3aa28505b))
- (pin "24" (uuid 4049ef1a-48ee-4714-9cc9-169136b47434))
- (pin "25" (uuid 4892527a-e03c-4205-8674-d34e2aa7236d))
- (pin "26" (uuid b33ffa8a-d5bd-4928-a393-64c7909ac175))
- (pin "27" (uuid 65171539-c610-457d-b565-6710aa620d43))
- (pin "28" (uuid ee11f18d-a463-4aee-a423-77bb654ee242))
- (pin "29" (uuid 2920e631-a968-49ca-8845-1bb1993952a6))
- (pin "3" (uuid b46a2b5a-e99e-440c-b3e5-ae8154fabdae))
- (pin "30" (uuid dc0aeb8b-7d7e-4ec8-ab78-9451b77059eb))
- (pin "31" (uuid 964b91c6-c477-4545-9dd5-0f92bd5e5363))
- (pin "32" (uuid db6ecdc2-9fd4-4845-a67e-48de58f37aa4))
- (pin "33" (uuid 1a3ae5a2-dc8a-425e-a691-e67874ccc6cb))
- (pin "34" (uuid 465a0f82-9713-4e42-ae96-ef215f9b3cfc))
- (pin "35" (uuid 94b25dd8-820f-4a9f-a4d2-fa7cadc2ec6a))
- (pin "36" (uuid 2a818093-0760-4a99-ab7c-1983f69dd33a))
- (pin "37" (uuid 220de544-dda7-411a-9461-e4e12013cfff))
- (pin "38" (uuid 1165dcb5-d6fa-4dbf-af49-bd40f8434a3d))
- (pin "39" (uuid 5091ae80-4e1d-4b39-9b95-5311bb48979b))
- (pin "4" (uuid d6b310b3-b79b-4daf-abf0-8890c9e7a40e))
- (pin "40" (uuid e240bf5c-9468-4d6e-a233-0e3603f76c7f))
- (pin "41" (uuid 0611d7ad-cff4-417c-a6e3-7b7d2ff14148))
- (pin "42" (uuid 000d23c5-c0b9-4b68-86be-eab36f9c5629))
- (pin "43" (uuid df2840f5-bbbc-446b-82ee-0b7a125ee43b))
- (pin "44" (uuid cce23a5f-2211-4a7e-a531-8fad4b3eb37c))
- (pin "45" (uuid f77b900d-200b-456f-a333-699cffdc4e84))
- (pin "46" (uuid 0f6b18ef-1bee-47f9-8e72-570083268e11))
- (pin "47" (uuid 217f856b-add5-4598-aeff-9b8fe4ddd34c))
- (pin "48" (uuid df96d105-f33d-4531-8eab-ebf6de2567b2))
- (pin "49" (uuid 84204078-f178-40bd-910a-fb3e81d8df32))
- (pin "5" (uuid 538714a0-dca9-4a04-b6b0-d5af4911d026))
- (pin "50" (uuid 0339010a-02cf-4c13-a545-4427244fcac4))
- (pin "51" (uuid fc7062e4-00d8-4cb4-90bc-3a2850e9a5d3))
- (pin "52" (uuid 01389e51-bdd3-49c6-ac79-f6df6704153c))
- (pin "53" (uuid 52c0e656-04a3-4c7e-8cb7-ed28e61c4489))
- (pin "54" (uuid 9789cab2-8f31-485e-b6ab-e957a9c5dec2))
- (pin "55" (uuid 73ee06d8-d00e-4461-88a9-441f8d234406))
- (pin "56" (uuid 7d6e4181-7c05-4c26-968a-2719f56ec0fa))
- (pin "57" (uuid 2d11438e-2054-4b98-93b6-9c3e6676b189))
- (pin "58" (uuid 75dc5f52-d95f-4d38-9492-e354351cc8ec))
- (pin "59" (uuid a59e0563-9202-4629-bd8d-10a588d49982))
- (pin "6" (uuid 641593af-6ca3-4588-aba5-9b13a07a6a29))
- (pin "60" (uuid fd663e48-2d36-469b-bdb6-341351b89d83))
- (pin "61" (uuid f8edd214-6b79-4830-b073-31173b8cb730))
- (pin "62" (uuid d2f39944-b3bc-4d72-9b02-563074216ac2))
- (pin "63" (uuid 06814ea2-6721-4e12-a54c-53798adfdb91))
- (pin "64" (uuid 04ff3900-dea1-4766-8ec1-af3d46ebc81f))
- (pin "7" (uuid bcaf809f-a47a-4682-8e1e-d90fd63ecee5))
- (pin "8" (uuid 6f1dfced-8001-4b63-bcc6-f9c68a6177aa))
- (pin "9" (uuid 338ce6da-2a8b-4802-9ff9-505b3bce25af))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "U1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:Crystal") (at 34.29 130.81 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e1245)
- (property "Reference" "Y1" (at 38.1 130.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "25Mhz" (at 30.48 130.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Y:5032" (at 34.29 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 34.29 130.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "1650" (at -97.79 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1ab2bf36-53e6-4587-ae19-41526f622911))
- (pin "2" (uuid 7cc1960d-1334-402c-aab1-634237251f06))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "Y1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 23.495 134.62 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e1b87)
- (property "Reference" "C10" (at 26.035 135.255 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "22pF" (at 20.955 135.255 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0603" (at 19.685 135.5852 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 23.495 134.62 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0600" (at -112.395 112.395 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e03fd983-fe35-4e03-bc3f-09d38b726912))
- (pin "2" (uuid a06aab30-fccb-4bd0-97e8-ef6d8a8d05d1))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C10") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 23.495 127 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e1cb0)
- (property "Reference" "C11" (at 26.035 127.635 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "22pF" (at 20.955 127.635 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0603" (at 19.685 127.9652 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 23.495 127 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0600" (at -104.775 104.775 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6889a9c9-fdc6-40f6-9cdd-ff2a4d5dc113))
- (pin "2" (uuid 56427218-eb34-4fdc-8d8c-49eaff2b0fab))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C11") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 60.96 187.96 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e7e79)
- (property "Reference" "C13" (at 61.595 185.42 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (at 61.595 190.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 61.9252 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 60.96 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0605" (at -41.275 370.205 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0b204111-4541-428f-b306-5da3039e3bb8))
- (pin "2" (uuid fa1be591-78dd-4364-9228-069924ae2a92))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C13") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 68.58 187.96 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e8599)
- (property "Reference" "C14" (at 69.215 185.42 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (at 69.215 190.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 69.5452 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 68.58 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0605" (at -55.88 309.88 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c5b5d258-ad6d-4829-b53f-8b1ec24f50ff))
- (pin "2" (uuid f391df5e-395b-48a9-9ae0-7ea01f3395f7))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C14") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 53.34 187.96 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e893a)
- (property "Reference" "C9" (at 53.975 185.42 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (at 53.975 190.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 54.3052 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 53.34 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0605" (at -14.605 368.935 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 79ee435a-3fe3-4108-934c-23e659bd89eb))
- (pin "2" (uuid b78cc572-f62c-4006-a403-8bc13b1d2bef))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C9") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 44.45 187.96 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e8dca)
- (property "Reference" "C8" (at 45.085 185.42 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (at 45.085 190.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 45.4152 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 44.45 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0605" (at 2.54 337.82 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2c142821-6413-4ec4-96ff-98c0766e50de))
- (pin "2" (uuid 75089b70-1418-47eb-b136-fcc667cbce84))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C8") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 37.465 187.96 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e902a)
- (property "Reference" "C3" (at 38.1 185.42 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "1µF" (at 38.1 190.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 38.4302 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 37.465 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0606" (at 2.54 337.82 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f369ac2e-b7ac-4f82-8323-7788e58e7481))
- (pin "2" (uuid 754a3f00-f26f-4043-a6aa-24ffd1970a41))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C3") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 98.425 184.15 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e97a8)
- (property "Reference" "C12" (at 99.06 181.61 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4.7µF" (at 99.06 186.69 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 99.3902 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 98.425 184.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0607" (at 8.255 372.745 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d5368926-2274-4659-bfb5-71ac1f393e1f))
- (pin "2" (uuid 5ebe8468-c9dd-43d5-975c-1d0a63dc29bf))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C12") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 22.86 187.96 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-0000592e9bbe)
- (property "Reference" "C1" (at 23.495 185.42 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4.7µF" (at 23.495 190.5 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 23.8252 191.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 22.86 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0607" (at 2.54 365.125 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 82f959b4-a230-41d4-acb0-61ddc13c33be))
- (pin "2" (uuid a6d6a8a1-d9a6-4456-9c4a-c4eff432492c))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X03") (at 262.89 158.115 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-000059b166c5)
- (property "Reference" "P9" (at 262.89 153.035 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "I2C" (at 265.43 158.115 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x3" (at 262.89 158.115 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 262.89 158.115 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0005" (at 8.255 315.595 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0c9e0e67-fd05-4dbf-8757-17071509c31c))
- (pin "2" (uuid e33929b4-78f8-4083-97ca-78dc616333a5))
- (pin "3" (uuid b7d75f62-e43a-48ef-b332-8f4ce5c0546a))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P9") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X03") (at 240.03 158.115 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005b364cd7)
- (property "Reference" "P11" (at 240.03 153.035 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Ventilateur" (at 242.57 158.115 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x3" (at 240.03 158.115 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 240.03 158.115 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0005" (at 6.985 315.595 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9d0a7473-7ad7-4770-a0f1-3add9d1f6155))
- (pin "2" (uuid 17014d90-4d87-4b52-a26a-2e1738249348))
- (pin "3" (uuid 6c028055-461e-48a0-b0bc-1ede5834fd8b))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P11") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:LED") (at 142.24 179.07 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005b3a77c2)
- (property "Reference" "D3" (at 144.145 183.515 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Orange" (at 144.145 177.165 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "LED:0805" (at 142.24 179.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 142.24 179.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "1102" (at 322.58 320.04 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3bd848d1-80e5-4836-99eb-4464cbda6e17))
- (pin "2" (uuid aa63e1da-bf74-4bc6-bffa-48a516449c21))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "D3") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 142.24 170.18 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005b3a7872)
- (property "Reference" "R13" (at 140.208 170.18 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "100" (at 142.24 170.18 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 144.018 170.18 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 142.24 170.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0912" (at 283.21 -1.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b135e6d3-8338-4190-8c40-e7f31192224e))
- (pin "2" (uuid 3fd2ccee-d1a4-4c9d-b767-705eb368c709))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R13") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X03") (at 223.52 157.48 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005b3ae3c4)
- (property "Reference" "P10" (at 223.52 152.4 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Thermometre" (at 226.06 157.48 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x3" (at 223.52 157.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 223.52 157.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0005" (at 5.08 314.325 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 498a2ce4-57f1-4941-ab08-5650cddbf1b5))
- (pin "2" (uuid 8da31492-fda3-41a5-b1b1-fd422f703a24))
- (pin "3" (uuid 722258df-ba5a-4933-9e3b-d718b6f4de0e))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P10") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X04") (at 240.03 139.065 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005b3ce1cc)
- (property "Reference" "P6" (at 240.03 132.715 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X04" (at 242.57 139.065 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x4" (at 240.03 139.065 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 240.03 139.065 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0006" (at 4.445 277.495 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 09878252-e512-456b-b4b7-ddb553d5b753))
- (pin "2" (uuid e5b44ebc-e518-4798-ab3c-0cf01217fc13))
- (pin "3" (uuid c231126b-76dc-4a48-9ff5-f8dce39afed1))
- (pin "4" (uuid ed7c45bb-6809-4780-ab48-9ea8b8506a28))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P6") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 34.29 69.85 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005b3d4e22)
- (property "Reference" "R14" (at 34.29 71.882 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 34.29 69.85 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 34.29 68.072 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 34.29 69.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0910" (at 17.78 -75.565 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 096eec3c-93c9-4608-a2e3-c738887ee11b))
- (pin "2" (uuid 465b8079-41e6-464b-9757-8d0887508ed3))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R14") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 34.29 85.09 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005b3d4e2b)
- (property "Reference" "C15" (at 36.83 85.725 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (at 31.75 85.725 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 30.48 86.0552 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 34.29 85.09 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0605" (at 2.54 -60.325 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dabd563c-b406-4dd4-be0c-3ebf952d28c3))
- (pin "2" (uuid eade498e-46c7-41f7-9365-7659da908618))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C15") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:SW_PUSH") (at 34.29 77.47 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 00000000-0000-0000-0000-00005b3d4e31)
- (property "Reference" "SW3" (at 38.1 74.676 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "aquit" (at 34.29 79.502 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "SW:1812" (at 34.29 77.47 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 34.29 77.47 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "0200" (at -111.125 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 7ace5647-42ba-4c01-a462-5103b32ef13f))
- (pin "2" (uuid 7b029228-8216-4f47-9326-153ba3640d83))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "SW3") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "Module:ESP-12F") (at 212.09 105.41 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 0e4b48c7-643c-43fb-82f7-2a824e73b30c)
- (property "Reference" "U6" (at 212.09 86.6902 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "ESP-12F" (at 212.09 89.3826 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "Module:ESP-12F" (at 212.09 106.68 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (at 212.09 106.68 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2800" (at 212.09 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c180582d-d2b0-445a-81db-180f83e3192c))
- (pin "10" (uuid 0013cacd-1920-476d-8904-ba26c69ec612))
- (pin "11" (uuid 15b21fb3-1e86-427e-822a-476962447c2c))
- (pin "12" (uuid 337508e9-8829-47d2-8c98-40b12b01ebef))
- (pin "13" (uuid 41cddc60-d61b-4094-b6b5-f83f31420ecf))
- (pin "14" (uuid ef988624-a01c-4547-92f5-71678bfbd7e3))
- (pin "15" (uuid c4f541d9-cbf8-4843-bdc9-a837db827c70))
- (pin "16" (uuid a2771073-3dcf-4c74-9110-3dffcda48b07))
- (pin "17" (uuid ca32b04d-358f-41e0-8505-545abebebf3a))
- (pin "18" (uuid 9e6dafa5-b9cd-4c2c-ac1d-2fc3a5e2336b))
- (pin "19" (uuid a595c1d4-8639-405c-a333-5580443fb1bc))
- (pin "2" (uuid 9fe23f3b-41e4-463c-a9f0-706b8a60fbea))
- (pin "20" (uuid 57055d9f-c2f7-4f0f-97b8-59c7a305717d))
- (pin "21" (uuid f9ae38d7-508f-433f-939e-1339ef2cb972))
- (pin "22" (uuid 2a8b9b92-d843-4ad6-8c71-a5db02a1d74d))
- (pin "3" (uuid 37cbc230-732c-403e-a6b0-66902eb9f0ab))
- (pin "4" (uuid 1fd6d2d8-a030-4460-92a2-6c00bb0e2620))
- (pin "5" (uuid 0b65ba20-007f-4133-917d-daef433cb45c))
- (pin "6" (uuid cbd2da90-b555-48dd-8b1b-2f2fbd8b4761))
- (pin "7" (uuid 1a551b2d-b5a3-43a5-9c7e-d87e209203a2))
- (pin "8" (uuid d353c46e-ab91-4110-8921-480a1248ddd3))
- (pin "9" (uuid 774ac278-418d-43da-8122-e0dfe7fe2867))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "U6") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 181.61 86.36 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 20fccb3b-2ca6-4209-98e3-dd09f0868379)
- (property "Reference" "R19" (at 183.642 86.36 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 181.61 86.36 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 179.832 86.36 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 181.61 86.36 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0910" (at 153.67 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid df167fc0-c739-40fc-9018-c77b24fbfc6d))
- (pin "2" (uuid dd1aa588-d4bb-4c4a-acc9-45f6dcc834c4))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R19") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 212.09 151.13 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 2aac33d7-5893-4a90-9c49-a6896dba7e0b)
- (property "Reference" "R11" (at 214.122 151.13 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 212.09 151.13 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 210.312 151.13 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 212.09 151.13 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0910" (at 137.16 181.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 110d352a-f735-40d5-ba00-9928ada60f6f))
- (pin "2" (uuid e30552ff-3e77-4a61-b59e-957482e8d5c3))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R11") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:TVS") (at 40.64 26.67 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 36473aad-0058-4b9a-9b56-5c50795f6f30)
- (property "Reference" "D4" (at 44.45 24.765 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "TVS" (at 44.45 27.305 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMB" (at 40.64 26.67 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 40.64 26.67 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "1400" (at 40.64 26.67 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid cb921316-b756-47c1-82a2-4da60aa814ff))
- (pin "2" (uuid 14d6a881-cb25-4f4b-b8d7-9bcdd7abb9b1))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "D4") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "D1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 229.87 76.2 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 5cb50bc2-8645-4fe4-800f-cdff77ceb441)
- (property "Reference" "C20" (at 232.791 75.0316 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (at 232.791 77.343 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 230.8352 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 229.87 76.2 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0605" (at 198.12 124.46 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f57bf051-53d7-4db8-a726-beee47712907))
- (pin "2" (uuid 63a23c0e-6487-4492-a54e-ad2af1830853))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C20") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 116.84 44.45 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 60d46624-aa45-463e-9a7e-3ee93d7b9509)
- (property "Reference" "R18" (at 119.38 43.1799 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "16.3K" (at 119.38 45.7199 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (at 115.062 44.45 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 116.84 44.45 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0933" (at 116.84 44.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5304a58a-40a0-4508-ada7-83713ec4690c))
- (pin "2" (uuid a96ae5b5-ee69-4325-9209-1243cf01b25a))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R18") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "R?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 62.23 26.67 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 64dab7f2-4475-407b-af1e-d3bf677fe203)
- (property "Reference" "C4" (at 63.5 24.13 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10µF" (at 63.5 29.21 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 63.1952 30.48 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 62.23 26.67 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "" (at 62.23 26.67 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0bf7eb18-4bab-4978-8929-434556e16ae8))
- (pin "2" (uuid 12b0855a-2e69-46a9-9e61-690c8ca0df49))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C4") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "C?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 59.69 35.56 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 6a2ac76b-55af-44f8-a5a7-02993d33007d)
- (property "Reference" "R6" (at 58.42 38.1 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (at 57.15 35.56 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (at 59.69 33.782 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 59.69 35.56 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0916" (at 59.69 35.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2cbbf3b6-0e09-4720-9f80-099ac06bc1c0))
- (pin "2" (uuid 1aafd289-0de0-49a4-b6ec-ea3d7c631808))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R6") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "R?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:FUSE") (at 29.21 22.86 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 6ac78366-9e9a-44e5-a23a-789fe9a044f0)
- (property "Reference" "F2" (at 29.21 16.51 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "FUSE" (at 29.21 19.05 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "F:1812" (at 29.21 22.86 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 29.21 22.86 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "1450" (at 29.21 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 83a90eab-4ba5-4a9b-890f-d54dcc0449f8))
- (pin "2" (uuid 51cf6e02-0e80-472a-9a46-8091e55a9caf))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "F2") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "F1") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 116.84 34.29 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 7cce7429-df92-4324-b5b9-1580fd0b7e86)
- (property "Reference" "R7" (at 119.38 33.0199 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "49.9K" (at 118.11 35.56 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (at 115.062 34.29 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 116.84 34.29 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0932" (at 116.84 34.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9a524dc7-5a2c-4d40-b9a6-519c48c8d8e2))
- (pin "2" (uuid d626cd02-ed9e-44ea-8709-0c4ba785e7bb))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R7") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "R?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 129.54 33.02 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 85625153-997c-4c67-a8fa-99879192deb8)
- (property "Reference" "C18" (at 133.35 31.7499 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "22µF" (at 133.35 34.2899 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0603" (at 130.5052 36.83 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 129.54 33.02 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0622" (at 129.54 33.02 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1d2e5719-c4a3-4cea-9fcb-a94bdf295003))
- (pin "2" (uuid a423a522-a5c7-4396-aaae-2140b542c551))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C18") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "C?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 220.98 76.2 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 89abc644-c1a5-44ab-b208-94932790e0eb)
- (property "Reference" "C19" (at 221.615 73.66 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4.7µF" (at 221.615 78.74 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 221.9452 80.01 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 220.98 76.2 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0607" (at 200.66 253.365 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6bf582e4-e05c-471f-a6bc-d3dac041c1af))
- (pin "2" (uuid e0408703-800c-4df2-97c0-eb73f622a8fe))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C19") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "DIodeInc:AP3211KTR-G1") (at 74.93 29.21 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid aa7215e2-6d7c-4959-9f2c-631959440ade)
- (property "Reference" "U4" (at 77.47 39.37 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "AP3211KTR-G1" (at 67.31 19.05 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "U:SOT23-6" (at 74.93 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 74.93 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "1809" (at 74.93 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 68ae9886-cbfb-410c-99a7-5593be623229))
- (pin "3" (uuid d36f2ce5-2609-4343-87fb-796b2bf90e1d))
- (pin "4" (uuid bde82862-5e65-4e9a-be04-2c1225ffaac0))
- (pin "5" (uuid ae0198b3-66a4-445b-b237-36d85878e036))
- (pin "6" (uuid c33bad49-ead1-4ced-8b16-03b5bc925da1))
- (pin "1" (uuid f2fca707-29e8-47b2-b1b8-113a2ba55ad0))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "U4") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "U?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:D") (at 93.98 33.02 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid ab0a3c77-e490-4a59-a89f-c9dab1310009)
- (property "Reference" "D5" (at 96.52 31.7118 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "D" (at 96.52 34.2518 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SOD-123" (at 93.98 33.02 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 93.98 33.02 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "1300" (at 93.98 33.02 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8a58fef6-ef44-4da7-82fd-465ac6dc0f11))
- (pin "2" (uuid 8fc86577-a51b-41f9-a395-b225888ad57b))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "D5") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "D?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 246.38 93.98 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid b7c5c4f4-6062-4b21-b46e-72238878f775)
- (property "Reference" "R21" (at 248.412 93.98 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 246.38 93.98 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 244.602 93.98 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 246.38 93.98 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0910" (at 171.45 124.46 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 185d8b2d-f4d8-45f3-ad14-9ed18b6c0ab8))
- (pin "2" (uuid 5635d1a7-c9c8-444f-b875-f5159eb8e9c1))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R21") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:INDUCTOR") (at 107.95 29.21 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid bfdae916-9e93-45ee-b929-a93a86b5fbc1)
- (property "Reference" "L1" (at 107.95 22.86 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "4.7µH" (at 107.95 25.4 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "L:0630" (at 107.95 29.21 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (at 107.95 29.21 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0805" (at 107.95 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1f3dd1eb-72ed-424d-940b-4bf66f4fdd98))
- (pin "2" (uuid b2b37a31-7746-4a33-bf37-3a6ff0cc3bbd))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "L1") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "L?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 252.73 93.98 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid c5618f80-e058-49a6-a0d3-eeb580cb4415)
- (property "Reference" "R22" (at 254.762 93.98 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 252.73 93.98 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 250.952 93.98 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 252.73 93.98 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0910" (at 175.26 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a48a5ab1-2006-4923-a91a-221ebec13687))
- (pin "2" (uuid ad3f3cf6-f7cc-4fc0-b15a-593233167d0d))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R22") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:C") (at 90.17 25.4 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid da291178-8ed0-45e9-a698-70901a897108)
- (property "Reference" "C5" (at 93.98 24.1299 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10nF" (at 93.98 26.6699 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (at 91.1352 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 90.17 25.4 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0604" (at 90.17 25.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d11707ea-2a94-419c-8267-63be7e4cb941))
- (pin "2" (uuid 838aeb10-ac1c-45f0-aab5-57c7c908b3b7))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "C5") (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "C?") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "global:R") (at 187.96 86.36 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid f572e92c-129c-4adf-9371-919b581fe822)
- (property "Reference" "R20" (at 189.992 86.36 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 187.96 86.36 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "R:0805" (at 186.182 86.36 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 187.96 86.36 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0910" (at 160.02 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b53e0616-ec79-4de0-a1b3-7dde3aba9864))
- (pin "2" (uuid 5d4fb3f7-6b16-4e0c-8324-9fd1887d0d77))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "R20") (unit 1)
- )
- )
- )
- )
- (symbol (lib_id "conn:CONN_01X05") (at 276.86 93.98 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid f5b75d0b-4fb9-4cf1-9fae-a16498924a29)
- (property "Reference" "P13" (at 275.59 86.36 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X05" (at 279.4 100.33 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "PinHeader:PinHeader2.54_1X5" (at 276.86 93.98 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 276.86 93.98 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Partkeepr" "0100" (at 276.86 93.98 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 727c7401-643a-4ff6-a052-dd760d5941ff))
- (pin "2" (uuid 8af25451-7219-4262-9343-6a286b1574e2))
- (pin "3" (uuid 6c32b8e9-4659-4776-9a41-f1b14540cb2e))
- (pin "4" (uuid 4d81d6f0-4327-48a0-8b33-a3ca6874de4a))
- (pin "5" (uuid c8a58c37-8480-40b3-9d07-38ed1fd343ed))
- (instances
- (project "proc"
- (path "/e097b152-7eac-4218-984f-e86f016c5a43"
- (reference "P13") (unit 1)
- )
- )
- )
- )
- (sheet_instances
- (path "/" (page "1"))
- )
- )
|