| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694 |
- (kicad_sch
- (version 20260306)
- (generator "eeschema")
- (generator_version "10.0")
- (uuid "0476561a-cd36-4acd-9826-88dbef4d9376")
- (paper "A4")
- (lib_symbols
- (symbol "Device:C"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "cap capacitor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "C_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 0.762) (xy 2.032 0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 -0.762) (xy 2.032 -0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "C_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 2.794)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Device: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 "imu:GY-LSM6DS3_module"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "U"
- (at 13.208 17.018 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LSM6DS3"
- (at 13.208 19.304 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "imu:GY-LSM6DS3"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf"
- (at -15.494 62.23 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)
- )
- )
- )
- (property "ki_keywords" "IMU,6DoF"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "GY-LSM6DS3_module_1_1"
- (rectangle
- (start -15.24 15.24)
- (end 15.24 -15.24)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type background)
- )
- )
- (pin power_in line
- (at -3.81 17.78 270)
- (length 2.54)
- (name "VIN"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at 3.81 17.78 270)
- (length 2.54)
- (name "3V3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at 0 -17.78 90)
- (length 2.54)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 11.43 0)
- (length 2.54)
- (name "SCL"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -17.78 8.89 0)
- (length 2.54)
- (name "SDA/SDI"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 3.81 0)
- (length 2.54)
- (name "CS"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -17.78 6.35 0)
- (length 2.54)
- (name "SDO/SA0"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 17.78 11.43 180)
- (length 2.54)
- (name "SDX"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 17.78 8.89 180)
- (length 2.54)
- (name "SCX"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin output line
- (at -17.78 -8.89 0)
- (length 2.54)
- (name "INT1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin output line
- (at -17.78 -11.43 0)
- (length 2.54)
- (name "INT2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "11"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin output line
- (at 17.78 6.35 180)
- (length 2.54)
- (name "0CS"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "12"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:+3V3"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 0 3.556 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "+3V3_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+3V3_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:GND"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -6.35 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "GND_1_1"
- (pin power_in line
- (at 0 0 270)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:VDD"
- (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" "VDD"
- (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 \"VDD\""
- (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 "VDD_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 "VDD_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)
- )
- )
- (junction
- (at 128.27 73.66)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "06a06f67-3946-4372-bfb0-f5b5fdbda2af")
- )
- (junction
- (at 161.29 63.5)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "4cf6779c-ca26-4554-a746-dd2481957c6f")
- )
- (junction
- (at 138.43 63.5)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "56c699ad-8b21-4443-94e0-e40ddbcb2413")
- )
- (junction
- (at 118.11 110.49)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c5d08ef8-cff1-4c2d-b445-54d07a891088")
- )
- (junction
- (at 146.05 63.5)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "eb43f1de-82c7-46df-952c-2674dcc8cc37")
- )
- (junction
- (at 170.18 73.66)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "f87bc3ef-7f46-40b8-8c2f-f9c842826e7f")
- )
- (wire
- (pts
- (xy 153.67 63.5) (xy 153.67 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "00766b39-438b-4c51-a3da-af57841a6bc7")
- )
- (wire
- (pts
- (xy 170.18 73.66) (xy 170.18 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "078a5425-27f0-456a-a11a-13d3d5b0a1fe")
- )
- (wire
- (pts
- (xy 161.29 63.5) (xy 161.29 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0a75d6e6-a2af-4c66-a1d9-bedafacdda5f")
- )
- (wire
- (pts
- (xy 181.61 87.63) (xy 181.61 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0f42fe8a-0a8e-40b2-9f0e-0cb438b678ab")
- )
- (wire
- (pts
- (xy 130.81 90.17) (xy 132.08 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "154170fc-b00d-489f-90c6-75cd66b8253c")
- )
- (wire
- (pts
- (xy 149.86 119.38) (xy 149.86 120.65)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "163331f8-59c2-4648-9f9a-e8d1c0292c96")
- )
- (wire
- (pts
- (xy 153.67 63.5) (xy 161.29 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "19efbcb5-8817-43ee-865d-50b27e325d5c")
- )
- (wire
- (pts
- (xy 138.43 72.39) (xy 138.43 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1fd1411b-0d1f-47c7-b90c-02f30b0f555b")
- )
- (wire
- (pts
- (xy 146.05 63.5) (xy 146.05 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "36dce96c-d28c-4f24-bb8b-58f6239a2b58")
- )
- (wire
- (pts
- (xy 118.11 99.06) (xy 118.11 100.33)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "36e5fe94-03cf-476d-be3a-cf0db8628a0b")
- )
- (wire
- (pts
- (xy 106.68 110.49) (xy 107.95 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "37166687-e601-42c4-ba82-7925789a9bfd")
- )
- (wire
- (pts
- (xy 115.57 110.49) (xy 118.11 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3a1fd9f3-01e4-4149-81c1-c5c96c3f0b1e")
- )
- (wire
- (pts
- (xy 130.81 92.71) (xy 132.08 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "506a3d1a-495b-40ff-ac41-622b995215b8")
- )
- (wire
- (pts
- (xy 146.05 62.23) (xy 146.05 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "56d39607-b6d9-4fbd-9d2a-6ecb3a9bfd39")
- )
- (wire
- (pts
- (xy 170.18 72.39) (xy 170.18 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5bd2c43a-77a2-41e0-a5cf-a0fffcb8ba41")
- )
- (wire
- (pts
- (xy 161.29 63.5) (xy 170.18 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "64b33c3e-d9e7-46fe-b863-707feb61dd38")
- )
- (wire
- (pts
- (xy 128.27 63.5) (xy 138.43 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "792b0d15-ca01-4681-ae4f-e587fdd19c76")
- )
- (wire
- (pts
- (xy 161.29 73.66) (xy 170.18 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "79d9422c-d72f-436c-be51-1e221200e046")
- )
- (wire
- (pts
- (xy 128.27 72.39) (xy 128.27 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7df54e15-0ceb-49c0-808f-154a0b1904b7")
- )
- (wire
- (pts
- (xy 128.27 63.5) (xy 128.27 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7e5be9ac-3338-4227-82cd-79a2208417ca")
- )
- (wire
- (pts
- (xy 190.5 78.74) (xy 190.5 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "962ec706-deab-47af-b1d6-0536c9667761")
- )
- (wire
- (pts
- (xy 161.29 72.39) (xy 161.29 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9a1309d0-c929-4012-a124-1cffd8798359")
- )
- (wire
- (pts
- (xy 128.27 73.66) (xy 128.27 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9bd97bb8-a6be-418e-9eca-fe945e04ac32")
- )
- (wire
- (pts
- (xy 190.5 92.71) (xy 167.64 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9c0d04ca-36bc-48eb-b8a7-075ff9e9d9f0")
- )
- (wire
- (pts
- (xy 138.43 63.5) (xy 138.43 64.77)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9c9cf609-9a76-4401-b4a0-8cefbed9d9d3")
- )
- (wire
- (pts
- (xy 181.61 78.74) (xy 181.61 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9e80265d-8519-4281-8b24-61d4b0b30695")
- )
- (wire
- (pts
- (xy 118.11 107.95) (xy 118.11 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a288bf11-b593-4c97-a9f7-ad3f4fa92356")
- )
- (wire
- (pts
- (xy 190.5 87.63) (xy 190.5 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ae31cea1-2a78-4d8e-80a2-096b7581cfca")
- )
- (wire
- (pts
- (xy 138.43 63.5) (xy 146.05 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b1260bd6-e4dd-444b-b3ca-34e50d7fc3b1")
- )
- (wire
- (pts
- (xy 170.18 64.77) (xy 170.18 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c4768a9a-dec3-4437-945c-3f6408b4fa57")
- )
- (wire
- (pts
- (xy 167.64 90.17) (xy 181.61 90.17)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cafe27ea-4960-47bb-993c-968e4332499e")
- )
- (wire
- (pts
- (xy 118.11 110.49) (xy 132.08 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d51d0999-0ce3-4692-ba4f-bd703d14da03")
- )
- (wire
- (pts
- (xy 128.27 73.66) (xy 138.43 73.66)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fee4fbbf-1ac4-4203-aedf-52954e7a26e2")
- )
- (hierarchical_label "SCL"
- (shape input)
- (at 130.81 90.17 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "28bcbda9-96a0-4cd7-a9f4-bd17293021d0")
- )
- (hierarchical_label "INT"
- (shape output)
- (at 106.68 110.49 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "4dc6c514-edca-4677-a689-e8d113f42f61")
- )
- (hierarchical_label "SDA"
- (shape bidirectional)
- (at 130.81 92.71 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "a787416d-a12e-4092-98ef-c9a2d49d9d8e")
- )
- (symbol
- (lib_id "imu:GY-LSM6DS3_module")
- (at 149.86 101.6 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "07c2cf97-3481-44bb-8692-563367e450cf")
- (property "Reference" "U1"
- (at 134.366 85.344 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "LSM6DS3"
- (at 156.718 85.344 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "imu:GY-LSM6DS3"
- (at 149.86 101.6 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf"
- (at 134.366 39.37 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 149.86 101.6 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "12"
- (uuid "fb2d315d-15ba-4833-bee6-365c010c1c23")
- )
- (pin "3"
- (uuid "726f181b-380e-4940-9fcc-7ae7a311bf7f")
- )
- (pin "2"
- (uuid "8c14f20f-0de1-4665-80af-c21be5e7346d")
- )
- (pin "1"
- (uuid "bebc5e8c-1913-4fdf-a0d8-d7b9a3f8d2de")
- )
- (pin "10"
- (uuid "0368fbca-043f-4989-a59e-3bf83577c053")
- )
- (pin "11"
- (uuid "dea28432-004d-43a2-80dd-685308a193b9")
- )
- (pin "9"
- (uuid "62dbdae8-df95-4c9c-8b12-b1958834130a")
- )
- (pin "8"
- (uuid "50afb81f-3925-41b8-a5e9-160e70288c87")
- )
- (pin "7"
- (uuid "ddcf9346-b660-4290-b02d-a31d534c4fdc")
- )
- (pin "6"
- (uuid "b495052a-55cb-4dd1-9875-3b4dca43b163")
- )
- (pin "5"
- (uuid "ce9af66b-975d-49ad-889e-98b8fe78097f")
- )
- (pin "4"
- (uuid "f3f7db22-84e9-4412-8829-2bfb5596c30e")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "U1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 128.27 68.58 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "0a947b9a-a72b-4b60-a724-e4ed5f1d3a8a")
- (property "Reference" "C1"
- (at 128.27 66.548 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 128.27 70.612 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_1206_3216Metric"
- (at 129.2352 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 128.27 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 128.27 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "07606da1-2bbb-404c-b931-886a8259abab")
- )
- (pin "1"
- (uuid "edf575ab-179e-47f2-908e-295d2347b29c")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "C1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 190.5 78.74 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 "10dbde59-fe60-4d4a-949d-6fb11a2dbe68")
- (property "Reference" "#PWR019"
- (at 190.5 82.55 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 190.5 73.66 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 190.5 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 190.5 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 \"+3V3\""
- (at 190.5 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "aabe045a-cc2b-4039-bc8d-122c7b6a399e")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "#PWR019")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 111.76 110.49 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "5635af60-efdf-4593-a4ef-6f47e3befcfb")
- (property "Reference" "R13"
- (at 111.76 108.458 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "100"
- (at 111.76 112.522 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric"
- (at 111.76 112.268 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 111.76 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 111.76 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "502ace4d-9e66-41e4-8686-4590ff01e7d7")
- )
- (pin "1"
- (uuid "92fc6e47-a985-4e1f-a493-86f40eabf1ad")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "R13")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 118.11 99.06 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 "5b2c717e-81e7-49ef-91c8-9d06dabb6a18")
- (property "Reference" "#PWR020"
- (at 118.11 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 118.11 93.98 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 118.11 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 118.11 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 118.11 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "387d68be-8341-4f95-9c55-0eaeb7da4b1b")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "#PWR020")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 170.18 74.93 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 "636c0070-25d4-4145-aae8-57a6b521f25c")
- (property "Reference" "#PWR015"
- (at 170.18 81.28 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 170.18 80.01 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 170.18 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 170.18 74.93 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 170.18 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "9d1e9949-04d0-4ebb-a5e8-b11cf0375d36")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "#PWR015")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 181.61 78.74 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 "a516b4a6-657b-4bc9-9429-184798489807")
- (property "Reference" "#PWR018"
- (at 181.61 82.55 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 181.61 73.66 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 181.61 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 181.61 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 \"+3V3\""
- (at 181.61 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "56427488-506d-4c4b-8be3-8fee65781c26")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "#PWR018")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 170.18 68.58 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "a6891180-05af-473d-9b09-fb294a012578")
- (property "Reference" "C4"
- (at 170.18 66.548 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 170.18 70.612 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_1206_3216Metric"
- (at 171.1452 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 170.18 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 170.18 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "0a445cca-35db-47ce-9acb-b8e34870cf04")
- )
- (pin "1"
- (uuid "205c6dca-58e4-4f3a-a84d-f10af6525b5f")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "C4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 138.43 68.58 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "ab472f43-3e84-4407-ae75-9b07a0723f3c")
- (property "Reference" "C2"
- (at 138.43 66.548 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 138.43 70.612 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_1206_3216Metric"
- (at 139.3952 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 138.43 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 138.43 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "210eddc6-6cd8-4d9e-bde4-60f6fcd4e703")
- )
- (pin "1"
- (uuid "6de393a4-0d7a-436d-b6b2-8c051ebd5cc5")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "C2")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 118.11 104.14 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "c6780fe0-69b5-4c98-9c69-5353ce8fdd74")
- (property "Reference" "R14"
- (at 116.078 104.14 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "100k"
- (at 120.142 104.14 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric"
- (at 119.888 104.14 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 118.11 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 118.11 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "73f2a820-397d-479d-8b6d-1ccf5a9d700e")
- )
- (pin "1"
- (uuid "ee3a062f-aaa8-4c35-b3ff-d2e2897be8cc")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "R14")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 161.29 68.58 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "cd50288a-6859-4122-90ec-bd0a3d8cbf13")
- (property "Reference" "C3"
- (at 161.29 66.548 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 161.29 70.612 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_1206_3216Metric"
- (at 162.2552 72.39 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 161.29 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 161.29 68.58 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "dcbb4423-6a5a-454d-957b-0103d8d54831")
- )
- (pin "1"
- (uuid "8f50bb42-b761-4df5-a789-a21b2132349a")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "C3")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 149.86 120.65 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 "d3e67987-38fa-4b7d-9d41-026912a0d5b9")
- (property "Reference" "#PWR013"
- (at 149.86 127 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 149.86 125.73 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 149.86 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 149.86 120.65 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 149.86 120.65 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "c823a7b1-69fa-47ec-95ab-27fb43f6d21a")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "#PWR013")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 128.27 74.93 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 "d7e47bf5-9b94-4ad3-a269-fe3b14ae843c")
- (property "Reference" "#PWR016"
- (at 128.27 81.28 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 128.27 80.01 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 128.27 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 128.27 74.93 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 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "71c57af0-5160-4fe7-b77e-5ca38288a8bd")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "#PWR016")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 181.61 83.82 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "e1afb771-4374-41af-bae9-a0bb359c970a")
- (property "Reference" "R11"
- (at 179.578 83.82 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 183.642 83.82 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric"
- (at 183.388 83.82 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 181.61 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 181.61 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "dafac79e-7fd9-4aa3-bfec-1dbd95c50d4a")
- )
- (pin "1"
- (uuid "9bd05d7d-2aa9-472f-88e6-691309d5bf5c")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "R11")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:VDD")
- (at 146.05 62.23 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 "f10ecb3d-0932-4618-84ec-650ba87cfe7e")
- (property "Reference" "#PWR014"
- (at 146.05 66.04 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "VDD"
- (at 146.05 57.15 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 146.05 62.23 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 146.05 62.23 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 \"VDD\""
- (at 146.05 62.23 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "d9a85706-0720-413b-9e74-2a303dfac144")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "#PWR014")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 190.5 83.82 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "fe972164-2535-42b9-a61e-7910dcd4106f")
- (property "Reference" "R12"
- (at 188.468 83.82 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10k"
- (at 192.532 83.82 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric"
- (at 192.278 83.82 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 190.5 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 190.5 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "cbad1bde-58e1-4dc0-aecb-93557a27f72d")
- )
- (pin "1"
- (uuid "11fa1f49-7893-480a-89b4-938e20ad25da")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/8aca27bc-7a63-4f6b-9aea-71dcfda552c2"
- (reference "R12")
- (unit 1)
- )
- )
- )
- )
- )
|