| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084 |
- (kicad_sch
- (version 20260306)
- (generator "eeschema")
- (generator_version "10.0")
- (uuid "4e86fa64-e1b6-4eca-936b-6df5bcb43437")
- (paper "A4")
- (lib_symbols
- (symbol "Connector_Generic:Conn_01x03"
- (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" "J"
- (at 0 5.08 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Conn_01x03"
- (at 0 -5.08 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" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "connector"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "Connector*:*_1x??_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "Conn_01x03_1_1"
- (rectangle
- (start -1.27 3.81)
- (end 1.27 -3.81)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (rectangle
- (start -1.27 2.667)
- (end 0 2.413)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 0.127)
- (end 0 -0.127)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 -2.413)
- (end 0 -2.667)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin passive line
- (at -5.08 2.54 0)
- (length 3.81)
- (name "Pin_1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 0 0)
- (length 3.81)
- (name "Pin_2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -2.54 0)
- (length 3.81)
- (name "Pin_3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Connector_Generic:Conn_01x04"
- (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" "J"
- (at 0 5.08 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Conn_01x04"
- (at 0 -7.62 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" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "connector"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "Connector*:*_1x??_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "Conn_01x04_1_1"
- (rectangle
- (start -1.27 3.81)
- (end 1.27 -6.35)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (rectangle
- (start -1.27 2.667)
- (end 0 2.413)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 0.127)
- (end 0 -0.127)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 -2.413)
- (end 0 -2.667)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 -4.953)
- (end 0 -5.207)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin passive line
- (at -5.08 2.54 0)
- (length 3.81)
- (name "Pin_1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 0 0)
- (length 3.81)
- (name "Pin_2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -2.54 0)
- (length 3.81)
- (name "Pin_3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -5.08 0)
- (length 3.81)
- (name "Pin_4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Connector_Generic:Conn_02x10_Odd_Even"
- (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" "J2"
- (at 1.27 16.51 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "INTERCONNECT"
- (at 1.27 13.97 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_2x10_P2.54mm_Vertical"
- (at 2.286 -34.29 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" "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at -1.016 -33.528 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "connector"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "Connector*:*_2x??_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "Conn_02x10_Odd_Even_1_1"
- (rectangle
- (start -1.27 17.78)
- (end 3.81 -17.78)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (pin passive line
- (at -5.08 13.97 0)
- (length 3.81)
- (name "Pin_1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 11.43 0)
- (length 3.81)
- (name "Pin_2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 8.89 0)
- (length 3.81)
- (name "Pin_3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 6.35 0)
- (length 3.81)
- (name "Pin_4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 3.81 0)
- (length 3.81)
- (name "Pin_5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 1.27 0)
- (length 3.81)
- (name "Pin_6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -1.27 0)
- (length 3.81)
- (name "Pin_7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -3.81 0)
- (length 3.81)
- (name "Pin_8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -6.35 0)
- (length 3.81)
- (name "Pin_9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -8.89 0)
- (length 3.81)
- (name "Pin_10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -11.43 0)
- (length 3.81)
- (name "Pin_11"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "11"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -13.97 0)
- (length 3.81)
- (name "Pin_12"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "12"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 13.97 180)
- (length 3.81)
- (name "Pin_13"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "13"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 11.43 180)
- (length 3.81)
- (name "Pin_14"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "14"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 8.89 180)
- (length 3.81)
- (name "Pin_15"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "15"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 6.35 180)
- (length 3.81)
- (name "Pin_16"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "16"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 -6.35 180)
- (length 3.81)
- (name "Pin_17"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "17"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 -8.89 180)
- (length 3.81)
- (name "Pin_18"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "18"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 -11.43 180)
- (length 3.81)
- (name "Pin_19"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "19"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 -13.97 180)
- (length 3.81)
- (name "Pin_20"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "20"
- (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)
- )
- )
- (junction
- (at 194.31 100.33)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "00f631e7-662a-4f9f-b2f0-533bc4a866dc")
- )
- (junction
- (at 194.31 80.01)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "0e65480b-595f-4710-ad5d-66f1a5229de0")
- )
- (junction
- (at 213.36 80.01)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2f4bcd34-711b-4d87-9aaa-257e62698954")
- )
- (junction
- (at 194.31 105.41)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "64c98f25-0f2f-4e25-90b3-de6286e19182")
- )
- (junction
- (at 194.31 90.17)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "71358ec8-4be5-463e-9d5e-835cc82a40c8")
- )
- (junction
- (at 132.08 107.95)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "89003193-d02f-45eb-8490-6a2c374e3d2a")
- )
- (junction
- (at 194.31 85.09)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "8ca3a110-d7d8-4c95-9374-073da9f277f6")
- )
- (junction
- (at 129.54 110.49)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "adf9c5a1-f7dd-4072-a5df-3e24239967a1")
- )
- (junction
- (at 213.36 107.95)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "ca8711e4-869e-4e8a-93f9-2e4030101da7")
- )
- (junction
- (at 194.31 95.25)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "cc19ce00-cfe7-444c-b616-d97b5e8ecdf9")
- )
- (junction
- (at 213.36 85.09)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "d61c27a2-d470-44ec-b4c1-f51aaede846a")
- )
- (junction
- (at 213.36 82.55)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "e82a73b3-a32b-4cc9-ba02-630d832f05c6")
- )
- (junction
- (at 213.36 102.87)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "e8337ab2-f2e8-4e1a-a9f3-065d363fb70f")
- )
- (junction
- (at 213.36 105.41)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "efd10979-0747-49da-ac93-375b40ec717a")
- )
- (wire
- (pts
- (xy 162.56 113.03) (xy 162.56 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "02b54b99-32e5-4f1c-a640-3615e8331aa9")
- )
- (wire
- (pts
- (xy 127 87.63) (xy 127 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "03f15758-78bd-4271-ad7b-5987c958d60d")
- )
- (wire
- (pts
- (xy 194.31 92.71) (xy 194.31 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "05eb8507-8145-45a7-86bc-87bb7d4c0da6")
- )
- (wire
- (pts
- (xy 142.24 113.03) (xy 142.24 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "08e7d2a7-0ed2-4d1e-9e18-ad02bae4932c")
- )
- (wire
- (pts
- (xy 191.77 95.25) (xy 194.31 95.25)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0c634e75-2b91-4595-9b07-fad0c40f67ff")
- )
- (wire
- (pts
- (xy 127 107.95) (xy 132.08 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0f985e9a-3142-4e1b-9701-b642be4aac59")
- )
- (wire
- (pts
- (xy 191.77 105.41) (xy 194.31 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "140e2ffd-6754-4c91-843d-51d539d6ebe2")
- )
- (wire
- (pts
- (xy 209.55 82.55) (xy 213.36 82.55)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "153f7312-13ef-4f7b-8952-898d15cacef6")
- )
- (wire
- (pts
- (xy 196.85 87.63) (xy 194.31 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "175554ac-ba3c-4a40-9fa0-e25592c3b8ee")
- )
- (wire
- (pts
- (xy 209.55 107.95) (xy 213.36 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1cc9f42d-1d07-4bc6-827a-4fab7bf89069")
- )
- (wire
- (pts
- (xy 194.31 80.01) (xy 196.85 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1d34a5f5-02b1-4ffa-a41c-a2df88c4e83e")
- )
- (wire
- (pts
- (xy 116.84 113.03) (xy 116.84 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "21a819fa-6e05-4dcd-9108-faa1dc52a0b5")
- )
- (wire
- (pts
- (xy 191.77 80.01) (xy 194.31 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2a167988-fe53-477f-a047-c83481d0486a")
- )
- (wire
- (pts
- (xy 194.31 102.87) (xy 194.31 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2c919e45-3e54-4d31-a677-a812bd962dd9")
- )
- (wire
- (pts
- (xy 194.31 105.41) (xy 196.85 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "39259f1d-5188-4b3e-b033-9b7b505adec9")
- )
- (wire
- (pts
- (xy 191.77 100.33) (xy 194.31 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "39545cf4-a07d-4518-b8f0-d48b7aeadb94")
- )
- (wire
- (pts
- (xy 213.36 107.95) (xy 213.36 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3b808f94-c1f3-41b5-adbf-08c3f87047c7")
- )
- (wire
- (pts
- (xy 132.08 107.95) (xy 134.62 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3e7cee25-f082-4e99-8544-6f965c2fa33d")
- )
- (wire
- (pts
- (xy 129.54 110.49) (xy 134.62 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3f9b025d-40cc-4ace-86b9-4e8f9203192f")
- )
- (wire
- (pts
- (xy 194.31 85.09) (xy 196.85 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "431af423-16fd-4388-a411-b3c19a90a22c")
- )
- (wire
- (pts
- (xy 194.31 87.63) (xy 194.31 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4ef17d23-7592-4b2f-a166-9999edffe7d8")
- )
- (wire
- (pts
- (xy 213.36 82.55) (xy 213.36 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "50b78583-19dd-49bc-9e74-2aee56e514cb")
- )
- (wire
- (pts
- (xy 213.36 110.49) (xy 213.36 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "568e7d57-cbee-4049-b85e-930bd5724c88")
- )
- (wire
- (pts
- (xy 128.27 66.04) (xy 127 66.04)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "57171355-6f39-4117-8f77-0c24e3c38f2f")
- )
- (wire
- (pts
- (xy 132.08 82.55) (xy 132.08 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5cafc3be-96d3-4fec-8e1c-9dc9b9f837a2")
- )
- (wire
- (pts
- (xy 194.31 90.17) (xy 196.85 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "652c1f46-fbdc-4e2e-9cce-34f2da24e815")
- )
- (wire
- (pts
- (xy 194.31 95.25) (xy 194.31 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "67916a07-365b-4e09-97da-3c02764071e6")
- )
- (wire
- (pts
- (xy 165.1 113.03) (xy 165.1 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "67e6ac53-40df-4992-887a-4e383ce61750")
- )
- (wire
- (pts
- (xy 213.36 102.87) (xy 213.36 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6e0bbbb2-1eb6-4b92-8f8c-7e2ba52061b5")
- )
- (wire
- (pts
- (xy 194.31 85.09) (xy 191.77 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "79a36819-1efb-481a-829d-7a3db2c83057")
- )
- (wire
- (pts
- (xy 128.27 60.96) (xy 127 60.96)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "84caec50-31ee-4f76-8aed-c19f4b5f1e4a")
- )
- (wire
- (pts
- (xy 127 85.09) (xy 129.54 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8a3a42b0-9006-4d27-a7fb-c265f466a95f")
- )
- (wire
- (pts
- (xy 127 78.74) (xy 127 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "92f1026e-b62e-40a1-845f-a24009b954cd")
- )
- (wire
- (pts
- (xy 128.27 67.31) (xy 128.27 66.04)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "97a4e045-3472-4e89-b805-84869cccd35f")
- )
- (wire
- (pts
- (xy 213.36 77.47) (xy 213.36 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a66d056f-ccb0-4d1d-9855-f6a27c81cb33")
- )
- (wire
- (pts
- (xy 196.85 92.71) (xy 194.31 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a987fec9-9074-4d14-bcb5-a6a1504818ef")
- )
- (wire
- (pts
- (xy 196.85 82.55) (xy 194.31 82.55)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "af88c4bc-70b2-4078-853a-31eb9c0ff00d")
- )
- (wire
- (pts
- (xy 196.85 107.95) (xy 194.31 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b4fb500b-83a3-4e46-b9dd-1e6bb56c79e6")
- )
- (wire
- (pts
- (xy 213.36 80.01) (xy 213.36 82.55)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b7e4c506-79ab-40e5-a735-f796f1ea416b")
- )
- (wire
- (pts
- (xy 196.85 102.87) (xy 194.31 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b9a10cfd-c96c-47c1-8eba-8fbe2c3e4602")
- )
- (wire
- (pts
- (xy 129.54 85.09) (xy 129.54 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bbb9cdd7-2a83-4869-8e1e-d77345d0ebee")
- )
- (wire
- (pts
- (xy 167.64 113.03) (xy 167.64 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bbf39943-8759-47db-8866-208143b34193")
- )
- (wire
- (pts
- (xy 119.38 113.03) (xy 119.38 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bc94fdd4-2196-4566-9a42-1a20a0444eee")
- )
- (wire
- (pts
- (xy 144.78 113.03) (xy 144.78 115.57)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "bf41f2aa-3ddb-45e9-9f5b-dd53e0dc680c")
- )
- (wire
- (pts
- (xy 213.36 100.33) (xy 209.55 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c180f581-c81b-45ae-a071-5a659ad8ef64")
- )
- (wire
- (pts
- (xy 194.31 90.17) (xy 191.77 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c279050a-00c7-4cba-bd94-4a50c0f4b4ae")
- )
- (wire
- (pts
- (xy 213.36 85.09) (xy 213.36 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c3da8fb3-a817-4a7b-92a0-a5585fffbb20")
- )
- (wire
- (pts
- (xy 209.55 105.41) (xy 213.36 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c619c41f-083c-48fa-9304-8ef93f0790e8")
- )
- (wire
- (pts
- (xy 213.36 87.63) (xy 209.55 87.63)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c8bfe172-3a22-46e5-abc1-2ed04db3e025")
- )
- (wire
- (pts
- (xy 194.31 82.55) (xy 194.31 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ca052c4c-3b53-4d46-b9c4-9539ed216224")
- )
- (wire
- (pts
- (xy 127 110.49) (xy 129.54 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cada5776-6a32-42af-b6c3-4a3bc0d4c384")
- )
- (wire
- (pts
- (xy 209.55 80.01) (xy 213.36 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d2d3bb82-d62f-45ae-afcc-bc4629a43c1c")
- )
- (wire
- (pts
- (xy 127 82.55) (xy 132.08 82.55)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d3510624-b5e0-493e-83a5-1f3bbe58a95e")
- )
- (wire
- (pts
- (xy 209.55 85.09) (xy 213.36 85.09)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d8d913c8-cf99-442a-9a99-a64f2f347eac")
- )
- (wire
- (pts
- (xy 196.85 97.79) (xy 194.31 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d90de8e1-296f-49ee-8060-63e9a25713d5")
- )
- (wire
- (pts
- (xy 127 63.5) (xy 134.62 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e0dd8ae1-3975-43ca-8d10-8e71f61ccff2")
- )
- (wire
- (pts
- (xy 213.36 105.41) (xy 213.36 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e7b88594-0ee3-43c9-9d5f-2cdb406fa7cf")
- )
- (wire
- (pts
- (xy 209.55 102.87) (xy 213.36 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f0c7b1a5-cab8-4b9e-ab11-5b6af9d868a3")
- )
- (wire
- (pts
- (xy 194.31 105.41) (xy 194.31 107.95)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f90a7570-6457-4573-b264-72af480e7ee3")
- )
- (wire
- (pts
- (xy 128.27 59.69) (xy 128.27 60.96)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fa4b2669-8c6f-4b06-be1e-09b48037b6c4")
- )
- (wire
- (pts
- (xy 194.31 100.33) (xy 196.85 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fab53a33-b523-4900-b7cf-d7027647455f")
- )
- (wire
- (pts
- (xy 194.31 95.25) (xy 196.85 95.25)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fe92bcb8-18c8-499e-8d7e-d5f3e7cdb853")
- )
- (symbol
- (lib_id "Connector_Generic:Conn_02x10_Odd_Even")
- (at 201.93 93.98 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "1d656654-79c3-4ea0-a0ef-a1b117b17d34")
- (property "Reference" "J2"
- (at 203.2 75.184 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "INTERCONNECT"
- (at 202.946 113.03 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x10_P2.54mm_Vertical"
- (at 204.216 128.27 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 201.93 93.98 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 200.914 127.508 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "16"
- (uuid "a680cc0f-77fa-4dc5-ad13-bf1e1b21f2c6")
- )
- (pin "14"
- (uuid "e24026b3-05c1-49c4-ba63-10036c41122e")
- )
- (pin "12"
- (uuid "039fd7c9-d7fb-4f17-9e54-de13af6b8369")
- )
- (pin "19"
- (uuid "8cbf0e80-3f50-439e-b1c3-61b1747db7cc")
- )
- (pin "18"
- (uuid "1ff8b2d4-8a09-4d97-88c0-acd954c6dff1")
- )
- (pin "15"
- (uuid "d3c048ef-d159-435c-a174-1d9032b7c3c4")
- )
- (pin "17"
- (uuid "df8f69df-6f28-4628-9500-3e62e9efbfa6")
- )
- (pin "20"
- (uuid "02319c60-4691-4a13-90dd-9d463ca2e774")
- )
- (pin "13"
- (uuid "6b4af19d-3431-4737-bc1e-b2381e177f42")
- )
- (pin "11"
- (uuid "194d9eab-a708-4684-9b1b-1cdb7957450d")
- )
- (pin "10"
- (uuid "c6d65237-5520-49d7-840c-230bd0abc1ab")
- )
- (pin "9"
- (uuid "dad981bf-9691-4059-955e-86778c477e5b")
- )
- (pin "8"
- (uuid "901aa373-5a87-4d77-a836-162408519a51")
- )
- (pin "7"
- (uuid "70844594-e301-44c9-9b0a-ad632fe022ca")
- )
- (pin "6"
- (uuid "8983c7e9-b058-4fa6-b1fe-51274332b594")
- )
- (pin "5"
- (uuid "0025b112-3658-423a-a2f1-8235449bcf6e")
- )
- (pin "4"
- (uuid "ceae09b8-03b4-4fbe-8ecb-5a54510bc32a")
- )
- (pin "3"
- (uuid "4dcb5dd5-4af1-4774-bafb-24ae84231246")
- )
- (pin "2"
- (uuid "c4405ce9-1076-4cf7-8e5e-c28832f81a67")
- )
- (pin "1"
- (uuid "0ea50459-2d13-45bc-965c-f0686c6b6bc4")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "J2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 127 88.9 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "26eb3369-bb91-4391-a559-1998ab9d1ac9")
- (property "Reference" "#PWR036"
- (at 127 95.25 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 126.492 92.71 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 127 88.9 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 127 88.9 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 127 88.9 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "73529393-f484-4430-8582-1ddb32f4b73e")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "#PWR036")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+5V")
- (at 127 78.74 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "35004220-89a1-404d-b67d-ec16e10f713e")
- (property "Reference" "#PWR037"
- (at 127 82.55 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+5V"
- (at 129.794 76.708 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 127 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 127 78.74 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 127 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "d78b3da6-10e5-4728-9a01-2444003fb7f7")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "#PWR037")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector_Generic:Conn_01x04")
- (at 121.92 85.09 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "51f45ef6-2e8a-4659-ae57-1dde9dfb83e4")
- (property "Reference" "J5"
- (at 121.92 77.724 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "ESP_DEBUG"
- (at 118.11 90.17 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical"
- (at 121.92 85.09 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 121.92 85.09 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 121.92 85.09 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "4"
- (uuid "d289fa0d-7d21-4c56-bc4b-9195172c27f4")
- )
- (pin "3"
- (uuid "98703764-4180-4840-aeb5-12aabfb3a556")
- )
- (pin "1"
- (uuid "fc4ef588-0d16-4f12-9efb-627c2a75c1eb")
- )
- (pin "2"
- (uuid "65a1b4af-55fe-4556-b2e4-112d8dcb7067")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "J5")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+5V")
- (at 128.27 59.69 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 "71bd101d-1652-45e1-97c1-1429299903b5")
- (property "Reference" "#PWR025"
- (at 128.27 63.5 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+5V"
- (at 128.27 54.61 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 128.27 59.69 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 128.27 59.69 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 128.27 59.69 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "d0c6a2f0-5085-40a7-b129-d6a700237a3c")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "#PWR025")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 128.27 67.31 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 "8f1f1d64-670a-4618-b192-c5563fb2442c")
- (property "Reference" "#PWR024"
- (at 128.27 73.66 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 128.27 72.39 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 128.27 67.31 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 128.27 67.31 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 128.27 67.31 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "027f5821-3c3b-4302-beee-bcde32081c3d")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "#PWR024")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector_Generic:Conn_01x03")
- (at 121.92 63.5 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "91d73b68-c713-4883-b94f-98d861d6ee19")
- (property "Reference" "J4"
- (at 119.126 61.214 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "CORE_DEBUG"
- (at 117.602 68.834 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical"
- (at 121.92 63.5 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 121.92 63.5 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 121.92 63.5 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "b46e267b-e7bf-4449-b491-5b20f6368270")
- )
- (pin "2"
- (uuid "ae2d415d-f9d1-4a5a-a098-8bc6f7fa4c18")
- )
- (pin "3"
- (uuid "d93267b8-e546-4aff-972f-411cdcf915fe")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "J4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+5V")
- (at 213.36 77.47 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 "b1af2c26-5a8c-461c-a28c-cc4ccd0630ed")
- (property "Reference" "#PWR022"
- (at 213.36 81.28 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+5V"
- (at 213.36 72.39 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 213.36 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 213.36 77.47 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 213.36 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "4f393888-04fe-4ccb-8684-a532844878d0")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "#PWR022")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 213.36 110.49 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 "b5f3d8ac-b53b-4d6b-9253-09bfca119d57")
- (property "Reference" "#PWR021"
- (at 213.36 116.84 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 213.36 115.57 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 213.36 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 213.36 110.49 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 213.36 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "295c8a99-dc8f-46f1-8062-1d51b1e5f38e")
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (reference "#PWR021")
- (unit 1)
- )
- )
- )
- )
- (sheet
- (at 107.95 97.79)
- (size 19.05 15.24)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (stroke
- (width 0.1524)
- (type solid)
- )
- (fill
- (color 0 0 0 0)
- )
- (uuid "03838cc8-391e-46f2-8224-1d1d9049a339")
- (property "Sheetname" "Communication"
- (at 107.95 97.536 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- )
- (property "Sheetfile" "communication.kicad_sch"
- (at 107.95 114.8846 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- )
- )
- (pin "RX" input
- (at 127 110.49 0)
- (uuid "b198de7d-05f4-4298-80dd-13e95eef8342")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "TX" output
- (at 127 107.95 0)
- (uuid "b2ca374f-15b9-4e19-b4b7-884df36936f0")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "WIFI_SETUP" input
- (at 119.38 113.03 270)
- (uuid "5e8aa2ef-0268-483d-8e13-030d90b3756e")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "WIFI_STATUS" output
- (at 116.84 113.03 270)
- (uuid "0d83a983-b58d-4ce8-af29-06bdaf41397e")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (page "4")
- )
- )
- )
- )
- (sheet
- (at 64.77 72.39)
- (size 27.94 11.43)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (stroke
- (width 0.1524)
- (type solid)
- )
- (fill
- (color 0 0 0 0)
- )
- (uuid "099e6a5f-293d-4040-872a-be842998c40e")
- (property "Sheetname" "Power section"
- (at 64.77 71.6784 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- )
- (property "Sheetfile" "power_section.kicad_sch"
- (at 64.77 84.4046 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- )
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (page "2")
- )
- )
- )
- )
- (sheet
- (at 152.4 115.57)
- (size 24.13 15.24)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (stroke
- (width 0.1524)
- (type solid)
- )
- (fill
- (color 0 0 0 0)
- )
- (uuid "101e7ced-41a1-4d57-98f2-f2dbc17087da")
- (property "Sheetname" "Accelerometer"
- (at 152.4 132.588 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- )
- (property "Sheetfile" "accelerometer.kicad_sch"
- (at 152.4 131.3946 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- )
- )
- (pin "INT" output
- (at 167.64 115.57 90)
- (uuid "8d3a1355-2648-4708-a7eb-14abad55a763")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "SCL" input
- (at 162.56 115.57 90)
- (uuid "30616e8a-7a5b-4275-8035-3438afb8ae9a")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "SDA" bidirectional
- (at 165.1 115.57 90)
- (uuid "3ff6f07b-01ed-41b4-83e9-e9730d19d320")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (page "6")
- )
- )
- )
- )
- (sheet
- (at 107.95 115.57)
- (size 41.91 15.24)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (stroke
- (width 0.1524)
- (type solid)
- )
- (fill
- (color 0 0 0 0)
- )
- (uuid "69973ae6-e09a-4674-bfbb-cb51ddb6668c")
- (property "Sheetname" "Panel"
- (at 107.95 115.316 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- )
- (property "Sheetfile" "panel.kicad_sch"
- (at 150.4446 130.81 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- )
- )
- (pin "STATUS_LED" input
- (at 142.24 115.57 90)
- (uuid "94e2f275-9d8e-4476-b4f3-1ea3600e8c69")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "SWITCH_A" output
- (at 144.78 115.57 90)
- (uuid "38bca49b-203c-4327-aa90-30aa5ecc9db6")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "WIFI_SETUP" output
- (at 119.38 115.57 90)
- (uuid "dd64cbc8-d22d-465d-b57b-f2678ceaae0b")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "WIFI_STATUS" input
- (at 116.84 115.57 90)
- (uuid "6ac9a12a-da1c-4beb-96ae-41653e298318")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (page "5")
- )
- )
- )
- )
- (sheet
- (at 134.62 60.96)
- (size 57.15 52.07)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (stroke
- (width 0.1524)
- (type solid)
- )
- (fill
- (color 0 0 0 0)
- )
- (uuid "d5214527-e615-4c43-aac9-59efc9e0662c")
- (property "Sheetname" "Controller"
- (at 134.62 60.2484 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- )
- (property "Sheetfile" "controller.kicad_sch"
- (at 134.62 113.6146 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left top)
- )
- )
- (pin "BATTERY_LEVEL" input
- (at 191.77 105.41 0)
- (uuid "c6191088-f6c5-4eb8-852d-9ef02c420370")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "INT" input
- (at 167.64 113.03 270)
- (uuid "2f9805b5-e4b2-413e-9314-e9f46f6dd8ea")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "LEDS_CHAIN" output
- (at 191.77 80.01 0)
- (uuid "504770f6-2b8c-486b-80c8-09e45a8d576c")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "PWM_M1A" output
- (at 191.77 85.09 0)
- (uuid "b068cee1-5a54-4111-aea0-38efe33d2d2c")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "PWM_M1B" output
- (at 191.77 90.17 0)
- (uuid "13554208-76b1-4787-bcc7-cebc2fbb2d67")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "PWM_M2A" output
- (at 191.77 95.25 0)
- (uuid "5e1e2ea2-bd8e-4299-855a-47158cc7fb3d")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "PWM_M2B" output
- (at 191.77 100.33 0)
- (uuid "7189feb9-10b2-4d49-a4b2-da0f38626474")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (pin "RX" input
- (at 134.62 107.95 180)
- (uuid "ff335021-ba67-48b0-826e-f4c0a618e071")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "SCL" output
- (at 162.56 113.03 270)
- (uuid "18523a37-510a-410b-9ba6-d80d23ac132d")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "SDA" bidirectional
- (at 165.1 113.03 270)
- (uuid "9247c2a7-9fd9-434d-919f-3ea5decb6b56")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "STATUS_LED" output
- (at 142.24 113.03 270)
- (uuid "3cf23474-b34a-4e46-8482-d6eb391e354d")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "SWIO" bidirectional
- (at 134.62 63.5 180)
- (uuid "d855b4f7-2e81-4f6d-9325-86e1fb6e6cde")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "SWITCH_A" input
- (at 144.78 113.03 270)
- (uuid "1a8a5d56-977e-4a33-b198-afbfde4976ec")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (pin "TX" output
- (at 134.62 110.49 180)
- (uuid "27e4853f-985e-4bb0-9cae-7322dcf7549f")
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (instances
- (project "cx-copter-top-board"
- (path "/4e86fa64-e1b6-4eca-936b-6df5bcb43437"
- (page "3")
- )
- )
- )
- )
- (sheet_instances
- (path "/"
- (page "1")
- )
- )
- (embedded_fonts no)
- )
|