| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471 |
- (kicad_sch
- (version 20260306)
- (generator "eeschema")
- (generator_version "10.0")
- (uuid "c904e02d-8fa2-4c2d-aea0-a2d72c47965f")
- (paper "A4")
- (lib_symbols
- (symbol "Device:C"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "cap capacitor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "C_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 0.762) (xy 2.032 0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 -0.762) (xy 2.032 -0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "C_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 2.794)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Device:LED"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 1.016)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "D"
- (at 0 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LED"
- (at 0 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Light emitting diode"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Pins" "1=K 2=A"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "LED diode"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "LED_0_1"
- (polyline
- (pts
- (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.27 0) (xy 1.27 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.27 -1.27) (xy -1.27 1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "LED_1_1"
- (pin passive line
- (at -3.81 0 0)
- (length 2.54)
- (name "K"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 3.81 0 180)
- (length 2.54)
- (name "A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Device:R"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "R"
- (at 2.032 0 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "R"
- (at 0 0 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "R res resistor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "R_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "R_0_1"
- (rectangle
- (start -1.016 -2.54)
- (end 1.016 2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "R_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 1.27)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 1.27)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Switch:SW_Push"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 1.016)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "SW"
- (at 1.27 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "SW_Push"
- (at 0 -1.524 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 5.08 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 5.08 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Push button switch, generic, two pins"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "switch normally-open pushbutton push-button"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "SW_Push_0_1"
- (circle
- (center -2.032 0)
- (radius 0.508)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 1.27) (xy 0 3.048)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (circle
- (center 2.032 0)
- (radius 0.508)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 2.54 1.27) (xy -2.54 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin passive line
- (at -5.08 0 0)
- (length 2.54)
- (name "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 5.08 0 180)
- (length 2.54)
- (name "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:+3V3"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 0 3.556 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "+3V3_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+3V3_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:+5V"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+5V"
- (at 0 3.556 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+5V\""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "+5V_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+5V_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:GND"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -6.35 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "GND_1_1"
- (pin power_in line
- (at 0 0 270)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "transistors:YJL2312A"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "Q"
- (at 4.826 3.302 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "YJL2312A"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "YJL2312A_0_1"
- (polyline
- (pts
- (xy -1.27 -2.54) (xy -1.27 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "YJL2312A_1_1"
- (polyline
- (pts
- (xy 0 3.175) (xy 0 -3.175)
- )
- (stroke
- (width 0)
- (type dash)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 2.54 2.54) (xy 2.54 3.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 2.54 0) (xy 2.54 -3.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 1.27 -0.635) (xy 1.27 0.635) (xy 0 0)
- )
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type outline)
- )
- )
- (polyline
- (pts
- (xy 2.54 -2.54) (xy 0 -2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin input line
- (at -3.81 0 0)
- (length 2.54)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at 2.54 -6.35 90)
- (length 2.54)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_out line
- (at 2.54 6.35 270)
- (length 2.54)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- )
- (junction
- (at 189.23 125.73)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "17dc7e8a-ec90-4d97-83f7-39bc7c159a80")
- )
- (junction
- (at 189.23 110.49)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "457b7dbe-8f14-49a9-ac83-384332e5dddb")
- )
- (junction
- (at 209.55 110.49)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "fdffd77f-d750-4807-81ac-cf8f8e382611")
- )
- (wire
- (pts
- (xy 137.16 171.45) (xy 137.16 173.99)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0ed3a22d-cace-4d50-a14e-d1a11923f6c6")
- )
- (wire
- (pts
- (xy 189.23 107.95) (xy 189.23 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "11195746-cfd7-4a15-8111-7d27af0c5dcd")
- )
- (wire
- (pts
- (xy 135.89 114.3) (xy 135.89 116.84)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1e3bc241-3911-4ce1-84c1-93e2dd7895ce")
- )
- (wire
- (pts
- (xy 209.55 121.92) (xy 209.55 125.73)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2166cb75-b3eb-4c1d-a077-365ea9e4147e")
- )
- (wire
- (pts
- (xy 209.55 110.49) (xy 217.17 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "21d2bf62-a32b-40b5-9fb9-5bcfbc4b429c")
- )
- (wire
- (pts
- (xy 189.23 125.73) (xy 189.23 128.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "22c4c854-0d00-4b18-81f3-b52b68b65203")
- )
- (wire
- (pts
- (xy 189.23 110.49) (xy 189.23 113.03)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2809403c-bc16-4c62-9754-8b2303b8966a")
- )
- (wire
- (pts
- (xy 119.38 171.45) (xy 119.38 173.99)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "34b69455-ebb1-4f7d-827d-ff192a1ed97d")
- )
- (wire
- (pts
- (xy 119.38 161.29) (xy 119.38 163.83)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "36d2ad15-a870-4425-9666-e721da0e4b18")
- )
- (wire
- (pts
- (xy 189.23 110.49) (xy 198.12 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3b860d23-e25a-484c-a15d-2f23c8bb0c2d")
- )
- (wire
- (pts
- (xy 189.23 97.79) (xy 189.23 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5505ed6d-1113-45ea-9bd5-d06fd5e29b47")
- )
- (wire
- (pts
- (xy 95.25 63.5) (xy 95.25 68.58)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "59063e24-812c-425b-9605-f93057794a08")
- )
- (wire
- (pts
- (xy 130.81 99.06) (xy 153.67 99.06)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5e1eb4d2-9617-48e6-ba58-9e5030ba1516")
- )
- (wire
- (pts
- (xy 205.74 110.49) (xy 209.55 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "612fac32-b1ee-4f01-b4bb-7686dda8a1ee")
- )
- (wire
- (pts
- (xy 209.55 110.49) (xy 209.55 114.3)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6ec53e0f-722a-4f17-a4db-9c46231e34c4")
- )
- (wire
- (pts
- (xy 137.16 147.32) (xy 113.03 147.32)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "71950666-21e9-4382-978d-42aead53ec35")
- )
- (wire
- (pts
- (xy 135.89 124.46) (xy 135.89 127)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7d90fafa-c72c-45bf-a19b-4aeba90f333d")
- )
- (wire
- (pts
- (xy 189.23 125.73) (xy 209.55 125.73)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "910e369c-4da4-4ede-a99b-c1857b8c1ef4")
- )
- (wire
- (pts
- (xy 137.16 161.29) (xy 137.16 163.83)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9434abce-dac3-40a6-9a2d-8af2f19a4341")
- )
- (wire
- (pts
- (xy 137.16 153.67) (xy 137.16 147.32)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9b43f3d6-a0c1-4990-a308-2f641940e284")
- )
- (wire
- (pts
- (xy 135.89 101.6) (xy 135.89 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b3552d93-3e1d-4d8d-8bcc-0349fb5e35c0")
- )
- (wire
- (pts
- (xy 153.67 99.06) (xy 153.67 106.68)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b8bfec2a-6d89-42ae-a0f9-bf1c9e5c8c30")
- )
- (wire
- (pts
- (xy 95.25 68.58) (xy 92.71 68.58)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bb33bef5-f0d4-4642-b469-33ed694749b5")
- )
- (wire
- (pts
- (xy 95.25 48.26) (xy 95.25 55.88)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bbbe2930-2c26-4143-9814-c05627c5d76e")
- )
- (wire
- (pts
- (xy 130.81 101.6) (xy 135.89 101.6)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bcbedd8f-312c-4efa-ab46-a9c4c31e36c7")
- )
- (wire
- (pts
- (xy 189.23 123.19) (xy 189.23 125.73)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c070e9ae-6ce3-40ba-b32e-63da85c4f74d")
- )
- (wire
- (pts
- (xy 113.03 149.86) (xy 119.38 149.86)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c5b96db0-ff12-4a32-849e-d1609959b4f3")
- )
- (wire
- (pts
- (xy 86.36 48.26) (xy 86.36 62.23)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "daa52f17-d7d3-461d-b34e-bc176e4a52f1")
- )
- (wire
- (pts
- (xy 153.67 124.46) (xy 153.67 127)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e123afa1-9810-4ee6-a8e6-223af49080e2")
- )
- (wire
- (pts
- (xy 119.38 149.86) (xy 119.38 153.67)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e3e19d5b-5e96-45cf-a8ca-a14d38d758f3")
- )
- (wire
- (pts
- (xy 69.85 68.58) (xy 80.01 68.58)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f60e5147-a5e3-4e24-809f-a42b16bbc8f4")
- )
- (wire
- (pts
- (xy 153.67 114.3) (xy 153.67 116.84)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ff8eb437-63ab-4ed6-aefd-85baadb14877")
- )
- (hierarchical_label "RF_LED"
- (shape input)
- (at 130.81 101.6 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "5ef59304-d2c2-4c35-88f5-4a7df343fa10")
- )
- (hierarchical_label "STATUS"
- (shape input)
- (at 130.81 99.06 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "6f115004-3d16-4e15-8a8e-1fb9dee3d42a")
- )
- (hierarchical_label "SWIO"
- (shape bidirectional)
- (at 68.58 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "99959d8e-e7df-4668-871e-f8dbd7784aa2")
- )
- (hierarchical_label "5V"
- (shape input)
- (at 113.03 147.32 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "cfd62bb1-3c6a-4884-8182-d4ed948908fc")
- )
- (hierarchical_label "LEDS_CHAIN"
- (shape input)
- (at 69.85 68.58 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "d1afcbb4-087a-4d8b-bc87-07950234d4ff")
- )
- (hierarchical_label "SWITCH"
- (shape output)
- (at 217.17 110.49 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "e787c16d-3448-4e23-b3c3-baa04fa94efe")
- )
- (hierarchical_label "3V3"
- (shape input)
- (at 113.03 149.86 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "fa72e497-15a4-4d56-bcc0-277125e33309")
- )
- (symbol
- (lib_id "Device:LED")
- (at 137.16 167.64 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "154576c5-719f-406b-ac11-072d7ee6136a")
- (property "Reference" "D8"
- (at 138.43 166.37 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "RED"
- (at 138.43 168.91 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
- (at 137.16 167.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 137.16 167.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Light emitting diode"
- (at 137.16 167.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Pins" "1=K 2=A"
- (at 137.16 167.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "7effe012-641b-48e3-aaa8-7320fc48927b")
- )
- (pin "1"
- (uuid "5e004c4e-76e8-4017-8050-82a3833ee8e6")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "D8")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 86.36 48.26 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "15b42e87-12ff-4b2d-9af8-dd7cd2a40c1d")
- (property "Reference" "#PWR050"
- (at 86.36 52.07 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 86.36 43.18 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 86.36 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 86.36 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 86.36 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "4148e362-fb61-43e8-8229-c1b48172082c")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "#PWR050")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 189.23 97.79 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "480d7a46-8b84-4c31-b598-438af8fcf97e")
- (property "Reference" "#PWR033"
- (at 189.23 101.6 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 189.23 92.71 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 189.23 97.79 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 189.23 97.79 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 189.23 97.79 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "06d54146-f05c-46c0-a4ee-18c48b280d25")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "#PWR033")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Switch:SW_Push")
- (at 189.23 118.11 270)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "4a0ae14c-9858-4615-aed7-42f50662836d")
- (property "Reference" "SW1"
- (at 181.864 120.142 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "SWITCH"
- (at 181.864 122.174 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Button_Switch_SMD:SW_SPST_FSMSM"
- (at 194.31 118.11 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 194.31 118.11 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Push button switch, generic, two pins"
- (at 189.23 118.11 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "fa0ad922-4ec5-4c5f-8954-edf2b27094cb")
- )
- (pin "2"
- (uuid "9795c592-7135-4a7a-b61a-f6412779d4d7")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "SW1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 137.16 173.99 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "4d2dcc8d-0831-488d-a447-fe796b0f3602")
- (property "Reference" "#PWR035"
- (at 137.16 180.34 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 137.16 179.07 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 137.16 173.99 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 137.16 173.99 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 137.16 173.99 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "58ebbd72-887b-4b74-96d4-a4cee3f55d50")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "#PWR035")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 189.23 128.27 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "5e8fe89d-a111-494d-9a44-fee88032bc39")
- (property "Reference" "#PWR032"
- (at 189.23 134.62 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 189.23 133.35 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 189.23 128.27 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 189.23 128.27 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 189.23 128.27 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "de47c1c8-b178-4e74-bbda-8268d90eb2f3")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "#PWR032")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "transistors:YJL2312A")
- (at 86.36 66.04 270)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "5ff12a34-a741-4ba7-8f77-42c62d064800")
- (property "Reference" "Q5"
- (at 88.138 63.5 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "YJL2312A"
- (at 86.36 70.104 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
- (at 86.36 66.04 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://www.tme.eu/Document/97bcb0763ea55005599225943cb40839/YJL2312A.pdf"
- (at 86.36 66.04 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 86.36 66.04 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "fafc240c-4ecc-4b15-b9cc-d2d71a02b471")
- )
- (pin "3"
- (uuid "552fe43b-33fb-4257-9336-61a973ea9a23")
- )
- (pin "1"
- (uuid "9af83281-fcd5-46f0-bacd-ff010b1c7d92")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "Q5")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 135.89 127 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "6e9861f8-9ee9-4406-aa1f-ecc8f19e6547")
- (property "Reference" "#PWR030"
- (at 135.89 133.35 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 135.89 132.08 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 135.89 127 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 135.89 127 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 135.89 127 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "152a6d92-0d60-43a9-9a70-b2a299aadcea")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "#PWR030")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 209.55 118.11 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "79a630b4-d8c4-483a-b4f5-2f711f692ffb")
- (property "Reference" "C11"
- (at 209.55 116.078 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 209.55 120.142 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
- (at 210.5152 121.92 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 209.55 118.11 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 209.55 118.11 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "b66e9192-64e2-4604-ada7-711f4a9b9888")
- )
- (pin "1"
- (uuid "972cd201-327c-4f0e-aaa4-763931204924")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "C11")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:LED")
- (at 119.38 167.64 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "7fe37b18-2a36-4485-8765-1d22563b8507")
- (property "Reference" "D7"
- (at 120.65 166.37 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "RED"
- (at 120.65 168.91 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
- (at 119.38 167.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 119.38 167.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Light emitting diode"
- (at 119.38 167.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Pins" "1=K 2=A"
- (at 119.38 167.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "ee829bf6-8844-4e6f-95f3-e067b6026ea6")
- )
- (pin "1"
- (uuid "252038f6-829b-4588-867c-fa936b7fa6f6")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "D7")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:LED")
- (at 153.67 120.65 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "86e291a8-0b4d-4c19-8ee9-7e27b9d7c9a7")
- (property "Reference" "D6"
- (at 154.94 119.38 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "RED"
- (at 154.94 121.92 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
- (at 153.67 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 153.67 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Light emitting diode"
- (at 153.67 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Pins" "1=K 2=A"
- (at 153.67 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "eba49ba6-ca67-41ff-aa6e-07cc53615f9c")
- )
- (pin "1"
- (uuid "b44200e1-9b75-4bf4-8017-ec3822d7da26")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "D6")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 119.38 173.99 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "953a4ceb-b758-4198-a5dd-c71bdbecf84b")
- (property "Reference" "#PWR034"
- (at 119.38 180.34 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 119.38 179.07 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 119.38 173.99 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 119.38 173.99 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 119.38 173.99 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "8fcfefb4-d8ee-4452-93c4-07f1a3ca5ca3")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "#PWR034")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 137.16 157.48 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "a22f15db-8d8d-4b9a-a274-3a59aad77f53")
- (property "Reference" "R24"
- (at 138.176 156.21 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "330R"
- (at 138.176 158.75 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 135.382 157.48 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 137.16 157.48 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 137.16 157.48 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "bb4779df-c256-4c46-ad6c-eaa940a82ee8")
- )
- (pin "1"
- (uuid "230fa076-5be1-4fb2-b3ec-4537abe8226e")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "R24")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 135.89 110.49 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "a637e21f-7207-4df0-af9f-3f5013c7c48c")
- (property "Reference" "R20"
- (at 136.906 109.22 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "330R"
- (at 136.906 111.76 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 134.112 110.49 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 135.89 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 135.89 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "ac6e28fc-cb9e-45dc-a138-0703243cc007")
- )
- (pin "1"
- (uuid "3b2ce436-9307-40ea-9f2f-7db19726a6a8")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "R20")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 153.67 110.49 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "c164f6f6-38d0-4bb9-986e-34b227fe3e0f")
- (property "Reference" "R19"
- (at 154.686 109.22 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "330R"
- (at 154.686 111.76 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 151.892 110.49 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 153.67 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 153.67 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "a4e5f47c-0e0b-4864-a398-1236d44f4b3b")
- )
- (pin "1"
- (uuid "1ecfba3d-bf39-451b-b5dc-55fdc8848c27")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "R19")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 119.38 157.48 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "d4c99743-9a99-4115-a4bb-58eb562a7f9d")
- (property "Reference" "R23"
- (at 120.396 156.21 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "330R"
- (at 120.396 158.75 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 117.602 157.48 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 119.38 157.48 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 119.38 157.48 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "b9eae60a-0683-49bd-b14b-21086a06792e")
- )
- (pin "1"
- (uuid "2c07a628-298c-47f1-8156-f468d1787060")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "R23")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 153.67 127 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "d8e3c2c4-ecc1-4e72-9004-d53a79a146a0")
- (property "Reference" "#PWR031"
- (at 153.67 133.35 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 153.67 132.08 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 153.67 127 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 153.67 127 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 153.67 127 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "032e755d-884d-4e3e-a2bd-c256d225510d")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "#PWR031")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:LED")
- (at 135.89 120.65 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "e6d3ca9c-0801-4246-814c-e3f7068a13f4")
- (property "Reference" "D1"
- (at 137.16 119.38 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "RED"
- (at 137.16 121.92 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
- (at 135.89 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 135.89 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Light emitting diode"
- (at 135.89 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Pins" "1=K 2=A"
- (at 135.89 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "102fe718-133c-4c72-96ad-a5525834c450")
- )
- (pin "1"
- (uuid "4d10053b-be0d-4fc4-a7da-ef61d75d43db")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "D1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+5V")
- (at 95.25 48.26 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "edc1a7d5-bb01-4549-b42e-4cddba5d39d6")
- (property "Reference" "#PWR049"
- (at 95.25 52.07 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+5V"
- (at 95.25 43.18 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 95.25 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 95.25 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+5V\""
- (at 95.25 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "00d82711-27b9-432c-8489-7c7e5299e581")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "#PWR049")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 189.23 104.14 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "f0d454f0-0b99-4ff6-b8b3-1620ea50c811")
- (property "Reference" "R21"
- (at 190.246 102.87 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "5k1"
- (at 190.246 105.41 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 187.452 104.14 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 189.23 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 189.23 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "81d50b19-98e4-4740-a2ee-8e580a300220")
- )
- (pin "1"
- (uuid "3b63bfd3-ffb5-4973-af5c-22615568ec22")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "R21")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 201.93 110.49 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "f3bedac5-b99b-46e7-befc-165282a6c0c3")
- (property "Reference" "R22"
- (at 203.962 108.458 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "5k1"
- (at 203.962 112.522 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 201.93 112.268 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 201.93 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 201.93 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "5b79c302-a388-4a73-8c79-c3117e1bf1d4")
- )
- (pin "1"
- (uuid "12c1285a-83ad-4f6f-94bb-cdd7ef4d9bd4")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "R22")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 95.25 59.69 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "fd04ddc7-5236-4f57-a5e2-e2d152620981")
- (property "Reference" "R26"
- (at 96.266 58.42 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "10k"
- (at 96.266 60.96 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 93.472 59.69 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 95.25 59.69 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 95.25 59.69 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "a4c304cc-6178-41f4-9c79-c4cbb8a5db31")
- )
- (pin "1"
- (uuid "52f6f7fe-7328-41b2-9f83-514905b3556e")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/c822a6e7-989f-4861-ae60-5400a28e9960"
- (reference "R26")
- (unit 1)
- )
- )
- )
- )
- )
|