GPS.kicad_sch 204 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid db36f6e3-e72a-487f-bda9-88cc84536f62)
  3. (paper "A3")
  4. (lib_symbols
  5. (symbol "Microchip:MIC5219-3.3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at 5.08 -5.08 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "MIC5219-3.3" (id 1) (at 0 5.08 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "" (id 3) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (symbol "MIC5219-3.3_0_1"
  19. (rectangle (start -6.35 -3.81) (end 6.35 3.81)
  20. (stroke (width 0) (type default) (color 0 0 0 0))
  21. (fill (type none))
  22. )
  23. )
  24. (symbol "MIC5219-3.3_1_1"
  25. (pin power_in line (at -8.89 2.54 0) (length 2.54)
  26. (name "IN" (effects (font (size 1.27 1.27))))
  27. (number "1" (effects (font (size 1.27 1.27))))
  28. )
  29. (pin power_in line (at -8.89 0 0) (length 2.54)
  30. (name "GND" (effects (font (size 1.27 1.27))))
  31. (number "2" (effects (font (size 1.27 1.27))))
  32. )
  33. (pin input line (at -8.89 -2.54 0) (length 2.54)
  34. (name "EN" (effects (font (size 1.27 1.27))))
  35. (number "3" (effects (font (size 1.27 1.27))))
  36. )
  37. (pin input line (at 8.89 -2.54 180) (length 2.54)
  38. (name "BYP" (effects (font (size 1.27 1.27))))
  39. (number "4" (effects (font (size 1.27 1.27))))
  40. )
  41. (pin power_out line (at 8.89 2.54 180) (length 2.54)
  42. (name "OUT" (effects (font (size 1.27 1.27))))
  43. (number "5" (effects (font (size 1.27 1.27))))
  44. )
  45. )
  46. )
  47. (symbol "Module:NEO-7M" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  48. (property "Reference" "U" (id 0) (at 10.16 -16.51 0)
  49. (effects (font (size 1.27 1.27)))
  50. )
  51. (property "Value" "NEO-7M" (id 1) (at 0 16.51 0)
  52. (effects (font (size 1.27 1.27)))
  53. )
  54. (property "Footprint" "" (id 2) (at 13.97 13.97 0)
  55. (effects (font (size 1.27 1.27)) hide)
  56. )
  57. (property "Datasheet" "" (id 3) (at 13.97 13.97 0)
  58. (effects (font (size 1.27 1.27)) hide)
  59. )
  60. (symbol "NEO-7M_0_0"
  61. (pin power_in line (at -13.97 -8.89 0) (length 2.54)
  62. (name "GND" (effects (font (size 1.27 1.27))))
  63. (number "10" (effects (font (size 1.27 1.27))))
  64. )
  65. (pin input line (at -13.97 -11.43 0) (length 2.54)
  66. (name "RF_IN" (effects (font (size 1.27 1.27))))
  67. (number "11" (effects (font (size 1.27 1.27))))
  68. )
  69. (pin power_in line (at -13.97 -13.97 0) (length 2.54)
  70. (name "GND" (effects (font (size 1.27 1.27))))
  71. (number "12" (effects (font (size 1.27 1.27))))
  72. )
  73. (pin power_in line (at 13.97 -13.97 180) (length 2.54)
  74. (name "GND" (effects (font (size 1.27 1.27))))
  75. (number "13" (effects (font (size 1.27 1.27))))
  76. )
  77. (pin no_connect line (at 13.97 -11.43 180) (length 2.54)
  78. (name "NC" (effects (font (size 1.27 1.27))))
  79. (number "14" (effects (font (size 1.27 1.27))))
  80. )
  81. (pin no_connect line (at 13.97 -8.89 180) (length 2.54)
  82. (name "NC" (effects (font (size 1.27 1.27))))
  83. (number "15" (effects (font (size 1.27 1.27))))
  84. )
  85. (pin no_connect line (at 13.97 -6.35 180) (length 2.54)
  86. (name "NC" (effects (font (size 1.27 1.27))))
  87. (number "16" (effects (font (size 1.27 1.27))))
  88. )
  89. (pin no_connect line (at 13.97 -4.0386 180) (length 2.54)
  90. (name "NC" (effects (font (size 1.27 1.27))))
  91. (number "17" (effects (font (size 1.27 1.27))))
  92. )
  93. (pin bidirectional line (at 13.97 -1.27 180) (length 2.54)
  94. (name "SDA" (effects (font (size 1.27 1.27))))
  95. (number "18" (effects (font (size 1.27 1.27))))
  96. )
  97. (pin input line (at 13.97 1.27 180) (length 2.54)
  98. (name "SCL" (effects (font (size 1.27 1.27))))
  99. (number "19" (effects (font (size 1.27 1.27))))
  100. )
  101. (pin input line (at -13.97 11.43 0) (length 2.54)
  102. (name "D_SEL" (effects (font (size 1.27 1.27))))
  103. (number "2" (effects (font (size 1.27 1.27))))
  104. )
  105. (pin output line (at 13.97 3.81 180) (length 2.54)
  106. (name "TX" (effects (font (size 1.27 1.27))))
  107. (number "20" (effects (font (size 1.27 1.27))))
  108. )
  109. (pin input line (at 13.97 6.35 180) (length 2.54)
  110. (name "RX" (effects (font (size 1.27 1.27))))
  111. (number "21" (effects (font (size 1.27 1.27))))
  112. )
  113. (pin power_in line (at 13.97 8.89 180) (length 2.54)
  114. (name "V_BCKP" (effects (font (size 1.27 1.27))))
  115. (number "22" (effects (font (size 1.27 1.27))))
  116. )
  117. (pin power_in line (at 13.97 11.43 180) (length 2.54)
  118. (name "VCC" (effects (font (size 1.27 1.27))))
  119. (number "23" (effects (font (size 1.27 1.27))))
  120. )
  121. (pin power_in line (at 13.97 13.97 180) (length 2.54)
  122. (name "GND" (effects (font (size 1.27 1.27))))
  123. (number "24" (effects (font (size 1.27 1.27))))
  124. )
  125. (pin output line (at -13.97 8.89 0) (length 2.54)
  126. (name "TimePulse" (effects (font (size 1.27 1.27))))
  127. (number "3" (effects (font (size 1.27 1.27))))
  128. )
  129. (pin input line (at -13.97 6.35 0) (length 2.54)
  130. (name "EXTINT" (effects (font (size 1.27 1.27))))
  131. (number "4" (effects (font (size 1.27 1.27))))
  132. )
  133. (pin bidirectional line (at -13.97 3.81 0) (length 2.54)
  134. (name "USB_DM" (effects (font (size 1.27 1.27))))
  135. (number "5" (effects (font (size 1.27 1.27))))
  136. )
  137. (pin bidirectional line (at -13.97 1.27 0) (length 2.54)
  138. (name "USB_DP" (effects (font (size 1.27 1.27))))
  139. (number "6" (effects (font (size 1.27 1.27))))
  140. )
  141. (pin power_in line (at -13.97 -1.27 0) (length 2.54)
  142. (name "VDD_USB" (effects (font (size 1.27 1.27))))
  143. (number "7" (effects (font (size 1.27 1.27))))
  144. )
  145. (pin input line (at -13.97 -3.81 0) (length 2.54)
  146. (name "RESET_N" (effects (font (size 1.27 1.27))))
  147. (number "8" (effects (font (size 1.27 1.27))))
  148. )
  149. (pin power_out line (at -13.97 -6.35 0) (length 2.54)
  150. (name "VCC_RFF" (effects (font (size 1.27 1.27))))
  151. (number "9" (effects (font (size 1.27 1.27))))
  152. )
  153. )
  154. (symbol "NEO-7M_0_1"
  155. (rectangle (start -11.43 -15.24) (end 11.43 15.24)
  156. (stroke (width 0) (type default) (color 0 0 0 0))
  157. (fill (type none))
  158. )
  159. )
  160. (symbol "NEO-7M_1_1"
  161. (pin no_connect line (at -13.97 13.97 0) (length 2.54)
  162. (name "NC" (effects (font (size 1.27 1.27))))
  163. (number "1" (effects (font (size 1.27 1.27))))
  164. )
  165. )
  166. )
  167. (symbol "ST:M24C32" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  168. (property "Reference" "U" (id 0) (at 5.08 -1.27 0)
  169. (effects (font (size 1.524 1.524)))
  170. )
  171. (property "Value" "M24C32" (id 1) (at 0 11.43 0)
  172. (effects (font (size 1.524 1.524)))
  173. )
  174. (property "Footprint" "" (id 2) (at 0 0 0)
  175. (effects (font (size 1.524 1.524)))
  176. )
  177. (property "Datasheet" "" (id 3) (at 0 0 0)
  178. (effects (font (size 1.524 1.524)))
  179. )
  180. (symbol "M24C32_0_1"
  181. (rectangle (start -6.35 10.16) (end 6.35 0)
  182. (stroke (width 0) (type default) (color 0 0 0 0))
  183. (fill (type none))
  184. )
  185. )
  186. (symbol "M24C32_1_1"
  187. (pin input line (at 11.43 8.89 180) (length 5.08)
  188. (name "E0" (effects (font (size 1.27 1.27))))
  189. (number "1" (effects (font (size 1.27 1.27))))
  190. )
  191. (pin input line (at 11.43 6.35 180) (length 5.08)
  192. (name "E1" (effects (font (size 1.27 1.27))))
  193. (number "2" (effects (font (size 1.27 1.27))))
  194. )
  195. (pin input line (at 11.43 3.81 180) (length 5.08)
  196. (name "E2" (effects (font (size 1.27 1.27))))
  197. (number "3" (effects (font (size 1.27 1.27))))
  198. )
  199. (pin power_in line (at 11.43 1.27 180) (length 5.08)
  200. (name "VSS" (effects (font (size 1.27 1.27))))
  201. (number "4" (effects (font (size 1.27 1.27))))
  202. )
  203. (pin power_in line (at -11.43 8.89 0) (length 5.08)
  204. (name "VCC" (effects (font (size 1.27 1.27))))
  205. (number "5" (effects (font (size 1.27 1.27))))
  206. )
  207. (pin input line (at -11.43 6.35 0) (length 5.08)
  208. (name "~{WC}" (effects (font (size 1.27 1.27))))
  209. (number "6" (effects (font (size 1.27 1.27))))
  210. )
  211. (pin input line (at -11.43 3.81 0) (length 5.08)
  212. (name "SCL" (effects (font (size 1.27 1.27))))
  213. (number "7" (effects (font (size 1.27 1.27))))
  214. )
  215. (pin bidirectional line (at -11.43 1.27 0) (length 5.08)
  216. (name "SDA" (effects (font (size 1.27 1.27))))
  217. (number "8" (effects (font (size 1.27 1.27))))
  218. )
  219. )
  220. )
  221. (symbol "ST:STC4054" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  222. (property "Reference" "U" (id 0) (at 6.35 -5.08 0)
  223. (effects (font (size 1.524 1.524)))
  224. )
  225. (property "Value" "STC4054" (id 1) (at 0 5.08 0)
  226. (effects (font (size 1.524 1.524)))
  227. )
  228. (property "Footprint" "" (id 2) (at 0 0 0)
  229. (effects (font (size 1.524 1.524)) hide)
  230. )
  231. (property "Datasheet" "" (id 3) (at 0 0 0)
  232. (effects (font (size 1.524 1.524)) hide)
  233. )
  234. (symbol "STC4054_0_1"
  235. (rectangle (start -6.35 -3.81) (end 7.62 3.81)
  236. (stroke (width 0) (type default) (color 0 0 0 0))
  237. (fill (type none))
  238. )
  239. )
  240. (symbol "STC4054_1_1"
  241. (pin input line (at -11.43 2.54 0) (length 5.08)
  242. (name "CHRG" (effects (font (size 1.27 1.27))))
  243. (number "1" (effects (font (size 1.27 1.27))))
  244. )
  245. (pin power_in line (at -11.43 0 0) (length 5.08)
  246. (name "GND" (effects (font (size 1.27 1.27))))
  247. (number "2" (effects (font (size 1.27 1.27))))
  248. )
  249. (pin power_out line (at -11.43 -2.54 0) (length 5.08)
  250. (name "BAT" (effects (font (size 1.27 1.27))))
  251. (number "3" (effects (font (size 1.27 1.27))))
  252. )
  253. (pin power_in line (at 12.7 -2.54 180) (length 5.08)
  254. (name "Vcc" (effects (font (size 1.27 1.27))))
  255. (number "4" (effects (font (size 1.27 1.27))))
  256. )
  257. (pin input line (at 12.7 2.54 180) (length 5.08)
  258. (name "PROG" (effects (font (size 1.27 1.27))))
  259. (number "5" (effects (font (size 1.27 1.27))))
  260. )
  261. )
  262. )
  263. (symbol "ST:STM1061N34WX6F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  264. (property "Reference" "U" (id 0) (at 3.81 -5.08 0)
  265. (effects (font (size 1.27 1.27)))
  266. )
  267. (property "Value" "STM1061N34WX6F" (id 1) (at -1.27 6.35 0)
  268. (effects (font (size 1.27 1.27)))
  269. )
  270. (property "Footprint" "" (id 2) (at 0 0 0)
  271. (effects (font (size 1.27 1.27)) hide)
  272. )
  273. (property "Datasheet" "" (id 3) (at 0 0 0)
  274. (effects (font (size 1.27 1.27)) hide)
  275. )
  276. (symbol "STM1061N34WX6F_0_1"
  277. (rectangle (start -5.08 3.81) (end 5.08 -3.81)
  278. (stroke (width 0) (type default) (color 0 0 0 0))
  279. (fill (type none))
  280. )
  281. )
  282. (symbol "STM1061N34WX6F_1_1"
  283. (pin output line (at -7.62 2.54 0) (length 2.54)
  284. (name "~{OUT}" (effects (font (size 1.27 1.27))))
  285. (number "1" (effects (font (size 1.27 1.27))))
  286. )
  287. (pin input line (at -7.62 -2.54 0) (length 2.54)
  288. (name "GND" (effects (font (size 1.27 1.27))))
  289. (number "2" (effects (font (size 1.27 1.27))))
  290. )
  291. (pin input line (at 7.62 0 180) (length 2.54)
  292. (name "VCC" (effects (font (size 1.27 1.27))))
  293. (number "3" (effects (font (size 1.27 1.27))))
  294. )
  295. )
  296. )
  297. (symbol "ST:STM32L476RG" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  298. (property "Reference" "U" (id 0) (at 25.4 -27.94 0)
  299. (effects (font (size 1.27 1.27)))
  300. )
  301. (property "Value" "STM32L476RG" (id 1) (at 0 0 0)
  302. (effects (font (size 1.27 1.27)))
  303. )
  304. (property "Footprint" "" (id 2) (at -29.21 12.7 0)
  305. (effects (font (size 1.27 1.27)) hide)
  306. )
  307. (property "Datasheet" "" (id 3) (at -29.21 12.7 0)
  308. (effects (font (size 1.27 1.27)) hide)
  309. )
  310. (symbol "STM32L476RG_0_0"
  311. (pin power_in line (at -29.21 19.05 0) (length 2.54)
  312. (name "VBAT" (effects (font (size 1.27 1.27))))
  313. (number "1" (effects (font (size 1.27 1.27))))
  314. )
  315. (pin bidirectional line (at -29.21 -3.81 0) (length 2.54)
  316. (name "PC2" (effects (font (size 1.27 1.27))))
  317. (number "10" (effects (font (size 1.27 1.27))))
  318. )
  319. (pin bidirectional line (at -29.21 -6.35 0) (length 2.54)
  320. (name "PC3" (effects (font (size 1.27 1.27))))
  321. (number "11" (effects (font (size 1.27 1.27))))
  322. )
  323. (pin power_in line (at -29.21 -8.89 0) (length 2.54)
  324. (name "VSSA/VREF" (effects (font (size 1.27 1.27))))
  325. (number "12" (effects (font (size 1.27 1.27))))
  326. )
  327. (pin power_in line (at -29.21 -11.43 0) (length 2.54)
  328. (name "VDDA/VREF+" (effects (font (size 1.27 1.27))))
  329. (number "13" (effects (font (size 1.27 1.27))))
  330. )
  331. (pin bidirectional line (at -29.21 -13.97 0) (length 2.54)
  332. (name "PA0" (effects (font (size 1.27 1.27))))
  333. (number "14" (effects (font (size 1.27 1.27))))
  334. )
  335. (pin bidirectional line (at -29.21 -16.51 0) (length 2.54)
  336. (name "PA1" (effects (font (size 1.27 1.27))))
  337. (number "15" (effects (font (size 1.27 1.27))))
  338. )
  339. (pin bidirectional line (at -29.21 -19.05 0) (length 2.54)
  340. (name "PA2" (effects (font (size 1.27 1.27))))
  341. (number "16" (effects (font (size 1.27 1.27))))
  342. )
  343. (pin bidirectional line (at -19.05 -29.21 90) (length 2.54)
  344. (name "PA3" (effects (font (size 1.27 1.27))))
  345. (number "17" (effects (font (size 1.27 1.27))))
  346. )
  347. (pin power_in line (at -16.51 -29.21 90) (length 2.54)
  348. (name "VSS" (effects (font (size 1.27 1.27))))
  349. (number "18" (effects (font (size 1.27 1.27))))
  350. )
  351. (pin power_in line (at -13.97 -29.21 90) (length 2.54)
  352. (name "VDD" (effects (font (size 1.27 1.27))))
  353. (number "19" (effects (font (size 1.27 1.27))))
  354. )
  355. (pin bidirectional line (at -29.21 16.51 0) (length 2.54)
  356. (name "PC13" (effects (font (size 1.27 1.27))))
  357. (number "2" (effects (font (size 1.27 1.27))))
  358. )
  359. (pin bidirectional line (at -11.43 -29.21 90) (length 2.54)
  360. (name "PA4" (effects (font (size 1.27 1.27))))
  361. (number "20" (effects (font (size 1.27 1.27))))
  362. )
  363. (pin bidirectional line (at -8.89 -29.21 90) (length 2.54)
  364. (name "PA5" (effects (font (size 1.27 1.27))))
  365. (number "21" (effects (font (size 1.27 1.27))))
  366. )
  367. (pin bidirectional line (at -6.35 -29.21 90) (length 2.54)
  368. (name "PA6" (effects (font (size 1.27 1.27))))
  369. (number "22" (effects (font (size 1.27 1.27))))
  370. )
  371. (pin bidirectional line (at -3.81 -29.21 90) (length 2.54)
  372. (name "PA7" (effects (font (size 1.27 1.27))))
  373. (number "23" (effects (font (size 1.27 1.27))))
  374. )
  375. (pin bidirectional line (at -1.27 -29.21 90) (length 2.54)
  376. (name "PC4" (effects (font (size 1.27 1.27))))
  377. (number "24" (effects (font (size 1.27 1.27))))
  378. )
  379. (pin bidirectional line (at 1.27 -29.21 90) (length 2.54)
  380. (name "PC5" (effects (font (size 1.27 1.27))))
  381. (number "25" (effects (font (size 1.27 1.27))))
  382. )
  383. (pin bidirectional line (at 3.81 -29.21 90) (length 2.54)
  384. (name "PB0" (effects (font (size 1.27 1.27))))
  385. (number "26" (effects (font (size 1.27 1.27))))
  386. )
  387. (pin bidirectional line (at 6.35 -29.21 90) (length 2.54)
  388. (name "PB1" (effects (font (size 1.27 1.27))))
  389. (number "27" (effects (font (size 1.27 1.27))))
  390. )
  391. (pin bidirectional line (at 8.89 -29.21 90) (length 2.54)
  392. (name "PB2" (effects (font (size 1.27 1.27))))
  393. (number "28" (effects (font (size 1.27 1.27))))
  394. )
  395. (pin bidirectional line (at 11.43 -29.21 90) (length 2.54)
  396. (name "PB10" (effects (font (size 1.27 1.27))))
  397. (number "29" (effects (font (size 1.27 1.27))))
  398. )
  399. (pin bidirectional line (at -29.21 13.97 0) (length 2.54)
  400. (name "PC14/OSC32_IN" (effects (font (size 1.27 1.27))))
  401. (number "3" (effects (font (size 1.27 1.27))))
  402. )
  403. (pin bidirectional line (at 13.97 -29.21 90) (length 2.54)
  404. (name "PB11" (effects (font (size 1.27 1.27))))
  405. (number "30" (effects (font (size 1.27 1.27))))
  406. )
  407. (pin power_in line (at 16.51 -29.21 90) (length 2.54)
  408. (name "VSS" (effects (font (size 1.27 1.27))))
  409. (number "31" (effects (font (size 1.27 1.27))))
  410. )
  411. (pin power_in line (at 19.05 -29.21 90) (length 2.54)
  412. (name "VDD" (effects (font (size 1.27 1.27))))
  413. (number "32" (effects (font (size 1.27 1.27))))
  414. )
  415. (pin bidirectional line (at 29.21 -19.05 180) (length 2.54)
  416. (name "PB12" (effects (font (size 1.27 1.27))))
  417. (number "33" (effects (font (size 1.27 1.27))))
  418. )
  419. (pin bidirectional line (at 29.21 -16.51 180) (length 2.54)
  420. (name "PB13" (effects (font (size 1.27 1.27))))
  421. (number "34" (effects (font (size 1.27 1.27))))
  422. )
  423. (pin bidirectional line (at 29.21 -13.97 180) (length 2.54)
  424. (name "PB14" (effects (font (size 1.27 1.27))))
  425. (number "35" (effects (font (size 1.27 1.27))))
  426. )
  427. (pin bidirectional line (at 29.21 -11.43 180) (length 2.54)
  428. (name "PB15" (effects (font (size 1.27 1.27))))
  429. (number "36" (effects (font (size 1.27 1.27))))
  430. )
  431. (pin bidirectional line (at 29.21 -8.89 180) (length 2.54)
  432. (name "PC6" (effects (font (size 1.27 1.27))))
  433. (number "37" (effects (font (size 1.27 1.27))))
  434. )
  435. (pin bidirectional line (at 29.21 -6.35 180) (length 2.54)
  436. (name "PC7" (effects (font (size 1.27 1.27))))
  437. (number "38" (effects (font (size 1.27 1.27))))
  438. )
  439. (pin bidirectional line (at 29.21 -3.81 180) (length 2.54)
  440. (name "PC8" (effects (font (size 1.27 1.27))))
  441. (number "39" (effects (font (size 1.27 1.27))))
  442. )
  443. (pin bidirectional line (at -29.21 11.43 0) (length 2.54)
  444. (name "PC15-OSC32_OUT" (effects (font (size 1.27 1.27))))
  445. (number "4" (effects (font (size 1.27 1.27))))
  446. )
  447. (pin bidirectional line (at 29.21 -1.27 180) (length 2.54)
  448. (name "PC9" (effects (font (size 1.27 1.27))))
  449. (number "40" (effects (font (size 1.27 1.27))))
  450. )
  451. (pin bidirectional line (at 29.21 1.27 180) (length 2.54)
  452. (name "PA8" (effects (font (size 1.27 1.27))))
  453. (number "41" (effects (font (size 1.27 1.27))))
  454. )
  455. (pin bidirectional line (at 29.21 3.81 180) (length 2.54)
  456. (name "PA9" (effects (font (size 1.27 1.27))))
  457. (number "42" (effects (font (size 1.27 1.27))))
  458. )
  459. (pin bidirectional line (at 29.21 6.35 180) (length 2.54)
  460. (name "PA10" (effects (font (size 1.27 1.27))))
  461. (number "43" (effects (font (size 1.27 1.27))))
  462. )
  463. (pin bidirectional line (at 29.21 8.89 180) (length 2.54)
  464. (name "PA11" (effects (font (size 1.27 1.27))))
  465. (number "44" (effects (font (size 1.27 1.27))))
  466. )
  467. (pin bidirectional line (at 29.21 11.43 180) (length 2.54)
  468. (name "PA12" (effects (font (size 1.27 1.27))))
  469. (number "45" (effects (font (size 1.27 1.27))))
  470. )
  471. (pin bidirectional line (at 29.21 13.97 180) (length 2.54)
  472. (name "PA13" (effects (font (size 1.27 1.27))))
  473. (number "46" (effects (font (size 1.27 1.27))))
  474. )
  475. (pin power_in line (at 29.21 16.51 180) (length 2.54)
  476. (name "VSS" (effects (font (size 1.27 1.27))))
  477. (number "47" (effects (font (size 1.27 1.27))))
  478. )
  479. (pin power_in line (at 29.21 19.05 180) (length 2.54)
  480. (name "VDDUSB" (effects (font (size 1.27 1.27))))
  481. (number "48" (effects (font (size 1.27 1.27))))
  482. )
  483. (pin bidirectional line (at 19.05 29.21 270) (length 2.54)
  484. (name "PA14" (effects (font (size 1.27 1.27))))
  485. (number "49" (effects (font (size 1.27 1.27))))
  486. )
  487. (pin bidirectional line (at -29.21 8.89 0) (length 2.54)
  488. (name "PH0-OSC_IN" (effects (font (size 1.27 1.27))))
  489. (number "5" (effects (font (size 1.27 1.27))))
  490. )
  491. (pin bidirectional line (at 16.51 29.21 270) (length 2.54)
  492. (name "PA15" (effects (font (size 1.27 1.27))))
  493. (number "50" (effects (font (size 1.27 1.27))))
  494. )
  495. (pin bidirectional line (at 13.97 29.21 270) (length 2.54)
  496. (name "PC10" (effects (font (size 1.27 1.27))))
  497. (number "51" (effects (font (size 1.27 1.27))))
  498. )
  499. (pin bidirectional line (at 11.43 29.21 270) (length 2.54)
  500. (name "PC11" (effects (font (size 1.27 1.27))))
  501. (number "52" (effects (font (size 1.27 1.27))))
  502. )
  503. (pin bidirectional line (at 8.89 29.21 270) (length 2.54)
  504. (name "PC12" (effects (font (size 1.27 1.27))))
  505. (number "53" (effects (font (size 1.27 1.27))))
  506. )
  507. (pin bidirectional line (at 6.35 29.21 270) (length 2.54)
  508. (name "PD3" (effects (font (size 1.27 1.27))))
  509. (number "54" (effects (font (size 1.27 1.27))))
  510. )
  511. (pin bidirectional line (at 3.81 29.21 270) (length 2.54)
  512. (name "PB3" (effects (font (size 1.27 1.27))))
  513. (number "55" (effects (font (size 1.27 1.27))))
  514. )
  515. (pin bidirectional line (at 1.27 29.21 270) (length 2.54)
  516. (name "PB4" (effects (font (size 1.27 1.27))))
  517. (number "56" (effects (font (size 1.27 1.27))))
  518. )
  519. (pin bidirectional line (at -1.27 29.21 270) (length 2.54)
  520. (name "PB5" (effects (font (size 1.27 1.27))))
  521. (number "57" (effects (font (size 1.27 1.27))))
  522. )
  523. (pin bidirectional line (at -3.81 29.21 270) (length 2.54)
  524. (name "PB6" (effects (font (size 1.27 1.27))))
  525. (number "58" (effects (font (size 1.27 1.27))))
  526. )
  527. (pin input line (at -6.35 29.21 270) (length 2.54)
  528. (name "PB7" (effects (font (size 1.27 1.27))))
  529. (number "59" (effects (font (size 1.27 1.27))))
  530. )
  531. (pin bidirectional line (at -29.21 6.35 0) (length 2.54)
  532. (name "PH1-OSC_OUT" (effects (font (size 1.27 1.27))))
  533. (number "6" (effects (font (size 1.27 1.27))))
  534. )
  535. (pin bidirectional line (at -8.89 29.21 270) (length 2.54)
  536. (name "BOOT0" (effects (font (size 1.27 1.27))))
  537. (number "60" (effects (font (size 1.27 1.27))))
  538. )
  539. (pin bidirectional line (at -11.43 29.21 270) (length 2.54)
  540. (name "PB8" (effects (font (size 1.27 1.27))))
  541. (number "61" (effects (font (size 1.27 1.27))))
  542. )
  543. (pin bidirectional line (at -13.97 29.21 270) (length 2.54)
  544. (name "PB9" (effects (font (size 1.27 1.27))))
  545. (number "62" (effects (font (size 1.27 1.27))))
  546. )
  547. (pin power_in line (at -16.51 29.21 270) (length 2.54)
  548. (name "VSS" (effects (font (size 1.27 1.27))))
  549. (number "63" (effects (font (size 1.27 1.27))))
  550. )
  551. (pin power_in line (at -19.05 29.21 270) (length 2.54)
  552. (name "VDD" (effects (font (size 1.27 1.27))))
  553. (number "64" (effects (font (size 1.27 1.27))))
  554. )
  555. (pin input line (at -29.21 3.81 0) (length 2.54)
  556. (name "NRST" (effects (font (size 1.27 1.27))))
  557. (number "7" (effects (font (size 1.27 1.27))))
  558. )
  559. (pin bidirectional line (at -29.21 1.27 0) (length 2.54)
  560. (name "PC0" (effects (font (size 1.27 1.27))))
  561. (number "8" (effects (font (size 1.27 1.27))))
  562. )
  563. (pin bidirectional line (at -29.21 -1.27 0) (length 2.54)
  564. (name "PC1" (effects (font (size 1.27 1.27))))
  565. (number "9" (effects (font (size 1.27 1.27))))
  566. )
  567. )
  568. (symbol "STM32L476RG_0_1"
  569. (rectangle (start -26.67 26.67) (end 26.67 -26.67)
  570. (stroke (width 0) (type default) (color 0 0 0 0))
  571. (fill (type none))
  572. )
  573. )
  574. )
  575. (symbol "TI:CD74HC4511" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  576. (property "Reference" "U" (id 0) (at 3.81 -11.43 0)
  577. (effects (font (size 1.27 1.27)))
  578. )
  579. (property "Value" "CD74HC4511" (id 1) (at 0 11.43 0)
  580. (effects (font (size 1.27 1.27)))
  581. )
  582. (property "Footprint" "" (id 2) (at 11.43 0 0)
  583. (effects (font (size 1.27 1.27)) hide)
  584. )
  585. (property "Datasheet" "" (id 3) (at 11.43 0 0)
  586. (effects (font (size 1.27 1.27)) hide)
  587. )
  588. (symbol "CD74HC4511_0_0"
  589. (pin input line (at -7.62 8.89 0) (length 2.54)
  590. (name "D1" (effects (font (size 1.27 1.27))))
  591. (number "1" (effects (font (size 1.27 1.27))))
  592. )
  593. (pin output line (at 7.62 -6.35 180) (length 2.54)
  594. (name "d" (effects (font (size 1.27 1.27))))
  595. (number "10" (effects (font (size 1.27 1.27))))
  596. )
  597. (pin output line (at 7.62 -3.81 180) (length 2.54)
  598. (name "c" (effects (font (size 1.27 1.27))))
  599. (number "11" (effects (font (size 1.27 1.27))))
  600. )
  601. (pin output line (at 7.62 -1.27 180) (length 2.54)
  602. (name "b" (effects (font (size 1.27 1.27))))
  603. (number "12" (effects (font (size 1.27 1.27))))
  604. )
  605. (pin output line (at 7.62 1.27 180) (length 2.54)
  606. (name "a" (effects (font (size 1.27 1.27))))
  607. (number "13" (effects (font (size 1.27 1.27))))
  608. )
  609. (pin output line (at 7.62 3.81 180) (length 2.54)
  610. (name "g" (effects (font (size 1.27 1.27))))
  611. (number "14" (effects (font (size 1.27 1.27))))
  612. )
  613. (pin output line (at 7.62 6.35 180) (length 2.54)
  614. (name "f" (effects (font (size 1.27 1.27))))
  615. (number "15" (effects (font (size 1.27 1.27))))
  616. )
  617. (pin power_in line (at 7.62 8.89 180) (length 2.54)
  618. (name "VCC" (effects (font (size 1.27 1.27))))
  619. (number "16" (effects (font (size 1.27 1.27))))
  620. )
  621. (pin input line (at -7.62 6.35 0) (length 2.54)
  622. (name "D2" (effects (font (size 1.27 1.27))))
  623. (number "2" (effects (font (size 1.27 1.27))))
  624. )
  625. (pin input line (at -7.62 3.81 0) (length 2.54)
  626. (name "~{LT}" (effects (font (size 1.27 1.27))))
  627. (number "3" (effects (font (size 1.27 1.27))))
  628. )
  629. (pin input line (at -7.62 1.27 0) (length 2.54)
  630. (name "~{BL}" (effects (font (size 1.27 1.27))))
  631. (number "4" (effects (font (size 1.27 1.27))))
  632. )
  633. (pin input line (at -7.62 -1.27 0) (length 2.54)
  634. (name "~{LE}" (effects (font (size 1.27 1.27))))
  635. (number "5" (effects (font (size 1.27 1.27))))
  636. )
  637. (pin input line (at -7.62 -3.81 0) (length 2.54)
  638. (name "D3" (effects (font (size 1.27 1.27))))
  639. (number "6" (effects (font (size 1.27 1.27))))
  640. )
  641. (pin input line (at -7.62 -6.35 0) (length 2.54)
  642. (name "D0" (effects (font (size 1.27 1.27))))
  643. (number "7" (effects (font (size 1.27 1.27))))
  644. )
  645. (pin power_in line (at -7.62 -8.89 0) (length 2.54)
  646. (name "GND" (effects (font (size 1.27 1.27))))
  647. (number "8" (effects (font (size 1.27 1.27))))
  648. )
  649. (pin output line (at 7.62 -8.89 180) (length 2.54)
  650. (name "e" (effects (font (size 1.27 1.27))))
  651. (number "9" (effects (font (size 1.27 1.27))))
  652. )
  653. )
  654. (symbol "CD74HC4511_0_1"
  655. (rectangle (start -5.08 10.16) (end 5.08 -10.16)
  656. (stroke (width 0) (type default) (color 0 0 0 0))
  657. (fill (type background))
  658. )
  659. )
  660. )
  661. (symbol "afficheur:7segment_3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  662. (property "Reference" "DS" (id 0) (at 5.08 -11.43 0)
  663. (effects (font (size 1.27 1.27)))
  664. )
  665. (property "Value" "7segment_3" (id 1) (at 0 11.43 0)
  666. (effects (font (size 1.27 1.27)))
  667. )
  668. (property "Footprint" "" (id 2) (at 5.08 -10.16 0)
  669. (effects (font (size 1.27 1.27)) hide)
  670. )
  671. (property "Datasheet" "" (id 3) (at 3.81 -8.89 0)
  672. (effects (font (size 1.27 1.27)) hide)
  673. )
  674. (symbol "7segment_3_0_0"
  675. (pin input line (at -8.89 -3.81 0) (length 2.54)
  676. (name "F" (effects (font (size 1.27 1.27))))
  677. (number "10" (effects (font (size 1.27 1.27))))
  678. )
  679. (pin input line (at 8.89 6.35 180) (length 2.54)
  680. (name "DIG1" (effects (font (size 1.27 1.27))))
  681. (number "12" (effects (font (size 1.27 1.27))))
  682. )
  683. (pin input line (at -8.89 -8.89 0) (length 2.54)
  684. (name "DP" (effects (font (size 1.27 1.27))))
  685. (number "3" (effects (font (size 1.27 1.27))))
  686. )
  687. (pin input line (at -8.89 -6.35 0) (length 2.54)
  688. (name "G" (effects (font (size 1.27 1.27))))
  689. (number "5" (effects (font (size 1.27 1.27))))
  690. )
  691. (pin no_connect line (at 8.89 -5.08 180) (length 2.54)
  692. (name "NC" (effects (font (size 1.27 1.27))))
  693. (number "6" (effects (font (size 1.27 1.27))))
  694. )
  695. (pin input line (at 8.89 1.27 180) (length 2.54)
  696. (name "DIG3" (effects (font (size 1.27 1.27))))
  697. (number "8" (effects (font (size 1.27 1.27))))
  698. )
  699. (pin input line (at 8.89 3.81 180) (length 2.54)
  700. (name "DIG2" (effects (font (size 1.27 1.27))))
  701. (number "9" (effects (font (size 1.27 1.27))))
  702. )
  703. )
  704. (symbol "7segment_3_0_1"
  705. (rectangle (start -6.35 -10.16) (end 6.35 10.16)
  706. (stroke (width 0) (type default) (color 0 0 0 0))
  707. (fill (type none))
  708. )
  709. )
  710. (symbol "7segment_3_1_1"
  711. (pin input line (at -8.89 -1.27 0) (length 2.54)
  712. (name "E" (effects (font (size 1.27 1.27))))
  713. (number "1" (effects (font (size 1.27 1.27))))
  714. )
  715. (pin input line (at -8.89 8.89 0) (length 2.54)
  716. (name "A" (effects (font (size 1.27 1.27))))
  717. (number "11" (effects (font (size 1.27 1.27))))
  718. )
  719. (pin input line (at -8.89 1.27 0) (length 2.54)
  720. (name "D" (effects (font (size 1.27 1.27))))
  721. (number "2" (effects (font (size 1.27 1.27))))
  722. )
  723. (pin input line (at -8.89 3.81 0) (length 2.54)
  724. (name "C" (effects (font (size 1.27 1.27))))
  725. (number "4" (effects (font (size 1.27 1.27))))
  726. )
  727. (pin input line (at -8.89 6.35 0) (length 2.54)
  728. (name "B" (effects (font (size 1.27 1.27))))
  729. (number "7" (effects (font (size 1.27 1.27))))
  730. )
  731. )
  732. )
  733. (symbol "conn:CONN_01X05" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  734. (property "Reference" "P" (id 0) (at 0 7.62 0)
  735. (effects (font (size 1.27 1.27)))
  736. )
  737. (property "Value" "CONN_01X05" (id 1) (at 2.54 0 90)
  738. (effects (font (size 1.27 1.27)))
  739. )
  740. (property "Footprint" "" (id 2) (at 0 0 0)
  741. (effects (font (size 1.27 1.27)))
  742. )
  743. (property "Datasheet" "" (id 3) (at 0 0 0)
  744. (effects (font (size 1.27 1.27)))
  745. )
  746. (property "ki_fp_filters" "Pin_Header_Straight_1X05 Pin_Header_Angled_1X05 Socket_Strip_Straight_1X05 Socket_Strip_Angled_1X05" (id 4) (at 0 0 0)
  747. (effects (font (size 1.27 1.27)) hide)
  748. )
  749. (symbol "CONN_01X05_0_1"
  750. (rectangle (start -1.27 -4.953) (end 0.254 -5.207)
  751. (stroke (width 0) (type default) (color 0 0 0 0))
  752. (fill (type none))
  753. )
  754. (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
  755. (stroke (width 0) (type default) (color 0 0 0 0))
  756. (fill (type none))
  757. )
  758. (rectangle (start -1.27 0.127) (end 0.254 -0.127)
  759. (stroke (width 0) (type default) (color 0 0 0 0))
  760. (fill (type none))
  761. )
  762. (rectangle (start -1.27 2.667) (end 0.254 2.413)
  763. (stroke (width 0) (type default) (color 0 0 0 0))
  764. (fill (type none))
  765. )
  766. (rectangle (start -1.27 5.207) (end 0.254 4.953)
  767. (stroke (width 0) (type default) (color 0 0 0 0))
  768. (fill (type none))
  769. )
  770. (rectangle (start -1.27 6.35) (end 1.27 -6.35)
  771. (stroke (width 0) (type default) (color 0 0 0 0))
  772. (fill (type none))
  773. )
  774. )
  775. (symbol "CONN_01X05_1_1"
  776. (pin passive line (at -5.08 5.08 0) (length 3.81)
  777. (name "P1" (effects (font (size 1.27 1.27))))
  778. (number "1" (effects (font (size 1.27 1.27))))
  779. )
  780. (pin passive line (at -5.08 2.54 0) (length 3.81)
  781. (name "P2" (effects (font (size 1.27 1.27))))
  782. (number "2" (effects (font (size 1.27 1.27))))
  783. )
  784. (pin passive line (at -5.08 0 0) (length 3.81)
  785. (name "P3" (effects (font (size 1.27 1.27))))
  786. (number "3" (effects (font (size 1.27 1.27))))
  787. )
  788. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  789. (name "P4" (effects (font (size 1.27 1.27))))
  790. (number "4" (effects (font (size 1.27 1.27))))
  791. )
  792. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  793. (name "P5" (effects (font (size 1.27 1.27))))
  794. (number "5" (effects (font (size 1.27 1.27))))
  795. )
  796. )
  797. )
  798. (symbol "conn:Micro_USB" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  799. (property "Reference" "J" (id 0) (at 6.35 -8.89 0)
  800. (effects (font (size 1.524 1.524)))
  801. )
  802. (property "Value" "Micro_USB" (id 1) (at 1.27 8.89 0)
  803. (effects (font (size 1.524 1.524)))
  804. )
  805. (property "Footprint" "" (id 2) (at 5.08 -5.08 0)
  806. (effects (font (size 1.524 1.524)) hide)
  807. )
  808. (property "Datasheet" "" (id 3) (at 5.08 -5.08 0)
  809. (effects (font (size 1.524 1.524)) hide)
  810. )
  811. (symbol "Micro_USB_0_1"
  812. (polyline
  813. (pts
  814. (xy -5.08 -7.62)
  815. (xy -7.62 -5.08)
  816. (xy -7.62 5.08)
  817. (xy -5.08 7.62)
  818. )
  819. (stroke (width 0) (type default) (color 0 0 0 0))
  820. (fill (type none))
  821. )
  822. (rectangle (start 7.62 -7.62) (end -5.08 7.62)
  823. (stroke (width 0) (type default) (color 0 0 0 0))
  824. (fill (type none))
  825. )
  826. )
  827. (symbol "Micro_USB_1_1"
  828. (pin input line (at -3.81 -10.16 90) (length 2.54)
  829. (name "USB_SH" (effects (font (size 1.27 1.27))))
  830. (number "0" (effects (font (size 1.27 1.27))))
  831. )
  832. (pin power_out line (at 12.7 5.08 180) (length 5.08)
  833. (name "USB_VBUS" (effects (font (size 1.27 1.27))))
  834. (number "1" (effects (font (size 1.27 1.27))))
  835. )
  836. (pin bidirectional line (at 12.7 2.54 180) (length 5.08)
  837. (name "USB_N" (effects (font (size 1.27 1.27))))
  838. (number "2" (effects (font (size 1.27 1.27))))
  839. )
  840. (pin bidirectional line (at 12.7 0 180) (length 5.08)
  841. (name "USB_P" (effects (font (size 1.27 1.27))))
  842. (number "3" (effects (font (size 1.27 1.27))))
  843. )
  844. (pin input line (at 12.7 -2.54 180) (length 5.08)
  845. (name "USB_ID" (effects (font (size 1.27 1.27))))
  846. (number "4" (effects (font (size 1.27 1.27))))
  847. )
  848. (pin passive line (at 12.7 -5.08 180) (length 5.08)
  849. (name "USB_GND" (effects (font (size 1.27 1.27))))
  850. (number "5" (effects (font (size 1.27 1.27))))
  851. )
  852. )
  853. )
  854. (symbol "conn:Power" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  855. (property "Reference" "P" (id 0) (at 0 -3.81 0)
  856. (effects (font (size 1.27 1.27)))
  857. )
  858. (property "Value" "Power" (id 1) (at -2.54 0 90)
  859. (effects (font (size 1.27 1.27)))
  860. )
  861. (property "Footprint" "" (id 2) (at 0 0 0)
  862. (effects (font (size 1.27 1.27)) hide)
  863. )
  864. (property "Datasheet" "" (id 3) (at 0 0 0)
  865. (effects (font (size 1.27 1.27)) hide)
  866. )
  867. (symbol "Power_0_1"
  868. (rectangle (start -1.27 2.54) (end 1.27 -2.54)
  869. (stroke (width 0) (type default) (color 0 0 0 0))
  870. (fill (type none))
  871. )
  872. )
  873. (symbol "Power_1_1"
  874. (pin power_out line (at 5.08 1.27 180) (length 5.08)
  875. (name "~" (effects (font (size 1.27 1.27))))
  876. (number "1" (effects (font (size 1.27 1.27))))
  877. )
  878. (pin power_out line (at 5.08 -1.27 180) (length 5.08)
  879. (name "~" (effects (font (size 1.27 1.27))))
  880. (number "2" (effects (font (size 1.27 1.27))))
  881. )
  882. )
  883. )
  884. (symbol "global:Antenne" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  885. (property "Reference" "AE?" (id 0) (at 0 6.35 0)
  886. (effects (font (size 1.27 1.27)))
  887. )
  888. (property "Value" "Antenne" (id 1) (at 3.81 1.27 90)
  889. (effects (font (size 1.27 1.27)) hide)
  890. )
  891. (property "Footprint" "" (id 2) (at 0 0 0)
  892. (effects (font (size 1.27 1.27)) hide)
  893. )
  894. (property "Datasheet" "" (id 3) (at 0 0 0)
  895. (effects (font (size 1.27 1.27)) hide)
  896. )
  897. (symbol "Antenne_0_1"
  898. (polyline
  899. (pts
  900. (xy 0 2.54)
  901. (xy -2.54 5.08)
  902. (xy 2.54 5.08)
  903. (xy 0 2.54)
  904. (xy 0 5.08)
  905. )
  906. (stroke (width 0) (type default) (color 0 0 0 0))
  907. (fill (type none))
  908. )
  909. )
  910. (symbol "Antenne_1_1"
  911. (pin passive line (at 0 0 90) (length 2.54)
  912. (name "~" (effects (font (size 1.27 1.27))))
  913. (number "1" (effects (font (size 1.27 1.27))))
  914. )
  915. )
  916. )
  917. (symbol "global:Battery" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  918. (property "Reference" "BT" (id 0) (at 2.54 1.27 0)
  919. (effects (font (size 1.27 1.27)) (justify left))
  920. )
  921. (property "Value" "Battery" (id 1) (at 2.54 -1.27 0)
  922. (effects (font (size 1.27 1.27)) (justify left))
  923. )
  924. (property "Footprint" "" (id 2) (at 0 1.016 90)
  925. (effects (font (size 1.27 1.27)))
  926. )
  927. (property "Datasheet" "" (id 3) (at 0 1.016 90)
  928. (effects (font (size 1.27 1.27)))
  929. )
  930. (symbol "Battery_0_1"
  931. (rectangle (start -2.286 -0.1778) (end 2.286 -0.4318)
  932. (stroke (width 0) (type default) (color 0 0 0 0))
  933. (fill (type outline))
  934. )
  935. (rectangle (start -2.286 1.27) (end 2.286 1.016)
  936. (stroke (width 0) (type default) (color 0 0 0 0))
  937. (fill (type outline))
  938. )
  939. (rectangle (start -1.5748 -0.762) (end 1.4732 -1.27)
  940. (stroke (width 0) (type default) (color 0 0 0 0))
  941. (fill (type outline))
  942. )
  943. (rectangle (start -1.5748 0.6858) (end 1.4732 0.1778)
  944. (stroke (width 0) (type default) (color 0 0 0 0))
  945. (fill (type outline))
  946. )
  947. (polyline
  948. (pts
  949. (xy 0.508 2.413)
  950. (xy 1.524 2.413)
  951. )
  952. (stroke (width 0.254) (type default) (color 0 0 0 0))
  953. (fill (type none))
  954. )
  955. (polyline
  956. (pts
  957. (xy 1.016 2.921)
  958. (xy 1.016 1.905)
  959. )
  960. (stroke (width 0.254) (type default) (color 0 0 0 0))
  961. (fill (type none))
  962. )
  963. )
  964. (symbol "Battery_1_1"
  965. (pin power_out line (at 0 3.81 270) (length 2.54)
  966. (name "~" (effects (font (size 1.27 1.27))))
  967. (number "1" (effects (font (size 1.27 1.27))))
  968. )
  969. (pin passive line (at 0 -3.81 90) (length 2.54)
  970. (name "~" (effects (font (size 1.27 1.27))))
  971. (number "2" (effects (font (size 1.27 1.27))))
  972. )
  973. )
  974. )
  975. (symbol "global:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  976. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  977. (effects (font (size 1.27 1.27)) (justify left))
  978. )
  979. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  980. (effects (font (size 1.27 1.27)) (justify left))
  981. )
  982. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  983. (effects (font (size 1.27 1.27)))
  984. )
  985. (property "Datasheet" "" (id 3) (at 0 0 0)
  986. (effects (font (size 1.27 1.27)))
  987. )
  988. (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*" (id 4) (at 0 0 0)
  989. (effects (font (size 1.27 1.27)) hide)
  990. )
  991. (symbol "C_0_1"
  992. (polyline
  993. (pts
  994. (xy -2.032 -0.762)
  995. (xy 2.032 -0.762)
  996. )
  997. (stroke (width 0.508) (type default) (color 0 0 0 0))
  998. (fill (type none))
  999. )
  1000. (polyline
  1001. (pts
  1002. (xy -2.032 0.762)
  1003. (xy 2.032 0.762)
  1004. )
  1005. (stroke (width 0.508) (type default) (color 0 0 0 0))
  1006. (fill (type none))
  1007. )
  1008. )
  1009. (symbol "C_1_1"
  1010. (pin passive line (at 0 3.81 270) (length 2.794)
  1011. (name "~" (effects (font (size 1.016 1.016))))
  1012. (number "1" (effects (font (size 1.016 1.016))))
  1013. )
  1014. (pin passive line (at 0 -3.81 90) (length 2.794)
  1015. (name "~" (effects (font (size 1.016 1.016))))
  1016. (number "2" (effects (font (size 1.016 1.016))))
  1017. )
  1018. )
  1019. )
  1020. (symbol "global:CP" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1021. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  1022. (effects (font (size 1.27 1.27)) (justify left))
  1023. )
  1024. (property "Value" "CP" (id 1) (at 0.635 -2.54 0)
  1025. (effects (font (size 1.27 1.27)) (justify left))
  1026. )
  1027. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  1028. (effects (font (size 1.27 1.27)))
  1029. )
  1030. (property "Datasheet" "" (id 3) (at 0 0 0)
  1031. (effects (font (size 1.27 1.27)))
  1032. )
  1033. (property "ki_fp_filters" "CP* Elko* TantalC* C*elec c_elec* SMD*_Pol" (id 4) (at 0 0 0)
  1034. (effects (font (size 1.27 1.27)) hide)
  1035. )
  1036. (symbol "CP_0_1"
  1037. (rectangle (start -2.286 0.508) (end -2.286 1.016)
  1038. (stroke (width 0) (type default) (color 0 0 0 0))
  1039. (fill (type none))
  1040. )
  1041. (rectangle (start -2.286 0.508) (end 2.286 0.508)
  1042. (stroke (width 0) (type default) (color 0 0 0 0))
  1043. (fill (type none))
  1044. )
  1045. (polyline
  1046. (pts
  1047. (xy -1.778 2.286)
  1048. (xy -0.762 2.286)
  1049. )
  1050. (stroke (width 0) (type default) (color 0 0 0 0))
  1051. (fill (type none))
  1052. )
  1053. (polyline
  1054. (pts
  1055. (xy -1.27 2.794)
  1056. (xy -1.27 1.778)
  1057. )
  1058. (stroke (width 0) (type default) (color 0 0 0 0))
  1059. (fill (type none))
  1060. )
  1061. (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
  1062. (stroke (width 0) (type default) (color 0 0 0 0))
  1063. (fill (type outline))
  1064. )
  1065. (rectangle (start 2.286 1.016) (end -2.286 1.016)
  1066. (stroke (width 0) (type default) (color 0 0 0 0))
  1067. (fill (type none))
  1068. )
  1069. (rectangle (start 2.286 1.016) (end 2.286 0.508)
  1070. (stroke (width 0) (type default) (color 0 0 0 0))
  1071. (fill (type none))
  1072. )
  1073. )
  1074. (symbol "CP_1_1"
  1075. (pin passive line (at 0 3.81 270) (length 2.794)
  1076. (name "~" (effects (font (size 1.016 1.016))))
  1077. (number "1" (effects (font (size 1.016 1.016))))
  1078. )
  1079. (pin passive line (at 0 -3.81 90) (length 2.794)
  1080. (name "~" (effects (font (size 1.016 1.016))))
  1081. (number "2" (effects (font (size 1.016 1.016))))
  1082. )
  1083. )
  1084. )
  1085. (symbol "global:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1086. (property "Reference" "Y" (id 0) (at 0 3.81 0)
  1087. (effects (font (size 1.27 1.27)))
  1088. )
  1089. (property "Value" "Crystal" (id 1) (at 0 -3.81 0)
  1090. (effects (font (size 1.27 1.27)))
  1091. )
  1092. (property "Footprint" "" (id 2) (at 0 0 0)
  1093. (effects (font (size 1.27 1.27)))
  1094. )
  1095. (property "Datasheet" "" (id 3) (at 0 0 0)
  1096. (effects (font (size 1.27 1.27)))
  1097. )
  1098. (property "ki_fp_filters" "Crystal_*" (id 4) (at 0 0 0)
  1099. (effects (font (size 1.27 1.27)) hide)
  1100. )
  1101. (symbol "Crystal_0_1"
  1102. (rectangle (start -1.27 2.54) (end 1.27 -2.54)
  1103. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1104. (fill (type none))
  1105. )
  1106. (polyline
  1107. (pts
  1108. (xy -2.54 -1.27)
  1109. (xy -2.54 1.27)
  1110. )
  1111. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1112. (fill (type none))
  1113. )
  1114. (polyline
  1115. (pts
  1116. (xy 2.54 -1.27)
  1117. (xy 2.54 1.27)
  1118. )
  1119. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  1120. (fill (type none))
  1121. )
  1122. )
  1123. (symbol "Crystal_1_1"
  1124. (pin passive line (at -3.81 0 0) (length 1.27)
  1125. (name "1" (effects (font (size 1.016 1.016))))
  1126. (number "1" (effects (font (size 1.016 1.016))))
  1127. )
  1128. (pin passive line (at 3.81 0 180) (length 1.27)
  1129. (name "2" (effects (font (size 1.016 1.016))))
  1130. (number "2" (effects (font (size 1.016 1.016))))
  1131. )
  1132. )
  1133. )
  1134. (symbol "global:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1135. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1136. (effects (font (size 1.27 1.27)))
  1137. )
  1138. (property "Value" "D" (id 1) (at 0 -2.54 0)
  1139. (effects (font (size 1.27 1.27)))
  1140. )
  1141. (property "Footprint" "" (id 2) (at 0 0 0)
  1142. (effects (font (size 1.27 1.27)))
  1143. )
  1144. (property "Datasheet" "" (id 3) (at 0 0 0)
  1145. (effects (font (size 1.27 1.27)))
  1146. )
  1147. (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (id 4) (at 0 0 0)
  1148. (effects (font (size 1.27 1.27)) hide)
  1149. )
  1150. (symbol "D_0_1"
  1151. (polyline
  1152. (pts
  1153. (xy -1.27 1.27)
  1154. (xy -1.27 -1.27)
  1155. )
  1156. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  1157. (fill (type none))
  1158. )
  1159. (polyline
  1160. (pts
  1161. (xy 1.27 1.27)
  1162. (xy -1.27 0)
  1163. (xy 1.27 -1.27)
  1164. )
  1165. (stroke (width 0) (type default) (color 0 0 0 0))
  1166. (fill (type outline))
  1167. )
  1168. )
  1169. (symbol "D_1_1"
  1170. (pin passive line (at -3.81 0 0) (length 2.54)
  1171. (name "K" (effects (font (size 1.27 1.27))))
  1172. (number "1" (effects (font (size 1.27 1.27))))
  1173. )
  1174. (pin passive line (at 3.81 0 180) (length 2.54)
  1175. (name "A" (effects (font (size 1.27 1.27))))
  1176. (number "2" (effects (font (size 1.27 1.27))))
  1177. )
  1178. )
  1179. )
  1180. (symbol "global:INDUCTOR" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1181. (property "Reference" "L" (id 0) (at -1.27 0 90)
  1182. (effects (font (size 1.27 1.27)))
  1183. )
  1184. (property "Value" "INDUCTOR" (id 1) (at 2.54 0 90)
  1185. (effects (font (size 1.27 1.27)))
  1186. )
  1187. (property "Footprint" "" (id 2) (at 0 0 0)
  1188. (effects (font (size 1.27 1.27)))
  1189. )
  1190. (property "Datasheet" "" (id 3) (at 0 0 0)
  1191. (effects (font (size 1.27 1.27)))
  1192. )
  1193. (symbol "INDUCTOR_0_1"
  1194. (arc (start 0.0254 -5.0546) (mid 1.2449 -3.8097) (end 0.0254 -2.54)
  1195. (stroke (width 0) (type default) (color 0 0 0 0))
  1196. (fill (type none))
  1197. )
  1198. (arc (start 0.0254 -2.5146) (mid 1.2703 -1.2444) (end 0.0254 0.0508)
  1199. (stroke (width 0) (type default) (color 0 0 0 0))
  1200. (fill (type none))
  1201. )
  1202. (arc (start 0.0254 0.0254) (mid 1.2703 1.2956) (end 0.0254 2.5908)
  1203. (stroke (width 0) (type default) (color 0 0 0 0))
  1204. (fill (type none))
  1205. )
  1206. (arc (start 0.0254 2.5654) (mid 1.1941 3.7595) (end 0.0254 4.9784)
  1207. (stroke (width 0) (type default) (color 0 0 0 0))
  1208. (fill (type none))
  1209. )
  1210. )
  1211. (symbol "INDUCTOR_1_1"
  1212. (pin passive line (at 0 7.62 270) (length 2.54)
  1213. (name "1" (effects (font (size 1.27 1.27))))
  1214. (number "1" (effects (font (size 1.27 1.27))))
  1215. )
  1216. (pin passive line (at 0 -7.62 90) (length 2.54)
  1217. (name "2" (effects (font (size 1.27 1.27))))
  1218. (number "2" (effects (font (size 1.27 1.27))))
  1219. )
  1220. )
  1221. )
  1222. (symbol "global:LED" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1223. (property "Reference" "D" (id 0) (at 0 2.54 0)
  1224. (effects (font (size 1.27 1.27)))
  1225. )
  1226. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  1227. (effects (font (size 1.27 1.27)))
  1228. )
  1229. (property "Footprint" "" (id 2) (at 0 0 0)
  1230. (effects (font (size 1.27 1.27)))
  1231. )
  1232. (property "Datasheet" "" (id 3) (at 0 0 0)
  1233. (effects (font (size 1.27 1.27)))
  1234. )
  1235. (property "ki_fp_filters" "LED-3MM LED-5MM LED-10MM LED-0603 LED-0805 LED-1206 LEDV" (id 4) (at 0 0 0)
  1236. (effects (font (size 1.27 1.27)) hide)
  1237. )
  1238. (symbol "LED_0_1"
  1239. (polyline
  1240. (pts
  1241. (xy -1.27 1.27)
  1242. (xy -1.27 -1.27)
  1243. )
  1244. (stroke (width 0) (type default) (color 0 0 0 0))
  1245. (fill (type none))
  1246. )
  1247. (polyline
  1248. (pts
  1249. (xy -2.032 -0.635)
  1250. (xy -3.175 -1.651)
  1251. (xy -3.048 -1.016)
  1252. )
  1253. (stroke (width 0) (type default) (color 0 0 0 0))
  1254. (fill (type none))
  1255. )
  1256. (polyline
  1257. (pts
  1258. (xy -1.651 -1.016)
  1259. (xy -2.794 -2.032)
  1260. (xy -2.667 -1.397)
  1261. )
  1262. (stroke (width 0) (type default) (color 0 0 0 0))
  1263. (fill (type none))
  1264. )
  1265. (polyline
  1266. (pts
  1267. (xy 1.27 1.27)
  1268. (xy -1.27 0)
  1269. (xy 1.27 -1.27)
  1270. )
  1271. (stroke (width 0) (type default) (color 0 0 0 0))
  1272. (fill (type outline))
  1273. )
  1274. )
  1275. (symbol "LED_1_1"
  1276. (pin passive line (at -5.08 0 0) (length 3.81)
  1277. (name "K" (effects (font (size 1.016 1.016))))
  1278. (number "1" (effects (font (size 1.016 1.016))))
  1279. )
  1280. (pin passive line (at 5.08 0 180) (length 3.81)
  1281. (name "A" (effects (font (size 1.016 1.016))))
  1282. (number "2" (effects (font (size 1.016 1.016))))
  1283. )
  1284. )
  1285. )
  1286. (symbol "global:NPN" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1287. (property "Reference" "Q" (id 0) (at 3.81 -2.286 0)
  1288. (effects (font (size 1.524 1.524)))
  1289. )
  1290. (property "Value" "NPN" (id 1) (at 5.08 1.016 0)
  1291. (effects (font (size 1.524 1.524)))
  1292. )
  1293. (property "Footprint" "" (id 2) (at -2.54 0 0)
  1294. (effects (font (size 1.524 1.524)) hide)
  1295. )
  1296. (property "Datasheet" "" (id 3) (at -2.54 0 0)
  1297. (effects (font (size 1.524 1.524)) hide)
  1298. )
  1299. (symbol "NPN_0_1"
  1300. (polyline
  1301. (pts
  1302. (xy -1.016 0)
  1303. (xy -2.54 0)
  1304. )
  1305. (stroke (width 0) (type default) (color 0 0 0 0))
  1306. (fill (type none))
  1307. )
  1308. (polyline
  1309. (pts
  1310. (xy -1.016 0)
  1311. (xy 1.27 -2.286)
  1312. )
  1313. (stroke (width 0) (type default) (color 0 0 0 0))
  1314. (fill (type none))
  1315. )
  1316. (polyline
  1317. (pts
  1318. (xy -1.016 0)
  1319. (xy 1.27 2.286)
  1320. )
  1321. (stroke (width 0) (type default) (color 0 0 0 0))
  1322. (fill (type none))
  1323. )
  1324. (polyline
  1325. (pts
  1326. (xy -1.016 1.27)
  1327. (xy -1.016 -1.27)
  1328. )
  1329. (stroke (width 0) (type default) (color 0 0 0 0))
  1330. (fill (type none))
  1331. )
  1332. (polyline
  1333. (pts
  1334. (xy -0.762 -0.508)
  1335. (xy -0.508 -0.254)
  1336. )
  1337. (stroke (width 0) (type default) (color 0 0 0 0))
  1338. (fill (type none))
  1339. )
  1340. (polyline
  1341. (pts
  1342. (xy -0.762 -0.508)
  1343. (xy -0.508 -0.254)
  1344. )
  1345. (stroke (width 0) (type default) (color 0 0 0 0))
  1346. (fill (type none))
  1347. )
  1348. (polyline
  1349. (pts
  1350. (xy -0.762 -0.508)
  1351. (xy -0.254 -0.762)
  1352. )
  1353. (stroke (width 0) (type default) (color 0 0 0 0))
  1354. (fill (type none))
  1355. )
  1356. (polyline
  1357. (pts
  1358. (xy -0.762 -0.508)
  1359. (xy -0.254 -0.762)
  1360. )
  1361. (stroke (width 0) (type default) (color 0 0 0 0))
  1362. (fill (type none))
  1363. )
  1364. (polyline
  1365. (pts
  1366. (xy -0.254 -0.762)
  1367. (xy -0.508 -0.254)
  1368. )
  1369. (stroke (width 0) (type default) (color 0 0 0 0))
  1370. (fill (type none))
  1371. )
  1372. (polyline
  1373. (pts
  1374. (xy -0.254 -0.762)
  1375. (xy -0.508 -0.254)
  1376. )
  1377. (stroke (width 0) (type default) (color 0 0 0 0))
  1378. (fill (type none))
  1379. )
  1380. (polyline
  1381. (pts
  1382. (xy 1.27 -2.54)
  1383. (xy 1.27 -2.286)
  1384. )
  1385. (stroke (width 0) (type default) (color 0 0 0 0))
  1386. (fill (type none))
  1387. )
  1388. (polyline
  1389. (pts
  1390. (xy 1.27 2.54)
  1391. (xy 1.27 2.286)
  1392. )
  1393. (stroke (width 0) (type default) (color 0 0 0 0))
  1394. (fill (type none))
  1395. )
  1396. (circle (center 0 0) (radius 2.6162)
  1397. (stroke (width 0) (type default) (color 0 0 0 0))
  1398. (fill (type none))
  1399. )
  1400. )
  1401. (symbol "NPN_1_1"
  1402. (pin input line (at -7.62 0 0) (length 5.08)
  1403. (name "~" (effects (font (size 1.27 1.27))))
  1404. (number "1" (effects (font (size 1.27 1.27))))
  1405. )
  1406. (pin input line (at 1.27 -7.62 90) (length 5.08)
  1407. (name "~" (effects (font (size 1.27 1.27))))
  1408. (number "2" (effects (font (size 1.27 1.27))))
  1409. )
  1410. (pin input line (at 1.27 7.62 270) (length 5.08)
  1411. (name "~" (effects (font (size 1.27 1.27))))
  1412. (number "3" (effects (font (size 1.27 1.27))))
  1413. )
  1414. )
  1415. )
  1416. (symbol "global:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1417. (property "Reference" "R" (id 0) (at 2.032 0 90)
  1418. (effects (font (size 1.27 1.27)))
  1419. )
  1420. (property "Value" "R" (id 1) (at 0 0 90)
  1421. (effects (font (size 1.27 1.27)))
  1422. )
  1423. (property "Footprint" "" (id 2) (at -1.778 0 90)
  1424. (effects (font (size 1.27 1.27)))
  1425. )
  1426. (property "Datasheet" "" (id 3) (at 0 0 0)
  1427. (effects (font (size 1.27 1.27)))
  1428. )
  1429. (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0)
  1430. (effects (font (size 1.27 1.27)) hide)
  1431. )
  1432. (symbol "R_0_1"
  1433. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  1434. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1435. (fill (type none))
  1436. )
  1437. )
  1438. (symbol "R_1_1"
  1439. (pin passive line (at 0 3.81 270) (length 1.27)
  1440. (name "~" (effects (font (size 1.27 1.27))))
  1441. (number "1" (effects (font (size 1.27 1.27))))
  1442. )
  1443. (pin passive line (at 0 -3.81 90) (length 1.27)
  1444. (name "~" (effects (font (size 1.27 1.27))))
  1445. (number "2" (effects (font (size 1.27 1.27))))
  1446. )
  1447. )
  1448. )
  1449. (symbol "global:SW_GLISS" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1450. (property "Reference" "SW" (id 0) (at 0 -1.27 0)
  1451. (effects (font (size 1.27 1.27)))
  1452. )
  1453. (property "Value" "SW_GLISS" (id 1) (at 0 3.81 0)
  1454. (effects (font (size 1.27 1.27)) hide)
  1455. )
  1456. (property "Footprint" "" (id 2) (at 1.27 0 0)
  1457. (effects (font (size 1.27 1.27)) hide)
  1458. )
  1459. (property "Datasheet" "" (id 3) (at 1.27 0 0)
  1460. (effects (font (size 1.27 1.27)) hide)
  1461. )
  1462. (symbol "SW_GLISS_0_1"
  1463. (polyline
  1464. (pts
  1465. (xy -1.27 0)
  1466. (xy 1.27 1.27)
  1467. )
  1468. (stroke (width 0) (type default) (color 0 0 0 0))
  1469. (fill (type none))
  1470. )
  1471. )
  1472. (symbol "SW_GLISS_1_1"
  1473. (pin input line (at 3.81 1.27 180) (length 2.54)
  1474. (name "~" (effects (font (size 1.27 1.27))))
  1475. (number "1" (effects (font (size 1.27 1.27))))
  1476. )
  1477. (pin input line (at -3.81 0 0) (length 2.54)
  1478. (name "~" (effects (font (size 1.27 1.27))))
  1479. (number "2" (effects (font (size 1.27 1.27))))
  1480. )
  1481. (pin input line (at 3.81 -1.27 180) (length 2.54)
  1482. (name "~" (effects (font (size 1.27 1.27))))
  1483. (number "3" (effects (font (size 1.27 1.27))))
  1484. )
  1485. )
  1486. )
  1487. (symbol "global:SW_PUSH" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1488. (property "Reference" "SW" (id 0) (at 3.81 2.794 0)
  1489. (effects (font (size 1.27 1.27)))
  1490. )
  1491. (property "Value" "SW_PUSH" (id 1) (at 0 -2.032 0)
  1492. (effects (font (size 1.27 1.27)))
  1493. )
  1494. (property "Footprint" "" (id 2) (at 0 0 0)
  1495. (effects (font (size 1.27 1.27)))
  1496. )
  1497. (property "Datasheet" "" (id 3) (at 0 0 0)
  1498. (effects (font (size 1.27 1.27)))
  1499. )
  1500. (symbol "SW_PUSH_0_1"
  1501. (rectangle (start -4.318 1.27) (end 4.318 1.524)
  1502. (stroke (width 0) (type default) (color 0 0 0 0))
  1503. (fill (type none))
  1504. )
  1505. (polyline
  1506. (pts
  1507. (xy -1.016 1.524)
  1508. (xy -0.762 2.286)
  1509. (xy 0.762 2.286)
  1510. (xy 1.016 1.524)
  1511. )
  1512. (stroke (width 0) (type default) (color 0 0 0 0))
  1513. (fill (type none))
  1514. )
  1515. (pin passive inverted (at -7.62 0 0) (length 5.08)
  1516. (name "1" (effects (font (size 1.27 1.27))))
  1517. (number "1" (effects (font (size 1.27 1.27))))
  1518. )
  1519. (pin passive inverted (at 7.62 0 180) (length 5.08)
  1520. (name "2" (effects (font (size 1.27 1.27))))
  1521. (number "2" (effects (font (size 1.27 1.27))))
  1522. )
  1523. )
  1524. )
  1525. )
  1526. (junction (at 363.22 207.01) (diameter 0) (color 0 0 0 0)
  1527. (uuid 011ee658-718d-416a-85fd-961729cd1ee5)
  1528. )
  1529. (junction (at 127 271.78) (diameter 0) (color 0 0 0 0)
  1530. (uuid 0325ec43-0390-4ae2-b055-b1ec6ce17b1c)
  1531. )
  1532. (junction (at 134.62 271.78) (diameter 0) (color 0 0 0 0)
  1533. (uuid 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)
  1534. )
  1535. (junction (at 234.95 266.7) (diameter 0) (color 0 0 0 0)
  1536. (uuid 099096e4-8c2a-4d84-a16f-06b4b6330e7a)
  1537. )
  1538. (junction (at 142.24 279.4) (diameter 0) (color 0 0 0 0)
  1539. (uuid 0ce8d3ab-2662-4158-8a2a-18b782908fc5)
  1540. )
  1541. (junction (at 148.59 279.4) (diameter 0) (color 0 0 0 0)
  1542. (uuid 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)
  1543. )
  1544. (junction (at 96.52 35.56) (diameter 0) (color 0 0 0 0)
  1545. (uuid 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37)
  1546. )
  1547. (junction (at 153.67 218.44) (diameter 0) (color 0 0 0 0)
  1548. (uuid 14094ad2-b562-4efa-8c6f-51d7a3134345)
  1549. )
  1550. (junction (at 241.3 116.84) (diameter 0) (color 0 0 0 0)
  1551. (uuid 282c8e53-3acc-42f0-a92a-6aa976b97a93)
  1552. )
  1553. (junction (at 163.83 279.4) (diameter 0) (color 0 0 0 0)
  1554. (uuid 29e058a7-50a3-43e5-81c3-bfee53da08be)
  1555. )
  1556. (junction (at 148.59 271.78) (diameter 0) (color 0 0 0 0)
  1557. (uuid 2e842263-c0ba-46fd-a760-6624d4c78278)
  1558. )
  1559. (junction (at 156.21 271.78) (diameter 0) (color 0 0 0 0)
  1560. (uuid 309b3bff-19c8-41ec-a84d-63399c649f46)
  1561. )
  1562. (junction (at 270.51 266.7) (diameter 0) (color 0 0 0 0)
  1563. (uuid 3249bd81-9fd4-4194-9b4f-2e333b2195b8)
  1564. )
  1565. (junction (at 265.43 264.16) (diameter 0) (color 0 0 0 0)
  1566. (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4)
  1567. )
  1568. (junction (at 168.91 218.44) (diameter 0) (color 0 0 0 0)
  1569. (uuid 3e57b728-64e6-4470-8f27-a43c0dd85050)
  1570. )
  1571. (junction (at 260.35 261.62) (diameter 0) (color 0 0 0 0)
  1572. (uuid 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70)
  1573. )
  1574. (junction (at 142.24 271.78) (diameter 0) (color 0 0 0 0)
  1575. (uuid 4632212f-13ce-4392-bc68-ccb9ba333770)
  1576. )
  1577. (junction (at 168.91 246.38) (diameter 0) (color 0 0 0 0)
  1578. (uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
  1579. )
  1580. (junction (at 250.19 148.59) (diameter 0) (color 0 0 0 0)
  1581. (uuid 53721ea3-d75f-4da3-9edf-c538cae53a21)
  1582. )
  1583. (junction (at 256.54 229.87) (diameter 0) (color 0 0 0 0)
  1584. (uuid 5b34a16c-5a14-4291-8242-ea6d6ac54372)
  1585. )
  1586. (junction (at 345.44 139.7) (diameter 0) (color 0 0 0 0)
  1587. (uuid 5c7d6eaf-f256-4349-8203-d2e836872231)
  1588. )
  1589. (junction (at 109.22 36.83) (diameter 0) (color 0 0 0 0)
  1590. (uuid 5d3d7893-1d11-4f1d-9052-85cf0e07d281)
  1591. )
  1592. (junction (at 35.56 234.95) (diameter 0) (color 0 0 0 0)
  1593. (uuid 5edcefbe-9766-42c8-9529-28d0ec865573)
  1594. )
  1595. (junction (at 113.03 36.83) (diameter 0) (color 0 0 0 0)
  1596. (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa)
  1597. )
  1598. (junction (at 344.17 207.01) (diameter 0) (color 0 0 0 0)
  1599. (uuid 802c2dc3-ca9f-491e-9d66-7893e89ac34c)
  1600. )
  1601. (junction (at 35.56 227.33) (diameter 0) (color 0 0 0 0)
  1602. (uuid 81a15393-727e-448b-a777-b18773023d89)
  1603. )
  1604. (junction (at 226.06 116.84) (diameter 0) (color 0 0 0 0)
  1605. (uuid 86ad0555-08b3-4dde-9a3e-c1e5e29b6615)
  1606. )
  1607. (junction (at 234.95 269.24) (diameter 0) (color 0 0 0 0)
  1608. (uuid 87d7448e-e139-4209-ae0b-372f805267da)
  1609. )
  1610. (junction (at 207.01 116.84) (diameter 0) (color 0 0 0 0)
  1611. (uuid 974c48bf-534e-4335-98e1-b0426c783e99)
  1612. )
  1613. (junction (at 364.49 139.7) (diameter 0) (color 0 0 0 0)
  1614. (uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec)
  1615. )
  1616. (junction (at 54.61 49.53) (diameter 0) (color 0 0 0 0)
  1617. (uuid a08b5b74-fb2e-4a1e-bbc4-684b8dfe76ad)
  1618. )
  1619. (junction (at 234.95 264.16) (diameter 0) (color 0 0 0 0)
  1620. (uuid a13ab237-8f8d-4e16-8c47-4440653b8534)
  1621. )
  1622. (junction (at 290.83 143.51) (diameter 0) (color 0 0 0 0)
  1623. (uuid a62609cd-29b7-4918-b97d-7b2404ba61cf)
  1624. )
  1625. (junction (at 153.67 246.38) (diameter 0) (color 0 0 0 0)
  1626. (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
  1627. )
  1628. (junction (at 163.83 271.78) (diameter 0) (color 0 0 0 0)
  1629. (uuid be645d0f-8568-47a0-a152-e3ddd33563eb)
  1630. )
  1631. (junction (at 265.43 250.19) (diameter 0) (color 0 0 0 0)
  1632. (uuid c873689a-d206-42f5-aead-9199b4d63f51)
  1633. )
  1634. (junction (at 134.62 279.4) (diameter 0) (color 0 0 0 0)
  1635. (uuid d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56)
  1636. )
  1637. (junction (at 127 279.4) (diameter 0) (color 0 0 0 0)
  1638. (uuid d5b800ca-1ab6-4b66-b5f7-2dda5658b504)
  1639. )
  1640. (junction (at 191.77 116.84) (diameter 0) (color 0 0 0 0)
  1641. (uuid fc83cd71-1198-4019-87a1-dc154bceead3)
  1642. )
  1643. (junction (at 29.21 49.53) (diameter 0) (color 0 0 0 0)
  1644. (uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764)
  1645. )
  1646. (junction (at 156.21 279.4) (diameter 0) (color 0 0 0 0)
  1647. (uuid feb26ecb-9193-46ea-a41b-d09305bf0a3e)
  1648. )
  1649. (no_connect (at 100.33 209.55) (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51))
  1650. (no_connect (at 69.85 209.55) (uuid 18f1018d-5857-4c32-a072-f3de80352f74))
  1651. (no_connect (at 58.42 44.45) (uuid 2b5a9ad3-7ec4-447d-916c-47adf5f9674f))
  1652. (no_connect (at 97.79 267.97) (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd))
  1653. (no_connect (at 113.03 255.27) (uuid 50ea0b0e-e387-42d8-89d0-195a66a53d2a))
  1654. (no_connect (at 113.03 237.49) (uuid 50ea0b0e-e387-42d8-89d0-195a66a53d2b))
  1655. (no_connect (at 113.03 240.03) (uuid 50ea0b0e-e387-42d8-89d0-195a66a53d2c))
  1656. (no_connect (at 113.03 242.57) (uuid 50ea0b0e-e387-42d8-89d0-195a66a53d2d))
  1657. (no_connect (at 113.03 245.11) (uuid 50ea0b0e-e387-42d8-89d0-195a66a53d2e))
  1658. (no_connect (at 113.03 247.65) (uuid 50ea0b0e-e387-42d8-89d0-195a66a53d2f))
  1659. (no_connect (at 113.03 250.19) (uuid 50ea0b0e-e387-42d8-89d0-195a66a53d30))
  1660. (no_connect (at 113.03 252.73) (uuid 50ea0b0e-e387-42d8-89d0-195a66a53d31))
  1661. (no_connect (at 82.55 209.55) (uuid 59ab6a02-2d83-4729-9d8c-a1abc6c8bbda))
  1662. (no_connect (at 58.42 39.37) (uuid 6241e6d3-a754-45b6-9f7c-e43019b93226))
  1663. (no_connect (at 95.25 267.97) (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc))
  1664. (no_connect (at 58.42 34.29) (uuid 7c449795-1773-46e9-a6ea-f3e8db2e020d))
  1665. (no_connect (at 58.42 36.83) (uuid 7d0dab95-9e7a-486e-a1d7-fc48860fd57d))
  1666. (no_connect (at 72.39 209.55) (uuid 992a2b00-5e28-4edd-88b5-994891512d8d))
  1667. (no_connect (at 54.61 240.03) (uuid b0b4c3cb-e7ea-49c0-8162-be3bbab3e4ec))
  1668. (no_connect (at 278.13 116.84) (uuid c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09))
  1669. (no_connect (at 58.42 41.91) (uuid c8a44971-63c1-4a19-879d-b6647b2dc08d))
  1670. (no_connect (at 226.06 196.85) (uuid d6fb27cf-362d-4568-967c-a5bf49d5931b))
  1671. (no_connect (at 54.61 245.11) (uuid de370984-7922-4327-a0ba-7cd613995df4))
  1672. (no_connect (at 54.61 227.33) (uuid df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b))
  1673. (no_connect (at 54.61 237.49) (uuid e87a6f80-914f-4f62-9c9f-9ba62a88ee3d))
  1674. (no_connect (at 58.42 46.99) (uuid f1782535-55f4-4299-bd4f-6f51b0b7259c))
  1675. (wire (pts (xy 119.38 36.83) (xy 113.03 36.83))
  1676. (stroke (width 0) (type default) (color 0 0 0 0))
  1677. (uuid 008da5b9-6f95-4113-b7d0-d93ac62efd33)
  1678. )
  1679. (wire (pts (xy 229.87 110.49) (xy 226.06 110.49))
  1680. (stroke (width 0) (type default) (color 0 0 0 0))
  1681. (uuid 02538207-54a8-4266-8d51-23871852b2ff)
  1682. )
  1683. (wire (pts (xy 153.67 252.73) (xy 157.48 252.73))
  1684. (stroke (width 0) (type default) (color 0 0 0 0))
  1685. (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
  1686. )
  1687. (wire (pts (xy 293.37 143.51) (xy 290.83 143.51))
  1688. (stroke (width 0) (type default) (color 0 0 0 0))
  1689. (uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15)
  1690. )
  1691. (wire (pts (xy 257.81 266.7) (xy 270.51 266.7))
  1692. (stroke (width 0) (type default) (color 0 0 0 0))
  1693. (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
  1694. )
  1695. (wire (pts (xy 105.41 35.56) (xy 96.52 35.56))
  1696. (stroke (width 0) (type default) (color 0 0 0 0))
  1697. (uuid 0ceb97d6-1b0f-4b71-921e-b0955c30c998)
  1698. )
  1699. (wire (pts (xy 241.3 116.84) (xy 245.11 116.84))
  1700. (stroke (width 0) (type default) (color 0 0 0 0))
  1701. (uuid 0d993e48-cea3-4104-9c5a-d8f97b64a3ac)
  1702. )
  1703. (wire (pts (xy 326.39 139.7) (xy 345.44 139.7))
  1704. (stroke (width 0) (type default) (color 0 0 0 0))
  1705. (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae)
  1706. )
  1707. (wire (pts (xy 190.5 116.84) (xy 191.77 116.84))
  1708. (stroke (width 0) (type default) (color 0 0 0 0))
  1709. (uuid 10d8ad0e-6a08-4053-92aa-23a15910fd21)
  1710. )
  1711. (wire (pts (xy 88.9 34.29) (xy 86.36 34.29))
  1712. (stroke (width 0) (type default) (color 0 0 0 0))
  1713. (uuid 12a24e86-2c38-4685-bba9-fff8dddb4cb0)
  1714. )
  1715. (wire (pts (xy 165.1 224.79) (xy 168.91 224.79))
  1716. (stroke (width 0) (type default) (color 0 0 0 0))
  1717. (uuid 1427bb3f-0689-4b41-a816-cd79a5202fd0)
  1718. )
  1719. (wire (pts (xy 365.76 30.48) (xy 377.19 30.48))
  1720. (stroke (width 0) (type default) (color 0 0 0 0))
  1721. (uuid 15699041-ed40-45ee-87d8-f5e206a88536)
  1722. )
  1723. (wire (pts (xy 54.61 49.53) (xy 52.07 49.53))
  1724. (stroke (width 0) (type default) (color 0 0 0 0))
  1725. (uuid 1725235b-d963-45c2-876f-bb054466e7bb)
  1726. )
  1727. (wire (pts (xy 142.24 271.78) (xy 134.62 271.78))
  1728. (stroke (width 0) (type default) (color 0 0 0 0))
  1729. (uuid 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee)
  1730. )
  1731. (wire (pts (xy 237.49 110.49) (xy 245.11 110.49))
  1732. (stroke (width 0) (type default) (color 0 0 0 0))
  1733. (uuid 17ed3508-fa2e-4593-a799-bfd39a6cc14d)
  1734. )
  1735. (wire (pts (xy 58.42 49.53) (xy 54.61 49.53))
  1736. (stroke (width 0) (type default) (color 0 0 0 0))
  1737. (uuid 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd)
  1738. )
  1739. (wire (pts (xy 377.19 20.32) (xy 365.76 20.32))
  1740. (stroke (width 0) (type default) (color 0 0 0 0))
  1741. (uuid 199124ca-dd64-45cf-a063-97cc545cbea7)
  1742. )
  1743. (wire (pts (xy 384.81 22.86) (xy 375.92 22.86))
  1744. (stroke (width 0) (type default) (color 0 0 0 0))
  1745. (uuid 1bd80cf9-f42a-4aee-a408-9dbf4e81e625)
  1746. )
  1747. (wire (pts (xy 226.06 116.84) (xy 226.06 123.19))
  1748. (stroke (width 0) (type default) (color 0 0 0 0))
  1749. (uuid 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5)
  1750. )
  1751. (wire (pts (xy 276.86 143.51) (xy 290.83 143.51))
  1752. (stroke (width 0) (type default) (color 0 0 0 0))
  1753. (uuid 1e48966e-d29d-4521-8939-ec8ac570431d)
  1754. )
  1755. (wire (pts (xy 44.45 232.41) (xy 54.61 232.41))
  1756. (stroke (width 0) (type default) (color 0 0 0 0))
  1757. (uuid 22999e73-da32-43a5-9163-4b3a41614f25)
  1758. )
  1759. (wire (pts (xy 134.62 279.4) (xy 127 279.4))
  1760. (stroke (width 0) (type default) (color 0 0 0 0))
  1761. (uuid 29195ea4-8218-44a1-b4bf-466bee0082e4)
  1762. )
  1763. (wire (pts (xy 191.77 110.49) (xy 191.77 116.84))
  1764. (stroke (width 0) (type default) (color 0 0 0 0))
  1765. (uuid 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f)
  1766. )
  1767. (wire (pts (xy 207.01 116.84) (xy 210.82 116.84))
  1768. (stroke (width 0) (type default) (color 0 0 0 0))
  1769. (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19)
  1770. )
  1771. (wire (pts (xy 54.61 229.87) (xy 44.45 229.87))
  1772. (stroke (width 0) (type default) (color 0 0 0 0))
  1773. (uuid 2d697cf0-e02e-4ed1-a048-a704dab0ee43)
  1774. )
  1775. (wire (pts (xy 344.17 207.01) (xy 363.22 207.01))
  1776. (stroke (width 0) (type default) (color 0 0 0 0))
  1777. (uuid 319c683d-aed6-4e7d-aee2-ff9871746d52)
  1778. )
  1779. (wire (pts (xy 234.95 264.16) (xy 234.95 266.7))
  1780. (stroke (width 0) (type default) (color 0 0 0 0))
  1781. (uuid 34a74736-156e-4bf3-9200-cd137cfa59da)
  1782. )
  1783. (wire (pts (xy 113.03 34.29) (xy 113.03 36.83))
  1784. (stroke (width 0) (type default) (color 0 0 0 0))
  1785. (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
  1786. )
  1787. (wire (pts (xy 256.54 229.87) (xy 255.27 229.87))
  1788. (stroke (width 0) (type default) (color 0 0 0 0))
  1789. (uuid 35a9f71f-ba35-47f6-814e-4106ac36c51e)
  1790. )
  1791. (wire (pts (xy 88.9 27.94) (xy 88.9 31.75))
  1792. (stroke (width 0) (type default) (color 0 0 0 0))
  1793. (uuid 35ef9c4a-35f6-467b-a704-b1d9354880cf)
  1794. )
  1795. (wire (pts (xy 148.59 279.4) (xy 142.24 279.4))
  1796. (stroke (width 0) (type default) (color 0 0 0 0))
  1797. (uuid 382ca670-6ae8-4de6-90f9-f241d1337171)
  1798. )
  1799. (wire (pts (xy 368.3 33.02) (xy 365.76 33.02))
  1800. (stroke (width 0) (type default) (color 0 0 0 0))
  1801. (uuid 3bbbbb7d-391c-4fee-ac81-3c47878edc38)
  1802. )
  1803. (wire (pts (xy 153.67 246.38) (xy 153.67 238.76))
  1804. (stroke (width 0) (type default) (color 0 0 0 0))
  1805. (uuid 3bca658b-a598-4669-a7cb-3f9b5f47bb5a)
  1806. )
  1807. (wire (pts (xy 96.52 35.56) (xy 88.9 35.56))
  1808. (stroke (width 0) (type default) (color 0 0 0 0))
  1809. (uuid 3e0392c0-affc-4114-9de5-1f1cfe79418a)
  1810. )
  1811. (wire (pts (xy 163.83 279.4) (xy 156.21 279.4))
  1812. (stroke (width 0) (type default) (color 0 0 0 0))
  1813. (uuid 3fd54105-4b7e-4004-9801-76ec66108a22)
  1814. )
  1815. (wire (pts (xy 44.45 227.33) (xy 44.45 229.87))
  1816. (stroke (width 0) (type default) (color 0 0 0 0))
  1817. (uuid 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)
  1818. )
  1819. (wire (pts (xy 152.4 246.38) (xy 153.67 246.38))
  1820. (stroke (width 0) (type default) (color 0 0 0 0))
  1821. (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
  1822. )
  1823. (wire (pts (xy 260.35 257.81) (xy 260.35 261.62))
  1824. (stroke (width 0) (type default) (color 0 0 0 0))
  1825. (uuid 430d6d73-9de6-41ca-b788-178d709f4aae)
  1826. )
  1827. (wire (pts (xy 191.77 116.84) (xy 191.77 123.19))
  1828. (stroke (width 0) (type default) (color 0 0 0 0))
  1829. (uuid 475ed8b3-90bf-48cd-bce5-d8f48b689541)
  1830. )
  1831. (wire (pts (xy 377.19 35.56) (xy 365.76 35.56))
  1832. (stroke (width 0) (type default) (color 0 0 0 0))
  1833. (uuid 4a53fa56-d65b-42a4-a4be-8f49c4c015bb)
  1834. )
  1835. (wire (pts (xy 228.6 151.13) (xy 224.79 151.13))
  1836. (stroke (width 0) (type default) (color 0 0 0 0))
  1837. (uuid 4b1fce17-dec7-457e-ba3b-a77604e77dc9)
  1838. )
  1839. (wire (pts (xy 377.19 25.4) (xy 365.76 25.4))
  1840. (stroke (width 0) (type default) (color 0 0 0 0))
  1841. (uuid 57f248a7-365e-4c42-b80d-5a7d1f9dfaf3)
  1842. )
  1843. (wire (pts (xy 153.67 218.44) (xy 153.67 224.79))
  1844. (stroke (width 0) (type default) (color 0 0 0 0))
  1845. (uuid 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
  1846. )
  1847. (polyline (pts (xy 182.88 247.65) (xy 300.99 247.65))
  1848. (stroke (width 0) (type default) (color 0 0 0 0))
  1849. (uuid 593b8647-0095-46cc-ba23-3cf2a86edb5e)
  1850. )
  1851. (wire (pts (xy 153.67 224.79) (xy 157.48 224.79))
  1852. (stroke (width 0) (type default) (color 0 0 0 0))
  1853. (uuid 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
  1854. )
  1855. (wire (pts (xy 156.21 279.4) (xy 148.59 279.4))
  1856. (stroke (width 0) (type default) (color 0 0 0 0))
  1857. (uuid 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)
  1858. )
  1859. (wire (pts (xy 203.2 110.49) (xy 210.82 110.49))
  1860. (stroke (width 0) (type default) (color 0 0 0 0))
  1861. (uuid 5f312b85-6822-40a3-b417-2df49696ca2d)
  1862. )
  1863. (wire (pts (xy 165.1 212.09) (xy 172.72 212.09))
  1864. (stroke (width 0) (type default) (color 0 0 0 0))
  1865. (uuid 5ff19d63-2cb4-438b-93c4-e66d37a05329)
  1866. )
  1867. (polyline (pts (xy 182.88 204.47) (xy 300.99 204.47))
  1868. (stroke (width 0) (type default) (color 0 0 0 0))
  1869. (uuid 60aa0ce8-9d0e-48ca-bbf9-866403979e9b)
  1870. )
  1871. (wire (pts (xy 375.92 27.94) (xy 384.81 27.94))
  1872. (stroke (width 0) (type default) (color 0 0 0 0))
  1873. (uuid 6150c02b-beb5-4af1-951e-3666a285a6ea)
  1874. )
  1875. (wire (pts (xy 157.48 212.09) (xy 153.67 212.09))
  1876. (stroke (width 0) (type default) (color 0 0 0 0))
  1877. (uuid 637f12be-fa48-4ce4-96b2-04c21a8795c8)
  1878. )
  1879. (wire (pts (xy 88.9 35.56) (xy 88.9 34.29))
  1880. (stroke (width 0) (type default) (color 0 0 0 0))
  1881. (uuid 6513181c-0a6a-4560-9a18-17450c36ae2a)
  1882. )
  1883. (wire (pts (xy 35.56 234.95) (xy 44.45 234.95))
  1884. (stroke (width 0) (type default) (color 0 0 0 0))
  1885. (uuid 658dad07-97fd-466c-8b49-21892ac96ea4)
  1886. )
  1887. (wire (pts (xy 265.43 250.19) (xy 260.35 250.19))
  1888. (stroke (width 0) (type default) (color 0 0 0 0))
  1889. (uuid 6a2bcc72-047b-4846-8583-1109e3552669)
  1890. )
  1891. (wire (pts (xy 29.21 57.15) (xy 58.42 57.15))
  1892. (stroke (width 0) (type default) (color 0 0 0 0))
  1893. (uuid 6afc19cf-38b4-47a3-bc2b-445b18724310)
  1894. )
  1895. (wire (pts (xy 44.45 234.95) (xy 44.45 232.41))
  1896. (stroke (width 0) (type default) (color 0 0 0 0))
  1897. (uuid 6e68f0cd-800e-4167-9553-71fc59da1eeb)
  1898. )
  1899. (wire (pts (xy 260.35 261.62) (xy 257.81 261.62))
  1900. (stroke (width 0) (type default) (color 0 0 0 0))
  1901. (uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e)
  1902. )
  1903. (wire (pts (xy 270.51 266.7) (xy 276.86 266.7))
  1904. (stroke (width 0) (type default) (color 0 0 0 0))
  1905. (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
  1906. )
  1907. (wire (pts (xy 345.44 139.7) (xy 364.49 139.7))
  1908. (stroke (width 0) (type default) (color 0 0 0 0))
  1909. (uuid 7273dd21-e834-41d3-b279-d7de727709ca)
  1910. )
  1911. (wire (pts (xy 224.79 116.84) (xy 226.06 116.84))
  1912. (stroke (width 0) (type default) (color 0 0 0 0))
  1913. (uuid 73fbe87f-3928-49c2-bf87-839d907c6aef)
  1914. )
  1915. (wire (pts (xy 384.81 38.1) (xy 356.87 38.1))
  1916. (stroke (width 0) (type default) (color 0 0 0 0))
  1917. (uuid 755f94aa-38f0-4a64-a7c7-6c71cb18cddf)
  1918. )
  1919. (wire (pts (xy 276.86 261.62) (xy 260.35 261.62))
  1920. (stroke (width 0) (type default) (color 0 0 0 0))
  1921. (uuid 775e8983-a723-43c5-bf00-61681f0840f3)
  1922. )
  1923. (wire (pts (xy 270.51 118.11) (xy 266.7 118.11))
  1924. (stroke (width 0) (type default) (color 0 0 0 0))
  1925. (uuid 7760a75a-d74b-4185-b34e-cbc7b2c339b6)
  1926. )
  1927. (wire (pts (xy 168.91 224.79) (xy 168.91 218.44))
  1928. (stroke (width 0) (type default) (color 0 0 0 0))
  1929. (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0)
  1930. )
  1931. (wire (pts (xy 109.22 36.83) (xy 86.36 36.83))
  1932. (stroke (width 0) (type default) (color 0 0 0 0))
  1933. (uuid 79476267-290e-445f-995b-0afd0e11a4b5)
  1934. )
  1935. (polyline (pts (xy 300.99 252.73) (xy 300.99 11.43))
  1936. (stroke (width 0) (type default) (color 0 0 0 0))
  1937. (uuid 7a74c4b1-6243-4a12-85a2-bc41d346e7aa)
  1938. )
  1939. (wire (pts (xy 171.45 271.78) (xy 163.83 271.78))
  1940. (stroke (width 0) (type default) (color 0 0 0 0))
  1941. (uuid 7b044939-8c4d-444f-b9e0-a15fcdeb5a86)
  1942. )
  1943. (wire (pts (xy 203.2 123.19) (xy 207.01 123.19))
  1944. (stroke (width 0) (type default) (color 0 0 0 0))
  1945. (uuid 7b766787-7689-40b8-9ef5-c0b1af45a9ae)
  1946. )
  1947. (wire (pts (xy 363.22 207.01) (xy 383.54 207.01))
  1948. (stroke (width 0) (type default) (color 0 0 0 0))
  1949. (uuid 7d76d925-f900-42af-a03f-bb32d2381b09)
  1950. )
  1951. (wire (pts (xy 250.19 148.59) (xy 259.08 148.59))
  1952. (stroke (width 0) (type default) (color 0 0 0 0))
  1953. (uuid 7de78f76-1e07-471e-8d13-0d648e4a4aff)
  1954. )
  1955. (wire (pts (xy 365.76 27.94) (xy 368.3 27.94))
  1956. (stroke (width 0) (type default) (color 0 0 0 0))
  1957. (uuid 80095e91-6317-4cfb-9aea-884c9a1accc5)
  1958. )
  1959. (wire (pts (xy 280.67 148.59) (xy 276.86 148.59))
  1960. (stroke (width 0) (type default) (color 0 0 0 0))
  1961. (uuid 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5)
  1962. )
  1963. (wire (pts (xy 29.21 49.53) (xy 29.21 57.15))
  1964. (stroke (width 0) (type default) (color 0 0 0 0))
  1965. (uuid 84d296ba-3d39-4264-ad19-947f90c54396)
  1966. )
  1967. (wire (pts (xy 246.38 148.59) (xy 250.19 148.59))
  1968. (stroke (width 0) (type default) (color 0 0 0 0))
  1969. (uuid 899daaaf-a089-4e7b-bd12-2beb1f728c04)
  1970. )
  1971. (wire (pts (xy 168.91 218.44) (xy 172.72 218.44))
  1972. (stroke (width 0) (type default) (color 0 0 0 0))
  1973. (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
  1974. )
  1975. (wire (pts (xy 148.59 271.78) (xy 142.24 271.78))
  1976. (stroke (width 0) (type default) (color 0 0 0 0))
  1977. (uuid 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)
  1978. )
  1979. (wire (pts (xy 127 271.78) (xy 123.19 271.78))
  1980. (stroke (width 0) (type default) (color 0 0 0 0))
  1981. (uuid 935f462d-8b1e-4005-9f1e-17f537ab1756)
  1982. )
  1983. (wire (pts (xy 384.81 33.02) (xy 375.92 33.02))
  1984. (stroke (width 0) (type default) (color 0 0 0 0))
  1985. (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136)
  1986. )
  1987. (wire (pts (xy 195.58 110.49) (xy 191.77 110.49))
  1988. (stroke (width 0) (type default) (color 0 0 0 0))
  1989. (uuid 99186658-0361-40ba-ae93-62f23c5622e6)
  1990. )
  1991. (wire (pts (xy 54.61 49.53) (xy 54.61 52.07))
  1992. (stroke (width 0) (type default) (color 0 0 0 0))
  1993. (uuid 9af6230e-940f-4d87-982a-da156b22fa95)
  1994. )
  1995. (polyline (pts (xy 259.08 132.08) (xy 259.08 105.41))
  1996. (stroke (width 0) (type default) (color 0 0 0 0))
  1997. (uuid 9db16341-dac0-4aab-9c62-7d88c111c1ce)
  1998. )
  1999. (polyline (pts (xy 182.88 132.08) (xy 300.99 132.08))
  2000. (stroke (width 0) (type default) (color 0 0 0 0))
  2001. (uuid a07b6b2b-7179-4297-b163-5e47ffbe76d3)
  2002. )
  2003. (wire (pts (xy 276.86 264.16) (xy 265.43 264.16))
  2004. (stroke (width 0) (type default) (color 0 0 0 0))
  2005. (uuid a0e7a81b-2259-4f8d-8368-ba75f2004714)
  2006. )
  2007. (wire (pts (xy 35.56 227.33) (xy 27.94 227.33))
  2008. (stroke (width 0) (type default) (color 0 0 0 0))
  2009. (uuid a4f86a46-3bc8-4daa-9125-a63f297eb114)
  2010. )
  2011. (wire (pts (xy 266.7 224.79) (xy 283.21 224.79))
  2012. (stroke (width 0) (type default) (color 0 0 0 0))
  2013. (uuid a7f25f41-0b4c-4430-b6cd-b2160b2db099)
  2014. )
  2015. (wire (pts (xy 16.51 49.53) (xy 29.21 49.53))
  2016. (stroke (width 0) (type default) (color 0 0 0 0))
  2017. (uuid a90361cd-254c-4d27-ae1f-9a6c85bafe28)
  2018. )
  2019. (polyline (pts (xy 182.88 105.41) (xy 300.99 105.41))
  2020. (stroke (width 0) (type default) (color 0 0 0 0))
  2021. (uuid ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6)
  2022. )
  2023. (wire (pts (xy 134.62 36.83) (xy 127 36.83))
  2024. (stroke (width 0) (type default) (color 0 0 0 0))
  2025. (uuid aeb03be9-98f0-43f6-9432-1bb35aa04bab)
  2026. )
  2027. (wire (pts (xy 207.01 123.19) (xy 207.01 116.84))
  2028. (stroke (width 0) (type default) (color 0 0 0 0))
  2029. (uuid aee7520e-3bfc-435f-a66b-1dd1f5aa6a87)
  2030. )
  2031. (wire (pts (xy 142.24 279.4) (xy 134.62 279.4))
  2032. (stroke (width 0) (type default) (color 0 0 0 0))
  2033. (uuid b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)
  2034. )
  2035. (wire (pts (xy 241.3 123.19) (xy 241.3 116.84))
  2036. (stroke (width 0) (type default) (color 0 0 0 0))
  2037. (uuid b12e5309-5d01-40ef-a9c3-8453e00a555e)
  2038. )
  2039. (polyline (pts (xy 182.88 105.41) (xy 182.88 284.48))
  2040. (stroke (width 0) (type default) (color 0 0 0 0))
  2041. (uuid b7d06af4-a5b1-447f-9b1a-8b44eb1cc204)
  2042. )
  2043. (wire (pts (xy 165.1 252.73) (xy 168.91 252.73))
  2044. (stroke (width 0) (type default) (color 0 0 0 0))
  2045. (uuid b873bc5d-a9af-4bd9-afcb-87ce4d417120)
  2046. )
  2047. (wire (pts (xy 88.9 31.75) (xy 86.36 31.75))
  2048. (stroke (width 0) (type default) (color 0 0 0 0))
  2049. (uuid b8b961e9-8a60-45fc-999a-a7a3baff4e0d)
  2050. )
  2051. (wire (pts (xy 156.21 271.78) (xy 148.59 271.78))
  2052. (stroke (width 0) (type default) (color 0 0 0 0))
  2053. (uuid bd9595a1-04f3-4fda-8f1b-e65ad874edd3)
  2054. )
  2055. (polyline (pts (xy 182.88 166.37) (xy 300.99 166.37))
  2056. (stroke (width 0) (type default) (color 0 0 0 0))
  2057. (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054)
  2058. )
  2059. (wire (pts (xy 237.49 123.19) (xy 241.3 123.19))
  2060. (stroke (width 0) (type default) (color 0 0 0 0))
  2061. (uuid be6b17f9-34f5-44e9-a4c7-725d2e274a9d)
  2062. )
  2063. (wire (pts (xy 153.67 238.76) (xy 157.48 238.76))
  2064. (stroke (width 0) (type default) (color 0 0 0 0))
  2065. (uuid bef2abc2-bf3e-4a72-ad03-f8da3cd893cb)
  2066. )
  2067. (wire (pts (xy 153.67 246.38) (xy 153.67 252.73))
  2068. (stroke (width 0) (type default) (color 0 0 0 0))
  2069. (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
  2070. )
  2071. (wire (pts (xy 231.14 224.79) (xy 226.06 224.79))
  2072. (stroke (width 0) (type default) (color 0 0 0 0))
  2073. (uuid c094494a-f6f7-43fc-a007-4951484ddf3a)
  2074. )
  2075. (wire (pts (xy 35.56 227.33) (xy 44.45 227.33))
  2076. (stroke (width 0) (type default) (color 0 0 0 0))
  2077. (uuid c09938fd-06b9-4771-9f63-2311626243b3)
  2078. )
  2079. (wire (pts (xy 368.3 22.86) (xy 365.76 22.86))
  2080. (stroke (width 0) (type default) (color 0 0 0 0))
  2081. (uuid c346b00c-b5e0-4939-beb4-7f48172ef334)
  2082. )
  2083. (wire (pts (xy 257.81 229.87) (xy 256.54 229.87))
  2084. (stroke (width 0) (type default) (color 0 0 0 0))
  2085. (uuid c701ee8e-1214-4781-a973-17bef7b6e3eb)
  2086. )
  2087. (wire (pts (xy 168.91 246.38) (xy 172.72 246.38))
  2088. (stroke (width 0) (type default) (color 0 0 0 0))
  2089. (uuid c76d4423-ef1b-4a6f-8176-33d65f2877bb)
  2090. )
  2091. (wire (pts (xy 171.45 279.4) (xy 163.83 279.4))
  2092. (stroke (width 0) (type default) (color 0 0 0 0))
  2093. (uuid c9667181-b3c7-4b01-b8b4-baa29a9aea63)
  2094. )
  2095. (wire (pts (xy 58.42 52.07) (xy 54.61 52.07))
  2096. (stroke (width 0) (type default) (color 0 0 0 0))
  2097. (uuid ca4bc64e-3474-4158-b8e4-eb450629d6fd)
  2098. )
  2099. (wire (pts (xy 234.95 261.62) (xy 234.95 264.16))
  2100. (stroke (width 0) (type default) (color 0 0 0 0))
  2101. (uuid ca5a4651-0d1d-441b-b17d-01518ef3b656)
  2102. )
  2103. (wire (pts (xy 265.43 257.81) (xy 265.43 264.16))
  2104. (stroke (width 0) (type default) (color 0 0 0 0))
  2105. (uuid cb083d38-4f11-4a80-8b19-ab751c405e4a)
  2106. )
  2107. (wire (pts (xy 134.62 271.78) (xy 127 271.78))
  2108. (stroke (width 0) (type default) (color 0 0 0 0))
  2109. (uuid cb16d05e-318b-4e51-867b-70d791d75bea)
  2110. )
  2111. (wire (pts (xy 270.51 257.81) (xy 270.51 266.7))
  2112. (stroke (width 0) (type default) (color 0 0 0 0))
  2113. (uuid cbde200f-1075-469a-89f8-abbdcf30e36a)
  2114. )
  2115. (wire (pts (xy 152.4 218.44) (xy 153.67 218.44))
  2116. (stroke (width 0) (type default) (color 0 0 0 0))
  2117. (uuid cbebc05a-c4dd-4baf-8c08-196e84e08b27)
  2118. )
  2119. (wire (pts (xy 270.51 250.19) (xy 265.43 250.19))
  2120. (stroke (width 0) (type default) (color 0 0 0 0))
  2121. (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
  2122. )
  2123. (wire (pts (xy 127 279.4) (xy 123.19 279.4))
  2124. (stroke (width 0) (type default) (color 0 0 0 0))
  2125. (uuid cff34251-839c-4da9-a0ad-85d0fc4e32af)
  2126. )
  2127. (wire (pts (xy 234.95 266.7) (xy 234.95 269.24))
  2128. (stroke (width 0) (type default) (color 0 0 0 0))
  2129. (uuid d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)
  2130. )
  2131. (wire (pts (xy 226.06 110.49) (xy 226.06 116.84))
  2132. (stroke (width 0) (type default) (color 0 0 0 0))
  2133. (uuid dd334895-c8ff-4719-bac4-c0b289bb5899)
  2134. )
  2135. (wire (pts (xy 191.77 123.19) (xy 195.58 123.19))
  2136. (stroke (width 0) (type default) (color 0 0 0 0))
  2137. (uuid df2a6036-7274-4398-9365-148b6ddab90d)
  2138. )
  2139. (wire (pts (xy 259.08 224.79) (xy 255.27 224.79))
  2140. (stroke (width 0) (type default) (color 0 0 0 0))
  2141. (uuid e1535036-5d36-405f-bb86-3819621c4f23)
  2142. )
  2143. (wire (pts (xy 20.32 227.33) (xy 20.32 234.95))
  2144. (stroke (width 0) (type default) (color 0 0 0 0))
  2145. (uuid e6d68f56-4a40-4849-b8d1-13d5ca292900)
  2146. )
  2147. (wire (pts (xy 163.83 271.78) (xy 156.21 271.78))
  2148. (stroke (width 0) (type default) (color 0 0 0 0))
  2149. (uuid ebd06df3-d52b-4cff-99a2-a771df6d3733)
  2150. )
  2151. (wire (pts (xy 35.56 234.95) (xy 27.94 234.95))
  2152. (stroke (width 0) (type default) (color 0 0 0 0))
  2153. (uuid ec5c2062-3a41-4636-8803-069e60a1641a)
  2154. )
  2155. (polyline (pts (xy 407.67 114.3) (xy 300.99 114.3))
  2156. (stroke (width 0) (type default) (color 0 0 0 0))
  2157. (uuid ed8a7f02-cf05-41d0-97b4-4388ef205e73)
  2158. )
  2159. (wire (pts (xy 234.95 269.24) (xy 234.95 271.78))
  2160. (stroke (width 0) (type default) (color 0 0 0 0))
  2161. (uuid ee41cb8e-512d-41d2-81e1-3c50fff32aeb)
  2162. )
  2163. (wire (pts (xy 344.17 207.01) (xy 325.12 207.01))
  2164. (stroke (width 0) (type default) (color 0 0 0 0))
  2165. (uuid eed466bf-cd88-4860-9abf-41a594ca08bd)
  2166. )
  2167. (wire (pts (xy 96.52 27.94) (xy 88.9 27.94))
  2168. (stroke (width 0) (type default) (color 0 0 0 0))
  2169. (uuid f357ddb5-3f44-43b0-b00d-d64f5c62ba4a)
  2170. )
  2171. (wire (pts (xy 265.43 264.16) (xy 257.81 264.16))
  2172. (stroke (width 0) (type default) (color 0 0 0 0))
  2173. (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3)
  2174. )
  2175. (wire (pts (xy 226.06 123.19) (xy 229.87 123.19))
  2176. (stroke (width 0) (type default) (color 0 0 0 0))
  2177. (uuid f56d244f-1fa4-4475-ac1d-f41eed31a48b)
  2178. )
  2179. (wire (pts (xy 113.03 36.83) (xy 109.22 36.83))
  2180. (stroke (width 0) (type default) (color 0 0 0 0))
  2181. (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd)
  2182. )
  2183. (wire (pts (xy 153.67 212.09) (xy 153.67 218.44))
  2184. (stroke (width 0) (type default) (color 0 0 0 0))
  2185. (uuid f7447e92-4293-41c4-be3f-69b30aad1f17)
  2186. )
  2187. (wire (pts (xy 168.91 252.73) (xy 168.91 246.38))
  2188. (stroke (width 0) (type default) (color 0 0 0 0))
  2189. (uuid f7667b23-296e-4362-a7e3-949632c8954b)
  2190. )
  2191. (wire (pts (xy 278.13 119.38) (xy 281.94 119.38))
  2192. (stroke (width 0) (type default) (color 0 0 0 0))
  2193. (uuid fa3dc56e-36f0-4828-9434-664b2265b305)
  2194. )
  2195. (wire (pts (xy 364.49 139.7) (xy 384.81 139.7))
  2196. (stroke (width 0) (type default) (color 0 0 0 0))
  2197. (uuid fc3d51c1-8b35-4da3-a742-0ebe104989d7)
  2198. )
  2199. (text "alim" (at 184.15 134.62 0)
  2200. (effects (font (size 1.27 1.27)) (justify left bottom))
  2201. (uuid 6ac3ab53-7523-4805-bfd2-5de19dff127e)
  2202. )
  2203. (text "Calcul de R2 : 1000*(1/IbatMax)\navec une 3.3K on charge a 300mAh batterie max = 300mAh\ncharge 600mAh = 2H\nCharge 2000mAh = 7H\n\n"
  2204. (at 227.33 215.9 0)
  2205. (effects (font (size 1.27 1.27)) (justify left bottom))
  2206. (uuid 82be7aae-5d06-4178-8c3e-98760c41b054)
  2207. )
  2208. (text "Chargeur batterie" (at 185.42 207.01 0)
  2209. (effects (font (size 1.27 1.27)) (justify left bottom))
  2210. (uuid d1a9be32-38ba-44e6-bc35-f031541ab1fe)
  2211. )
  2212. (label "GND" (at 113.03 222.25 0)
  2213. (effects (font (size 1.27 1.27)) (justify left bottom))
  2214. (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
  2215. )
  2216. (label "sda" (at 276.86 261.62 0)
  2217. (effects (font (size 1.524 1.524)) (justify left bottom))
  2218. (uuid 0351df45-d042-41d4-ba35-88092c7be2fc)
  2219. )
  2220. (label "GND" (at 245.11 110.49 0)
  2221. (effects (font (size 1.27 1.27)) (justify left bottom))
  2222. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  2223. )
  2224. (label "Di2" (at 54.61 255.27 180)
  2225. (effects (font (size 1.27 1.27)) (justify right bottom))
  2226. (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153)
  2227. )
  2228. (label "GND" (at 29.21 271.78 180)
  2229. (effects (font (size 1.524 1.524)) (justify right bottom))
  2230. (uuid 0cc45b5b-96b3-4284-9cae-a3a9e324a916)
  2231. )
  2232. (label "Bout2" (at 224.79 116.84 180)
  2233. (effects (font (size 1.524 1.524)) (justify right bottom))
  2234. (uuid 0f560957-a8c5-442f-b20c-c2d88613742c)
  2235. )
  2236. (label "3V3" (at 293.37 143.51 0)
  2237. (effects (font (size 1.27 1.27)) (justify left bottom))
  2238. (uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb)
  2239. )
  2240. (label "nrst" (at 152.4 246.38 180)
  2241. (effects (font (size 1.524 1.524)) (justify right bottom))
  2242. (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
  2243. )
  2244. (label "swdio" (at 113.03 224.79 0)
  2245. (effects (font (size 1.524 1.524)) (justify left bottom))
  2246. (uuid 109caac1-5036-4f23-9a66-f569d871501b)
  2247. )
  2248. (label "J4" (at 375.92 157.48 180)
  2249. (effects (font (size 1.27 1.27)) (justify right bottom))
  2250. (uuid 1171ce37-6ad7-4662-bb68-5592c945ebf3)
  2251. )
  2252. (label "3V3" (at 123.19 271.78 180)
  2253. (effects (font (size 1.27 1.27)) (justify right bottom))
  2254. (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
  2255. )
  2256. (label "+BATT" (at 259.08 143.51 180)
  2257. (effects (font (size 1.27 1.27)) (justify right bottom))
  2258. (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65)
  2259. )
  2260. (label "Di1" (at 308.61 63.5 180)
  2261. (effects (font (size 1.27 1.27)) (justify right bottom))
  2262. (uuid 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)
  2263. )
  2264. (label "GND" (at 259.08 146.05 180)
  2265. (effects (font (size 1.27 1.27)) (justify right bottom))
  2266. (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea)
  2267. )
  2268. (label "J2" (at 54.61 222.25 180)
  2269. (effects (font (size 1.27 1.27)) (justify right bottom))
  2270. (uuid 18c61c95-8af1-4986-b67e-c7af9c15ab6b)
  2271. )
  2272. (label "swclk" (at 102.87 209.55 90)
  2273. (effects (font (size 1.524 1.524)) (justify left bottom))
  2274. (uuid 19b0959e-a79b-43b2-a5ad-525ced7e9131)
  2275. )
  2276. (label "GND" (at 309.88 27.94 180)
  2277. (effects (font (size 1.27 1.27)) (justify right bottom))
  2278. (uuid 19c56563-5fe3-442a-885b-418dbc2421eb)
  2279. )
  2280. (label "3V3" (at 257.81 269.24 0)
  2281. (effects (font (size 1.27 1.27)) (justify left bottom))
  2282. (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa)
  2283. )
  2284. (label "D2" (at 82.55 267.97 270)
  2285. (effects (font (size 1.27 1.27)) (justify right bottom))
  2286. (uuid 1b023dd4-5185-4576-b544-68a05b9c360b)
  2287. )
  2288. (label "Bout2" (at 87.63 267.97 270)
  2289. (effects (font (size 1.524 1.524)) (justify right bottom))
  2290. (uuid 1c052668-6749-425a-9a77-35f046c8aa39)
  2291. )
  2292. (label "USB_OTG_FS_VBUS" (at 215.9 224.79 180)
  2293. (effects (font (size 1.524 1.524)) (justify right bottom))
  2294. (uuid 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)
  2295. )
  2296. (label "TX" (at 86.36 41.91 0)
  2297. (effects (font (size 1.27 1.27)) (justify left bottom))
  2298. (uuid 2035ea48-3ef5-4d7f-8c3c-50981b30c89a)
  2299. )
  2300. (label "GND" (at 210.82 110.49 0)
  2301. (effects (font (size 1.27 1.27)) (justify left bottom))
  2302. (uuid 20901d7e-a300-4069-8967-a6a7e97a68bc)
  2303. )
  2304. (label "GND" (at 363.22 240.03 0)
  2305. (effects (font (size 1.27 1.27)) (justify left bottom))
  2306. (uuid 21492bcd-343a-4b2b-b55a-b4586c11bdeb)
  2307. )
  2308. (label "LATCH" (at 309.88 25.4 180)
  2309. (effects (font (size 1.27 1.27)) (justify right bottom))
  2310. (uuid 21ae9c3a-7138-444e-be38-56a4842ab594)
  2311. )
  2312. (label "J8" (at 374.65 224.79 180)
  2313. (effects (font (size 1.27 1.27)) (justify right bottom))
  2314. (uuid 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce)
  2315. )
  2316. (label "USB_OTG_FS_N" (at 113.03 229.87 0)
  2317. (effects (font (size 1.524 1.524)) (justify left bottom))
  2318. (uuid 240c10af-51b5-420e-a6f4-a2c8f5db1db5)
  2319. )
  2320. (label "J5" (at 113.03 257.81 0)
  2321. (effects (font (size 1.27 1.27)) (justify left bottom))
  2322. (uuid 2513b312-35c4-449c-946c-f71d72702240)
  2323. )
  2324. (label "GND" (at 86.36 59.69 0)
  2325. (effects (font (size 1.27 1.27)) (justify left bottom))
  2326. (uuid 269f19c3-6824-45a8-be29-fa58d70cbb42)
  2327. )
  2328. (label "g1" (at 325.12 22.86 0)
  2329. (effects (font (size 1.27 1.27)) (justify left bottom))
  2330. (uuid 275aa44a-b61f-489f-9e2a-819a0fe0d1eb)
  2331. )
  2332. (label "USB_OTG_FS_N" (at 242.57 184.15 0)
  2333. (effects (font (size 1.524 1.524)) (justify left bottom))
  2334. (uuid 27d56953-c620-4d5b-9c1c-e48bc3d9684a)
  2335. )
  2336. (label "3V3" (at 134.62 29.21 0)
  2337. (effects (font (size 1.27 1.27)) (justify left bottom))
  2338. (uuid 283c990c-ae5a-4e41-a3ad-b40ca29fe90e)
  2339. )
  2340. (label "DIG1" (at 325.12 48.26 0)
  2341. (effects (font (size 1.27 1.27)) (justify left bottom))
  2342. (uuid 2891767f-251c-48c4-91c0-deb1b368f45c)
  2343. )
  2344. (label "GND" (at 364.49 172.72 0)
  2345. (effects (font (size 1.27 1.27)) (justify left bottom))
  2346. (uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a)
  2347. )
  2348. (label "LATCH" (at 77.47 267.97 270)
  2349. (effects (font (size 1.27 1.27)) (justify right bottom))
  2350. (uuid 2f3fba7a-cf45-4bd8-9035-07e6fa0b4732)
  2351. )
  2352. (label "nrst" (at 54.61 234.95 180)
  2353. (effects (font (size 1.524 1.524)) (justify right bottom))
  2354. (uuid 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b)
  2355. )
  2356. (label "b1" (at 365.76 22.86 180)
  2357. (effects (font (size 1.27 1.27)) (justify right bottom))
  2358. (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
  2359. )
  2360. (label "sda" (at 77.47 209.55 90)
  2361. (effects (font (size 1.524 1.524)) (justify left bottom))
  2362. (uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
  2363. )
  2364. (label "d1" (at 365.76 27.94 180)
  2365. (effects (font (size 1.27 1.27)) (justify right bottom))
  2366. (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
  2367. )
  2368. (label "d1" (at 325.12 33.02 0)
  2369. (effects (font (size 1.27 1.27)) (justify left bottom))
  2370. (uuid 37e8181c-a81e-498b-b2e2-0aef0c391059)
  2371. )
  2372. (label "GND" (at 58.42 59.69 180)
  2373. (effects (font (size 1.27 1.27)) (justify right bottom))
  2374. (uuid 38cfe839-c630-43d3-a9ec-6a89ba9e318a)
  2375. )
  2376. (label "GND" (at 281.94 121.92 180)
  2377. (effects (font (size 1.27 1.27)) (justify right bottom))
  2378. (uuid 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6)
  2379. )
  2380. (label "GND" (at 280.67 156.21 180)
  2381. (effects (font (size 1.27 1.27)) (justify right bottom))
  2382. (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
  2383. )
  2384. (label "VBATT" (at 281.94 119.38 90)
  2385. (effects (font (size 1.27 1.27)) (justify left bottom))
  2386. (uuid 40f33f6b-0d36-4452-8bf2-a564710a38e3)
  2387. )
  2388. (label "Point" (at 340.36 22.86 180)
  2389. (effects (font (size 1.27 1.27)) (justify right bottom))
  2390. (uuid 411d4270-c66c-4318-b7fb-1470d34862b8)
  2391. )
  2392. (label "3V3" (at 325.12 17.78 0)
  2393. (effects (font (size 1.27 1.27)) (justify left bottom))
  2394. (uuid 443bc73a-8dc0-4e2f-a292-a5eff00efa5b)
  2395. )
  2396. (label "3V3" (at 105.41 35.56 0)
  2397. (effects (font (size 1.27 1.27)) (justify left bottom))
  2398. (uuid 49575217-40b0-4890-8acf-12982cca52b5)
  2399. )
  2400. (label "GND" (at 96.52 27.94 0)
  2401. (effects (font (size 1.27 1.27)) (justify left bottom))
  2402. (uuid 4cafb73d-1ad8-4d24-acf7-63d78095ae46)
  2403. )
  2404. (label "USB_OTG_FS_P" (at 113.03 227.33 0)
  2405. (effects (font (size 1.524 1.524)) (justify left bottom))
  2406. (uuid 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
  2407. )
  2408. (label "lowbatt" (at 246.38 148.59 180)
  2409. (effects (font (size 1.27 1.27)) (justify right bottom))
  2410. (uuid 576f00e6-a1be-45d3-9b93-e26d9e0fe306)
  2411. )
  2412. (label "EN" (at 309.88 22.86 180)
  2413. (effects (font (size 1.27 1.27)) (justify right bottom))
  2414. (uuid 57c0c267-8bf9-4cc7-b734-d71a239ac313)
  2415. )
  2416. (label "GND" (at 384.81 172.72 0)
  2417. (effects (font (size 1.27 1.27)) (justify left bottom))
  2418. (uuid 582622a2-fad4-4737-9a80-be9fffbba8ab)
  2419. )
  2420. (label "GND" (at 58.42 54.61 180)
  2421. (effects (font (size 1.27 1.27)) (justify right bottom))
  2422. (uuid 5889287d-b845-4684-b23e-663811b25d27)
  2423. )
  2424. (label "f1" (at 325.12 20.32 0)
  2425. (effects (font (size 1.27 1.27)) (justify left bottom))
  2426. (uuid 5ca4be1c-537e-4a4a-b344-d0c8ffde8546)
  2427. )
  2428. (label "GND" (at 67.31 209.55 90)
  2429. (effects (font (size 1.27 1.27)) (justify left bottom))
  2430. (uuid 63489ebf-0f52-43a6-a0ab-158b1a7d4988)
  2431. )
  2432. (label "GND" (at 231.14 227.33 180)
  2433. (effects (font (size 1.524 1.524)) (justify right bottom))
  2434. (uuid 644ae9fc-3c8e-4089-866e-a12bf371c3e9)
  2435. )
  2436. (label "VBATT" (at 231.14 229.87 180)
  2437. (effects (font (size 1.27 1.27)) (justify right bottom))
  2438. (uuid 66880044-a20b-4f98-860b-090619ec5548)
  2439. )
  2440. (label "e1" (at 325.12 35.56 0)
  2441. (effects (font (size 1.27 1.27)) (justify left bottom))
  2442. (uuid 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)
  2443. )
  2444. (label "J8" (at 64.77 267.97 270)
  2445. (effects (font (size 1.27 1.27)) (justify right bottom))
  2446. (uuid 67998684-3e20-41b6-87f1-11d4e4a8f39f)
  2447. )
  2448. (label "J6" (at 92.71 267.97 270)
  2449. (effects (font (size 1.27 1.27)) (justify right bottom))
  2450. (uuid 68397247-a98d-4af1-af42-badf8b11ff86)
  2451. )
  2452. (label "3V3" (at 29.21 266.7 180)
  2453. (effects (font (size 1.524 1.524)) (justify right bottom))
  2454. (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd)
  2455. )
  2456. (label "J3" (at 355.6 157.48 180)
  2457. (effects (font (size 1.27 1.27)) (justify right bottom))
  2458. (uuid 6bd115d6-07e0-45db-8f2e-3cbb0429104f)
  2459. )
  2460. (label "3V3" (at 245.11 116.84 0)
  2461. (effects (font (size 1.27 1.27)) (justify left bottom))
  2462. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  2463. )
  2464. (label "GND" (at 209.55 153.67 180)
  2465. (effects (font (size 1.27 1.27)) (justify right bottom))
  2466. (uuid 6c44fb0f-6663-4271-a38c-e56f85ce4385)
  2467. )
  2468. (label "a1" (at 325.12 25.4 0)
  2469. (effects (font (size 1.27 1.27)) (justify left bottom))
  2470. (uuid 6c67e4f6-9d04-4539-b356-b76e915ce848)
  2471. )
  2472. (label "3V3" (at 172.72 218.44 0)
  2473. (effects (font (size 1.27 1.27)) (justify left bottom))
  2474. (uuid 6cb93665-0bcd-4104-8633-fffd1811eee0)
  2475. )
  2476. (label "USB_OTG_FS_VBUS" (at 242.57 181.61 0)
  2477. (effects (font (size 1.524 1.524)) (justify left bottom))
  2478. (uuid 6fd4442e-30b3-428b-9306-61418a63d311)
  2479. )
  2480. (label "lowbatt" (at 209.55 148.59 180)
  2481. (effects (font (size 1.27 1.27)) (justify right bottom))
  2482. (uuid 713e0777-58b2-4487-baca-60d0ebed27c3)
  2483. )
  2484. (label "3V3" (at 102.87 267.97 270)
  2485. (effects (font (size 1.27 1.27)) (justify right bottom))
  2486. (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
  2487. )
  2488. (label "DIG3" (at 394.97 48.26 0)
  2489. (effects (font (size 1.27 1.27)) (justify left bottom))
  2490. (uuid 71f92193-19b0-44ed-bc7f-77535083d769)
  2491. )
  2492. (label "J5" (at 316.23 224.79 180)
  2493. (effects (font (size 1.27 1.27)) (justify right bottom))
  2494. (uuid 72508b1f-1505-46cb-9d37-2081c5a12aca)
  2495. )
  2496. (label "Point" (at 54.61 242.57 180)
  2497. (effects (font (size 1.27 1.27)) (justify right bottom))
  2498. (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354)
  2499. )
  2500. (label "Di2" (at 344.17 63.5 180)
  2501. (effects (font (size 1.27 1.27)) (justify right bottom))
  2502. (uuid 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
  2503. )
  2504. (label "TX" (at 95.25 209.55 90)
  2505. (effects (font (size 1.27 1.27)) (justify left bottom))
  2506. (uuid 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d)
  2507. )
  2508. (label "GND" (at 100.33 267.97 270)
  2509. (effects (font (size 1.27 1.27)) (justify right bottom))
  2510. (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
  2511. )
  2512. (label "pile" (at 54.61 219.71 180)
  2513. (effects (font (size 1.27 1.27)) (justify right bottom))
  2514. (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
  2515. )
  2516. (label "D3" (at 309.88 30.48 180)
  2517. (effects (font (size 1.27 1.27)) (justify right bottom))
  2518. (uuid 7cee474b-af8f-4832-b07a-c43c1ab0b464)
  2519. )
  2520. (label "GND" (at 54.61 247.65 180)
  2521. (effects (font (size 1.27 1.27)) (justify right bottom))
  2522. (uuid 7db990e4-92e1-4f99-b4d2-435bbec1ba83)
  2523. )
  2524. (label "J4" (at 92.71 209.55 90)
  2525. (effects (font (size 1.27 1.27)) (justify left bottom))
  2526. (uuid 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53)
  2527. )
  2528. (label "J7" (at 90.17 267.97 270)
  2529. (effects (font (size 1.27 1.27)) (justify right bottom))
  2530. (uuid 7e4b0f81-67d4-4987-b295-d7555f89c7da)
  2531. )
  2532. (label "GND" (at 172.72 212.09 0)
  2533. (effects (font (size 1.27 1.27)) (justify left bottom))
  2534. (uuid 7f2b3ce3-2f20-426d-b769-e0329b6a8111)
  2535. )
  2536. (label "GND" (at 360.68 71.12 0)
  2537. (effects (font (size 1.27 1.27)) (justify left bottom))
  2538. (uuid 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b)
  2539. )
  2540. (label "Di1" (at 54.61 257.81 180)
  2541. (effects (font (size 1.27 1.27)) (justify right bottom))
  2542. (uuid 8486c294-aa7e-43c3-b257-1ca3356dd17a)
  2543. )
  2544. (label "D0" (at 309.88 33.02 180)
  2545. (effects (font (size 1.27 1.27)) (justify right bottom))
  2546. (uuid 853ee787-6e2c-4f32-bc75-6c17337dd3d5)
  2547. )
  2548. (label "e1" (at 365.76 30.48 180)
  2549. (effects (font (size 1.27 1.27)) (justify right bottom))
  2550. (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
  2551. )
  2552. (label "f1" (at 365.76 33.02 180)
  2553. (effects (font (size 1.27 1.27)) (justify right bottom))
  2554. (uuid 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)
  2555. )
  2556. (label "GND" (at 67.31 267.97 270)
  2557. (effects (font (size 1.27 1.27)) (justify right bottom))
  2558. (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd)
  2559. )
  2560. (label "wc" (at 85.09 209.55 90)
  2561. (effects (font (size 1.524 1.524)) (justify left bottom))
  2562. (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
  2563. )
  2564. (label "swclk" (at 29.21 269.24 180)
  2565. (effects (font (size 1.524 1.524)) (justify right bottom))
  2566. (uuid 8c1605f9-6c91-4701-96bf-e753661d5e23)
  2567. )
  2568. (label "J1" (at 54.61 224.79 180)
  2569. (effects (font (size 1.27 1.27)) (justify right bottom))
  2570. (uuid 8cd050d6-228c-4da0-9533-b4f8d14cfb34)
  2571. )
  2572. (label "USB_OTG_FS_ID" (at 242.57 189.23 0)
  2573. (effects (font (size 1.524 1.524)) (justify left bottom))
  2574. (uuid 8d0c1d66-35ef-4a53-a28f-436a11b54f42)
  2575. )
  2576. (label "wc" (at 276.86 266.7 0)
  2577. (effects (font (size 1.524 1.524)) (justify left bottom))
  2578. (uuid 8d9a3ecc-539f-41da-8099-d37cea9c28e7)
  2579. )
  2580. (label "3V3" (at 54.61 250.19 180)
  2581. (effects (font (size 1.27 1.27)) (justify right bottom))
  2582. (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
  2583. )
  2584. (label "DIG3" (at 402.59 27.94 0)
  2585. (effects (font (size 1.27 1.27)) (justify left bottom))
  2586. (uuid 8fc062a7-114d-48eb-a8f8-71128838f380)
  2587. )
  2588. (label "Di3" (at 378.46 63.5 180)
  2589. (effects (font (size 1.27 1.27)) (justify right bottom))
  2590. (uuid 8fcec304-c6b1-4655-8326-beacd0476953)
  2591. )
  2592. (label "D1" (at 85.09 267.97 270)
  2593. (effects (font (size 1.27 1.27)) (justify right bottom))
  2594. (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
  2595. )
  2596. (label "DIG2" (at 402.59 25.4 0)
  2597. (effects (font (size 1.27 1.27)) (justify left bottom))
  2598. (uuid 917920ab-0c6e-4927-974d-ef342cdd4f63)
  2599. )
  2600. (label "USB_OTG_FS_P" (at 242.57 186.69 0)
  2601. (effects (font (size 1.524 1.524)) (justify left bottom))
  2602. (uuid 9193c41e-d425-447d-b95c-6986d66ea01c)
  2603. )
  2604. (label "sda" (at 86.36 46.99 0)
  2605. (effects (font (size 1.524 1.524)) (justify left bottom))
  2606. (uuid 92848721-49b5-4e4c-b042-6fd51e1d562f)
  2607. )
  2608. (label "D0" (at 72.39 267.97 270)
  2609. (effects (font (size 1.27 1.27)) (justify right bottom))
  2610. (uuid 946404ba-9297-43ec-9d67-30184041145f)
  2611. )
  2612. (label "GND" (at 383.54 240.03 0)
  2613. (effects (font (size 1.27 1.27)) (justify left bottom))
  2614. (uuid 96315415-cfed-47d2-b3dd-d782358bd0df)
  2615. )
  2616. (label "GND" (at 123.19 279.4 180)
  2617. (effects (font (size 1.27 1.27)) (justify right bottom))
  2618. (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
  2619. )
  2620. (label "sdl" (at 80.01 209.55 90)
  2621. (effects (font (size 1.524 1.524)) (justify left bottom))
  2622. (uuid 97dcf785-3264-40a1-a36e-8842acab24fb)
  2623. )
  2624. (label "GND" (at 345.44 172.72 0)
  2625. (effects (font (size 1.27 1.27)) (justify left bottom))
  2626. (uuid 9aaeec6e-84fe-4644-b0bc-5de24626ff48)
  2627. )
  2628. (label "3V3" (at 356.87 15.24 0)
  2629. (effects (font (size 1.27 1.27)) (justify left bottom))
  2630. (uuid 9c2999b2-1cf1-4204-9d23-243401b77aa3)
  2631. )
  2632. (label "D2" (at 309.88 20.32 180)
  2633. (effects (font (size 1.27 1.27)) (justify right bottom))
  2634. (uuid 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)
  2635. )
  2636. (label "boot" (at 74.93 209.55 90)
  2637. (effects (font (size 1.524 1.524)) (justify left bottom))
  2638. (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11)
  2639. )
  2640. (label "USB_OTG_FS_VBUS" (at 257.81 229.87 0)
  2641. (effects (font (size 1.524 1.524)) (justify left bottom))
  2642. (uuid 9f80220c-1612-4589-b9ca-a5579617bdb8)
  2643. )
  2644. (label "J2" (at 336.55 157.48 180)
  2645. (effects (font (size 1.27 1.27)) (justify right bottom))
  2646. (uuid a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)
  2647. )
  2648. (label "J3" (at 90.17 209.55 90)
  2649. (effects (font (size 1.27 1.27)) (justify left bottom))
  2650. (uuid a5be2cb8-c68d-4180-8412-69a6b4c5b1d4)
  2651. )
  2652. (label "GND" (at 256.54 237.49 0)
  2653. (effects (font (size 1.27 1.27)) (justify left bottom))
  2654. (uuid a5c8e189-1ddc-4a66-984b-e0fd1529d346)
  2655. )
  2656. (label "D3" (at 74.93 267.97 270)
  2657. (effects (font (size 1.27 1.27)) (justify right bottom))
  2658. (uuid a64aeb89-c24a-493b-9aab-87a6be930bde)
  2659. )
  2660. (label "g1" (at 365.76 35.56 180)
  2661. (effects (font (size 1.27 1.27)) (justify right bottom))
  2662. (uuid a7531a95-7ca1-4f34-955e-18120cec99e6)
  2663. )
  2664. (label "Di3" (at 54.61 252.73 180)
  2665. (effects (font (size 1.27 1.27)) (justify right bottom))
  2666. (uuid a76a574b-1cac-43eb-81e6-0e2e278cea39)
  2667. )
  2668. (label "GND" (at 172.72 246.38 0)
  2669. (effects (font (size 1.27 1.27)) (justify left bottom))
  2670. (uuid a7f2e97b-29f3-44fd-bf8a-97a3c1528b61)
  2671. )
  2672. (label "RX" (at 97.79 209.55 90)
  2673. (effects (font (size 1.27 1.27)) (justify left bottom))
  2674. (uuid ae0e6b31-27d7-4383-a4fc-7557b0a19382)
  2675. )
  2676. (label "b1" (at 325.12 27.94 0)
  2677. (effects (font (size 1.27 1.27)) (justify left bottom))
  2678. (uuid b447dbb1-d38e-4a15-93cb-12c25382ea53)
  2679. )
  2680. (label "3V3" (at 165.1 238.76 0)
  2681. (effects (font (size 1.27 1.27)) (justify left bottom))
  2682. (uuid b7aa0362-7c9e-4a42-b191-ab15a38bf3c5)
  2683. )
  2684. (label "USB_OTG_FS_VBUS" (at 113.03 234.95 0)
  2685. (effects (font (size 1.524 1.524)) (justify left bottom))
  2686. (uuid b854a395-bfc6-4140-9640-75d4f9296771)
  2687. )
  2688. (label "RX" (at 86.36 39.37 0)
  2689. (effects (font (size 1.27 1.27)) (justify left bottom))
  2690. (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155)
  2691. )
  2692. (label "c1" (at 365.76 25.4 180)
  2693. (effects (font (size 1.27 1.27)) (justify right bottom))
  2694. (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
  2695. )
  2696. (label "GND" (at 290.83 151.13 0)
  2697. (effects (font (size 1.27 1.27)) (justify left bottom))
  2698. (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
  2699. )
  2700. (label "GND" (at 109.22 44.45 0)
  2701. (effects (font (size 1.27 1.27)) (justify left bottom))
  2702. (uuid be4b72db-0e02-4d9b-844a-aff689b4e648)
  2703. )
  2704. (label "Bout1" (at 87.63 209.55 90)
  2705. (effects (font (size 1.524 1.524)) (justify left bottom))
  2706. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  2707. )
  2708. (label "3V3" (at 270.51 250.19 0)
  2709. (effects (font (size 1.27 1.27)) (justify left bottom))
  2710. (uuid c71f56c1-5b7c-4373-9716-fffac482104c)
  2711. )
  2712. (label "D1" (at 309.88 17.78 180)
  2713. (effects (font (size 1.27 1.27)) (justify right bottom))
  2714. (uuid c7e7067c-5f5e-48d8-ab59-df26f9b35863)
  2715. )
  2716. (label "3V3" (at 250.19 140.97 0)
  2717. (effects (font (size 1.27 1.27)) (justify left bottom))
  2718. (uuid cbcf1e15-8f8b-4f20-ab7d-589f1934ec89)
  2719. )
  2720. (label "GND" (at 20.32 231.14 180)
  2721. (effects (font (size 1.27 1.27)) (justify right bottom))
  2722. (uuid cd5e758d-cb66-484a-ae8b-21f53ceee49e)
  2723. )
  2724. (label "3V3" (at 210.82 116.84 0)
  2725. (effects (font (size 1.27 1.27)) (justify left bottom))
  2726. (uuid cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13)
  2727. )
  2728. (label "c1" (at 325.12 30.48 0)
  2729. (effects (font (size 1.27 1.27)) (justify left bottom))
  2730. (uuid cfa5c16e-7859-460d-a0b8-cea7d7ea629c)
  2731. )
  2732. (label "USB_OTG_FS_ID" (at 113.03 232.41 0)
  2733. (effects (font (size 1.524 1.524)) (justify left bottom))
  2734. (uuid d0cd3439-276c-41ba-b38d-f84f6da38415)
  2735. )
  2736. (label "GND" (at 326.39 172.72 0)
  2737. (effects (font (size 1.27 1.27)) (justify left bottom))
  2738. (uuid d3e133b7-2c84-4206-a2b1-e693cb57fe56)
  2739. )
  2740. (label "J1" (at 317.5 157.48 180)
  2741. (effects (font (size 1.27 1.27)) (justify right bottom))
  2742. (uuid d4c9471f-7503-4339-928c-d1abae1eede6)
  2743. )
  2744. (label "DIG1" (at 402.59 22.86 0)
  2745. (effects (font (size 1.27 1.27)) (justify left bottom))
  2746. (uuid d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)
  2747. )
  2748. (label "+BATT" (at 266.7 118.11 180)
  2749. (effects (font (size 1.27 1.27)) (justify right bottom))
  2750. (uuid da481376-0e49-44d3-91b8-aaa39b869dd1)
  2751. )
  2752. (label "sdl" (at 86.36 44.45 0)
  2753. (effects (font (size 1.524 1.524)) (justify left bottom))
  2754. (uuid db1ed10a-ef86-43bf-93dc-9be76327f6d2)
  2755. )
  2756. (label "GND" (at 234.95 271.78 0)
  2757. (effects (font (size 1.27 1.27)) (justify left bottom))
  2758. (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
  2759. )
  2760. (label "3V3" (at 64.77 209.55 90)
  2761. (effects (font (size 1.27 1.27)) (justify left bottom))
  2762. (uuid dda1e6ca-91ec-4136-b90b-3c54d79454b9)
  2763. )
  2764. (label "pile" (at 113.03 34.29 0)
  2765. (effects (font (size 1.27 1.27)) (justify left bottom))
  2766. (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7)
  2767. )
  2768. (label "3V3" (at 113.03 219.71 0)
  2769. (effects (font (size 1.27 1.27)) (justify left bottom))
  2770. (uuid e300709f-6c72-488d-a598-efcbd6d3af54)
  2771. )
  2772. (label "sdl" (at 276.86 264.16 0)
  2773. (effects (font (size 1.524 1.524)) (justify left bottom))
  2774. (uuid e472dac4-5b65-4920-b8b2-6065d140a69d)
  2775. )
  2776. (label "3V3" (at 354.33 139.7 90)
  2777. (effects (font (size 1.27 1.27)) (justify left bottom))
  2778. (uuid e70b6168-f98e-4322-bc55-500948ef7b77)
  2779. )
  2780. (label "GND" (at 309.88 35.56 180)
  2781. (effects (font (size 1.27 1.27)) (justify right bottom))
  2782. (uuid eac8d865-0226-4958-b547-6b5592f39713)
  2783. )
  2784. (label "EN" (at 80.01 267.97 270)
  2785. (effects (font (size 1.27 1.27)) (justify right bottom))
  2786. (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
  2787. )
  2788. (label "J7" (at 354.33 224.79 180)
  2789. (effects (font (size 1.27 1.27)) (justify right bottom))
  2790. (uuid eb8d02e9-145c-465d-b6a8-bae84d47a94b)
  2791. )
  2792. (label "Bout1" (at 190.5 116.84 180)
  2793. (effects (font (size 1.524 1.524)) (justify right bottom))
  2794. (uuid ee29d712-3378-4507-a00b-003526b29bb1)
  2795. )
  2796. (label "swdio" (at 29.21 274.32 180)
  2797. (effects (font (size 1.524 1.524)) (justify right bottom))
  2798. (uuid f1447ad6-651c-45be-a2d6-33bddf672c2c)
  2799. )
  2800. (label "GND" (at 394.97 71.12 0)
  2801. (effects (font (size 1.27 1.27)) (justify left bottom))
  2802. (uuid f2480d0c-9b08-4037-9175-b2369af04d4c)
  2803. )
  2804. (label "GND" (at 325.12 71.12 0)
  2805. (effects (font (size 1.27 1.27)) (justify left bottom))
  2806. (uuid f345e52a-8e0a-425a-b438-90809dd3b799)
  2807. )
  2808. (label "GND" (at 242.57 191.77 0)
  2809. (effects (font (size 1.27 1.27)) (justify left bottom))
  2810. (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
  2811. )
  2812. (label "3V3" (at 69.85 267.97 270)
  2813. (effects (font (size 1.27 1.27)) (justify right bottom))
  2814. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  2815. )
  2816. (label "+BATT" (at 228.6 151.13 0)
  2817. (effects (font (size 1.27 1.27)) (justify left bottom))
  2818. (uuid f6983918-fe05-46ea-b355-bc522ec53440)
  2819. )
  2820. (label "nrst" (at 29.21 276.86 180)
  2821. (effects (font (size 1.524 1.524)) (justify right bottom))
  2822. (uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd)
  2823. )
  2824. (label "J6" (at 335.28 224.79 180)
  2825. (effects (font (size 1.27 1.27)) (justify right bottom))
  2826. (uuid f73b5500-6337-4860-a114-6e307f65ec9f)
  2827. )
  2828. (label "a1" (at 365.76 20.32 180)
  2829. (effects (font (size 1.27 1.27)) (justify right bottom))
  2830. (uuid f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)
  2831. )
  2832. (label "3V3" (at 354.33 207.01 90)
  2833. (effects (font (size 1.27 1.27)) (justify left bottom))
  2834. (uuid f988d6ea-11c5-4837-b1d1-5c292ded50c6)
  2835. )
  2836. (label "boot" (at 152.4 218.44 180)
  2837. (effects (font (size 1.524 1.524)) (justify right bottom))
  2838. (uuid fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f)
  2839. )
  2840. (label "GND" (at 344.17 240.03 0)
  2841. (effects (font (size 1.27 1.27)) (justify left bottom))
  2842. (uuid fa20e708-ec85-4e0b-8402-f74a2724f920)
  2843. )
  2844. (label "GND" (at 325.12 240.03 0)
  2845. (effects (font (size 1.27 1.27)) (justify left bottom))
  2846. (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
  2847. )
  2848. (label "GND" (at 283.21 224.79 0)
  2849. (effects (font (size 1.27 1.27)) (justify left bottom))
  2850. (uuid fc4ad874-c922-4070-89f9-7262080469d8)
  2851. )
  2852. (label "DIG2" (at 360.68 48.26 0)
  2853. (effects (font (size 1.27 1.27)) (justify left bottom))
  2854. (uuid fd3499d5-6fd2-49a4-bdb0-109cee899fde)
  2855. )
  2856. (symbol (lib_id "TI:CD74HC4511") (at 317.5 26.67 0) (unit 1)
  2857. (in_bom yes) (on_board yes)
  2858. (uuid 00000000-0000-0000-0000-000060dc57ce)
  2859. (property "Reference" "U5" (id 0) (at 321.31 38.1 0))
  2860. (property "Value" "CD74HC4511" (id 1) (at 317.5 14.3764 0))
  2861. (property "Footprint" "U:SO16" (id 2) (at 328.93 26.67 0)
  2862. (effects (font (size 1.27 1.27)) hide)
  2863. )
  2864. (property "Datasheet" "" (id 3) (at 328.93 26.67 0)
  2865. (effects (font (size 1.27 1.27)) hide)
  2866. )
  2867. (property "Partkeepr" "1503" (id 4) (at 317.5 26.67 0)
  2868. (effects (font (size 1.27 1.27)) hide)
  2869. )
  2870. (pin "1" (uuid 0c26e243-b790-4705-9f55-8a867324ed12))
  2871. (pin "10" (uuid 4420af3a-f5ee-4dfd-9b48-6f0e34137f92))
  2872. (pin "11" (uuid 9475e9d3-6cc0-4d12-b7fe-a51d2e5bd435))
  2873. (pin "12" (uuid 3877bb8a-9764-43f3-9a49-eb9f7872e89b))
  2874. (pin "13" (uuid 4ca11800-26b8-4900-b5ae-e2296f6874b2))
  2875. (pin "14" (uuid 6fad6f02-8123-4aad-9fb4-c4c0c238e26f))
  2876. (pin "15" (uuid 915226b4-fe40-4872-bc2a-395b435a2e92))
  2877. (pin "16" (uuid d520a0ab-a6bc-42dd-ab73-4b176d116f70))
  2878. (pin "2" (uuid 628499d2-8b42-43be-a524-586c217f7f60))
  2879. (pin "3" (uuid f8ae011a-48ba-46df-a69d-fb189c06c99d))
  2880. (pin "4" (uuid ec3b3a1b-bc30-4c1b-a40c-639e4fb72f82))
  2881. (pin "5" (uuid 3fe87333-5931-44bb-90b4-566c7f950fdc))
  2882. (pin "6" (uuid 64131ccf-1d90-4b59-a3de-335452800ea3))
  2883. (pin "7" (uuid 0041fa45-5fe1-41a7-84c3-9ed152d8ffa8))
  2884. (pin "8" (uuid 58fbda34-e62f-4525-a3b1-91a77c26980f))
  2885. (pin "9" (uuid c6977593-c5f4-459e-8b7a-4f90bdf9afd8))
  2886. )
  2887. (symbol (lib_id "global:R") (at 270.51 254 0) (unit 1)
  2888. (in_bom yes) (on_board yes)
  2889. (uuid 00000000-0000-0000-0000-000060dc57ea)
  2890. (property "Reference" "R3" (id 0) (at 272.542 254 90))
  2891. (property "Value" "10K" (id 1) (at 270.51 254 90))
  2892. (property "Footprint" "R:0805" (id 2) (at 268.732 254 90)
  2893. (effects (font (size 1.27 1.27)) hide)
  2894. )
  2895. (property "Datasheet" "" (id 3) (at 270.51 254 0))
  2896. (property "Partkeepr" "910" (id 4) (at 77.47 402.59 0)
  2897. (effects (font (size 1.27 1.27)) hide)
  2898. )
  2899. (pin "1" (uuid c8c01ccd-b5d2-48a3-9337-31437bc0d5b2))
  2900. (pin "2" (uuid f33c1be6-4001-4ece-aa46-3a20267b8ad4))
  2901. )
  2902. (symbol (lib_id "ST:M24C32") (at 246.38 260.35 180) (unit 1)
  2903. (in_bom yes) (on_board yes)
  2904. (uuid 00000000-0000-0000-0000-000060dc57f2)
  2905. (property "Reference" "U4" (id 0) (at 241.3 259.08 0)
  2906. (effects (font (size 1.524 1.524)))
  2907. )
  2908. (property "Value" "M24C32" (id 1) (at 246.38 271.78 0)
  2909. (effects (font (size 1.524 1.524)))
  2910. )
  2911. (property "Footprint" "U:SO8N" (id 2) (at 246.38 260.35 0)
  2912. (effects (font (size 1.524 1.524)) hide)
  2913. )
  2914. (property "Datasheet" "" (id 3) (at 246.38 260.35 0)
  2915. (effects (font (size 1.524 1.524)))
  2916. )
  2917. (property "Partkeepr" "1700" (id 4) (at 415.29 114.3 0)
  2918. (effects (font (size 1.27 1.27)) hide)
  2919. )
  2920. (pin "1" (uuid 348b39ce-20d2-4f01-b3b8-e8bd5a2fc26e))
  2921. (pin "2" (uuid c21bc6ca-6ffd-4335-af6c-a4b2da7ed6e9))
  2922. (pin "3" (uuid 0d4445c7-8a0d-46b0-93c7-7c5dd998756e))
  2923. (pin "4" (uuid b54ae0e8-7728-465f-8eb5-9b8da2acf335))
  2924. (pin "5" (uuid 3d243fdb-41fd-499a-9e6c-1ff5343cde77))
  2925. (pin "6" (uuid 4fd71ace-e7e5-4178-b283-ff6aff72d6c4))
  2926. (pin "7" (uuid 98b6599a-8370-4d52-ab50-e7859ffdc872))
  2927. (pin "8" (uuid e462b99b-dc16-4632-9277-f42cc1c75e32))
  2928. )
  2929. (symbol (lib_id "ST:STC4054") (at 242.57 227.33 0) (unit 1)
  2930. (in_bom yes) (on_board yes)
  2931. (uuid 00000000-0000-0000-0000-000060dc5804)
  2932. (property "Reference" "U3" (id 0) (at 248.92 232.41 0)
  2933. (effects (font (size 1.524 1.524)))
  2934. )
  2935. (property "Value" "STC4054" (id 1) (at 243.205 221.2086 0)
  2936. (effects (font (size 1.524 1.524)))
  2937. )
  2938. (property "Footprint" "U:TSOT23-5L" (id 2) (at 242.57 227.33 0)
  2939. (effects (font (size 1.524 1.524)) hide)
  2940. )
  2941. (property "Datasheet" "" (id 3) (at 242.57 227.33 0)
  2942. (effects (font (size 1.524 1.524)) hide)
  2943. )
  2944. (property "Partkeepr" "1805" (id 4) (at 242.57 227.33 0)
  2945. (effects (font (size 1.27 1.27)) hide)
  2946. )
  2947. (pin "1" (uuid b84e5c3c-d5ba-45dc-a996-457d3d15ea34))
  2948. (pin "2" (uuid 9f9a1dc2-1e64-4561-84e9-c59e56eccfbe))
  2949. (pin "3" (uuid 6a336e3f-79e9-4231-8ca2-38a798f05f9f))
  2950. (pin "4" (uuid 3862ae54-0889-40d0-a519-841ecb949575))
  2951. (pin "5" (uuid 7cba27a8-b26c-4e33-ad8e-83f2f8589f1f))
  2952. )
  2953. (symbol (lib_id "global:LED") (at 220.98 224.79 180) (unit 1)
  2954. (in_bom yes) (on_board yes)
  2955. (uuid 00000000-0000-0000-0000-000060dc580a)
  2956. (property "Reference" "D9" (id 0) (at 220.98 218.567 0))
  2957. (property "Value" "LED_Jaune" (id 1) (at 220.98 220.8784 0))
  2958. (property "Footprint" "LED:0805" (id 2) (at 220.98 224.79 0)
  2959. (effects (font (size 1.27 1.27)) hide)
  2960. )
  2961. (property "Datasheet" "" (id 3) (at 220.98 224.79 0))
  2962. (property "Partkeepr" "1102" (id 4) (at 220.98 224.79 0)
  2963. (effects (font (size 1.27 1.27)) hide)
  2964. )
  2965. (pin "1" (uuid d5ce9073-f652-421d-afde-0d7f90c33390))
  2966. (pin "2" (uuid f074bef8-5e6d-4f4f-8d44-54c397c827ce))
  2967. )
  2968. (symbol (lib_id "global:C") (at 256.54 233.68 0) (unit 1)
  2969. (in_bom yes) (on_board yes)
  2970. (uuid 00000000-0000-0000-0000-000060dc5810)
  2971. (property "Reference" "C11" (id 0) (at 259.461 232.5116 0)
  2972. (effects (font (size 1.27 1.27)) (justify left))
  2973. )
  2974. (property "Value" "100nF" (id 1) (at 259.461 234.823 0)
  2975. (effects (font (size 1.27 1.27)) (justify left))
  2976. )
  2977. (property "Footprint" "C:0805" (id 2) (at 257.5052 237.49 0)
  2978. (effects (font (size 1.27 1.27)) hide)
  2979. )
  2980. (property "Datasheet" "" (id 3) (at 256.54 233.68 0))
  2981. (property "Partkeepr" "605" (id 4) (at 256.54 233.68 0)
  2982. (effects (font (size 1.27 1.27)) hide)
  2983. )
  2984. (pin "1" (uuid 914b97a7-9ab8-451c-a722-b00b43b0407a))
  2985. (pin "2" (uuid 927b13de-a1b2-4c42-9cb3-5b1a43c05216))
  2986. )
  2987. (symbol (lib_id "global:R") (at 262.89 224.79 270) (unit 1)
  2988. (in_bom yes) (on_board yes)
  2989. (uuid 00000000-0000-0000-0000-000060dc581c)
  2990. (property "Reference" "R2" (id 0) (at 262.89 219.71 90))
  2991. (property "Value" "3.3K" (id 1) (at 262.89 222.25 90))
  2992. (property "Footprint" "R:0805" (id 2) (at 262.89 223.012 90)
  2993. (effects (font (size 1.27 1.27)) hide)
  2994. )
  2995. (property "Datasheet" "" (id 3) (at 262.89 224.79 0))
  2996. (property "Partkeepr" "0900" (id 4) (at 262.89 224.79 0)
  2997. (effects (font (size 1.27 1.27)) hide)
  2998. )
  2999. (pin "1" (uuid 375fb0e4-801c-4d69-a5d2-50c5b1699807))
  3000. (pin "2" (uuid 152dc8ca-1ae6-4745-a4ba-ab361a35bfc2))
  3001. )
  3002. (symbol (lib_id "conn:Micro_USB") (at 229.87 186.69 0) (unit 1)
  3003. (in_bom yes) (on_board yes)
  3004. (uuid 00000000-0000-0000-0000-000060dc5827)
  3005. (property "Reference" "J1" (id 0) (at 236.22 195.58 0)
  3006. (effects (font (size 1.524 1.524)))
  3007. )
  3008. (property "Value" "Micro_USB" (id 1) (at 231.14 177.8 0)
  3009. (effects (font (size 1.524 1.524)))
  3010. )
  3011. (property "Footprint" "Connector:Micro-USB" (id 2) (at 234.95 191.77 0)
  3012. (effects (font (size 1.524 1.524)) hide)
  3013. )
  3014. (property "Datasheet" "" (id 3) (at 234.95 191.77 0)
  3015. (effects (font (size 1.524 1.524)) hide)
  3016. )
  3017. (property "Partkeepr" "0050" (id 4) (at 68.58 279.4 0)
  3018. (effects (font (size 1.27 1.27)) hide)
  3019. )
  3020. (pin "0" (uuid bb3823e8-bdbd-4f66-b957-b61f7f04dd87))
  3021. (pin "1" (uuid 4ee0880b-0024-42bc-8cdf-89b0f253ab70))
  3022. (pin "2" (uuid 69a7514c-f517-4b46-bf93-1effc96b0e95))
  3023. (pin "3" (uuid 0023162f-a07e-408b-b318-1e8e9f305001))
  3024. (pin "4" (uuid 02565f97-cd17-42be-94e0-c07f1614224c))
  3025. (pin "5" (uuid d94f6a76-1cd8-44c8-b9e0-1b2743a67b84))
  3026. )
  3027. (symbol (lib_id "global:C") (at 127 275.59 0) (unit 1)
  3028. (in_bom yes) (on_board yes)
  3029. (uuid 00000000-0000-0000-0000-000060dc5854)
  3030. (property "Reference" "C3" (id 0) (at 127.635 273.05 0)
  3031. (effects (font (size 1.27 1.27)) (justify left))
  3032. )
  3033. (property "Value" "4.7µF" (id 1) (at 127.635 278.13 0)
  3034. (effects (font (size 1.27 1.27)) (justify left))
  3035. )
  3036. (property "Footprint" "C:0805" (id 2) (at 127.9652 279.4 0)
  3037. (effects (font (size 1.27 1.27)) hide)
  3038. )
  3039. (property "Datasheet" "" (id 3) (at 127 275.59 0))
  3040. (property "Partkeepr" "607" (id 4) (at 106.68 452.755 0)
  3041. (effects (font (size 1.27 1.27)) hide)
  3042. )
  3043. (pin "1" (uuid 922e7e97-b300-4efc-863d-349e61465157))
  3044. (pin "2" (uuid f1ad3f74-02d3-4eac-9cda-900ca8378735))
  3045. )
  3046. (symbol (lib_id "global:C") (at 142.24 275.59 0) (unit 1)
  3047. (in_bom yes) (on_board yes)
  3048. (uuid 00000000-0000-0000-0000-000060dc5869)
  3049. (property "Reference" "C5" (id 0) (at 142.875 273.05 0)
  3050. (effects (font (size 1.27 1.27)) (justify left))
  3051. )
  3052. (property "Value" "1µF" (id 1) (at 142.875 278.13 0)
  3053. (effects (font (size 1.27 1.27)) (justify left))
  3054. )
  3055. (property "Footprint" "C:0805" (id 2) (at 143.2052 279.4 0)
  3056. (effects (font (size 1.27 1.27)) hide)
  3057. )
  3058. (property "Datasheet" "" (id 3) (at 142.24 275.59 0))
  3059. (property "Partkeepr" "606" (id 4) (at 107.315 425.45 0)
  3060. (effects (font (size 1.27 1.27)) hide)
  3061. )
  3062. (pin "1" (uuid 7a89709d-a8cb-4a64-a3a3-ed263fad27d0))
  3063. (pin "2" (uuid b51e6374-6b7d-472e-92f2-9dae266de01e))
  3064. )
  3065. (symbol (lib_id "global:C") (at 148.59 275.59 0) (unit 1)
  3066. (in_bom yes) (on_board yes)
  3067. (uuid 00000000-0000-0000-0000-000060dc5872)
  3068. (property "Reference" "C6" (id 0) (at 149.225 273.05 0)
  3069. (effects (font (size 1.27 1.27)) (justify left))
  3070. )
  3071. (property "Value" "100nF" (id 1) (at 149.225 278.13 0)
  3072. (effects (font (size 1.27 1.27)) (justify left))
  3073. )
  3074. (property "Footprint" "C:0805" (id 2) (at 149.5552 279.4 0)
  3075. (effects (font (size 1.27 1.27)) hide)
  3076. )
  3077. (property "Datasheet" "" (id 3) (at 148.59 275.59 0))
  3078. (property "Partkeepr" "605" (id 4) (at 106.68 425.45 0)
  3079. (effects (font (size 1.27 1.27)) hide)
  3080. )
  3081. (pin "1" (uuid d2b2a0fb-ef5f-4895-93c7-ef2955a86bd7))
  3082. (pin "2" (uuid 32648182-78d1-48bd-92e8-99a019338fe4))
  3083. )
  3084. (symbol (lib_id "global:C") (at 156.21 275.59 0) (unit 1)
  3085. (in_bom yes) (on_board yes)
  3086. (uuid 00000000-0000-0000-0000-000060dc587b)
  3087. (property "Reference" "C8" (id 0) (at 156.845 273.05 0)
  3088. (effects (font (size 1.27 1.27)) (justify left))
  3089. )
  3090. (property "Value" "100nF" (id 1) (at 156.845 278.13 0)
  3091. (effects (font (size 1.27 1.27)) (justify left))
  3092. )
  3093. (property "Footprint" "C:0805" (id 2) (at 157.1752 279.4 0)
  3094. (effects (font (size 1.27 1.27)) hide)
  3095. )
  3096. (property "Datasheet" "" (id 3) (at 156.21 275.59 0))
  3097. (property "Partkeepr" "605" (id 4) (at 88.265 456.565 0)
  3098. (effects (font (size 1.27 1.27)) hide)
  3099. )
  3100. (pin "1" (uuid 416f2dc9-040a-4c76-990c-e10ccd505522))
  3101. (pin "2" (uuid a82dccd0-c2cd-4bf9-86b4-efddd3a8276f))
  3102. )
  3103. (symbol (lib_id "global:C") (at 171.45 275.59 0) (unit 1)
  3104. (in_bom yes) (on_board yes)
  3105. (uuid 00000000-0000-0000-0000-000060dc5884)
  3106. (property "Reference" "C10" (id 0) (at 172.085 273.05 0)
  3107. (effects (font (size 1.27 1.27)) (justify left))
  3108. )
  3109. (property "Value" "100nF" (id 1) (at 172.085 278.13 0)
  3110. (effects (font (size 1.27 1.27)) (justify left))
  3111. )
  3112. (property "Footprint" "C:0805" (id 2) (at 172.4152 279.4 0)
  3113. (effects (font (size 1.27 1.27)) hide)
  3114. )
  3115. (property "Datasheet" "" (id 3) (at 171.45 275.59 0))
  3116. (property "Partkeepr" "605" (id 4) (at 46.99 397.51 0)
  3117. (effects (font (size 1.27 1.27)) hide)
  3118. )
  3119. (pin "1" (uuid 703f336d-49ef-4e14-8ab0-abbb7a306402))
  3120. (pin "2" (uuid 3c27dc86-1701-4cfb-9ebf-f044da440656))
  3121. )
  3122. (symbol (lib_id "global:C") (at 163.83 275.59 0) (unit 1)
  3123. (in_bom yes) (on_board yes)
  3124. (uuid 00000000-0000-0000-0000-000060dc588b)
  3125. (property "Reference" "C9" (id 0) (at 164.465 273.05 0)
  3126. (effects (font (size 1.27 1.27)) (justify left))
  3127. )
  3128. (property "Value" "100nF" (id 1) (at 164.465 278.13 0)
  3129. (effects (font (size 1.27 1.27)) (justify left))
  3130. )
  3131. (property "Footprint" "C:0805" (id 2) (at 164.7952 279.4 0)
  3132. (effects (font (size 1.27 1.27)) hide)
  3133. )
  3134. (property "Datasheet" "" (id 3) (at 163.83 275.59 0))
  3135. (property "Partkeepr" "605" (id 4) (at 61.595 457.835 0)
  3136. (effects (font (size 1.27 1.27)) hide)
  3137. )
  3138. (pin "1" (uuid c43a9791-6012-406d-8c2c-303c5f2e5e41))
  3139. (pin "2" (uuid a0741fe9-d93d-4357-a2d0-5bf3cdec3ffd))
  3140. )
  3141. (symbol (lib_id "global:C") (at 24.13 227.33 270) (unit 1)
  3142. (in_bom yes) (on_board yes)
  3143. (uuid 00000000-0000-0000-0000-000060dc5894)
  3144. (property "Reference" "C1" (id 0) (at 26.67 227.965 0)
  3145. (effects (font (size 1.27 1.27)) (justify left))
  3146. )
  3147. (property "Value" "22pF" (id 1) (at 21.59 227.965 0)
  3148. (effects (font (size 1.27 1.27)) (justify left))
  3149. )
  3150. (property "Footprint" "C:0603" (id 2) (at 20.32 228.2952 0)
  3151. (effects (font (size 1.27 1.27)) hide)
  3152. )
  3153. (property "Datasheet" "" (id 3) (at 24.13 227.33 0))
  3154. (property "Partkeepr" "600" (id 4) (at -104.14 205.105 0)
  3155. (effects (font (size 1.27 1.27)) hide)
  3156. )
  3157. (pin "1" (uuid f98a1b91-9aa3-4c7d-9ab6-cc42f1ef1222))
  3158. (pin "2" (uuid b5439700-fda7-4956-b08c-8949e60f6fe5))
  3159. )
  3160. (symbol (lib_id "global:C") (at 24.13 234.95 270) (unit 1)
  3161. (in_bom yes) (on_board yes)
  3162. (uuid 00000000-0000-0000-0000-000060dc589b)
  3163. (property "Reference" "C2" (id 0) (at 26.67 235.585 0)
  3164. (effects (font (size 1.27 1.27)) (justify left))
  3165. )
  3166. (property "Value" "22pF" (id 1) (at 21.59 235.585 0)
  3167. (effects (font (size 1.27 1.27)) (justify left))
  3168. )
  3169. (property "Footprint" "C:0603" (id 2) (at 20.32 235.9152 0)
  3170. (effects (font (size 1.27 1.27)) hide)
  3171. )
  3172. (property "Datasheet" "" (id 3) (at 24.13 234.95 0))
  3173. (property "Partkeepr" "600" (id 4) (at -111.76 212.725 0)
  3174. (effects (font (size 1.27 1.27)) hide)
  3175. )
  3176. (pin "1" (uuid 3f9478d4-122a-4960-956c-35916e723b41))
  3177. (pin "2" (uuid 3d349242-813e-4b0d-b017-d7c82e86c036))
  3178. )
  3179. (symbol (lib_id "global:Crystal") (at 35.56 231.14 270) (unit 1)
  3180. (in_bom yes) (on_board yes)
  3181. (uuid 00000000-0000-0000-0000-000060dc58a2)
  3182. (property "Reference" "Y1" (id 0) (at 39.37 231.14 0))
  3183. (property "Value" "25Mhz" (id 1) (at 31.75 231.14 0))
  3184. (property "Footprint" "Y:5032" (id 2) (at 35.56 231.14 0)
  3185. (effects (font (size 1.27 1.27)) hide)
  3186. )
  3187. (property "Datasheet" "" (id 3) (at 35.56 231.14 0))
  3188. (property "Partkeepr" "1650" (id 4) (at -96.52 198.12 0)
  3189. (effects (font (size 1.27 1.27)) hide)
  3190. )
  3191. (pin "1" (uuid 67dceaff-b3ab-4673-8804-ffccf009d830))
  3192. (pin "2" (uuid 5194aa52-8a01-4b48-9fe0-6f06965993f4))
  3193. )
  3194. (symbol (lib_id "global:C") (at 134.62 275.59 0) (unit 1)
  3195. (in_bom yes) (on_board yes)
  3196. (uuid 00000000-0000-0000-0000-000060dc58ab)
  3197. (property "Reference" "C4" (id 0) (at 135.255 273.05 0)
  3198. (effects (font (size 1.27 1.27)) (justify left))
  3199. )
  3200. (property "Value" "10nF" (id 1) (at 135.255 278.13 0)
  3201. (effects (font (size 1.27 1.27)) (justify left))
  3202. )
  3203. (property "Footprint" "C:0805" (id 2) (at 135.5852 279.4 0)
  3204. (effects (font (size 1.27 1.27)) hide)
  3205. )
  3206. (property "Datasheet" "" (id 3) (at 134.62 275.59 0))
  3207. (property "Partkeepr" "605" (id 4) (at 69.215 379.095 0)
  3208. (effects (font (size 1.27 1.27)) hide)
  3209. )
  3210. (pin "1" (uuid 525f23b9-a23c-4305-afe1-22811746f220))
  3211. (pin "2" (uuid 307d06a5-a22d-4946-8b80-4f092fd73e46))
  3212. )
  3213. (symbol (lib_id "conn:CONN_01X05") (at 34.29 271.78 0) (unit 1)
  3214. (in_bom yes) (on_board yes)
  3215. (uuid 00000000-0000-0000-0000-000060dc58ba)
  3216. (property "Reference" "P1" (id 0) (at 33.02 264.16 0)
  3217. (effects (font (size 1.27 1.27)) (justify left))
  3218. )
  3219. (property "Value" "CONN_01X05" (id 1) (at 36.83 278.13 90)
  3220. (effects (font (size 1.27 1.27)) (justify left))
  3221. )
  3222. (property "Footprint" "PinHeader:PinHeader2.54_1X5" (id 2) (at 36.2458 274.2184 0)
  3223. (effects (font (size 1.27 1.27)) (justify left) hide)
  3224. )
  3225. (property "Datasheet" "" (id 3) (at 34.29 271.78 0))
  3226. (property "Partkeepr" "100" (id 4) (at 34.29 271.78 0)
  3227. (effects (font (size 1.27 1.27)) hide)
  3228. )
  3229. (pin "1" (uuid 96752d91-b1d8-4e14-870e-215a5a87ee0e))
  3230. (pin "2" (uuid 382ce14f-0b78-4c2d-9fe1-67023cc607e4))
  3231. (pin "3" (uuid 2f670aab-9e89-41fe-876d-bce239efa431))
  3232. (pin "4" (uuid 9f7adb6b-5df9-4d03-b0e6-cbdba04bf2fb))
  3233. (pin "5" (uuid d3a2aff2-5f28-4465-9188-48602e8e75cc))
  3234. )
  3235. (symbol (lib_id "global:C") (at 161.29 252.73 270) (unit 1)
  3236. (in_bom yes) (on_board yes)
  3237. (uuid 00000000-0000-0000-0000-000060dc58d6)
  3238. (property "Reference" "C7" (id 0) (at 163.83 253.365 0)
  3239. (effects (font (size 1.27 1.27)) (justify left))
  3240. )
  3241. (property "Value" "100nF" (id 1) (at 158.75 253.365 0)
  3242. (effects (font (size 1.27 1.27)) (justify left))
  3243. )
  3244. (property "Footprint" "C:0805" (id 2) (at 157.48 253.6952 0)
  3245. (effects (font (size 1.27 1.27)) hide)
  3246. )
  3247. (property "Datasheet" "" (id 3) (at 161.29 252.73 0))
  3248. (property "Partkeepr" "605" (id 4) (at 133.35 -13.97 0)
  3249. (effects (font (size 1.27 1.27)) hide)
  3250. )
  3251. (pin "1" (uuid c780881d-a88b-414a-bb24-96d11e675688))
  3252. (pin "2" (uuid be777c60-066a-42c5-a3fc-a93a51cb5f92))
  3253. )
  3254. (symbol (lib_id "Module:NEO-7M") (at 72.39 45.72 0) (unit 1)
  3255. (in_bom yes) (on_board yes)
  3256. (uuid 00000000-0000-0000-0000-000060dc58e3)
  3257. (property "Reference" "U1" (id 0) (at 72.39 26.035 0))
  3258. (property "Value" "NEO-7M" (id 1) (at 72.39 28.3464 0))
  3259. (property "Footprint" "Module:NEO-7" (id 2) (at 86.36 31.75 0)
  3260. (effects (font (size 1.27 1.27)) hide)
  3261. )
  3262. (property "Datasheet" "" (id 3) (at 86.36 31.75 0)
  3263. (effects (font (size 1.27 1.27)) hide)
  3264. )
  3265. (property "Partkeepr" "2803" (id 4) (at 72.39 45.72 0)
  3266. (effects (font (size 1.27 1.27)) hide)
  3267. )
  3268. (pin "10" (uuid 2af80b09-e4ec-4fbf-9a6a-889b6439a0cb))
  3269. (pin "11" (uuid 84625814-3c34-4997-9c1c-566a30048a0f))
  3270. (pin "12" (uuid 2f4248fc-bac1-4746-8fce-b7d7e338527c))
  3271. (pin "13" (uuid c4416a0d-4e3c-4c32-a29d-3eba7ddf3012))
  3272. (pin "14" (uuid b2e36d1d-3f98-4b91-bfed-417c09bb03e1))
  3273. (pin "15" (uuid 5d335cde-5d82-409a-94b4-460411cc13b4))
  3274. (pin "16" (uuid b6faa3d1-9cab-4cf0-bbf1-abc808bc9059))
  3275. (pin "17" (uuid 6bd49631-1768-47cd-8529-b0e9abf84fcc))
  3276. (pin "18" (uuid da4d06af-2dcb-4ea0-8ec1-6de34a3ad748))
  3277. (pin "19" (uuid 18a17eb6-f45e-4c15-bce2-217ce6b1e774))
  3278. (pin "2" (uuid 04c74dd5-f6c8-4c9d-8c28-3b17ac54986b))
  3279. (pin "20" (uuid baa08606-faaa-40a4-8243-f2559d90760d))
  3280. (pin "21" (uuid 00f6a67c-a032-469e-9560-b139d4e1b4a7))
  3281. (pin "22" (uuid 4d65018e-4d1b-43c4-a8bd-5faea86df2b4))
  3282. (pin "23" (uuid 82d6bed5-fe1c-4371-abeb-57e5be235891))
  3283. (pin "24" (uuid d66a0670-bd7d-4660-9acf-4f66033949da))
  3284. (pin "3" (uuid 9cb3ab70-f859-494a-87ac-434fbc66c33e))
  3285. (pin "4" (uuid 5b896b72-bf91-4f1d-b645-e2f615417a3f))
  3286. (pin "5" (uuid 33745c76-493d-4e4a-a755-f97ece143302))
  3287. (pin "6" (uuid 61a38305-be0b-4f78-b599-39311c073f79))
  3288. (pin "7" (uuid 6620ece5-b552-42e3-b4a7-a863bb396ec1))
  3289. (pin "8" (uuid 59b21f1a-4908-44f3-b1d8-8559abe21d1e))
  3290. (pin "9" (uuid 5032b52d-fb14-4fb1-916e-c43f68350d75))
  3291. (pin "1" (uuid 948e17a4-3323-4e8b-8f06-cbf9d51cce76))
  3292. )
  3293. (symbol (lib_id "afficheur:7segment_3") (at 393.7 29.21 0) (unit 1)
  3294. (in_bom yes) (on_board yes)
  3295. (uuid 00000000-0000-0000-0000-000060dc58ed)
  3296. (property "Reference" "DS1" (id 0) (at 398.78 40.64 0))
  3297. (property "Value" "7segment_3" (id 1) (at 393.7 17.78 0))
  3298. (property "Footprint" "LED:7segment_3" (id 2) (at 398.78 38.1 0)
  3299. (effects (font (size 1.27 1.27)) hide)
  3300. )
  3301. (property "Datasheet" "" (id 3) (at 397.51 38.1 0)
  3302. (effects (font (size 1.27 1.27)) hide)
  3303. )
  3304. (property "Partkeepr" "1108" (id 4) (at 393.7 29.21 0)
  3305. (effects (font (size 1.27 1.27)) hide)
  3306. )
  3307. (pin "10" (uuid c609c484-2253-4f34-947c-2a26d9dba820))
  3308. (pin "12" (uuid 5e372dc8-30ff-4a61-8ed0-592ad0944ea6))
  3309. (pin "3" (uuid 5bffc67e-1f19-4ce8-a04b-5942212e56a5))
  3310. (pin "5" (uuid a9942b9f-63fc-470a-be46-0575b71f7cd0))
  3311. (pin "6" (uuid e78c6541-571c-4ae3-b37a-ce88f45e4767))
  3312. (pin "8" (uuid ae817417-642a-4517-bfa0-c08fe16c7e5b))
  3313. (pin "9" (uuid 65c529da-f295-4b48-a2d2-3cba281c7fd8))
  3314. (pin "1" (uuid 9414e889-e605-4406-8118-efabd53f9003))
  3315. (pin "11" (uuid 8fb055dc-8170-4106-aa22-4b8db6cb5fa9))
  3316. (pin "2" (uuid 5e8722e9-7b43-46a9-8d22-878ec7a7e611))
  3317. (pin "4" (uuid 1407bcdb-092b-40e2-b543-e87309754b16))
  3318. (pin "7" (uuid c41f1e29-aebd-4106-9e20-ba3cc383b8ef))
  3319. )
  3320. (symbol (lib_id "global:NPN") (at 323.85 63.5 0) (unit 1)
  3321. (in_bom yes) (on_board yes)
  3322. (uuid 00000000-0000-0000-0000-000060de75ac)
  3323. (property "Reference" "Q1" (id 0) (at 327.1774 61.0108 0)
  3324. (effects (font (size 1.524 1.524)) (justify left))
  3325. )
  3326. (property "Value" "NPN" (id 1) (at 327.1774 63.7032 0)
  3327. (effects (font (size 1.524 1.524)) (justify left))
  3328. )
  3329. (property "Footprint" "U:SOT23-3" (id 2) (at 321.31 63.5 0)
  3330. (effects (font (size 1.524 1.524)) hide)
  3331. )
  3332. (property "Datasheet" "" (id 3) (at 321.31 63.5 0)
  3333. (effects (font (size 1.524 1.524)) hide)
  3334. )
  3335. (property "Partkeepr" "2550" (id 4) (at 327.1774 66.1924 0)
  3336. (effects (font (size 1.27 1.27)) (justify left))
  3337. )
  3338. (pin "1" (uuid 2228514e-5299-4258-98b9-e9cdf9417856))
  3339. (pin "2" (uuid d09fca4c-55e2-452c-818b-2a461bf643cc))
  3340. (pin "3" (uuid e5803e45-bd73-45c0-b324-74c3d0cd5ee0))
  3341. )
  3342. (symbol (lib_id "global:NPN") (at 359.41 63.5 0) (unit 1)
  3343. (in_bom yes) (on_board yes)
  3344. (uuid 00000000-0000-0000-0000-000060de7f4f)
  3345. (property "Reference" "Q6" (id 0) (at 362.7374 61.0108 0)
  3346. (effects (font (size 1.524 1.524)) (justify left))
  3347. )
  3348. (property "Value" "NPN" (id 1) (at 362.7374 63.7032 0)
  3349. (effects (font (size 1.524 1.524)) (justify left))
  3350. )
  3351. (property "Footprint" "U:SOT23-3" (id 2) (at 356.87 63.5 0)
  3352. (effects (font (size 1.524 1.524)) hide)
  3353. )
  3354. (property "Datasheet" "" (id 3) (at 356.87 63.5 0)
  3355. (effects (font (size 1.524 1.524)) hide)
  3356. )
  3357. (property "Partkeepr" "2550" (id 4) (at 362.7374 66.1924 0)
  3358. (effects (font (size 1.27 1.27)) (justify left))
  3359. )
  3360. (pin "1" (uuid b49d4886-5858-45d9-91aa-e4893360ac04))
  3361. (pin "2" (uuid f8cfd3aa-e4ff-4f9d-9bf9-0adf19203b52))
  3362. (pin "3" (uuid 934f6b2e-d892-4606-8ba6-f8b20bec47c8))
  3363. )
  3364. (symbol (lib_id "global:NPN") (at 393.7 63.5 0) (unit 1)
  3365. (in_bom yes) (on_board yes)
  3366. (uuid 00000000-0000-0000-0000-000060de851a)
  3367. (property "Reference" "Q14" (id 0) (at 397.0274 61.0108 0)
  3368. (effects (font (size 1.524 1.524)) (justify left))
  3369. )
  3370. (property "Value" "NPN" (id 1) (at 397.0274 63.7032 0)
  3371. (effects (font (size 1.524 1.524)) (justify left))
  3372. )
  3373. (property "Footprint" "U:SOT23-3" (id 2) (at 391.16 63.5 0)
  3374. (effects (font (size 1.524 1.524)) hide)
  3375. )
  3376. (property "Datasheet" "" (id 3) (at 391.16 63.5 0)
  3377. (effects (font (size 1.524 1.524)) hide)
  3378. )
  3379. (property "Partkeepr" "2550" (id 4) (at 397.0274 66.1924 0)
  3380. (effects (font (size 1.27 1.27)) (justify left))
  3381. )
  3382. (pin "1" (uuid 06fcb724-535c-414c-9bd9-2c4253d1061a))
  3383. (pin "2" (uuid 175390ca-dcdb-4f63-8291-35ba8b07b140))
  3384. (pin "3" (uuid 55e5b7d2-eb43-4f5b-9f89-b1eff1e119d9))
  3385. )
  3386. (symbol (lib_id "global:Battery") (at 109.22 40.64 0) (unit 1)
  3387. (in_bom yes) (on_board yes)
  3388. (uuid 00000000-0000-0000-0000-000060dee44c)
  3389. (property "Reference" "BT1" (id 0) (at 112.2172 39.4716 0)
  3390. (effects (font (size 1.27 1.27)) (justify left))
  3391. )
  3392. (property "Value" "Pile" (id 1) (at 112.2172 41.783 0)
  3393. (effects (font (size 1.27 1.27)) (justify left))
  3394. )
  3395. (property "Footprint" "Connector:CR1220" (id 2) (at 109.22 39.624 90)
  3396. (effects (font (size 1.27 1.27)) hide)
  3397. )
  3398. (property "Datasheet" "" (id 3) (at 109.22 39.624 90))
  3399. (property "Partkeepr" "0153" (id 4) (at 109.22 40.64 0)
  3400. (effects (font (size 1.27 1.27)) hide)
  3401. )
  3402. (pin "1" (uuid b2325eae-af62-4e68-9662-6f6e3d96e8a5))
  3403. (pin "2" (uuid f62776f2-b1bc-4eb1-b10e-80f3fbeb02b2))
  3404. )
  3405. (symbol (lib_id "global:R") (at 123.19 36.83 270) (unit 1)
  3406. (in_bom yes) (on_board yes)
  3407. (uuid 00000000-0000-0000-0000-000060deef98)
  3408. (property "Reference" "R17" (id 0) (at 123.19 34.29 90))
  3409. (property "Value" "1K" (id 1) (at 123.19 36.83 90))
  3410. (property "Footprint" "R:0805" (id 2) (at 123.19 35.052 90)
  3411. (effects (font (size 1.27 1.27)) hide)
  3412. )
  3413. (property "Datasheet" "" (id 3) (at 123.19 36.83 0))
  3414. (property "Partkeepr" "0915" (id 4) (at 123.19 36.83 0)
  3415. (effects (font (size 1.27 1.27)) hide)
  3416. )
  3417. (pin "1" (uuid d8004053-a96a-4db9-be88-aefe8064c65c))
  3418. (pin "2" (uuid 043d2135-ee0b-4418-abd9-474991e268c8))
  3419. )
  3420. (symbol (lib_id "global:D") (at 134.62 33.02 90) (unit 1)
  3421. (in_bom yes) (on_board yes)
  3422. (uuid 00000000-0000-0000-0000-000060def388)
  3423. (property "Reference" "D10" (id 0) (at 136.6012 31.8516 90)
  3424. (effects (font (size 1.27 1.27)) (justify right))
  3425. )
  3426. (property "Value" "M4" (id 1) (at 136.6012 34.163 90)
  3427. (effects (font (size 1.27 1.27)) (justify right))
  3428. )
  3429. (property "Footprint" "D:SMA" (id 2) (at 134.62 33.02 0)
  3430. (effects (font (size 1.27 1.27)) hide)
  3431. )
  3432. (property "Datasheet" "" (id 3) (at 134.62 33.02 0))
  3433. (property "Partkeepr" "1302" (id 4) (at 134.62 33.02 0)
  3434. (effects (font (size 1.27 1.27)) hide)
  3435. )
  3436. (pin "1" (uuid 732f4616-9686-45b7-995e-72519f23bdcd))
  3437. (pin "2" (uuid abe00674-f224-458e-b299-3c29db445920))
  3438. )
  3439. (symbol (lib_id "global:R") (at 325.12 52.07 0) (unit 1)
  3440. (in_bom yes) (on_board yes)
  3441. (uuid 00000000-0000-0000-0000-000060df2ff3)
  3442. (property "Reference" "R4" (id 0) (at 326.898 50.9016 0)
  3443. (effects (font (size 1.27 1.27)) (justify left))
  3444. )
  3445. (property "Value" "0" (id 1) (at 326.39 53.34 0)
  3446. (effects (font (size 1.27 1.27)) (justify left))
  3447. )
  3448. (property "Footprint" "R:0805_0" (id 2) (at 323.342 52.07 90)
  3449. (effects (font (size 1.27 1.27)) hide)
  3450. )
  3451. (property "Datasheet" "" (id 3) (at 325.12 52.07 0))
  3452. (property "Partkeepr" "NC" (id 4) (at 325.12 52.07 0)
  3453. (effects (font (size 1.27 1.27)) hide)
  3454. )
  3455. (pin "1" (uuid 12b6afa4-4d3a-430e-8416-f3d60b11b644))
  3456. (pin "2" (uuid 6c1a3235-4d99-4e6f-a98c-377099e15df8))
  3457. )
  3458. (symbol (lib_id "global:R") (at 360.68 52.07 0) (unit 1)
  3459. (in_bom yes) (on_board yes)
  3460. (uuid 00000000-0000-0000-0000-000060df3384)
  3461. (property "Reference" "R9" (id 0) (at 362.458 50.9016 0)
  3462. (effects (font (size 1.27 1.27)) (justify left))
  3463. )
  3464. (property "Value" "0" (id 1) (at 362.458 53.213 0)
  3465. (effects (font (size 1.27 1.27)) (justify left))
  3466. )
  3467. (property "Footprint" "R:0805_0" (id 2) (at 358.902 52.07 90)
  3468. (effects (font (size 1.27 1.27)) hide)
  3469. )
  3470. (property "Datasheet" "" (id 3) (at 360.68 52.07 0))
  3471. (property "Partkeepr" "NC" (id 4) (at 360.68 52.07 0)
  3472. (effects (font (size 1.27 1.27)) hide)
  3473. )
  3474. (pin "1" (uuid 0570787e-1121-4a9a-8547-f68706a7ba87))
  3475. (pin "2" (uuid 0b3d4208-4257-4a45-bf45-0ac0b66edc08))
  3476. )
  3477. (symbol (lib_id "global:R") (at 394.97 52.07 0) (unit 1)
  3478. (in_bom yes) (on_board yes)
  3479. (uuid 00000000-0000-0000-0000-000060df3a08)
  3480. (property "Reference" "R15" (id 0) (at 396.748 50.9016 0)
  3481. (effects (font (size 1.27 1.27)) (justify left))
  3482. )
  3483. (property "Value" "0" (id 1) (at 396.748 53.213 0)
  3484. (effects (font (size 1.27 1.27)) (justify left))
  3485. )
  3486. (property "Footprint" "R:0805_0" (id 2) (at 393.192 52.07 90)
  3487. (effects (font (size 1.27 1.27)) hide)
  3488. )
  3489. (property "Datasheet" "" (id 3) (at 394.97 52.07 0))
  3490. (property "Partkeepr" "NC" (id 4) (at 394.97 52.07 0)
  3491. (effects (font (size 1.27 1.27)) hide)
  3492. )
  3493. (pin "1" (uuid 8dbd1a68-f406-4c7f-8b06-9547e6122f38))
  3494. (pin "2" (uuid b3ed612d-4b95-418f-bfae-ed954c910011))
  3495. )
  3496. (symbol (lib_id "global:C") (at 96.52 31.75 0) (unit 1)
  3497. (in_bom yes) (on_board yes)
  3498. (uuid 00000000-0000-0000-0000-000060df401a)
  3499. (property "Reference" "C12" (id 0) (at 99.441 30.5816 0)
  3500. (effects (font (size 1.27 1.27)) (justify left))
  3501. )
  3502. (property "Value" "100nF" (id 1) (at 99.441 32.893 0)
  3503. (effects (font (size 1.27 1.27)) (justify left))
  3504. )
  3505. (property "Footprint" "C:0805" (id 2) (at 97.4852 35.56 0)
  3506. (effects (font (size 1.27 1.27)) hide)
  3507. )
  3508. (property "Datasheet" "" (id 3) (at 96.52 31.75 0))
  3509. (property "Partkeepr" "605" (id 4) (at 96.52 31.75 0)
  3510. (effects (font (size 1.27 1.27)) hide)
  3511. )
  3512. (pin "1" (uuid 89cd789a-84c0-474b-9887-eaaa1a706f44))
  3513. (pin "2" (uuid b0e002dd-b1fa-41a7-b5d3-8a6b1ac4a333))
  3514. )
  3515. (symbol (lib_id "Microchip:MIC5219-3.3") (at 267.97 146.05 0) (unit 1)
  3516. (in_bom yes) (on_board yes)
  3517. (uuid 00000000-0000-0000-0000-000060e275dc)
  3518. (property "Reference" "U6" (id 0) (at 267.97 137.795 0))
  3519. (property "Value" "MIC5219-3.3" (id 1) (at 267.97 140.1064 0))
  3520. (property "Footprint" "U:SOT23-5" (id 2) (at 267.97 146.05 0)
  3521. (effects (font (size 1.27 1.27)) hide)
  3522. )
  3523. (property "Datasheet" "" (id 3) (at 267.97 146.05 0)
  3524. (effects (font (size 1.27 1.27)) hide)
  3525. )
  3526. (property "Partkeepr" "1808" (id 4) (at 267.97 146.05 0)
  3527. (effects (font (size 1.27 1.27)) hide)
  3528. )
  3529. (pin "1" (uuid a5c7abb9-628b-4db0-9244-e209be576760))
  3530. (pin "2" (uuid 7dfadc2c-0002-4536-9a16-40d98cd244d0))
  3531. (pin "3" (uuid c3e774d4-dedc-494a-89d3-3634a87fe5fb))
  3532. (pin "4" (uuid 309cce7c-76a5-40f7-bf52-1289c4234f67))
  3533. (pin "5" (uuid 2b710c32-5910-4fb5-8e24-08ea454479d9))
  3534. )
  3535. (symbol (lib_id "global:CP") (at 290.83 147.32 0) (unit 1)
  3536. (in_bom yes) (on_board yes)
  3537. (uuid 00000000-0000-0000-0000-000060e2f721)
  3538. (property "Reference" "C14" (id 0) (at 293.8272 146.1516 0)
  3539. (effects (font (size 1.27 1.27)) (justify left))
  3540. )
  3541. (property "Value" "2.2µF" (id 1) (at 293.8272 148.463 0)
  3542. (effects (font (size 1.27 1.27)) (justify left))
  3543. )
  3544. (property "Footprint" "C:3216-18" (id 2) (at 291.7952 151.13 0)
  3545. (effects (font (size 1.27 1.27)) hide)
  3546. )
  3547. (property "Datasheet" "" (id 3) (at 290.83 147.32 0))
  3548. (property "Partkeepr" "613" (id 4) (at 290.83 147.32 0)
  3549. (effects (font (size 1.27 1.27)) hide)
  3550. )
  3551. (pin "1" (uuid c457d6bc-d372-4e5a-9060-512765531115))
  3552. (pin "2" (uuid c898c915-89f5-4003-9fb8-8b0c3f06dfe7))
  3553. )
  3554. (symbol (lib_id "global:C") (at 280.67 152.4 0) (unit 1)
  3555. (in_bom yes) (on_board yes)
  3556. (uuid 00000000-0000-0000-0000-000060e2fdcf)
  3557. (property "Reference" "C13" (id 0) (at 283.591 151.2316 0)
  3558. (effects (font (size 1.27 1.27)) (justify left))
  3559. )
  3560. (property "Value" "470pF" (id 1) (at 283.591 153.543 0)
  3561. (effects (font (size 1.27 1.27)) (justify left))
  3562. )
  3563. (property "Footprint" "C:0603" (id 2) (at 281.6352 156.21 0)
  3564. (effects (font (size 1.27 1.27)) hide)
  3565. )
  3566. (property "Datasheet" "" (id 3) (at 280.67 152.4 0))
  3567. (property "Partkeepr" "600" (id 4) (at 280.67 152.4 0)
  3568. (effects (font (size 1.27 1.27)) hide)
  3569. )
  3570. (pin "1" (uuid a5447a5a-3f78-463f-92b3-8019d9cbd4f4))
  3571. (pin "2" (uuid b4877e61-d908-4a92-9ac0-5dfa5a23f7e8))
  3572. )
  3573. (symbol (lib_id "global:Antenne") (at 16.51 49.53 0) (unit 1)
  3574. (in_bom yes) (on_board yes)
  3575. (uuid 00000000-0000-0000-0000-000060ea8e0b)
  3576. (property "Reference" "AE1" (id 0) (at 15.24 43.18 0)
  3577. (effects (font (size 1.27 1.27)) (justify left))
  3578. )
  3579. (property "Value" "Antenne" (id 1) (at 20.32 48.26 90)
  3580. (effects (font (size 1.27 1.27)) hide)
  3581. )
  3582. (property "Footprint" "Connector:U.FL-R-SMT" (id 2) (at 16.51 49.53 0)
  3583. (effects (font (size 1.27 1.27)) hide)
  3584. )
  3585. (property "Datasheet" "" (id 3) (at 16.51 49.53 0)
  3586. (effects (font (size 1.27 1.27)) hide)
  3587. )
  3588. (property "Partkeepr" "0156" (id 4) (at 16.51 49.53 0)
  3589. (effects (font (size 1.27 1.27)) hide)
  3590. )
  3591. (pin "1" (uuid b51b2101-eadf-4b76-88a0-f530705bf102))
  3592. )
  3593. (symbol (lib_id "global:INDUCTOR") (at 36.83 49.53 270) (unit 1)
  3594. (in_bom yes) (on_board yes)
  3595. (uuid 00000000-0000-0000-0000-000060eabb56)
  3596. (property "Reference" "L1" (id 0) (at 36.83 44.9326 90))
  3597. (property "Value" "22µH" (id 1) (at 36.83 47.244 90))
  3598. (property "Footprint" "L:0805" (id 2) (at 36.83 49.53 0)
  3599. (effects (font (size 1.27 1.27)) hide)
  3600. )
  3601. (property "Datasheet" "" (id 3) (at 36.83 49.53 0))
  3602. (property "Partkeepr" "0801" (id 4) (at 36.83 49.53 0)
  3603. (effects (font (size 1.27 1.27)) hide)
  3604. )
  3605. (pin "1" (uuid bc4499ed-d675-4463-a987-f8cd58a9102c))
  3606. (pin "2" (uuid 922db659-b88c-4732-a911-2b45c05f13fc))
  3607. )
  3608. (symbol (lib_id "global:R") (at 48.26 49.53 270) (unit 1)
  3609. (in_bom yes) (on_board yes)
  3610. (uuid 00000000-0000-0000-0000-000060eb1ac4)
  3611. (property "Reference" "R16" (id 0) (at 48.26 44.2722 90))
  3612. (property "Value" "10" (id 1) (at 48.26 46.5836 90))
  3613. (property "Footprint" "R:0805" (id 2) (at 48.26 47.752 90)
  3614. (effects (font (size 1.27 1.27)) hide)
  3615. )
  3616. (property "Datasheet" "" (id 3) (at 48.26 49.53 0))
  3617. (property "Partkeepr" "0920" (id 4) (at 48.26 49.53 0)
  3618. (effects (font (size 1.27 1.27)) hide)
  3619. )
  3620. (pin "1" (uuid 901ecf50-b5b1-4442-9f78-15fbc62c10b5))
  3621. (pin "2" (uuid 8258c8e2-5f0a-41a7-a67d-d3054f44d244))
  3622. )
  3623. (symbol (lib_id "global:R") (at 326.39 153.67 0) (unit 1)
  3624. (in_bom yes) (on_board yes)
  3625. (uuid 00000000-0000-0000-0000-000060f5a967)
  3626. (property "Reference" "R5" (id 0) (at 328.168 152.5016 0)
  3627. (effects (font (size 1.27 1.27)) (justify left))
  3628. )
  3629. (property "Value" "75" (id 1) (at 328.168 154.813 0)
  3630. (effects (font (size 1.27 1.27)) (justify left))
  3631. )
  3632. (property "Footprint" "R:0805" (id 2) (at 324.612 153.67 90)
  3633. (effects (font (size 1.27 1.27)) hide)
  3634. )
  3635. (property "Datasheet" "" (id 3) (at 326.39 153.67 0))
  3636. (property "Partkeepr" "0926" (id 4) (at 326.39 153.67 0)
  3637. (effects (font (size 1.27 1.27)) hide)
  3638. )
  3639. (pin "1" (uuid 3def0672-3d83-48f7-bcb3-c4be8da902d5))
  3640. (pin "2" (uuid 53dc5eaa-73e3-43ab-9e31-a54cd5adc72f))
  3641. )
  3642. (symbol (lib_id "global:NPN") (at 325.12 165.1 0) (unit 1)
  3643. (in_bom yes) (on_board yes)
  3644. (uuid 00000000-0000-0000-0000-000060f5a96e)
  3645. (property "Reference" "Q2" (id 0) (at 328.4474 162.6108 0)
  3646. (effects (font (size 1.524 1.524)) (justify left))
  3647. )
  3648. (property "Value" "NPN" (id 1) (at 328.93 165.1 0)
  3649. (effects (font (size 1.524 1.524)) (justify left))
  3650. )
  3651. (property "Footprint" "U:SOT23-3" (id 2) (at 322.58 165.1 0)
  3652. (effects (font (size 1.524 1.524)) hide)
  3653. )
  3654. (property "Datasheet" "" (id 3) (at 322.58 165.1 0)
  3655. (effects (font (size 1.524 1.524)) hide)
  3656. )
  3657. (property "Partkeepr" "2550" (id 4) (at 328.4474 167.7924 0)
  3658. (effects (font (size 1.27 1.27)) (justify left))
  3659. )
  3660. (pin "1" (uuid d4faf341-fbfa-4ae9-aad0-69ba44e7c909))
  3661. (pin "2" (uuid 73872e39-ae4d-44e4-b9c1-d79891d9d4d4))
  3662. (pin "3" (uuid 6311912c-38c9-4819-91b4-41931ccb7cc5))
  3663. )
  3664. (symbol (lib_id "global:R") (at 345.44 153.67 0) (unit 1)
  3665. (in_bom yes) (on_board yes)
  3666. (uuid 00000000-0000-0000-0000-000060f5a97a)
  3667. (property "Reference" "R7" (id 0) (at 347.218 152.5016 0)
  3668. (effects (font (size 1.27 1.27)) (justify left))
  3669. )
  3670. (property "Value" "75" (id 1) (at 347.218 154.813 0)
  3671. (effects (font (size 1.27 1.27)) (justify left))
  3672. )
  3673. (property "Footprint" "R:0805" (id 2) (at 343.662 153.67 90)
  3674. (effects (font (size 1.27 1.27)) hide)
  3675. )
  3676. (property "Datasheet" "" (id 3) (at 345.44 153.67 0))
  3677. (property "Partkeepr" "0926" (id 4) (at 345.44 153.67 0)
  3678. (effects (font (size 1.27 1.27)) hide)
  3679. )
  3680. (pin "1" (uuid 3fd645e4-1c4f-4c07-afcb-59e3215127ca))
  3681. (pin "2" (uuid 5f3ac091-d5f3-4e8d-bed3-d7d84d73e753))
  3682. )
  3683. (symbol (lib_id "global:NPN") (at 344.17 165.1 0) (unit 1)
  3684. (in_bom yes) (on_board yes)
  3685. (uuid 00000000-0000-0000-0000-000060f5a981)
  3686. (property "Reference" "Q4" (id 0) (at 347.472 162.6108 0)
  3687. (effects (font (size 1.524 1.524)) (justify left))
  3688. )
  3689. (property "Value" "NPN" (id 1) (at 347.472 165.3032 0)
  3690. (effects (font (size 1.524 1.524)) (justify left))
  3691. )
  3692. (property "Footprint" "U:SOT23-3" (id 2) (at 341.63 165.1 0)
  3693. (effects (font (size 1.524 1.524)) hide)
  3694. )
  3695. (property "Datasheet" "" (id 3) (at 341.63 165.1 0)
  3696. (effects (font (size 1.524 1.524)) hide)
  3697. )
  3698. (property "Partkeepr" "2550" (id 4) (at 347.472 167.7924 0)
  3699. (effects (font (size 1.27 1.27)) (justify left))
  3700. )
  3701. (pin "1" (uuid 884b30ea-af8f-4f82-a557-df4823436067))
  3702. (pin "2" (uuid 7bf62f93-87a1-4db1-8ca9-79ce9596c2b8))
  3703. (pin "3" (uuid a104f8b7-5461-444e-b965-b1e6732ac99f))
  3704. )
  3705. (symbol (lib_id "global:R") (at 364.49 153.67 0) (unit 1)
  3706. (in_bom yes) (on_board yes)
  3707. (uuid 00000000-0000-0000-0000-000060f5a98e)
  3708. (property "Reference" "R11" (id 0) (at 366.268 152.5016 0)
  3709. (effects (font (size 1.27 1.27)) (justify left))
  3710. )
  3711. (property "Value" "75" (id 1) (at 366.268 154.813 0)
  3712. (effects (font (size 1.27 1.27)) (justify left))
  3713. )
  3714. (property "Footprint" "R:0805" (id 2) (at 362.712 153.67 90)
  3715. (effects (font (size 1.27 1.27)) hide)
  3716. )
  3717. (property "Datasheet" "" (id 3) (at 364.49 153.67 0))
  3718. (property "Partkeepr" "0926" (id 4) (at 364.49 153.67 0)
  3719. (effects (font (size 1.27 1.27)) hide)
  3720. )
  3721. (pin "1" (uuid 5c19c8eb-a9eb-4833-b94e-16d408a4c614))
  3722. (pin "2" (uuid 2ab4e285-80ef-4098-93e3-671fb896f742))
  3723. )
  3724. (symbol (lib_id "global:NPN") (at 363.22 165.1 0) (unit 1)
  3725. (in_bom yes) (on_board yes)
  3726. (uuid 00000000-0000-0000-0000-000060f5a995)
  3727. (property "Reference" "Q10" (id 0) (at 366.522 162.6108 0)
  3728. (effects (font (size 1.524 1.524)) (justify left))
  3729. )
  3730. (property "Value" "NPN" (id 1) (at 366.522 165.3032 0)
  3731. (effects (font (size 1.524 1.524)) (justify left))
  3732. )
  3733. (property "Footprint" "U:SOT23-3" (id 2) (at 360.68 165.1 0)
  3734. (effects (font (size 1.524 1.524)) hide)
  3735. )
  3736. (property "Datasheet" "" (id 3) (at 360.68 165.1 0)
  3737. (effects (font (size 1.524 1.524)) hide)
  3738. )
  3739. (property "Partkeepr" "2550" (id 4) (at 366.522 167.7924 0)
  3740. (effects (font (size 1.27 1.27)) (justify left))
  3741. )
  3742. (pin "1" (uuid 0b71d1a0-f7f1-4898-a4ea-edf5332f8ca7))
  3743. (pin "2" (uuid 120c613d-4c12-4293-ae3a-6a512771985f))
  3744. (pin "3" (uuid f0ad4449-626d-4aef-bbd4-02eba1183b71))
  3745. )
  3746. (symbol (lib_id "global:R") (at 384.81 153.67 0) (unit 1)
  3747. (in_bom yes) (on_board yes)
  3748. (uuid 00000000-0000-0000-0000-000060f5a9a2)
  3749. (property "Reference" "R13" (id 0) (at 386.588 152.5016 0)
  3750. (effects (font (size 1.27 1.27)) (justify left))
  3751. )
  3752. (property "Value" "75" (id 1) (at 386.588 154.813 0)
  3753. (effects (font (size 1.27 1.27)) (justify left))
  3754. )
  3755. (property "Footprint" "R:0805" (id 2) (at 383.032 153.67 90)
  3756. (effects (font (size 1.27 1.27)) hide)
  3757. )
  3758. (property "Datasheet" "" (id 3) (at 384.81 153.67 0))
  3759. (property "Partkeepr" "0926" (id 4) (at 384.81 153.67 0)
  3760. (effects (font (size 1.27 1.27)) hide)
  3761. )
  3762. (pin "1" (uuid a5d01954-50f2-4ef4-ac22-4fad9b9b2741))
  3763. (pin "2" (uuid 163963d5-9627-43e4-ac5c-e10ad7299143))
  3764. )
  3765. (symbol (lib_id "global:NPN") (at 383.54 165.1 0) (unit 1)
  3766. (in_bom yes) (on_board yes)
  3767. (uuid 00000000-0000-0000-0000-000060f5a9a9)
  3768. (property "Reference" "Q12" (id 0) (at 386.842 162.6108 0)
  3769. (effects (font (size 1.524 1.524)) (justify left))
  3770. )
  3771. (property "Value" "NPN" (id 1) (at 386.842 165.3032 0)
  3772. (effects (font (size 1.524 1.524)) (justify left))
  3773. )
  3774. (property "Footprint" "U:SOT23-3" (id 2) (at 381 165.1 0)
  3775. (effects (font (size 1.524 1.524)) hide)
  3776. )
  3777. (property "Datasheet" "" (id 3) (at 381 165.1 0)
  3778. (effects (font (size 1.524 1.524)) hide)
  3779. )
  3780. (property "Partkeepr" "2550" (id 4) (at 386.842 167.7924 0)
  3781. (effects (font (size 1.27 1.27)) (justify left))
  3782. )
  3783. (pin "1" (uuid e7d18ef0-3fda-41de-bee8-09bcd775905e))
  3784. (pin "2" (uuid b559f405-4de0-4485-9eb1-aa1ba6266fb3))
  3785. (pin "3" (uuid b2fb7a1b-c9ba-4acd-a02e-25484040900c))
  3786. )
  3787. (symbol (lib_id "global:LED") (at 325.12 212.09 90) (unit 1)
  3788. (in_bom yes) (on_board yes)
  3789. (uuid 00000000-0000-0000-0000-000060f8a74c)
  3790. (property "Reference" "D5" (id 0) (at 327.8632 210.9216 90)
  3791. (effects (font (size 1.27 1.27)) (justify right))
  3792. )
  3793. (property "Value" "LED_Rouge" (id 1) (at 327.8632 213.233 90)
  3794. (effects (font (size 1.27 1.27)) (justify right))
  3795. )
  3796. (property "Footprint" "LED:0805" (id 2) (at 325.12 212.09 0)
  3797. (effects (font (size 1.27 1.27)) hide)
  3798. )
  3799. (property "Datasheet" "" (id 3) (at 325.12 212.09 0))
  3800. (property "Partkeepr" "1103" (id 4) (at 325.12 212.09 0)
  3801. (effects (font (size 1.27 1.27)) hide)
  3802. )
  3803. (pin "1" (uuid 66096f4f-c798-4425-8537-e7adeb21bec3))
  3804. (pin "2" (uuid 452c8d75-aa5e-4c5d-b7f7-07aa48bbf245))
  3805. )
  3806. (symbol (lib_id "global:R") (at 325.12 220.98 0) (unit 1)
  3807. (in_bom yes) (on_board yes)
  3808. (uuid 00000000-0000-0000-0000-000060f8a759)
  3809. (property "Reference" "R6" (id 0) (at 326.898 219.8116 0)
  3810. (effects (font (size 1.27 1.27)) (justify left))
  3811. )
  3812. (property "Value" "75" (id 1) (at 326.898 222.123 0)
  3813. (effects (font (size 1.27 1.27)) (justify left))
  3814. )
  3815. (property "Footprint" "R:0805" (id 2) (at 323.342 220.98 90)
  3816. (effects (font (size 1.27 1.27)) hide)
  3817. )
  3818. (property "Datasheet" "" (id 3) (at 325.12 220.98 0))
  3819. (property "Partkeepr" "0926" (id 4) (at 325.12 220.98 0)
  3820. (effects (font (size 1.27 1.27)) hide)
  3821. )
  3822. (pin "1" (uuid abc0decb-50d4-4467-9412-db8d85ff63ff))
  3823. (pin "2" (uuid d1e483df-ea1d-4033-835a-7e444a60718e))
  3824. )
  3825. (symbol (lib_id "global:NPN") (at 323.85 232.41 0) (unit 1)
  3826. (in_bom yes) (on_board yes)
  3827. (uuid 00000000-0000-0000-0000-000060f8a760)
  3828. (property "Reference" "Q3" (id 0) (at 327.1774 229.9208 0)
  3829. (effects (font (size 1.524 1.524)) (justify left))
  3830. )
  3831. (property "Value" "NPN" (id 1) (at 327.66 232.41 0)
  3832. (effects (font (size 1.524 1.524)) (justify left))
  3833. )
  3834. (property "Footprint" "U:SOT23-3" (id 2) (at 321.31 232.41 0)
  3835. (effects (font (size 1.524 1.524)) hide)
  3836. )
  3837. (property "Datasheet" "" (id 3) (at 321.31 232.41 0)
  3838. (effects (font (size 1.524 1.524)) hide)
  3839. )
  3840. (property "Partkeepr" "2550" (id 4) (at 327.1774 235.1024 0)
  3841. (effects (font (size 1.27 1.27)) (justify left))
  3842. )
  3843. (pin "1" (uuid a2c6ddb8-c592-4f88-8d0d-4d49eee9bee0))
  3844. (pin "2" (uuid 71bde7f6-c970-4790-a48c-3a26a72d30aa))
  3845. (pin "3" (uuid ce52e298-4c1f-4e90-ab4b-157701b38695))
  3846. )
  3847. (symbol (lib_id "global:LED") (at 344.17 212.09 90) (unit 1)
  3848. (in_bom yes) (on_board yes)
  3849. (uuid 00000000-0000-0000-0000-000060f8a766)
  3850. (property "Reference" "D6" (id 0) (at 346.9132 210.9216 90)
  3851. (effects (font (size 1.27 1.27)) (justify right))
  3852. )
  3853. (property "Value" "LED_Rouge" (id 1) (at 346.9132 213.233 90)
  3854. (effects (font (size 1.27 1.27)) (justify right))
  3855. )
  3856. (property "Footprint" "LED:0805" (id 2) (at 344.17 212.09 0)
  3857. (effects (font (size 1.27 1.27)) hide)
  3858. )
  3859. (property "Datasheet" "" (id 3) (at 344.17 212.09 0))
  3860. (property "Partkeepr" "1103" (id 4) (at 344.17 212.09 0)
  3861. (effects (font (size 1.27 1.27)) hide)
  3862. )
  3863. (pin "1" (uuid 0520d68c-bdec-4d10-8756-c63de315da38))
  3864. (pin "2" (uuid f6530a81-d443-4ea6-a0d7-1ecd59edde3f))
  3865. )
  3866. (symbol (lib_id "global:R") (at 344.17 220.98 0) (unit 1)
  3867. (in_bom yes) (on_board yes)
  3868. (uuid 00000000-0000-0000-0000-000060f8a76c)
  3869. (property "Reference" "R8" (id 0) (at 345.948 219.8116 0)
  3870. (effects (font (size 1.27 1.27)) (justify left))
  3871. )
  3872. (property "Value" "75" (id 1) (at 345.948 222.123 0)
  3873. (effects (font (size 1.27 1.27)) (justify left))
  3874. )
  3875. (property "Footprint" "R:0805" (id 2) (at 342.392 220.98 90)
  3876. (effects (font (size 1.27 1.27)) hide)
  3877. )
  3878. (property "Datasheet" "" (id 3) (at 344.17 220.98 0))
  3879. (property "Partkeepr" "0926" (id 4) (at 344.17 220.98 0)
  3880. (effects (font (size 1.27 1.27)) hide)
  3881. )
  3882. (pin "1" (uuid 4a5d9644-2379-4885-b4a6-a8623a813c99))
  3883. (pin "2" (uuid 44a3d6e0-81da-4c53-981a-168ed3134773))
  3884. )
  3885. (symbol (lib_id "global:NPN") (at 342.9 232.41 0) (unit 1)
  3886. (in_bom yes) (on_board yes)
  3887. (uuid 00000000-0000-0000-0000-000060f8a773)
  3888. (property "Reference" "Q5" (id 0) (at 346.202 229.9208 0)
  3889. (effects (font (size 1.524 1.524)) (justify left))
  3890. )
  3891. (property "Value" "NPN" (id 1) (at 346.202 232.6132 0)
  3892. (effects (font (size 1.524 1.524)) (justify left))
  3893. )
  3894. (property "Footprint" "U:SOT23-3" (id 2) (at 340.36 232.41 0)
  3895. (effects (font (size 1.524 1.524)) hide)
  3896. )
  3897. (property "Datasheet" "" (id 3) (at 340.36 232.41 0)
  3898. (effects (font (size 1.524 1.524)) hide)
  3899. )
  3900. (property "Partkeepr" "2550" (id 4) (at 346.202 235.1024 0)
  3901. (effects (font (size 1.27 1.27)) (justify left))
  3902. )
  3903. (pin "1" (uuid d86de366-b062-45a7-bdc6-eee27735041a))
  3904. (pin "2" (uuid 1088c273-6236-415b-85a3-3a7f49436fe6))
  3905. (pin "3" (uuid ce6d7a5f-f433-4e4b-b5b7-b76118558c78))
  3906. )
  3907. (symbol (lib_id "global:LED") (at 363.22 212.09 90) (unit 1)
  3908. (in_bom yes) (on_board yes)
  3909. (uuid 00000000-0000-0000-0000-000060f8a77a)
  3910. (property "Reference" "D7" (id 0) (at 365.9632 210.9216 90)
  3911. (effects (font (size 1.27 1.27)) (justify right))
  3912. )
  3913. (property "Value" "LED_Rouge" (id 1) (at 365.9632 213.233 90)
  3914. (effects (font (size 1.27 1.27)) (justify right))
  3915. )
  3916. (property "Footprint" "LED:0805" (id 2) (at 363.22 212.09 0)
  3917. (effects (font (size 1.27 1.27)) hide)
  3918. )
  3919. (property "Datasheet" "" (id 3) (at 363.22 212.09 0))
  3920. (property "Partkeepr" "1103" (id 4) (at 363.22 212.09 0)
  3921. (effects (font (size 1.27 1.27)) hide)
  3922. )
  3923. (pin "1" (uuid 92887ca2-ec31-4498-981b-8dceb06ee776))
  3924. (pin "2" (uuid a7238a92-fd90-4f03-97ca-e07dac351f72))
  3925. )
  3926. (symbol (lib_id "global:R") (at 363.22 220.98 0) (unit 1)
  3927. (in_bom yes) (on_board yes)
  3928. (uuid 00000000-0000-0000-0000-000060f8a780)
  3929. (property "Reference" "R12" (id 0) (at 364.998 219.8116 0)
  3930. (effects (font (size 1.27 1.27)) (justify left))
  3931. )
  3932. (property "Value" "75" (id 1) (at 364.998 222.123 0)
  3933. (effects (font (size 1.27 1.27)) (justify left))
  3934. )
  3935. (property "Footprint" "R:0805" (id 2) (at 361.442 220.98 90)
  3936. (effects (font (size 1.27 1.27)) hide)
  3937. )
  3938. (property "Datasheet" "" (id 3) (at 363.22 220.98 0))
  3939. (property "Partkeepr" "0926" (id 4) (at 363.22 220.98 0)
  3940. (effects (font (size 1.27 1.27)) hide)
  3941. )
  3942. (pin "1" (uuid 1f29d2e6-7cd1-4d55-a840-cbd748f8e68f))
  3943. (pin "2" (uuid 158550de-1466-4574-adf7-871a4f192a4e))
  3944. )
  3945. (symbol (lib_id "global:NPN") (at 361.95 232.41 0) (unit 1)
  3946. (in_bom yes) (on_board yes)
  3947. (uuid 00000000-0000-0000-0000-000060f8a787)
  3948. (property "Reference" "Q11" (id 0) (at 365.252 229.9208 0)
  3949. (effects (font (size 1.524 1.524)) (justify left))
  3950. )
  3951. (property "Value" "NPN" (id 1) (at 365.252 232.6132 0)
  3952. (effects (font (size 1.524 1.524)) (justify left))
  3953. )
  3954. (property "Footprint" "U:SOT23-3" (id 2) (at 359.41 232.41 0)
  3955. (effects (font (size 1.524 1.524)) hide)
  3956. )
  3957. (property "Datasheet" "" (id 3) (at 359.41 232.41 0)
  3958. (effects (font (size 1.524 1.524)) hide)
  3959. )
  3960. (property "Partkeepr" "2550" (id 4) (at 365.252 235.1024 0)
  3961. (effects (font (size 1.27 1.27)) (justify left))
  3962. )
  3963. (pin "1" (uuid 98afd5f8-5eb7-42cb-92a7-4bb0e32eb918))
  3964. (pin "2" (uuid 747aec7c-69d3-480d-850e-7b5b9dac4015))
  3965. (pin "3" (uuid 7ffe756e-7031-40a9-a22e-c934089443a6))
  3966. )
  3967. (symbol (lib_id "global:LED") (at 383.54 212.09 90) (unit 1)
  3968. (in_bom yes) (on_board yes)
  3969. (uuid 00000000-0000-0000-0000-000060f8a78e)
  3970. (property "Reference" "D8" (id 0) (at 386.2832 210.9216 90)
  3971. (effects (font (size 1.27 1.27)) (justify right))
  3972. )
  3973. (property "Value" "LED_Rouge" (id 1) (at 386.2832 213.233 90)
  3974. (effects (font (size 1.27 1.27)) (justify right))
  3975. )
  3976. (property "Footprint" "LED:0805" (id 2) (at 383.54 212.09 0)
  3977. (effects (font (size 1.27 1.27)) hide)
  3978. )
  3979. (property "Datasheet" "" (id 3) (at 383.54 212.09 0))
  3980. (property "Partkeepr" "1103" (id 4) (at 383.54 212.09 0)
  3981. (effects (font (size 1.27 1.27)) hide)
  3982. )
  3983. (pin "1" (uuid 1e7a3df3-1564-4fca-a73a-2e1c26f2240d))
  3984. (pin "2" (uuid 5ed93df5-0550-4f68-8138-6b58ec386db8))
  3985. )
  3986. (symbol (lib_id "global:R") (at 383.54 220.98 0) (unit 1)
  3987. (in_bom yes) (on_board yes)
  3988. (uuid 00000000-0000-0000-0000-000060f8a794)
  3989. (property "Reference" "R14" (id 0) (at 385.318 219.8116 0)
  3990. (effects (font (size 1.27 1.27)) (justify left))
  3991. )
  3992. (property "Value" "75" (id 1) (at 385.318 222.123 0)
  3993. (effects (font (size 1.27 1.27)) (justify left))
  3994. )
  3995. (property "Footprint" "R:0805" (id 2) (at 381.762 220.98 90)
  3996. (effects (font (size 1.27 1.27)) hide)
  3997. )
  3998. (property "Datasheet" "" (id 3) (at 383.54 220.98 0))
  3999. (property "Partkeepr" "0926" (id 4) (at 383.54 220.98 0)
  4000. (effects (font (size 1.27 1.27)) hide)
  4001. )
  4002. (pin "1" (uuid c3d693bb-8b79-4c4c-8f6d-fcf59053a0c7))
  4003. (pin "2" (uuid 7778230f-f910-4a2e-99e2-9b1e861be1ad))
  4004. )
  4005. (symbol (lib_id "global:NPN") (at 382.27 232.41 0) (unit 1)
  4006. (in_bom yes) (on_board yes)
  4007. (uuid 00000000-0000-0000-0000-000060f8a79b)
  4008. (property "Reference" "Q13" (id 0) (at 385.572 229.9208 0)
  4009. (effects (font (size 1.524 1.524)) (justify left))
  4010. )
  4011. (property "Value" "NPN" (id 1) (at 385.572 232.6132 0)
  4012. (effects (font (size 1.524 1.524)) (justify left))
  4013. )
  4014. (property "Footprint" "U:SOT23-3" (id 2) (at 379.73 232.41 0)
  4015. (effects (font (size 1.524 1.524)) hide)
  4016. )
  4017. (property "Datasheet" "" (id 3) (at 379.73 232.41 0)
  4018. (effects (font (size 1.524 1.524)) hide)
  4019. )
  4020. (property "Partkeepr" "2550" (id 4) (at 385.572 235.1024 0)
  4021. (effects (font (size 1.27 1.27)) (justify left))
  4022. )
  4023. (pin "1" (uuid e33b88e6-21b7-46e6-ba61-2812267872a7))
  4024. (pin "2" (uuid 3525d7fb-9fbb-407a-b98f-dbe710a5769f))
  4025. (pin "3" (uuid cdd161f0-22d1-4053-9a0b-ffab3a54d82f))
  4026. )
  4027. (symbol (lib_id "ST:STM1061N34WX6F") (at 217.17 151.13 0) (unit 1)
  4028. (in_bom yes) (on_board yes)
  4029. (uuid 00000000-0000-0000-0000-0000610c4b30)
  4030. (property "Reference" "U7" (id 0) (at 217.17 142.875 0))
  4031. (property "Value" "STM1061N34WX6F" (id 1) (at 217.17 145.1864 0))
  4032. (property "Footprint" "U:SOT23-3" (id 2) (at 217.17 151.13 0)
  4033. (effects (font (size 1.27 1.27)) hide)
  4034. )
  4035. (property "Datasheet" "" (id 3) (at 217.17 151.13 0)
  4036. (effects (font (size 1.27 1.27)) hide)
  4037. )
  4038. (property "Partkeepr" "1807" (id 4) (at 217.17 151.13 0)
  4039. (effects (font (size 1.27 1.27)) hide)
  4040. )
  4041. (pin "1" (uuid 6fed9995-8ff3-4083-85d0-0bba783437a3))
  4042. (pin "2" (uuid 1ce35f55-7b10-4f85-a37b-4d1001366d27))
  4043. (pin "3" (uuid f85a42e4-203a-4e25-98e4-36d444206b66))
  4044. )
  4045. (symbol (lib_id "global:SW_GLISS") (at 274.32 118.11 0) (unit 1)
  4046. (in_bom yes) (on_board yes)
  4047. (uuid 00000000-0000-0000-0000-0000613fa5c0)
  4048. (property "Reference" "SW1" (id 0) (at 274.32 112.395 0))
  4049. (property "Value" "SK12D07VG4" (id 1) (at 269.24 120.65 0))
  4050. (property "Footprint" "SW:SK12D07VG4" (id 2) (at 275.59 118.11 0)
  4051. (effects (font (size 1.27 1.27)) hide)
  4052. )
  4053. (property "Datasheet" "" (id 3) (at 275.59 118.11 0)
  4054. (effects (font (size 1.27 1.27)) hide)
  4055. )
  4056. (property "Partkeepr" "0211" (id 4) (at 274.32 118.11 0)
  4057. (effects (font (size 1.27 1.27)) hide)
  4058. )
  4059. (pin "1" (uuid e7e1dfac-c1af-406d-9f8e-6fde94e0102c))
  4060. (pin "2" (uuid 729ec6c1-399d-419e-a69c-f6fb09d801a5))
  4061. (pin "3" (uuid 926f4738-cb7b-4379-bba2-492c7899975b))
  4062. )
  4063. (symbol (lib_id "global:R") (at 265.43 254 0) (unit 1)
  4064. (in_bom yes) (on_board yes)
  4065. (uuid 00000000-0000-0000-0000-00006145e5de)
  4066. (property "Reference" "R19" (id 0) (at 267.462 254 90))
  4067. (property "Value" "10K" (id 1) (at 265.43 254 90))
  4068. (property "Footprint" "R:0805" (id 2) (at 263.652 254 90)
  4069. (effects (font (size 1.27 1.27)) hide)
  4070. )
  4071. (property "Datasheet" "" (id 3) (at 265.43 254 0))
  4072. (property "Partkeepr" "910" (id 4) (at 72.39 402.59 0)
  4073. (effects (font (size 1.27 1.27)) hide)
  4074. )
  4075. (pin "1" (uuid 56d2c581-0e1d-4968-9265-81ebcc2ced46))
  4076. (pin "2" (uuid 7fd42837-f5c5-4745-aa29-c722e6e8c542))
  4077. )
  4078. (symbol (lib_id "global:LED") (at 326.39 144.78 90) (unit 1)
  4079. (in_bom yes) (on_board yes)
  4080. (uuid 00000000-0000-0000-0000-000061473591)
  4081. (property "Reference" "D1" (id 0) (at 329.1332 143.6116 90)
  4082. (effects (font (size 1.27 1.27)) (justify right))
  4083. )
  4084. (property "Value" "LED_Rouge" (id 1) (at 329.1332 145.923 90)
  4085. (effects (font (size 1.27 1.27)) (justify right))
  4086. )
  4087. (property "Footprint" "LED:0805" (id 2) (at 326.39 144.78 0)
  4088. (effects (font (size 1.27 1.27)) hide)
  4089. )
  4090. (property "Datasheet" "" (id 3) (at 326.39 144.78 0))
  4091. (property "Partkeepr" "1103" (id 4) (at 326.39 144.78 0)
  4092. (effects (font (size 1.27 1.27)) hide)
  4093. )
  4094. (pin "1" (uuid d5e4e58b-7952-4a1a-a314-48163f58401a))
  4095. (pin "2" (uuid 02dfc196-d6a5-419a-a42c-6b68de976338))
  4096. )
  4097. (symbol (lib_id "global:LED") (at 345.44 144.78 90) (unit 1)
  4098. (in_bom yes) (on_board yes)
  4099. (uuid 00000000-0000-0000-0000-000061473d43)
  4100. (property "Reference" "D2" (id 0) (at 348.1832 143.6116 90)
  4101. (effects (font (size 1.27 1.27)) (justify right))
  4102. )
  4103. (property "Value" "LED_Rouge" (id 1) (at 348.1832 145.923 90)
  4104. (effects (font (size 1.27 1.27)) (justify right))
  4105. )
  4106. (property "Footprint" "LED:0805" (id 2) (at 345.44 144.78 0)
  4107. (effects (font (size 1.27 1.27)) hide)
  4108. )
  4109. (property "Datasheet" "" (id 3) (at 345.44 144.78 0))
  4110. (property "Partkeepr" "1103" (id 4) (at 345.44 144.78 0)
  4111. (effects (font (size 1.27 1.27)) hide)
  4112. )
  4113. (pin "1" (uuid b62153a3-dd80-4823-b1b6-9a0be52853db))
  4114. (pin "2" (uuid b5c982b8-42bf-46d3-8d37-9f6cd5db17ab))
  4115. )
  4116. (symbol (lib_id "global:LED") (at 364.49 144.78 90) (unit 1)
  4117. (in_bom yes) (on_board yes)
  4118. (uuid 00000000-0000-0000-0000-000061475865)
  4119. (property "Reference" "D3" (id 0) (at 367.2332 143.6116 90)
  4120. (effects (font (size 1.27 1.27)) (justify right))
  4121. )
  4122. (property "Value" "LED_Rouge" (id 1) (at 367.2332 145.923 90)
  4123. (effects (font (size 1.27 1.27)) (justify right))
  4124. )
  4125. (property "Footprint" "LED:0805" (id 2) (at 364.49 144.78 0)
  4126. (effects (font (size 1.27 1.27)) hide)
  4127. )
  4128. (property "Datasheet" "" (id 3) (at 364.49 144.78 0))
  4129. (property "Partkeepr" "1103" (id 4) (at 364.49 144.78 0)
  4130. (effects (font (size 1.27 1.27)) hide)
  4131. )
  4132. (pin "1" (uuid 8f80a3f1-1ae2-4b8d-bd35-7a182c6a8d2e))
  4133. (pin "2" (uuid 72140a8f-2088-44fc-93d1-40511c6ac353))
  4134. )
  4135. (symbol (lib_id "global:LED") (at 384.81 144.78 90) (unit 1)
  4136. (in_bom yes) (on_board yes)
  4137. (uuid 00000000-0000-0000-0000-000061475d37)
  4138. (property "Reference" "D4" (id 0) (at 387.5532 143.6116 90)
  4139. (effects (font (size 1.27 1.27)) (justify right))
  4140. )
  4141. (property "Value" "LED_Rouge" (id 1) (at 387.5532 145.923 90)
  4142. (effects (font (size 1.27 1.27)) (justify right))
  4143. )
  4144. (property "Footprint" "LED:0805" (id 2) (at 384.81 144.78 0)
  4145. (effects (font (size 1.27 1.27)) hide)
  4146. )
  4147. (property "Datasheet" "" (id 3) (at 384.81 144.78 0))
  4148. (property "Partkeepr" "1103" (id 4) (at 384.81 144.78 0)
  4149. (effects (font (size 1.27 1.27)) hide)
  4150. )
  4151. (pin "1" (uuid 837176e9-8fab-41d2-86dd-da3b1b3dd39f))
  4152. (pin "2" (uuid 1995a1af-4656-4a47-a563-d0a3f10ab4cf))
  4153. )
  4154. (symbol (lib_id "global:SW_PUSH") (at 161.29 246.38 0) (unit 1)
  4155. (in_bom yes) (on_board yes)
  4156. (uuid 00000000-0000-0000-0000-0000614b3e8e)
  4157. (property "Reference" "SW2" (id 0) (at 168.91 243.84 0))
  4158. (property "Value" "nrst" (id 1) (at 161.29 247.65 0))
  4159. (property "Footprint" "SW:1812" (id 2) (at 161.29 246.38 0)
  4160. (effects (font (size 1.27 1.27)) hide)
  4161. )
  4162. (property "Datasheet" "" (id 3) (at 161.29 246.38 0))
  4163. (property "Partkeepr" "0200" (id 4) (at 161.29 246.38 0)
  4164. (effects (font (size 1.27 1.27)) hide)
  4165. )
  4166. (pin "1" (uuid cf2b32de-2b9d-4f88-bf8d-de5c55282622))
  4167. (pin "2" (uuid aea808cc-4bf1-43cf-a5ab-50c99cef3fb0))
  4168. )
  4169. (symbol (lib_id "global:R") (at 199.39 110.49 270) (unit 1)
  4170. (in_bom yes) (on_board yes)
  4171. (uuid 00000000-0000-0000-0000-0000614cde88)
  4172. (property "Reference" "R20" (id 0) (at 199.39 112.522 90))
  4173. (property "Value" "10K" (id 1) (at 199.39 110.49 90))
  4174. (property "Footprint" "R:0805" (id 2) (at 199.39 108.712 90)
  4175. (effects (font (size 1.27 1.27)) hide)
  4176. )
  4177. (property "Datasheet" "" (id 3) (at 199.39 110.49 0))
  4178. (property "Partkeepr" "910" (id 4) (at 183.515 -156.21 0)
  4179. (effects (font (size 1.27 1.27)) hide)
  4180. )
  4181. (pin "1" (uuid 0e1e548c-ec74-46cb-aa6e-5e8839149d3f))
  4182. (pin "2" (uuid a623f881-bf21-4f21-bf99-f5c7db3a5968))
  4183. )
  4184. (symbol (lib_id "global:C") (at 199.39 123.19 270) (unit 1)
  4185. (in_bom yes) (on_board yes)
  4186. (uuid 00000000-0000-0000-0000-0000614cde8f)
  4187. (property "Reference" "C16" (id 0) (at 201.93 123.825 0)
  4188. (effects (font (size 1.27 1.27)) (justify left))
  4189. )
  4190. (property "Value" "100nF" (id 1) (at 196.85 123.825 0)
  4191. (effects (font (size 1.27 1.27)) (justify left))
  4192. )
  4193. (property "Footprint" "C:0805" (id 2) (at 195.58 124.1552 0)
  4194. (effects (font (size 1.27 1.27)) hide)
  4195. )
  4196. (property "Datasheet" "" (id 3) (at 199.39 123.19 0))
  4197. (property "Partkeepr" "605" (id 4) (at 171.45 -143.51 0)
  4198. (effects (font (size 1.27 1.27)) hide)
  4199. )
  4200. (pin "1" (uuid 7629cb9f-5c7a-4585-8c5f-2f63280a0e51))
  4201. (pin "2" (uuid fb08eb4e-4d01-46b4-b939-0155c8ef8388))
  4202. )
  4203. (symbol (lib_id "global:SW_PUSH") (at 199.39 116.84 0) (unit 1)
  4204. (in_bom yes) (on_board yes)
  4205. (uuid 00000000-0000-0000-0000-0000614cde96)
  4206. (property "Reference" "SW4" (id 0) (at 207.01 114.3 0))
  4207. (property "Value" "BOUTON1" (id 1) (at 199.39 118.11 0))
  4208. (property "Footprint" "SW:4.5mmX4.5mm" (id 2) (at 199.39 116.84 0)
  4209. (effects (font (size 1.27 1.27)) hide)
  4210. )
  4211. (property "Datasheet" "" (id 3) (at 199.39 116.84 0))
  4212. (property "Partkeepr" "0212" (id 4) (at 199.39 116.84 0)
  4213. (effects (font (size 1.27 1.27)) hide)
  4214. )
  4215. (pin "1" (uuid c54946dc-b56a-4075-a391-5835ff06fc87))
  4216. (pin "2" (uuid 21fe163d-5c16-42b5-8408-6e6165b7b3e7))
  4217. )
  4218. (symbol (lib_id "global:R") (at 233.68 110.49 270) (unit 1)
  4219. (in_bom yes) (on_board yes)
  4220. (uuid 00000000-0000-0000-0000-0000614d36b1)
  4221. (property "Reference" "R21" (id 0) (at 233.68 112.522 90))
  4222. (property "Value" "10K" (id 1) (at 233.68 110.49 90))
  4223. (property "Footprint" "R:0805" (id 2) (at 233.68 108.712 90)
  4224. (effects (font (size 1.27 1.27)) hide)
  4225. )
  4226. (property "Datasheet" "" (id 3) (at 233.68 110.49 0))
  4227. (property "Partkeepr" "910" (id 4) (at 217.805 -156.21 0)
  4228. (effects (font (size 1.27 1.27)) hide)
  4229. )
  4230. (pin "1" (uuid 5e913aea-9f40-4ef2-954f-5459dfa8324f))
  4231. (pin "2" (uuid 1c32e674-b900-4cad-b800-47a5c2453658))
  4232. )
  4233. (symbol (lib_id "global:C") (at 233.68 123.19 270) (unit 1)
  4234. (in_bom yes) (on_board yes)
  4235. (uuid 00000000-0000-0000-0000-0000614d36b8)
  4236. (property "Reference" "C17" (id 0) (at 236.22 123.825 0)
  4237. (effects (font (size 1.27 1.27)) (justify left))
  4238. )
  4239. (property "Value" "100nF" (id 1) (at 231.14 123.825 0)
  4240. (effects (font (size 1.27 1.27)) (justify left))
  4241. )
  4242. (property "Footprint" "C:0805" (id 2) (at 229.87 124.1552 0)
  4243. (effects (font (size 1.27 1.27)) hide)
  4244. )
  4245. (property "Datasheet" "" (id 3) (at 233.68 123.19 0))
  4246. (property "Partkeepr" "605" (id 4) (at 205.74 -143.51 0)
  4247. (effects (font (size 1.27 1.27)) hide)
  4248. )
  4249. (pin "1" (uuid d665b41c-c6f8-4a45-8ffb-b5dec65a09a3))
  4250. (pin "2" (uuid 35ed081c-163b-4979-90e3-f6e508b6c0fd))
  4251. )
  4252. (symbol (lib_id "global:SW_PUSH") (at 233.68 116.84 0) (unit 1)
  4253. (in_bom yes) (on_board yes)
  4254. (uuid 00000000-0000-0000-0000-0000614d36bf)
  4255. (property "Reference" "SW5" (id 0) (at 241.3 114.3 0))
  4256. (property "Value" "BOUTON2" (id 1) (at 233.68 118.11 0))
  4257. (property "Footprint" "SW:4.5mmX4.5mm" (id 2) (at 233.68 116.84 0)
  4258. (effects (font (size 1.27 1.27)) hide)
  4259. )
  4260. (property "Datasheet" "" (id 3) (at 233.68 116.84 0))
  4261. (property "Partkeepr" "0212" (id 4) (at 233.68 116.84 0)
  4262. (effects (font (size 1.27 1.27)) hide)
  4263. )
  4264. (pin "1" (uuid f1960b60-73de-4c92-b6c5-7fa1993f2c9c))
  4265. (pin "2" (uuid 0fa0e183-23fd-4787-b228-f9207d787009))
  4266. )
  4267. (symbol (lib_id "ST:STM32L476RG") (at 83.82 238.76 0) (unit 1)
  4268. (in_bom yes) (on_board yes)
  4269. (uuid 00000000-0000-0000-0000-0000614f4620)
  4270. (property "Reference" "U2" (id 0) (at 107.95 266.7 0)
  4271. (effects (font (size 1.27 1.27)) (justify left))
  4272. )
  4273. (property "Value" "STM32L476RG" (id 1) (at 76.2 238.76 0)
  4274. (effects (font (size 1.27 1.27)) (justify left))
  4275. )
  4276. (property "Footprint" "U:LQFP64" (id 2) (at 54.61 226.06 0)
  4277. (effects (font (size 1.27 1.27)) hide)
  4278. )
  4279. (property "Datasheet" "" (id 3) (at 54.61 226.06 0)
  4280. (effects (font (size 1.27 1.27)) hide)
  4281. )
  4282. (property "Partkeepr" "2101" (id 4) (at 83.82 238.76 0)
  4283. (effects (font (size 1.27 1.27)) hide)
  4284. )
  4285. (pin "1" (uuid fa6267a2-77b5-42f5-98c6-40bbae0f2c13))
  4286. (pin "10" (uuid 57e60628-6d13-49e5-8e0f-1cf31bada668))
  4287. (pin "11" (uuid 711e8266-1663-4d18-8cd6-839cb071c47e))
  4288. (pin "12" (uuid 40ca69cc-5122-41ab-a4ee-b5af8c1d68be))
  4289. (pin "13" (uuid 022b0300-c8f8-48b2-9d2c-ae80ff824354))
  4290. (pin "14" (uuid 999751fc-78d3-4f80-b9fe-ca01ec165983))
  4291. (pin "15" (uuid 0d587a0a-c67c-4fed-9eec-791a57f2bb2e))
  4292. (pin "16" (uuid 3ada789a-8253-4c52-ac20-d30b9efe4f49))
  4293. (pin "17" (uuid a4ccff6b-8aca-4df0-a4d8-195b1f165632))
  4294. (pin "18" (uuid f5879ab2-b938-41a3-ab1b-ec5c0551f7a8))
  4295. (pin "19" (uuid 340a1653-d3fe-441a-a00c-6fadb8816e05))
  4296. (pin "2" (uuid fc065095-462f-46ee-8772-8e3d563d5f93))
  4297. (pin "20" (uuid 5341f75f-445e-45d6-8d7c-693459db4b8f))
  4298. (pin "21" (uuid 135e3642-358a-4af8-829a-e9d8d5db6f15))
  4299. (pin "22" (uuid 378e526d-5a27-490c-9809-30a858151ca1))
  4300. (pin "23" (uuid d26c0188-a8c0-40f8-947a-e0efe65dd5bd))
  4301. (pin "24" (uuid ee2b5b55-18f1-44b0-8eb7-645cdcfe2722))
  4302. (pin "25" (uuid 46331abf-ef2b-44f7-8e7b-2addf2a04973))
  4303. (pin "26" (uuid dc50a505-bdbb-49e4-a166-7ad91ea76a60))
  4304. (pin "27" (uuid 398ac0ce-a6d7-46e9-b0d2-f38a583f93bc))
  4305. (pin "28" (uuid 4b680c6f-6bf5-42bc-954e-399a8095278c))
  4306. (pin "29" (uuid 4274c955-0ff2-4ffd-b308-32c7740d7229))
  4307. (pin "3" (uuid 2da0c218-f525-488e-ae52-b37371a9c8c4))
  4308. (pin "30" (uuid 03180fc3-312d-4869-989b-36a0aa8fbbab))
  4309. (pin "31" (uuid 8ebf6100-3981-45dc-a269-6504480f2134))
  4310. (pin "32" (uuid 6d63f474-3068-4498-806c-b83853047f41))
  4311. (pin "33" (uuid 116d155f-066d-4394-8897-f470a7ea739b))
  4312. (pin "34" (uuid a659890f-c262-401d-95e1-315d3cf4375a))
  4313. (pin "35" (uuid cb7d7a60-c3f6-41de-9a14-1e4dd5641c3a))
  4314. (pin "36" (uuid ac8d1beb-8064-452d-b2a7-337a1c8f4c29))
  4315. (pin "37" (uuid f5322e2e-cac3-432e-bda8-0a4cf8376319))
  4316. (pin "38" (uuid 69f84cd4-9488-4b2f-b15f-3d9e11632cf3))
  4317. (pin "39" (uuid d3a8e1a9-d4d6-43c3-a281-bf9d31297aeb))
  4318. (pin "4" (uuid 5760e242-d884-4525-b413-5cdf8762836e))
  4319. (pin "40" (uuid 22ce5f01-00e9-4ddd-a65e-815d60dce969))
  4320. (pin "41" (uuid 65778b97-4bd1-4830-a540-c2ec5320ce4e))
  4321. (pin "42" (uuid 19cf3f75-846d-40c4-99e9-986cfa896c10))
  4322. (pin "43" (uuid 7290aba7-9701-4a7f-9efd-a4c38f1a6ef8))
  4323. (pin "44" (uuid 0a523061-715f-43ef-b1dd-3d745a3e7e1d))
  4324. (pin "45" (uuid 6335d0a4-3503-455f-8a16-33bc2cc40641))
  4325. (pin "46" (uuid 5d2142a2-f5ce-4a20-b509-6fc8dca8fa51))
  4326. (pin "47" (uuid 3324d408-a5b9-4560-951d-d219dc33ad00))
  4327. (pin "48" (uuid 0e86af0a-1fe7-477d-99bc-1729cff58217))
  4328. (pin "49" (uuid c3c0c2d5-f711-466e-ac12-378fa93d8683))
  4329. (pin "5" (uuid 359d092c-c359-42b7-9d21-55f013d66e0d))
  4330. (pin "50" (uuid 24f4ca8a-b89e-4b56-bcc7-8bd43bb3d11a))
  4331. (pin "51" (uuid a3fe4351-40c5-439f-b2ce-943ba00790a3))
  4332. (pin "52" (uuid c5ddb5b3-ad5c-4b95-988a-1085ab1e494b))
  4333. (pin "53" (uuid 3be24049-710e-4c21-b592-150779e27859))
  4334. (pin "54" (uuid 4e171e27-0952-4a5f-bd26-afc8662a6d9a))
  4335. (pin "55" (uuid 90eccc84-68e3-440b-b8e7-b46a28e3379b))
  4336. (pin "56" (uuid cec5c91b-0f2e-497a-af3e-a5a152b16bf2))
  4337. (pin "57" (uuid 659c7120-8885-4090-b510-a594ad335b4b))
  4338. (pin "58" (uuid a66a3b2f-f268-4e38-987e-b27ec003ce16))
  4339. (pin "59" (uuid b06fdf55-9b05-48ab-b20a-f43456e8f5ec))
  4340. (pin "6" (uuid a120ec1a-c3ea-4c4e-ad75-54278c183a82))
  4341. (pin "60" (uuid 708692df-f1ed-4dfd-8869-70b93a8004bc))
  4342. (pin "61" (uuid 64e4ea00-3ecf-4df6-ac5f-77cf4ced88fb))
  4343. (pin "62" (uuid 241ce13e-c8b1-478b-8ebc-cce2a81df2bb))
  4344. (pin "63" (uuid a818dbd6-8d05-4bed-8e76-065b136c4a97))
  4345. (pin "64" (uuid ec08b450-01ec-4ec7-a2c0-7827a3b475fe))
  4346. (pin "7" (uuid 64b46f63-6e09-4261-974e-314eb1064777))
  4347. (pin "8" (uuid ef9338d2-be92-41eb-995e-a6475d8b74aa))
  4348. (pin "9" (uuid dfe2f8d9-6fc7-415d-bc35-fe3109d317f2))
  4349. )
  4350. (symbol (lib_id "global:R") (at 161.29 212.09 270) (unit 1)
  4351. (in_bom yes) (on_board yes)
  4352. (uuid 00000000-0000-0000-0000-000061560557)
  4353. (property "Reference" "R1" (id 0) (at 161.29 214.122 90))
  4354. (property "Value" "10K" (id 1) (at 161.29 212.09 90))
  4355. (property "Footprint" "R:0805" (id 2) (at 161.29 210.312 90)
  4356. (effects (font (size 1.27 1.27)) hide)
  4357. )
  4358. (property "Datasheet" "" (id 3) (at 161.29 212.09 0))
  4359. (property "Partkeepr" "910" (id 4) (at 145.415 -54.61 0)
  4360. (effects (font (size 1.27 1.27)) hide)
  4361. )
  4362. (pin "1" (uuid d372b0df-12cb-4d18-93e5-ecca155a1076))
  4363. (pin "2" (uuid 4cea73b9-aa6a-4e61-a258-be68f53395e5))
  4364. )
  4365. (symbol (lib_id "global:C") (at 161.29 224.79 270) (unit 1)
  4366. (in_bom yes) (on_board yes)
  4367. (uuid 00000000-0000-0000-0000-00006156055e)
  4368. (property "Reference" "C15" (id 0) (at 163.83 225.425 0)
  4369. (effects (font (size 1.27 1.27)) (justify left))
  4370. )
  4371. (property "Value" "100nF" (id 1) (at 158.75 225.425 0)
  4372. (effects (font (size 1.27 1.27)) (justify left))
  4373. )
  4374. (property "Footprint" "C:0805" (id 2) (at 157.48 225.7552 0)
  4375. (effects (font (size 1.27 1.27)) hide)
  4376. )
  4377. (property "Datasheet" "" (id 3) (at 161.29 224.79 0))
  4378. (property "Partkeepr" "605" (id 4) (at 133.35 -41.91 0)
  4379. (effects (font (size 1.27 1.27)) hide)
  4380. )
  4381. (pin "1" (uuid 792685e9-fe40-4fbf-a788-175ee65815ee))
  4382. (pin "2" (uuid 1699bc09-f09e-4839-81f2-9ca65ce464d7))
  4383. )
  4384. (symbol (lib_id "global:SW_PUSH") (at 161.29 218.44 0) (unit 1)
  4385. (in_bom yes) (on_board yes)
  4386. (uuid 00000000-0000-0000-0000-000061560565)
  4387. (property "Reference" "SW3" (id 0) (at 168.91 215.9 0))
  4388. (property "Value" "boot" (id 1) (at 161.29 219.71 0))
  4389. (property "Footprint" "SW:1812" (id 2) (at 161.29 218.44 0)
  4390. (effects (font (size 1.27 1.27)) hide)
  4391. )
  4392. (property "Datasheet" "" (id 3) (at 161.29 218.44 0))
  4393. (property "Partkeepr" "0200" (id 4) (at 161.29 218.44 0)
  4394. (effects (font (size 1.27 1.27)) hide)
  4395. )
  4396. (pin "1" (uuid bcfbf0fc-e1d4-4713-9434-d5f3b1b90b7a))
  4397. (pin "2" (uuid 4206ccdf-4d5e-4a49-85ca-882972e6150d))
  4398. )
  4399. (symbol (lib_id "conn:Power") (at 287.02 120.65 180) (unit 1)
  4400. (in_bom yes) (on_board yes)
  4401. (uuid 00000000-0000-0000-0000-0000615b2007)
  4402. (property "Reference" "P2" (id 0) (at 289.0012 119.6086 0)
  4403. (effects (font (size 1.27 1.27)) (justify right))
  4404. )
  4405. (property "Value" "batterie" (id 1) (at 289.0012 121.92 0)
  4406. (effects (font (size 1.27 1.27)) (justify right))
  4407. )
  4408. (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 287.02 120.65 0)
  4409. (effects (font (size 1.27 1.27)) hide)
  4410. )
  4411. (property "Datasheet" "" (id 3) (at 287.02 120.65 0)
  4412. (effects (font (size 1.27 1.27)) hide)
  4413. )
  4414. (property "Partkeepr" "0004" (id 4) (at 287.02 120.65 0)
  4415. (effects (font (size 1.27 1.27)) hide)
  4416. )
  4417. (pin "1" (uuid 89b31927-f663-4a3a-a530-c0fd8571c8d7))
  4418. (pin "2" (uuid e23187f9-dcd6-499f-90d3-0eec00b87622))
  4419. )
  4420. (symbol (lib_id "global:R") (at 161.29 238.76 270) (unit 1)
  4421. (in_bom yes) (on_board yes)
  4422. (uuid 00000000-0000-0000-0000-0000616dee9f)
  4423. (property "Reference" "R22" (id 0) (at 161.29 240.792 90))
  4424. (property "Value" "10K" (id 1) (at 161.29 238.76 90))
  4425. (property "Footprint" "R:0805" (id 2) (at 161.29 236.982 90)
  4426. (effects (font (size 1.27 1.27)) hide)
  4427. )
  4428. (property "Datasheet" "" (id 3) (at 161.29 238.76 0))
  4429. (property "Partkeepr" "910" (id 4) (at 145.415 -27.94 0)
  4430. (effects (font (size 1.27 1.27)) hide)
  4431. )
  4432. (pin "1" (uuid 4f5a593d-b109-4ea1-9106-1a00245b0fa7))
  4433. (pin "2" (uuid 5338c7e8-2840-4211-817d-a6a02bfa9066))
  4434. )
  4435. (symbol (lib_id "global:R") (at 312.42 63.5 270) (unit 1)
  4436. (in_bom yes) (on_board yes)
  4437. (uuid 00000000-0000-0000-0000-000061716404)
  4438. (property "Reference" "R23" (id 0) (at 312.42 60.96 90))
  4439. (property "Value" "330" (id 1) (at 312.42 63.5 90))
  4440. (property "Footprint" "R:0805" (id 2) (at 312.42 60.579 90)
  4441. (effects (font (size 1.27 1.27)) hide)
  4442. )
  4443. (property "Datasheet" "" (id 3) (at 312.42 63.5 0))
  4444. (property "Partkeepr" "0914" (id 4) (at 312.42 63.5 0)
  4445. (effects (font (size 1.27 1.27)) hide)
  4446. )
  4447. (pin "1" (uuid 172ae4b5-4844-4ae8-a220-06196fc931d3))
  4448. (pin "2" (uuid f232b395-a0ab-4461-b901-fad8834664e8))
  4449. )
  4450. (symbol (lib_id "global:R") (at 347.98 63.5 270) (unit 1)
  4451. (in_bom yes) (on_board yes)
  4452. (uuid 00000000-0000-0000-0000-000061724913)
  4453. (property "Reference" "R24" (id 0) (at 347.98 60.96 90))
  4454. (property "Value" "330" (id 1) (at 347.98 63.5 90))
  4455. (property "Footprint" "R:0805" (id 2) (at 347.98 60.579 90)
  4456. (effects (font (size 1.27 1.27)) hide)
  4457. )
  4458. (property "Datasheet" "" (id 3) (at 347.98 63.5 0))
  4459. (property "Partkeepr" "0914" (id 4) (at 347.98 63.5 0)
  4460. (effects (font (size 1.27 1.27)) hide)
  4461. )
  4462. (pin "1" (uuid 92f3f87e-5e1a-419d-afde-68dd17a44605))
  4463. (pin "2" (uuid 3a343692-2c55-4f37-9ead-c72b1953e9cb))
  4464. )
  4465. (symbol (lib_id "global:R") (at 382.27 63.5 270) (unit 1)
  4466. (in_bom yes) (on_board yes)
  4467. (uuid 00000000-0000-0000-0000-00006174a121)
  4468. (property "Reference" "R33" (id 0) (at 382.27 60.96 90))
  4469. (property "Value" "330" (id 1) (at 382.27 63.5 90))
  4470. (property "Footprint" "R:0805" (id 2) (at 382.27 60.579 90)
  4471. (effects (font (size 1.27 1.27)) hide)
  4472. )
  4473. (property "Datasheet" "" (id 3) (at 382.27 63.5 0))
  4474. (property "Partkeepr" "0914" (id 4) (at 382.27 63.5 0)
  4475. (effects (font (size 1.27 1.27)) hide)
  4476. )
  4477. (pin "1" (uuid d4d7af4a-bdba-41a7-93c2-da79d93aaec5))
  4478. (pin "2" (uuid f63f3c64-d980-4ae0-b129-a351881a850f))
  4479. )
  4480. (symbol (lib_id "global:R") (at 317.5 161.29 0) (unit 1)
  4481. (in_bom yes) (on_board yes)
  4482. (uuid 00000000-0000-0000-0000-000061773328)
  4483. (property "Reference" "R26" (id 0) (at 319.278 160.1216 0)
  4484. (effects (font (size 1.27 1.27)) (justify left))
  4485. )
  4486. (property "Value" "330" (id 1) (at 319.278 162.433 0)
  4487. (effects (font (size 1.27 1.27)) (justify left))
  4488. )
  4489. (property "Footprint" "R:0805" (id 2) (at 319.278 163.6014 0)
  4490. (effects (font (size 1.27 1.27)) (justify left) hide)
  4491. )
  4492. (property "Datasheet" "" (id 3) (at 317.5 161.29 0))
  4493. (property "Partkeepr" "0914" (id 4) (at 317.5 161.29 0)
  4494. (effects (font (size 1.27 1.27)) hide)
  4495. )
  4496. (pin "1" (uuid 3b82d8e3-a040-434a-9991-6271f6273782))
  4497. (pin "2" (uuid 96597868-124d-4a3c-974d-f269e7248232))
  4498. )
  4499. (symbol (lib_id "global:R") (at 336.55 161.29 0) (unit 1)
  4500. (in_bom yes) (on_board yes)
  4501. (uuid 00000000-0000-0000-0000-00006177ff37)
  4502. (property "Reference" "R28" (id 0) (at 338.328 160.1216 0)
  4503. (effects (font (size 1.27 1.27)) (justify left))
  4504. )
  4505. (property "Value" "330" (id 1) (at 338.328 162.433 0)
  4506. (effects (font (size 1.27 1.27)) (justify left))
  4507. )
  4508. (property "Footprint" "R:0805" (id 2) (at 338.328 163.6014 0)
  4509. (effects (font (size 1.27 1.27)) (justify left) hide)
  4510. )
  4511. (property "Datasheet" "" (id 3) (at 336.55 161.29 0))
  4512. (property "Partkeepr" "0914" (id 4) (at 336.55 161.29 0)
  4513. (effects (font (size 1.27 1.27)) hide)
  4514. )
  4515. (pin "1" (uuid 3fd84676-c0dc-47ea-8930-0afc793ec874))
  4516. (pin "2" (uuid e4c8997f-0e4e-473d-84d3-edfc0a922603))
  4517. )
  4518. (symbol (lib_id "global:R") (at 355.6 161.29 0) (unit 1)
  4519. (in_bom yes) (on_board yes)
  4520. (uuid 00000000-0000-0000-0000-00006178089d)
  4521. (property "Reference" "R32" (id 0) (at 357.378 160.1216 0)
  4522. (effects (font (size 1.27 1.27)) (justify left))
  4523. )
  4524. (property "Value" "330" (id 1) (at 357.378 162.433 0)
  4525. (effects (font (size 1.27 1.27)) (justify left))
  4526. )
  4527. (property "Footprint" "R:0805" (id 2) (at 357.378 163.6014 0)
  4528. (effects (font (size 1.27 1.27)) (justify left) hide)
  4529. )
  4530. (property "Datasheet" "" (id 3) (at 355.6 161.29 0))
  4531. (property "Partkeepr" "0914" (id 4) (at 355.6 161.29 0)
  4532. (effects (font (size 1.27 1.27)) hide)
  4533. )
  4534. (pin "1" (uuid fe42ae90-db4c-434c-84ff-afc19cdb6192))
  4535. (pin "2" (uuid 9481d1bb-33fc-4de3-be43-996175f1f1b7))
  4536. )
  4537. (symbol (lib_id "global:R") (at 375.92 161.29 0) (unit 1)
  4538. (in_bom yes) (on_board yes)
  4539. (uuid 00000000-0000-0000-0000-000061780d7a)
  4540. (property "Reference" "R35" (id 0) (at 377.698 160.1216 0)
  4541. (effects (font (size 1.27 1.27)) (justify left))
  4542. )
  4543. (property "Value" "330" (id 1) (at 377.698 162.433 0)
  4544. (effects (font (size 1.27 1.27)) (justify left))
  4545. )
  4546. (property "Footprint" "R:0805" (id 2) (at 377.698 163.6014 0)
  4547. (effects (font (size 1.27 1.27)) (justify left) hide)
  4548. )
  4549. (property "Datasheet" "" (id 3) (at 375.92 161.29 0))
  4550. (property "Partkeepr" "0914" (id 4) (at 375.92 161.29 0)
  4551. (effects (font (size 1.27 1.27)) hide)
  4552. )
  4553. (pin "1" (uuid 897c9415-bcbc-426b-a1e4-847438e49709))
  4554. (pin "2" (uuid 66a63530-21d0-4c46-9871-3b13e24c24f3))
  4555. )
  4556. (symbol (lib_id "global:R") (at 374.65 228.6 0) (unit 1)
  4557. (in_bom yes) (on_board yes)
  4558. (uuid 00000000-0000-0000-0000-000061784050)
  4559. (property "Reference" "R34" (id 0) (at 376.428 227.4316 0)
  4560. (effects (font (size 1.27 1.27)) (justify left))
  4561. )
  4562. (property "Value" "330" (id 1) (at 376.428 229.743 0)
  4563. (effects (font (size 1.27 1.27)) (justify left))
  4564. )
  4565. (property "Footprint" "R:0805" (id 2) (at 376.428 230.9114 0)
  4566. (effects (font (size 1.27 1.27)) (justify left) hide)
  4567. )
  4568. (property "Datasheet" "" (id 3) (at 374.65 228.6 0))
  4569. (property "Partkeepr" "0914" (id 4) (at 374.65 228.6 0)
  4570. (effects (font (size 1.27 1.27)) hide)
  4571. )
  4572. (pin "1" (uuid 0c23fd3c-8e92-44f9-9905-f0d6b673c1e2))
  4573. (pin "2" (uuid 8fc2e36b-243b-47e2-890e-f3a8d0cb9deb))
  4574. )
  4575. (symbol (lib_id "global:R") (at 354.33 228.6 0) (unit 1)
  4576. (in_bom yes) (on_board yes)
  4577. (uuid 00000000-0000-0000-0000-000061784563)
  4578. (property "Reference" "R31" (id 0) (at 356.108 227.4316 0)
  4579. (effects (font (size 1.27 1.27)) (justify left))
  4580. )
  4581. (property "Value" "330" (id 1) (at 356.108 229.743 0)
  4582. (effects (font (size 1.27 1.27)) (justify left))
  4583. )
  4584. (property "Footprint" "R:0805" (id 2) (at 356.108 230.9114 0)
  4585. (effects (font (size 1.27 1.27)) (justify left) hide)
  4586. )
  4587. (property "Datasheet" "" (id 3) (at 354.33 228.6 0))
  4588. (property "Partkeepr" "0914" (id 4) (at 354.33 228.6 0)
  4589. (effects (font (size 1.27 1.27)) hide)
  4590. )
  4591. (pin "1" (uuid 7d49c9c5-5903-4690-a2d3-e7457b1c219b))
  4592. (pin "2" (uuid 3bdc1b02-322d-48f9-9d18-b7443809881e))
  4593. )
  4594. (symbol (lib_id "global:R") (at 335.28 228.6 0) (unit 1)
  4595. (in_bom yes) (on_board yes)
  4596. (uuid 00000000-0000-0000-0000-0000617849a8)
  4597. (property "Reference" "R27" (id 0) (at 337.058 227.4316 0)
  4598. (effects (font (size 1.27 1.27)) (justify left))
  4599. )
  4600. (property "Value" "330" (id 1) (at 337.058 229.743 0)
  4601. (effects (font (size 1.27 1.27)) (justify left))
  4602. )
  4603. (property "Footprint" "R:0805" (id 2) (at 337.058 230.9114 0)
  4604. (effects (font (size 1.27 1.27)) (justify left) hide)
  4605. )
  4606. (property "Datasheet" "" (id 3) (at 335.28 228.6 0))
  4607. (property "Partkeepr" "0914" (id 4) (at 335.28 228.6 0)
  4608. (effects (font (size 1.27 1.27)) hide)
  4609. )
  4610. (pin "1" (uuid e72eb9df-bed0-4c60-b16a-6863ea8d0319))
  4611. (pin "2" (uuid be4a35bf-388c-48f9-a61f-b9bdb1e6be81))
  4612. )
  4613. (symbol (lib_id "global:R") (at 316.23 228.6 0) (unit 1)
  4614. (in_bom yes) (on_board yes)
  4615. (uuid 00000000-0000-0000-0000-000061784dc5)
  4616. (property "Reference" "R25" (id 0) (at 318.008 227.4316 0)
  4617. (effects (font (size 1.27 1.27)) (justify left))
  4618. )
  4619. (property "Value" "330" (id 1) (at 318.008 229.743 0)
  4620. (effects (font (size 1.27 1.27)) (justify left))
  4621. )
  4622. (property "Footprint" "R:0805" (id 2) (at 318.008 230.9114 0)
  4623. (effects (font (size 1.27 1.27)) (justify left) hide)
  4624. )
  4625. (property "Datasheet" "" (id 3) (at 316.23 228.6 0))
  4626. (property "Partkeepr" "0914" (id 4) (at 316.23 228.6 0)
  4627. (effects (font (size 1.27 1.27)) hide)
  4628. )
  4629. (pin "1" (uuid 528fa016-8dda-47a4-ac5a-14ef00dc9116))
  4630. (pin "2" (uuid 0c45290b-d76f-4c88-a4f6-10a6b4367d24))
  4631. )
  4632. (symbol (lib_id "global:R") (at 372.11 22.86 270) (unit 1)
  4633. (in_bom yes) (on_board yes)
  4634. (uuid 00000000-0000-0000-0000-0000626a713b)
  4635. (property "Reference" "R37" (id 0) (at 367.03 21.59 90))
  4636. (property "Value" "120" (id 1) (at 372.11 22.86 90))
  4637. (property "Footprint" "R:0805" (id 2) (at 372.11 19.939 90)
  4638. (effects (font (size 1.27 1.27)) hide)
  4639. )
  4640. (property "Datasheet" "" (id 3) (at 372.11 22.86 0))
  4641. (property "Partkeepr" "0911" (id 4) (at 372.11 22.86 0)
  4642. (effects (font (size 1.27 1.27)) hide)
  4643. )
  4644. (pin "1" (uuid 376ca56a-29ee-4f83-81b0-a39eae9d6ea3))
  4645. (pin "2" (uuid 2712dda9-3574-49ce-a5b9-b0a2035d3a7b))
  4646. )
  4647. (symbol (lib_id "global:R") (at 381 25.4 270) (unit 1)
  4648. (in_bom yes) (on_board yes)
  4649. (uuid 00000000-0000-0000-0000-0000626ace34)
  4650. (property "Reference" "R41" (id 0) (at 377.19 24.13 90))
  4651. (property "Value" "120" (id 1) (at 381 25.4 90))
  4652. (property "Footprint" "R:0805" (id 2) (at 381 22.479 90)
  4653. (effects (font (size 1.27 1.27)) hide)
  4654. )
  4655. (property "Datasheet" "" (id 3) (at 381 25.4 0))
  4656. (property "Partkeepr" "0911" (id 4) (at 381 25.4 0)
  4657. (effects (font (size 1.27 1.27)) hide)
  4658. )
  4659. (pin "1" (uuid 19cec2a5-b60e-466c-a462-027339cdd498))
  4660. (pin "2" (uuid a0ca6efd-c9af-475a-a623-f71718ecb07a))
  4661. )
  4662. (symbol (lib_id "global:R") (at 372.11 27.94 270) (unit 1)
  4663. (in_bom yes) (on_board yes)
  4664. (uuid 00000000-0000-0000-0000-0000626ad1c1)
  4665. (property "Reference" "R38" (id 0) (at 368.3 26.67 90))
  4666. (property "Value" "120" (id 1) (at 372.11 27.94 90))
  4667. (property "Footprint" "R:0805" (id 2) (at 372.11 25.019 90)
  4668. (effects (font (size 1.27 1.27)) hide)
  4669. )
  4670. (property "Datasheet" "" (id 3) (at 372.11 27.94 0))
  4671. (property "Partkeepr" "0911" (id 4) (at 372.11 27.94 0)
  4672. (effects (font (size 1.27 1.27)) hide)
  4673. )
  4674. (pin "1" (uuid fee6e0a9-3581-4681-828a-d7e7c0b72a48))
  4675. (pin "2" (uuid cc1b77af-799a-48de-a9a3-c6ffc84bdf10))
  4676. )
  4677. (symbol (lib_id "global:R") (at 381 30.48 270) (unit 1)
  4678. (in_bom yes) (on_board yes)
  4679. (uuid 00000000-0000-0000-0000-0000626f1de4)
  4680. (property "Reference" "R42" (id 0) (at 377.19 29.21 90))
  4681. (property "Value" "120" (id 1) (at 381 30.48 90))
  4682. (property "Footprint" "R:0805" (id 2) (at 381 27.559 90)
  4683. (effects (font (size 1.27 1.27)) hide)
  4684. )
  4685. (property "Datasheet" "" (id 3) (at 381 30.48 0))
  4686. (property "Partkeepr" "0911" (id 4) (at 381 30.48 0)
  4687. (effects (font (size 1.27 1.27)) hide)
  4688. )
  4689. (pin "1" (uuid c806ca64-4076-499b-9029-155759542c55))
  4690. (pin "2" (uuid 95ceb3ed-a7d7-4f46-a5b5-e573dd4a910f))
  4691. )
  4692. (symbol (lib_id "global:R") (at 372.11 33.02 270) (unit 1)
  4693. (in_bom yes) (on_board yes)
  4694. (uuid 00000000-0000-0000-0000-0000626f20cf)
  4695. (property "Reference" "R39" (id 0) (at 368.3 31.75 90))
  4696. (property "Value" "120" (id 1) (at 372.11 33.02 90))
  4697. (property "Footprint" "R:0805" (id 2) (at 372.11 30.099 90)
  4698. (effects (font (size 1.27 1.27)) hide)
  4699. )
  4700. (property "Datasheet" "" (id 3) (at 372.11 33.02 0))
  4701. (property "Partkeepr" "0911" (id 4) (at 372.11 33.02 0)
  4702. (effects (font (size 1.27 1.27)) hide)
  4703. )
  4704. (pin "1" (uuid 5310e544-c28f-4fe1-8665-5377bc79757f))
  4705. (pin "2" (uuid eb420a5f-fed2-401e-af84-af7a622b2a76))
  4706. )
  4707. (symbol (lib_id "global:R") (at 381 35.56 270) (unit 1)
  4708. (in_bom yes) (on_board yes)
  4709. (uuid 00000000-0000-0000-0000-0000626f2488)
  4710. (property "Reference" "R43" (id 0) (at 377.19 34.29 90))
  4711. (property "Value" "120" (id 1) (at 381 35.56 90))
  4712. (property "Footprint" "R:0805" (id 2) (at 381 32.639 90)
  4713. (effects (font (size 1.27 1.27)) hide)
  4714. )
  4715. (property "Datasheet" "" (id 3) (at 381 35.56 0))
  4716. (property "Partkeepr" "0911" (id 4) (at 381 35.56 0)
  4717. (effects (font (size 1.27 1.27)) hide)
  4718. )
  4719. (pin "1" (uuid 4338d29b-6c04-409d-875e-313e19a0fd23))
  4720. (pin "2" (uuid 9fe4ec8e-d675-4b57-9038-b2ad5a9800f8))
  4721. )
  4722. (symbol (lib_id "global:R") (at 344.17 22.86 270) (unit 1)
  4723. (in_bom yes) (on_board yes)
  4724. (uuid 00000000-0000-0000-0000-000062702db6)
  4725. (property "Reference" "R36" (id 0) (at 342.9 20.32 90)
  4726. (effects (font (size 1.27 1.27)) (justify left))
  4727. )
  4728. (property "Value" "4.7K" (id 1) (at 341.63 22.86 90)
  4729. (effects (font (size 1.27 1.27)) (justify left))
  4730. )
  4731. (property "Footprint" "R:0805" (id 2) (at 344.17 21.082 90)
  4732. (effects (font (size 1.27 1.27)) hide)
  4733. )
  4734. (property "Datasheet" "" (id 3) (at 344.17 22.86 0))
  4735. (property "Partkeepr" "0917" (id 4) (at 344.17 22.86 0)
  4736. (effects (font (size 1.27 1.27)) hide)
  4737. )
  4738. (pin "1" (uuid 9c8ec97b-24c7-44ce-984c-6152db0371aa))
  4739. (pin "2" (uuid 5e55078b-97af-4c80-838b-eaf4f630bb7a))
  4740. )
  4741. (symbol (lib_id "global:R") (at 381 20.32 270) (unit 1)
  4742. (in_bom yes) (on_board yes)
  4743. (uuid 00000000-0000-0000-0000-000062722372)
  4744. (property "Reference" "R40" (id 0) (at 375.92 19.05 90))
  4745. (property "Value" "120" (id 1) (at 381 20.32 90))
  4746. (property "Footprint" "R:0805" (id 2) (at 381 17.399 90)
  4747. (effects (font (size 1.27 1.27)) hide)
  4748. )
  4749. (property "Datasheet" "" (id 3) (at 381 20.32 0))
  4750. (property "Partkeepr" "0911" (id 4) (at 381 20.32 0)
  4751. (effects (font (size 1.27 1.27)) hide)
  4752. )
  4753. (pin "1" (uuid 0da5400b-a1bf-449b-b183-0fcf28aff5c0))
  4754. (pin "2" (uuid f6ab39d7-8d43-4958-82a0-c13a1e508052))
  4755. )
  4756. (symbol (lib_id "global:R") (at 356.87 34.29 180) (unit 1)
  4757. (in_bom yes) (on_board yes)
  4758. (uuid 00000000-0000-0000-0000-00006274c05c)
  4759. (property "Reference" "R10" (id 0) (at 354.33 34.29 0))
  4760. (property "Value" "120" (id 1) (at 356.87 34.29 90))
  4761. (property "Footprint" "R:0805" (id 2) (at 359.791 34.29 90)
  4762. (effects (font (size 1.27 1.27)) hide)
  4763. )
  4764. (property "Datasheet" "" (id 3) (at 356.87 34.29 0))
  4765. (property "Partkeepr" "0911" (id 4) (at 356.87 34.29 0)
  4766. (effects (font (size 1.27 1.27)) hide)
  4767. )
  4768. (pin "1" (uuid 6fc07099-549a-4dc5-8c80-3ec767b4b363))
  4769. (pin "2" (uuid b0228418-dad2-4b8d-a837-f46810bb487f))
  4770. )
  4771. (symbol (lib_id "global:NPN") (at 355.6 22.86 0) (unit 1)
  4772. (in_bom yes) (on_board yes)
  4773. (uuid 00000000-0000-0000-0000-0000627cdab9)
  4774. (property "Reference" "Q9" (id 0) (at 358.9274 20.3708 0)
  4775. (effects (font (size 1.524 1.524)) (justify left))
  4776. )
  4777. (property "Value" "NPN" (id 1) (at 358.9274 23.0632 0)
  4778. (effects (font (size 1.524 1.524)) (justify left))
  4779. )
  4780. (property "Footprint" "U:SOT23-3" (id 2) (at 353.06 22.86 0)
  4781. (effects (font (size 1.524 1.524)) hide)
  4782. )
  4783. (property "Datasheet" "" (id 3) (at 353.06 22.86 0)
  4784. (effects (font (size 1.524 1.524)) hide)
  4785. )
  4786. (property "Partkeepr" "2550" (id 4) (at 358.9274 25.5524 0)
  4787. (effects (font (size 1.27 1.27)) (justify left))
  4788. )
  4789. (pin "1" (uuid f4ba32ab-ab3d-4753-a0b7-a2a898ba4b27))
  4790. (pin "2" (uuid 4b77d0a4-5200-4718-ad55-d12fcc0160fd))
  4791. (pin "3" (uuid 970b75d2-be6a-4922-bf76-1e9d7e25dec5))
  4792. )
  4793. (symbol (lib_id "global:R") (at 250.19 144.78 0) (unit 1)
  4794. (in_bom yes) (on_board yes)
  4795. (uuid 42effcdd-387b-482b-ada7-613ef95546b5)
  4796. (property "Reference" "R18" (id 0) (at 252.222 144.78 90))
  4797. (property "Value" "10K" (id 1) (at 250.19 144.78 90))
  4798. (property "Footprint" "R:0805" (id 2) (at 248.412 144.78 90)
  4799. (effects (font (size 1.27 1.27)) hide)
  4800. )
  4801. (property "Datasheet" "" (id 3) (at 250.19 144.78 0))
  4802. (property "Partkeepr" "910" (id 4) (at 57.15 293.37 0)
  4803. (effects (font (size 1.27 1.27)) hide)
  4804. )
  4805. (pin "1" (uuid 7468a458-3366-405e-bf8c-a843892ee62f))
  4806. (pin "2" (uuid e486b8b2-87ae-4fa1-a617-59f6fedcb481))
  4807. )
  4808. (symbol (lib_id "global:R") (at 260.35 254 0) (unit 1)
  4809. (in_bom yes) (on_board yes)
  4810. (uuid 700b24a2-12dd-45ae-95a1-32facdcac1ae)
  4811. (property "Reference" "R29" (id 0) (at 262.382 254 90))
  4812. (property "Value" "10K" (id 1) (at 260.35 254 90))
  4813. (property "Footprint" "R:0805" (id 2) (at 258.572 254 90)
  4814. (effects (font (size 1.27 1.27)) hide)
  4815. )
  4816. (property "Datasheet" "" (id 3) (at 260.35 254 0))
  4817. (property "Partkeepr" "910" (id 4) (at 67.31 402.59 0)
  4818. (effects (font (size 1.27 1.27)) hide)
  4819. )
  4820. (pin "1" (uuid 86db8180-bf4f-4448-a561-bc202b103a7e))
  4821. (pin "2" (uuid 9850d9c8-9c6e-4e8a-8bb4-aab762a1714b))
  4822. )
  4823. (sheet_instances
  4824. (path "/" (page "1"))
  4825. )
  4826. (symbol_instances
  4827. (path "/00000000-0000-0000-0000-000060ea8e0b"
  4828. (reference "AE1") (unit 1) (value "Antenne") (footprint "Connector:U.FL-R-SMT")
  4829. )
  4830. (path "/00000000-0000-0000-0000-000060dee44c"
  4831. (reference "BT1") (unit 1) (value "Pile") (footprint "Connector:CR1220")
  4832. )
  4833. (path "/00000000-0000-0000-0000-000060dc5894"
  4834. (reference "C1") (unit 1) (value "22pF") (footprint "C:0603")
  4835. )
  4836. (path "/00000000-0000-0000-0000-000060dc589b"
  4837. (reference "C2") (unit 1) (value "22pF") (footprint "C:0603")
  4838. )
  4839. (path "/00000000-0000-0000-0000-000060dc5854"
  4840. (reference "C3") (unit 1) (value "4.7µF") (footprint "C:0805")
  4841. )
  4842. (path "/00000000-0000-0000-0000-000060dc58ab"
  4843. (reference "C4") (unit 1) (value "10nF") (footprint "C:0805")
  4844. )
  4845. (path "/00000000-0000-0000-0000-000060dc5869"
  4846. (reference "C5") (unit 1) (value "1µF") (footprint "C:0805")
  4847. )
  4848. (path "/00000000-0000-0000-0000-000060dc5872"
  4849. (reference "C6") (unit 1) (value "100nF") (footprint "C:0805")
  4850. )
  4851. (path "/00000000-0000-0000-0000-000060dc58d6"
  4852. (reference "C7") (unit 1) (value "100nF") (footprint "C:0805")
  4853. )
  4854. (path "/00000000-0000-0000-0000-000060dc587b"
  4855. (reference "C8") (unit 1) (value "100nF") (footprint "C:0805")
  4856. )
  4857. (path "/00000000-0000-0000-0000-000060dc588b"
  4858. (reference "C9") (unit 1) (value "100nF") (footprint "C:0805")
  4859. )
  4860. (path "/00000000-0000-0000-0000-000060dc5884"
  4861. (reference "C10") (unit 1) (value "100nF") (footprint "C:0805")
  4862. )
  4863. (path "/00000000-0000-0000-0000-000060dc5810"
  4864. (reference "C11") (unit 1) (value "100nF") (footprint "C:0805")
  4865. )
  4866. (path "/00000000-0000-0000-0000-000060df401a"
  4867. (reference "C12") (unit 1) (value "100nF") (footprint "C:0805")
  4868. )
  4869. (path "/00000000-0000-0000-0000-000060e2fdcf"
  4870. (reference "C13") (unit 1) (value "470pF") (footprint "C:0603")
  4871. )
  4872. (path "/00000000-0000-0000-0000-000060e2f721"
  4873. (reference "C14") (unit 1) (value "2.2µF") (footprint "C:3216-18")
  4874. )
  4875. (path "/00000000-0000-0000-0000-00006156055e"
  4876. (reference "C15") (unit 1) (value "100nF") (footprint "C:0805")
  4877. )
  4878. (path "/00000000-0000-0000-0000-0000614cde8f"
  4879. (reference "C16") (unit 1) (value "100nF") (footprint "C:0805")
  4880. )
  4881. (path "/00000000-0000-0000-0000-0000614d36b8"
  4882. (reference "C17") (unit 1) (value "100nF") (footprint "C:0805")
  4883. )
  4884. (path "/00000000-0000-0000-0000-000061473591"
  4885. (reference "D1") (unit 1) (value "LED_Rouge") (footprint "LED:0805")
  4886. )
  4887. (path "/00000000-0000-0000-0000-000061473d43"
  4888. (reference "D2") (unit 1) (value "LED_Rouge") (footprint "LED:0805")
  4889. )
  4890. (path "/00000000-0000-0000-0000-000061475865"
  4891. (reference "D3") (unit 1) (value "LED_Rouge") (footprint "LED:0805")
  4892. )
  4893. (path "/00000000-0000-0000-0000-000061475d37"
  4894. (reference "D4") (unit 1) (value "LED_Rouge") (footprint "LED:0805")
  4895. )
  4896. (path "/00000000-0000-0000-0000-000060f8a74c"
  4897. (reference "D5") (unit 1) (value "LED_Rouge") (footprint "LED:0805")
  4898. )
  4899. (path "/00000000-0000-0000-0000-000060f8a766"
  4900. (reference "D6") (unit 1) (value "LED_Rouge") (footprint "LED:0805")
  4901. )
  4902. (path "/00000000-0000-0000-0000-000060f8a77a"
  4903. (reference "D7") (unit 1) (value "LED_Rouge") (footprint "LED:0805")
  4904. )
  4905. (path "/00000000-0000-0000-0000-000060f8a78e"
  4906. (reference "D8") (unit 1) (value "LED_Rouge") (footprint "LED:0805")
  4907. )
  4908. (path "/00000000-0000-0000-0000-000060dc580a"
  4909. (reference "D9") (unit 1) (value "LED_Jaune") (footprint "LED:0805")
  4910. )
  4911. (path "/00000000-0000-0000-0000-000060def388"
  4912. (reference "D10") (unit 1) (value "M4") (footprint "D:SMA")
  4913. )
  4914. (path "/00000000-0000-0000-0000-000060dc58ed"
  4915. (reference "DS1") (unit 1) (value "7segment_3") (footprint "LED:7segment_3")
  4916. )
  4917. (path "/00000000-0000-0000-0000-000060dc5827"
  4918. (reference "J1") (unit 1) (value "Micro_USB") (footprint "Connector:Micro-USB")
  4919. )
  4920. (path "/00000000-0000-0000-0000-000060eabb56"
  4921. (reference "L1") (unit 1) (value "22µH") (footprint "L:0805")
  4922. )
  4923. (path "/00000000-0000-0000-0000-000060dc58ba"
  4924. (reference "P1") (unit 1) (value "CONN_01X05") (footprint "PinHeader:PinHeader2.54_1X5")
  4925. )
  4926. (path "/00000000-0000-0000-0000-0000615b2007"
  4927. (reference "P2") (unit 1) (value "batterie") (footprint "Bornier:Bornier2.54_1x2")
  4928. )
  4929. (path "/00000000-0000-0000-0000-000060de75ac"
  4930. (reference "Q1") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4931. )
  4932. (path "/00000000-0000-0000-0000-000060f5a96e"
  4933. (reference "Q2") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4934. )
  4935. (path "/00000000-0000-0000-0000-000060f8a760"
  4936. (reference "Q3") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4937. )
  4938. (path "/00000000-0000-0000-0000-000060f5a981"
  4939. (reference "Q4") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4940. )
  4941. (path "/00000000-0000-0000-0000-000060f8a773"
  4942. (reference "Q5") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4943. )
  4944. (path "/00000000-0000-0000-0000-000060de7f4f"
  4945. (reference "Q6") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4946. )
  4947. (path "/00000000-0000-0000-0000-0000627cdab9"
  4948. (reference "Q9") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4949. )
  4950. (path "/00000000-0000-0000-0000-000060f5a995"
  4951. (reference "Q10") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4952. )
  4953. (path "/00000000-0000-0000-0000-000060f8a787"
  4954. (reference "Q11") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4955. )
  4956. (path "/00000000-0000-0000-0000-000060f5a9a9"
  4957. (reference "Q12") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4958. )
  4959. (path "/00000000-0000-0000-0000-000060f8a79b"
  4960. (reference "Q13") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4961. )
  4962. (path "/00000000-0000-0000-0000-000060de851a"
  4963. (reference "Q14") (unit 1) (value "NPN") (footprint "U:SOT23-3")
  4964. )
  4965. (path "/00000000-0000-0000-0000-000061560557"
  4966. (reference "R1") (unit 1) (value "10K") (footprint "R:0805")
  4967. )
  4968. (path "/00000000-0000-0000-0000-000060dc581c"
  4969. (reference "R2") (unit 1) (value "3.3K") (footprint "R:0805")
  4970. )
  4971. (path "/00000000-0000-0000-0000-000060dc57ea"
  4972. (reference "R3") (unit 1) (value "10K") (footprint "R:0805")
  4973. )
  4974. (path "/00000000-0000-0000-0000-000060df2ff3"
  4975. (reference "R4") (unit 1) (value "0") (footprint "R:0805_0")
  4976. )
  4977. (path "/00000000-0000-0000-0000-000060f5a967"
  4978. (reference "R5") (unit 1) (value "75") (footprint "R:0805")
  4979. )
  4980. (path "/00000000-0000-0000-0000-000060f8a759"
  4981. (reference "R6") (unit 1) (value "75") (footprint "R:0805")
  4982. )
  4983. (path "/00000000-0000-0000-0000-000060f5a97a"
  4984. (reference "R7") (unit 1) (value "75") (footprint "R:0805")
  4985. )
  4986. (path "/00000000-0000-0000-0000-000060f8a76c"
  4987. (reference "R8") (unit 1) (value "75") (footprint "R:0805")
  4988. )
  4989. (path "/00000000-0000-0000-0000-000060df3384"
  4990. (reference "R9") (unit 1) (value "0") (footprint "R:0805_0")
  4991. )
  4992. (path "/00000000-0000-0000-0000-00006274c05c"
  4993. (reference "R10") (unit 1) (value "120") (footprint "R:0805")
  4994. )
  4995. (path "/00000000-0000-0000-0000-000060f5a98e"
  4996. (reference "R11") (unit 1) (value "75") (footprint "R:0805")
  4997. )
  4998. (path "/00000000-0000-0000-0000-000060f8a780"
  4999. (reference "R12") (unit 1) (value "75") (footprint "R:0805")
  5000. )
  5001. (path "/00000000-0000-0000-0000-000060f5a9a2"
  5002. (reference "R13") (unit 1) (value "75") (footprint "R:0805")
  5003. )
  5004. (path "/00000000-0000-0000-0000-000060f8a794"
  5005. (reference "R14") (unit 1) (value "75") (footprint "R:0805")
  5006. )
  5007. (path "/00000000-0000-0000-0000-000060df3a08"
  5008. (reference "R15") (unit 1) (value "0") (footprint "R:0805_0")
  5009. )
  5010. (path "/00000000-0000-0000-0000-000060eb1ac4"
  5011. (reference "R16") (unit 1) (value "10") (footprint "R:0805")
  5012. )
  5013. (path "/00000000-0000-0000-0000-000060deef98"
  5014. (reference "R17") (unit 1) (value "1K") (footprint "R:0805")
  5015. )
  5016. (path "/42effcdd-387b-482b-ada7-613ef95546b5"
  5017. (reference "R18") (unit 1) (value "10K") (footprint "R:0805")
  5018. )
  5019. (path "/00000000-0000-0000-0000-00006145e5de"
  5020. (reference "R19") (unit 1) (value "10K") (footprint "R:0805")
  5021. )
  5022. (path "/00000000-0000-0000-0000-0000614cde88"
  5023. (reference "R20") (unit 1) (value "10K") (footprint "R:0805")
  5024. )
  5025. (path "/00000000-0000-0000-0000-0000614d36b1"
  5026. (reference "R21") (unit 1) (value "10K") (footprint "R:0805")
  5027. )
  5028. (path "/00000000-0000-0000-0000-0000616dee9f"
  5029. (reference "R22") (unit 1) (value "10K") (footprint "R:0805")
  5030. )
  5031. (path "/00000000-0000-0000-0000-000061716404"
  5032. (reference "R23") (unit 1) (value "330") (footprint "R:0805")
  5033. )
  5034. (path "/00000000-0000-0000-0000-000061724913"
  5035. (reference "R24") (unit 1) (value "330") (footprint "R:0805")
  5036. )
  5037. (path "/00000000-0000-0000-0000-000061784dc5"
  5038. (reference "R25") (unit 1) (value "330") (footprint "R:0805")
  5039. )
  5040. (path "/00000000-0000-0000-0000-000061773328"
  5041. (reference "R26") (unit 1) (value "330") (footprint "R:0805")
  5042. )
  5043. (path "/00000000-0000-0000-0000-0000617849a8"
  5044. (reference "R27") (unit 1) (value "330") (footprint "R:0805")
  5045. )
  5046. (path "/00000000-0000-0000-0000-00006177ff37"
  5047. (reference "R28") (unit 1) (value "330") (footprint "R:0805")
  5048. )
  5049. (path "/700b24a2-12dd-45ae-95a1-32facdcac1ae"
  5050. (reference "R29") (unit 1) (value "10K") (footprint "R:0805")
  5051. )
  5052. (path "/00000000-0000-0000-0000-000061784563"
  5053. (reference "R31") (unit 1) (value "330") (footprint "R:0805")
  5054. )
  5055. (path "/00000000-0000-0000-0000-00006178089d"
  5056. (reference "R32") (unit 1) (value "330") (footprint "R:0805")
  5057. )
  5058. (path "/00000000-0000-0000-0000-00006174a121"
  5059. (reference "R33") (unit 1) (value "330") (footprint "R:0805")
  5060. )
  5061. (path "/00000000-0000-0000-0000-000061784050"
  5062. (reference "R34") (unit 1) (value "330") (footprint "R:0805")
  5063. )
  5064. (path "/00000000-0000-0000-0000-000061780d7a"
  5065. (reference "R35") (unit 1) (value "330") (footprint "R:0805")
  5066. )
  5067. (path "/00000000-0000-0000-0000-000062702db6"
  5068. (reference "R36") (unit 1) (value "4.7K") (footprint "R:0805")
  5069. )
  5070. (path "/00000000-0000-0000-0000-0000626a713b"
  5071. (reference "R37") (unit 1) (value "120") (footprint "R:0805")
  5072. )
  5073. (path "/00000000-0000-0000-0000-0000626ad1c1"
  5074. (reference "R38") (unit 1) (value "120") (footprint "R:0805")
  5075. )
  5076. (path "/00000000-0000-0000-0000-0000626f20cf"
  5077. (reference "R39") (unit 1) (value "120") (footprint "R:0805")
  5078. )
  5079. (path "/00000000-0000-0000-0000-000062722372"
  5080. (reference "R40") (unit 1) (value "120") (footprint "R:0805")
  5081. )
  5082. (path "/00000000-0000-0000-0000-0000626ace34"
  5083. (reference "R41") (unit 1) (value "120") (footprint "R:0805")
  5084. )
  5085. (path "/00000000-0000-0000-0000-0000626f1de4"
  5086. (reference "R42") (unit 1) (value "120") (footprint "R:0805")
  5087. )
  5088. (path "/00000000-0000-0000-0000-0000626f2488"
  5089. (reference "R43") (unit 1) (value "120") (footprint "R:0805")
  5090. )
  5091. (path "/00000000-0000-0000-0000-0000613fa5c0"
  5092. (reference "SW1") (unit 1) (value "SK12D07VG4") (footprint "SW:SK12D07VG4")
  5093. )
  5094. (path "/00000000-0000-0000-0000-0000614b3e8e"
  5095. (reference "SW2") (unit 1) (value "nrst") (footprint "SW:1812")
  5096. )
  5097. (path "/00000000-0000-0000-0000-000061560565"
  5098. (reference "SW3") (unit 1) (value "boot") (footprint "SW:1812")
  5099. )
  5100. (path "/00000000-0000-0000-0000-0000614cde96"
  5101. (reference "SW4") (unit 1) (value "BOUTON1") (footprint "SW:4.5mmX4.5mm")
  5102. )
  5103. (path "/00000000-0000-0000-0000-0000614d36bf"
  5104. (reference "SW5") (unit 1) (value "BOUTON2") (footprint "SW:4.5mmX4.5mm")
  5105. )
  5106. (path "/00000000-0000-0000-0000-000060dc58e3"
  5107. (reference "U1") (unit 1) (value "NEO-7M") (footprint "Module:NEO-7")
  5108. )
  5109. (path "/00000000-0000-0000-0000-0000614f4620"
  5110. (reference "U2") (unit 1) (value "STM32L476RG") (footprint "U:LQFP64")
  5111. )
  5112. (path "/00000000-0000-0000-0000-000060dc5804"
  5113. (reference "U3") (unit 1) (value "STC4054") (footprint "U:TSOT23-5L")
  5114. )
  5115. (path "/00000000-0000-0000-0000-000060dc57f2"
  5116. (reference "U4") (unit 1) (value "M24C32") (footprint "U:SO8N")
  5117. )
  5118. (path "/00000000-0000-0000-0000-000060dc57ce"
  5119. (reference "U5") (unit 1) (value "CD74HC4511") (footprint "U:SO16")
  5120. )
  5121. (path "/00000000-0000-0000-0000-000060e275dc"
  5122. (reference "U6") (unit 1) (value "MIC5219-3.3") (footprint "U:SOT23-5")
  5123. )
  5124. (path "/00000000-0000-0000-0000-0000610c4b30"
  5125. (reference "U7") (unit 1) (value "STM1061N34WX6F") (footprint "U:SOT23-3")
  5126. )
  5127. (path "/00000000-0000-0000-0000-000060dc58a2"
  5128. (reference "Y1") (unit 1) (value "25Mhz") (footprint "Y:5032")
  5129. )
  5130. )
  5131. )