GPS.kicad_sch 216 KB

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