| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371 |
- (kicad_sch
- (version 20260306)
- (generator "eeschema")
- (generator_version "10.0")
- (uuid "e7d6ab0c-dd97-4b44-b699-71d4582eb977")
- (paper "A4")
- (lib_symbols
- (symbol "Device:D"
- (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" "D"
- (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" "Diode"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Device" "D"
- (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" "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" "TO-???* *_Diode_* *SingleDiode* D_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "D_0_1"
- (polyline
- (pts
- (xy -1.27 1.27) (xy -1.27 -1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 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)
- )
- )
- (polyline
- (pts
- (xy 1.27 0) (xy -1.27 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "D_1_1"
- (pin passive line
- (at -3.81 0 0)
- (length 2.54)
- (name "K"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 3.81 0 180)
- (length 2.54)
- (name "A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (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 "Motor:Motor_DC_ALT"
- (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" "M"
- (at 2.54 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Motor_DC_ALT"
- (at 2.54 -5.08 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- )
- )
- (property "Footprint" ""
- (at 0 -2.286 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 -2.286 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "DC Motor, alternative symbol"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "DC Motor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "PinHeader*P2.54mm* TerminalBlock*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "Motor_DC_ALT_0_0"
- (polyline
- (pts
- (xy -1.27 1.27) (xy -1.27 2.032) (xy 1.27 2.032) (xy 1.27 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.27 -3.302) (xy -1.27 0.508) (xy 0 -2.032) (xy 1.27 0.508) (xy 1.27 -3.302)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.27 -4.318) (xy -1.27 -5.08) (xy 1.27 -5.08) (xy 1.27 -4.318)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (circle
- (center 0 -1.524)
- (radius 2.9718)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "Motor_DC_ALT_0_1"
- (polyline
- (pts
- (xy 0 2.032) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "Motor_DC_ALT_1_1"
- (pin passive line
- (at 0 5.08 270)
- (length 2.54)
- (name "+"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -7.62 90)
- (length 2.54)
- (name "-"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:GNDPWR"
- (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 -5.08 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 0 -3.302 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 -1.27 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 -1.27 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 \"GNDPWR\" , global 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 ground"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "GNDPWR_0_1"
- (polyline
- (pts
- (xy -1.016 -1.27) (xy -1.27 -2.032) (xy -1.27 -2.032)
- )
- (stroke
- (width 0.2032)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -0.508 -1.27) (xy -0.762 -2.032) (xy -0.762 -2.032)
- )
- (stroke
- (width 0.2032)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 -1.27) (xy 0 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 -1.27) (xy -0.254 -2.032) (xy -0.254 -2.032)
- )
- (stroke
- (width 0.2032)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0.508 -1.27) (xy 0.254 -2.032) (xy 0.254 -2.032)
- )
- (stroke
- (width 0.2032)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.016 -1.27) (xy -1.016 -1.27) (xy -1.016 -1.27)
- )
- (stroke
- (width 0.2032)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.016 -1.27) (xy 0.762 -2.032) (xy 0.762 -2.032) (xy 0.762 -2.032)
- )
- (stroke
- (width 0.2032)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "GNDPWR_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 "power:VCC"
- (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" "VCC"
- (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 \"VCC\""
- (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 "VCC_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 "VCC_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 "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 133.35 107.95)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "025d0e35-a688-4b87-bedf-c2c6266652f8")
- )
- (junction
- (at 184.15 107.95)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "137cae21-1998-4b9b-bcb1-d0cf5f7d3c36")
- )
- (junction
- (at 133.35 123.19)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "143a7946-fdc7-4f46-a09f-08a35a6b5704")
- )
- (junction
- (at 163.83 72.39)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1839f19b-d001-403c-b027-c95e739da996")
- )
- (junction
- (at 184.15 49.53)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2779ee77-e5fa-4352-bb3e-9c745ab552a0")
- )
- (junction
- (at 163.83 130.81)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "45213b25-dc1b-42cd-a8d3-deccf4aa8178")
- )
- (junction
- (at 184.15 64.77)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "4fab7385-09b4-48ac-8c29-250b5dbb3cbd")
- )
- (junction
- (at 113.03 72.39)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "5a9f4335-d9d5-467c-ab31-dc3127aaf9d8")
- )
- (junction
- (at 133.35 64.77)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "5ebc2229-aab1-4170-a4cf-e5ecaac85490")
- )
- (junction
- (at 113.03 130.81)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "93db213f-0a96-4833-beab-bfbbf78db61a")
- )
- (junction
- (at 133.35 49.53)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "95a0368e-7fe4-41a5-9039-69a0a6936147")
- )
- (junction
- (at 184.15 123.19)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c904ecbb-15d0-4bd7-aaad-2d9962ac4404")
- )
- (wire
- (pts
- (xy 113.03 140.97) (xy 113.03 142.24)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "02732568-0a4f-42bf-9a4e-5f75a7fbb267")
- )
- (wire
- (pts
- (xy 163.83 133.35) (xy 163.83 130.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "03953b78-25ab-41ee-bed9-14bf3a87af3a")
- )
- (wire
- (pts
- (xy 133.35 63.5) (xy 133.35 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "09971513-cf8f-4a10-b811-58f24a2f0157")
- )
- (wire
- (pts
- (xy 184.15 64.77) (xy 184.15 66.04)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1776a3b0-6d6f-4bef-ae25-e3da60374f4e")
- )
- (wire
- (pts
- (xy 184.15 78.74) (xy 184.15 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1de57d4d-5bf7-4889-aa61-cf63073f9575")
- )
- (wire
- (pts
- (xy 124.46 130.81) (xy 127 130.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "217bf419-498d-41f1-a74a-672205631c61")
- )
- (wire
- (pts
- (xy 113.03 72.39) (xy 116.84 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "22ac677f-0c05-4c43-a21f-6ea40af1668b")
- )
- (wire
- (pts
- (xy 118.11 49.53) (xy 133.35 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2abaa86f-f305-4652-b978-92fc20d18a5f")
- )
- (wire
- (pts
- (xy 168.91 49.53) (xy 184.15 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2cc92e2c-d35f-4599-b23b-c67c96a46291")
- )
- (wire
- (pts
- (xy 163.83 82.55) (xy 163.83 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "33488a89-35a0-4c1e-aa75-d02476fc6a21")
- )
- (wire
- (pts
- (xy 168.91 123.19) (xy 184.15 123.19)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "37cd71cf-0f41-4194-af09-e5b339c2635e")
- )
- (wire
- (pts
- (xy 118.11 107.95) (xy 118.11 111.76)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "39094d5d-be69-4664-ae5d-7bb9ee895a33")
- )
- (wire
- (pts
- (xy 113.03 74.93) (xy 113.03 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3ad9fc4e-9c19-47ba-896c-f082a9b4bf38")
- )
- (wire
- (pts
- (xy 133.35 107.95) (xy 133.35 109.22)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3bc3ac13-a4e5-44b3-a305-60b7464d1b62")
- )
- (wire
- (pts
- (xy 113.03 130.81) (xy 116.84 130.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "41ba7e1d-b3c4-4661-bbb6-051282683fb0")
- )
- (wire
- (pts
- (xy 184.15 121.92) (xy 184.15 123.19)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "431b9d58-c822-4f9f-91cd-0f4d3c9149ad")
- )
- (wire
- (pts
- (xy 118.11 119.38) (xy 118.11 123.19)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "438dbf9e-6ef6-477b-9662-9708daa4686c")
- )
- (wire
- (pts
- (xy 184.15 49.53) (xy 184.15 50.8)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "48d07e62-5730-47fc-8bfe-28d5afcf4a10")
- )
- (wire
- (pts
- (xy 118.11 107.95) (xy 133.35 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "49d1c655-b8b4-4ae6-a29e-0ed2069681bb")
- )
- (wire
- (pts
- (xy 118.11 49.53) (xy 118.11 53.34)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "49fa476f-cfe0-485e-a8cf-031e9f018521")
- )
- (wire
- (pts
- (xy 133.35 121.92) (xy 133.35 123.19)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4ae6f812-c392-40ea-aa0e-b3362794c6c4")
- )
- (wire
- (pts
- (xy 161.29 72.39) (xy 163.83 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4bbcf232-dbcf-45e9-b43d-9fc62251b8c9")
- )
- (wire
- (pts
- (xy 118.11 60.96) (xy 118.11 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "59ed1906-9488-4097-a1a8-2a53b283fb09")
- )
- (wire
- (pts
- (xy 113.03 82.55) (xy 113.03 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "61e57e92-e5bd-44d9-84e6-41fb767eca50")
- )
- (wire
- (pts
- (xy 133.35 49.53) (xy 133.35 50.8)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "64fd690a-977a-4d81-8c53-0d45a5ba6fc8")
- )
- (wire
- (pts
- (xy 168.91 107.95) (xy 168.91 111.76)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "66579e6c-df67-45b6-934d-a29af842cb21")
- )
- (wire
- (pts
- (xy 175.26 130.81) (xy 177.8 130.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "73b77e49-f1d4-435c-86ca-7f8c965353a0")
- )
- (wire
- (pts
- (xy 168.91 49.53) (xy 168.91 53.34)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "73c08ac1-40d4-423b-8fcb-166626556c91")
- )
- (wire
- (pts
- (xy 124.46 72.39) (xy 127 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "77bf719b-af23-43c8-86eb-749e19e41836")
- )
- (wire
- (pts
- (xy 168.91 119.38) (xy 168.91 123.19)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7ec30930-6294-4125-8954-4a7fc2f2c893")
- )
- (wire
- (pts
- (xy 133.35 48.26) (xy 133.35 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8090f456-21dd-454e-ac5e-dc39da549eec")
- )
- (wire
- (pts
- (xy 184.15 48.26) (xy 184.15 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8acf5bc9-8467-461c-a1ba-85d0e50a909d")
- )
- (wire
- (pts
- (xy 118.11 123.19) (xy 133.35 123.19)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8bc1cb69-1e44-47de-b120-1ee33e31dbf8")
- )
- (wire
- (pts
- (xy 184.15 63.5) (xy 184.15 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8e214cdf-9c37-49a6-8dc6-a7b508503e3e")
- )
- (wire
- (pts
- (xy 118.11 64.77) (xy 133.35 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "99b55f4c-b6e8-4f8e-a2a7-a3f4947a176c")
- )
- (wire
- (pts
- (xy 133.35 137.16) (xy 133.35 138.43)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9b85c891-b4b3-4d39-84e1-fb5c7f5461aa")
- )
- (wire
- (pts
- (xy 184.15 106.68) (xy 184.15 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a1fa5b4a-dc50-4551-93de-ecf5cbc6432a")
- )
- (wire
- (pts
- (xy 133.35 64.77) (xy 133.35 66.04)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a2b1f8e0-8547-4374-ac1a-ecf0caba7bae")
- )
- (wire
- (pts
- (xy 133.35 78.74) (xy 133.35 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a7e9a350-ade3-4c4b-9a0f-de20c129ca12")
- )
- (wire
- (pts
- (xy 113.03 133.35) (xy 113.03 130.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ab04f3f6-771f-4270-bc16-550079133f43")
- )
- (wire
- (pts
- (xy 161.29 130.81) (xy 163.83 130.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "acc7f5b1-74cb-4a87-a270-71dc96099d2c")
- )
- (wire
- (pts
- (xy 133.35 106.68) (xy 133.35 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ae323e5f-33d6-494b-929d-cd9756a2d340")
- )
- (wire
- (pts
- (xy 175.26 72.39) (xy 177.8 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ae6f637b-a984-4339-905c-e6591622e71a")
- )
- (wire
- (pts
- (xy 163.83 140.97) (xy 163.83 142.24)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ae852e76-ae9d-418e-901f-99fcc3ddaeba")
- )
- (wire
- (pts
- (xy 110.49 72.39) (xy 113.03 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b14682a9-c97b-414a-889f-1d56048ca3e9")
- )
- (wire
- (pts
- (xy 133.35 123.19) (xy 133.35 124.46)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bf96c27a-78df-4c5d-9a9d-4715eccfe33c")
- )
- (wire
- (pts
- (xy 184.15 123.19) (xy 184.15 124.46)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c24f7d86-aed9-4ae1-a943-c8fb5db20290")
- )
- (wire
- (pts
- (xy 110.49 130.81) (xy 113.03 130.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c8597388-7cd4-4e95-b845-f32cf28de85d")
- )
- (wire
- (pts
- (xy 184.15 137.16) (xy 184.15 138.43)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cd19b510-5a68-47bc-a0c9-bab2a5107eb0")
- )
- (wire
- (pts
- (xy 163.83 72.39) (xy 167.64 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cf664d6a-f02c-425e-8acd-672325175065")
- )
- (wire
- (pts
- (xy 163.83 74.93) (xy 163.83 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d413d388-045b-4879-bc0f-e9ade3e2ea91")
- )
- (wire
- (pts
- (xy 163.83 130.81) (xy 167.64 130.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d69c4594-a7eb-4570-b526-8d05fdc54ba5")
- )
- (wire
- (pts
- (xy 184.15 107.95) (xy 184.15 109.22)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d8d50ee5-eee0-4405-943b-9b4ad55d6c46")
- )
- (wire
- (pts
- (xy 168.91 64.77) (xy 184.15 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e607626a-eb77-4a4e-a7f9-ad7d26391121")
- )
- (wire
- (pts
- (xy 168.91 107.95) (xy 184.15 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e9826e62-37e0-4602-9924-a7e06eed5321")
- )
- (wire
- (pts
- (xy 168.91 60.96) (xy 168.91 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f0547f9e-9005-40b5-8e79-4b21c3cfb881")
- )
- (hierarchical_label "M2A"
- (shape input)
- (at 110.49 130.81 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "1fb7f9b8-5123-43c7-9060-17ea942ab80f")
- )
- (hierarchical_label "M2B"
- (shape input)
- (at 161.29 130.81 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "b2d85837-3c0d-41ef-9625-9d65c79725fa")
- )
- (hierarchical_label "M1B"
- (shape input)
- (at 161.29 72.39 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "e03b55c1-1b64-4e56-8ce2-7402900ea6db")
- )
- (hierarchical_label "M1A"
- (shape input)
- (at 110.49 72.39 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "fce9672f-ad9a-4511-88b8-59d1dc21f888")
- )
- (symbol
- (lib_id "power:VCC")
- (at 133.35 106.68 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 "0c71aeb1-b313-4e28-9bce-d57b73757e76")
- (property "Reference" "#PWR08"
- (at 133.35 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "VCC"
- (at 133.35 101.6 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 133.35 106.68 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 133.35 106.68 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 \"VCC\""
- (at 133.35 106.68 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "c5c0189f-d210-498c-b5ce-ecec19efd973")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR08")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GNDPWR")
- (at 113.03 142.24 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 "16c0379d-e7be-4f6b-879c-840bab874be9")
- (property "Reference" "#PWR010"
- (at 113.03 147.32 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 112.903 146.05 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 113.03 143.51 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 113.03 143.51 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 \"GNDPWR\" , global ground"
- (at 113.03 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "3745b648-54d8-4850-80fb-b1894ce940f4")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR010")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 120.65 72.39 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "24f82384-c110-4bfe-9a0e-07b1381b48ae")
- (property "Reference" "R1"
- (at 120.65 70.358 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "100"
- (at 120.65 74.676 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 120.65 74.168 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 120.65 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 120.65 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "3453ea07-a2a1-49ba-8a99-1bdb7882527c")
- )
- (pin "1"
- (uuid "d7b4182e-73f9-4e61-81e5-85bff657822e")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "R1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Motor:Motor_DC_ALT")
- (at 184.15 55.88 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 "33c651ac-6708-483e-b5de-edcffd3bb314")
- (property "Reference" "M1B1"
- (at 187.96 55.8799 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "0716"
- (at 187.96 58.4199 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
- (at 184.15 58.166 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 184.15 58.166 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "DC Motor, alternative symbol"
- (at 184.15 55.88 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "34b9d1f5-8a2f-4c7e-8ac5-e9ecc3a1b5e4")
- )
- (pin "1"
- (uuid "0c522460-ab1b-4365-b57b-bd0cead6b0c5")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "M1B1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:D")
- (at 118.11 57.15 270)
- (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 "384cc981-04b0-4257-90cc-d9466043e44f")
- (property "Reference" "D1"
- (at 120.65 55.8799 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "D"
- (at 120.65 58.4199 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Diode_SMD:D_SMA"
- (at 118.11 57.15 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 118.11 57.15 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Diode"
- (at 118.11 57.15 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Device" "D"
- (at 118.11 57.15 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 118.11 57.15 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "de75b384-4985-48e6-8bb9-c3cf52b7e485")
- )
- (pin "1"
- (uuid "cb13478e-28df-4d15-940a-67ce86084b9d")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "D1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GNDPWR")
- (at 184.15 80.01 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 "4c3e86a8-ab95-48eb-8f6a-8298f6c08cfa")
- (property "Reference" "#PWR06"
- (at 184.15 85.09 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 184.023 83.82 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 184.15 81.28 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 184.15 81.28 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 \"GNDPWR\" , global ground"
- (at 184.15 80.01 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "c5310584-dc1e-4cfb-9637-c1b875d12368")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR06")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Motor:Motor_DC_ALT")
- (at 133.35 114.3 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 "4e5e25f0-7c00-4b16-ac41-df34d32eeb27")
- (property "Reference" "M2A1"
- (at 137.16 114.2999 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "0716"
- (at 137.16 116.8399 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
- (at 133.35 116.586 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 133.35 116.586 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "DC Motor, alternative symbol"
- (at 133.35 114.3 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "b3731106-8292-45ce-a06b-bf169e941c3c")
- )
- (pin "1"
- (uuid "96a671b2-7d8d-485a-a7a1-2942ad1646a9")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "M2A1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 120.65 130.81 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "50393f9a-6059-4ed6-9716-fa8158fb636b")
- (property "Reference" "R6"
- (at 120.65 128.778 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "100"
- (at 120.65 133.096 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 120.65 132.588 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 120.65 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 120.65 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "252e407f-b1e5-40da-8ee3-5baa5015ec55")
- )
- (pin "1"
- (uuid "bd2b186b-97bd-452e-ba76-7c2aed3c7ee9")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "R6")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GNDPWR")
- (at 163.83 142.24 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 "50f86f63-1925-4bbe-9b5b-4dd12973b2a6")
- (property "Reference" "#PWR049"
- (at 163.83 147.32 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 163.703 146.05 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 163.83 143.51 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 163.83 143.51 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 \"GNDPWR\" , global ground"
- (at 163.83 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "ccec4488-cada-4056-a141-d91b059e3ed5")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR049")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 163.83 78.74 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "5adbf8e8-c67a-412e-9a49-c706a2709f48")
- (property "Reference" "R3"
- (at 166.37 77.978 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 166.878 79.756 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 165.608 78.74 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 163.83 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 163.83 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "0e591212-3890-40a0-ad64-78f5b7efb232")
- )
- (pin "1"
- (uuid "0953f15c-194f-40fa-aaca-6da666ef646c")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "R3")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GNDPWR")
- (at 163.83 83.82 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 "5cef6870-d9a9-45a4-8ef5-0dca340f76f0")
- (property "Reference" "#PWR050"
- (at 163.83 88.9 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 163.703 87.63 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 163.83 85.09 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 163.83 85.09 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 \"GNDPWR\" , global ground"
- (at 163.83 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "7f85cbd5-e25c-468f-95fc-2ba418722ab2")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR050")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:D")
- (at 168.91 57.15 270)
- (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 "5d541dd7-1d21-48b1-a61c-5bbd424e6b0d")
- (property "Reference" "D2"
- (at 171.45 55.8799 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "D"
- (at 171.45 58.4199 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Diode_SMD:D_SMA"
- (at 168.91 57.15 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 168.91 57.15 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Diode"
- (at 168.91 57.15 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Device" "D"
- (at 168.91 57.15 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 168.91 57.15 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "0a787f30-cfb9-4c21-bd1c-4fcb9b0848bc")
- )
- (pin "1"
- (uuid "0b57d689-2ee4-4a54-beeb-180f3253b9e0")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "D2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GNDPWR")
- (at 133.35 138.43 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 "61958431-1956-437d-9276-16fd6f9c98de")
- (property "Reference" "#PWR09"
- (at 133.35 143.51 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 133.223 142.24 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 133.35 139.7 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 133.35 139.7 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 \"GNDPWR\" , global ground"
- (at 133.35 138.43 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "b3b71568-4c07-4ee0-91d5-23c068e2af8f")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR09")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GNDPWR")
- (at 133.35 80.01 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 "79223f6b-d7d4-4e9c-bca2-bc2a1e75a241")
- (property "Reference" "#PWR01"
- (at 133.35 85.09 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 133.223 83.82 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 133.35 81.28 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 133.35 81.28 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 \"GNDPWR\" , global ground"
- (at 133.35 80.01 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "dc4da7a7-ba73-4287-b28a-dc23dc57f9c6")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR01")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 113.03 78.74 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "7b2bf534-2d2b-40db-8746-d9464f49f01b")
- (property "Reference" "R2"
- (at 115.57 77.978 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 116.078 79.756 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 114.808 78.74 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 113.03 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 113.03 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "345fed4a-077d-4801-8118-18f07e4babbf")
- )
- (pin "1"
- (uuid "0e7e4057-288a-4e15-99ba-92917cea15a7")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "R2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:D")
- (at 168.91 115.57 270)
- (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 "7d3c6604-7f40-49e9-a2f1-a689c76b83b2")
- (property "Reference" "D4"
- (at 171.45 114.2999 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "D"
- (at 171.45 116.8399 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Diode_SMD:D_SMA"
- (at 168.91 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 168.91 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Diode"
- (at 168.91 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Device" "D"
- (at 168.91 115.57 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 168.91 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "e2237a49-c780-41c7-97f8-5af630453fc8")
- )
- (pin "1"
- (uuid "62b638a7-f55b-4afd-94c5-1bc502a19a9f")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "D4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "transistors:YJL2312A")
- (at 130.81 72.39 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 "7daabd98-ee3f-4bb0-b0d2-27274b378b06")
- (property "Reference" "Q1"
- (at 134.62 71.1199 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "YJL2312A"
- (at 134.62 73.6599 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
- (at 130.81 72.39 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 130.81 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 130.81 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "2ca98288-70ad-4011-8016-0c1d4b8ffda8")
- )
- (pin "3"
- (uuid "90ed91bd-0cd3-4ea9-b85b-c873b9c43928")
- )
- (pin "1"
- (uuid "1dadc9fb-c73f-4279-b586-b8cb6551630a")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "Q1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Motor:Motor_DC_ALT")
- (at 184.15 114.3 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 "859d665b-10d0-4881-b85c-b3bf4d2c1b90")
- (property "Reference" "M2B1"
- (at 187.96 114.2999 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "0716"
- (at 187.96 116.8399 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
- (at 184.15 116.586 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 184.15 116.586 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "DC Motor, alternative symbol"
- (at 184.15 114.3 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "6946e8fd-a203-42b7-9a6c-3d283544265d")
- )
- (pin "1"
- (uuid "e7483698-5215-431e-9aa0-30ad969946f0")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "M2B1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GNDPWR")
- (at 184.15 138.43 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 "8c557c29-f743-47eb-848b-13325fea8b06")
- (property "Reference" "#PWR012"
- (at 184.15 143.51 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 184.023 142.24 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 184.15 139.7 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 184.15 139.7 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 \"GNDPWR\" , global ground"
- (at 184.15 138.43 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "ca86a597-b6bb-4930-938a-a5d539800dd3")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR012")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 113.03 137.16 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "9b7f6c3f-6c92-44e7-bf9c-061667d5fe23")
- (property "Reference" "R5"
- (at 115.57 136.398 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 116.078 138.176 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 114.808 137.16 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 113.03 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 113.03 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "c6445e8e-7cc8-4fcf-8853-bfbc4adf6161")
- )
- (pin "1"
- (uuid "0aa707e1-ab95-4df3-a0c4-9095f0cf28ac")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "R5")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:VCC")
- (at 184.15 106.68 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 "a38656d6-d380-40a0-897b-baea98a7f9f2")
- (property "Reference" "#PWR011"
- (at 184.15 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "VCC"
- (at 184.15 101.6 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 184.15 106.68 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 184.15 106.68 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 \"VCC\""
- (at 184.15 106.68 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "44e55d22-ef06-4969-a583-844f8d1e7c2a")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR011")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 171.45 72.39 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "a4a1ebda-783c-4529-97d4-f6bc60bbaa5f")
- (property "Reference" "R4"
- (at 171.45 70.358 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "100"
- (at 171.45 74.676 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 171.45 74.168 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 171.45 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 171.45 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "1f62e732-4420-44b9-a964-316190ef68a1")
- )
- (pin "1"
- (uuid "76e4cf64-2f09-4b0f-8722-9300cdaadd64")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "R4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "transistors:YJL2312A")
- (at 130.81 130.81 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 "a8c1f83e-ca07-414e-8367-44436ce398c5")
- (property "Reference" "Q3"
- (at 134.62 129.5399 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "YJL2312A"
- (at 134.62 132.0799 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
- (at 130.81 130.81 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 130.81 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 130.81 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "cb9ce55e-bc51-44e8-863d-4f418d4013dc")
- )
- (pin "3"
- (uuid "a323eec6-14f2-4738-8416-55d118df305d")
- )
- (pin "1"
- (uuid "3b57961d-3b8d-46af-b69f-79204def2500")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "Q3")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:D")
- (at 118.11 115.57 270)
- (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 "acbf165b-1c9b-4a38-a044-e949976ce48e")
- (property "Reference" "D3"
- (at 120.65 114.2999 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "D"
- (at 120.65 116.8399 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Diode_SMD:D_SMA"
- (at 118.11 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 118.11 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Diode"
- (at 118.11 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Sim.Device" "D"
- (at 118.11 115.57 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 118.11 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "f72bbaac-35f1-4a81-8643-2e08f56b7994")
- )
- (pin "1"
- (uuid "016ede9a-0dea-4ef4-98e3-157b0ed05c21")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "D3")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:VCC")
- (at 184.15 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 "b55470ea-1512-4fd9-87fa-c52ea9be1ec3")
- (property "Reference" "#PWR05"
- (at 184.15 52.07 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "VCC"
- (at 184.15 43.18 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 184.15 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 184.15 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 \"VCC\""
- (at 184.15 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "a338e931-d0e8-48d7-8fd9-8a0a87ef566c")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR05")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 163.83 137.16 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "bbbd36ea-039b-4133-8651-001b61c0f667")
- (property "Reference" "R7"
- (at 166.37 136.398 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 166.878 138.176 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 165.608 137.16 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 163.83 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 163.83 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "c3a309fa-83c4-4c5f-a755-4ceafb4b92f7")
- )
- (pin "1"
- (uuid "1ddf9f17-9e13-4bd3-a87a-2d34bee9fd17")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "R7")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Motor:Motor_DC_ALT")
- (at 133.35 55.88 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 "cd4938f4-a493-4c09-9ed3-2aea4fc3423d")
- (property "Reference" "M1A1"
- (at 137.16 55.8799 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "0716"
- (at 137.16 58.4199 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical"
- (at 133.35 58.166 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 133.35 58.166 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "DC Motor, alternative symbol"
- (at 133.35 55.88 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "cc17d19a-c13c-40bd-b3c5-fbe7e0716167")
- )
- (pin "1"
- (uuid "a1da2ac6-e7da-4968-a6e7-77654cc4f4df")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "M1A1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "transistors:YJL2312A")
- (at 181.61 130.81 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 "d92d3216-ebb4-4751-8a32-d23856fedcbe")
- (property "Reference" "Q4"
- (at 185.42 129.5399 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "YJL2312A"
- (at 185.42 132.0799 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
- (at 181.61 130.81 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 181.61 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 181.61 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "9bb010fe-9fd2-4662-a1c8-00724b296ecd")
- )
- (pin "3"
- (uuid "164111b3-8e0f-4577-96b9-2be7f1abcc8f")
- )
- (pin "1"
- (uuid "f193f4a2-2a34-4034-9ff1-8b7a64275b35")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "Q4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "transistors:YJL2312A")
- (at 181.61 72.39 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 "d979f341-403c-45ce-853f-b3b50918f087")
- (property "Reference" "Q2"
- (at 185.42 71.1199 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "YJL2312A"
- (at 185.42 73.6599 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:TSOT-23"
- (at 181.61 72.39 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 181.61 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 181.61 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "3d706815-961c-41d7-b5a7-329fa4ab5ef0")
- )
- (pin "3"
- (uuid "8bd6958a-e004-4b00-9b20-41b99a8bbee6")
- )
- (pin "1"
- (uuid "76fb585b-02e5-46a5-a588-93109cf38dd9")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "Q2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GNDPWR")
- (at 113.03 83.82 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 "e278f5bc-f62d-4842-bf55-56df8cf7c269")
- (property "Reference" "#PWR07"
- (at 113.03 88.9 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GNDPWR"
- (at 112.903 87.63 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 113.03 85.09 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 113.03 85.09 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 \"GNDPWR\" , global ground"
- (at 113.03 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "066c44b5-ffbc-490a-af03-f0fb79e49e1a")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR07")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:VCC")
- (at 133.35 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 "f66963ee-b315-41f2-a836-4dd0e6ee94cf")
- (property "Reference" "#PWR02"
- (at 133.35 52.07 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "VCC"
- (at 133.35 43.18 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 133.35 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 133.35 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 \"VCC\""
- (at 133.35 48.26 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "45e05d6f-99a6-42ba-8e28-32b65edaec0b")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "#PWR02")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 171.45 130.81 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "f9092e7c-7ad7-4be2-a4a6-7c3b0dedeeb7")
- (property "Reference" "R8"
- (at 171.45 128.778 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "100"
- (at 171.45 133.096 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 171.45 132.588 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 171.45 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 171.45 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "fce6f17b-fd00-4e49-8f7e-fabd594e1e28")
- )
- (pin "1"
- (uuid "ae3ee05d-424b-431f-82ee-3113cc551b66")
- )
- (instances
- (project "cx-copter-bottom-board"
- (path "/df020458-7d97-4e66-9010-f0b373b657e8/3ad6ae6a-ef3e-45d5-bf02-6bf2f5a9c680"
- (reference "R8")
- (unit 1)
- )
- )
- )
- )
- )
|