| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397 |
- (kicad_sch
- (version 20260306)
- (generator "eeschema")
- (generator_version "10.0")
- (uuid "81fa588a-e86f-4849-83a6-d1bc1462669f")
- (paper "A4")
- (lib_symbols
- (symbol "Connector:TestPoint_Probe"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0.762)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "TP"
- (at 1.651 5.842 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "TestPoint_Probe"
- (at 1.651 4.064 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 5.08 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 5.08 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "test point (alternative probe-style design)"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "test point tp"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "Pin* Test*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "TestPoint_Probe_0_1"
- (polyline
- (pts
- (xy 1.27 0.762) (xy 0 0) (xy 0.762 1.27) (xy 1.27 0.762)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type outline)
- )
- )
- (polyline
- (pts
- (xy 1.397 0.635) (xy 0.635 1.397) (xy 2.413 3.175) (xy 3.175 2.413) (xy 1.397 0.635)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type background)
- )
- )
- )
- (symbol "TestPoint_Probe_1_1"
- (pin passive line
- (at 0 0 90)
- (length 0)
- (name "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (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 "ESP_modules:ESP-01"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "U6"
- (at 2.1433 22.86 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "ESP-01"
- (at 2.1433 20.32 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://academy.cba.mit.edu/classes/networking_communications/ESP8266/esp01.pdf"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "ESP-01_1_1"
- (rectangle
- (start -10.16 17.78)
- (end 10.16 -17.78)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type background)
- )
- )
- (pin power_in line
- (at 0 -20.32 90)
- (length 2.54)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 12.7 -1.27 180)
- (length 2.54)
- (name "GPIO2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at 12.7 1.27 180)
- (length 2.54)
- (name "GPIO0"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -12.7 -10.16 0)
- (length 2.54)
- (name "RX/GPIO3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at 0 20.32 270)
- (length 2.54)
- (name "VCC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -12.7 10.16 0)
- (length 2.54)
- (name "RST"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin bidirectional line
- (at -12.7 7.62 0)
- (length 2.54)
- (name "CH_PD"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin output line
- (at -12.7 -6.35 0)
- (length 2.54)
- (name "TX/GPIO1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (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)
- )
- )
- (junction
- (at 144.78 44.45)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1473a0f8-a97d-4ca6-982f-350e3c0266f4")
- )
- (junction
- (at 166.37 54.61)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1548d8d1-2469-436b-baa1-152c73d00dbf")
- )
- (junction
- (at 152.4 44.45)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2e9a8ed5-4ab6-4876-85f4-afe754800467")
- )
- (junction
- (at 113.03 88.9)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "750607ab-7ed3-4ffc-b320-d0803dfbc9ac")
- )
- (junction
- (at 129.54 74.93)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "a2257cbb-a5bc-40d5-b25f-d7b7890c86f1")
- )
- (wire
- (pts
- (xy 128.27 74.93) (xy 129.54 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "098c0b61-3f20-4c5b-bbad-ee2182f43695")
- )
- (wire
- (pts
- (xy 113.03 62.23) (xy 113.03 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2b157b2f-6c74-4233-855e-8cb287f83816")
- )
- (wire
- (pts
- (xy 161.29 81.28) (xy 157.48 81.28)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "32432905-c705-4842-9d68-02e9c2b92340")
- )
- (wire
- (pts
- (xy 113.03 88.9) (xy 132.08 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "356da0db-09b1-486b-8ec0-fd607c124574")
- )
- (wire
- (pts
- (xy 166.37 53.34) (xy 166.37 54.61)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "424b406c-2f97-49e4-88e8-7b0f95926c30")
- )
- (wire
- (pts
- (xy 111.76 88.9) (xy 113.03 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4660801f-4bea-4eb0-ac8e-b37567b82734")
- )
- (wire
- (pts
- (xy 132.08 72.39) (xy 125.73 72.39)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4692a59e-6cc7-48d6-a227-883df2f8e70c")
- )
- (wire
- (pts
- (xy 125.73 62.23) (xy 125.73 63.5)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5480938d-271d-423e-9690-38830d9c7954")
- )
- (wire
- (pts
- (xy 144.78 44.45) (xy 144.78 62.23)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5a80769f-84f0-4cea-b255-ccd7617e2d51")
- )
- (wire
- (pts
- (xy 152.4 45.72) (xy 152.4 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5d7c9fb2-60f2-4140-a5ec-e72ac4dfb0e2")
- )
- (wire
- (pts
- (xy 152.4 44.45) (xy 166.37 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "71a1cba3-b98c-4720-bcf0-f529a04a5e63")
- )
- (wire
- (pts
- (xy 166.37 54.61) (xy 166.37 55.88)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "79bfe1fd-dc9e-4d52-8191-6153151ad20f")
- )
- (wire
- (pts
- (xy 102.87 92.71) (xy 132.08 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7ad83af7-352a-466e-a537-a283157d3cf8")
- )
- (wire
- (pts
- (xy 144.78 44.45) (xy 152.4 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "867ad019-22a1-4436-a8e1-ee4cfa357ac2")
- )
- (wire
- (pts
- (xy 161.29 83.82) (xy 157.48 83.82)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "89468c82-35b0-4a10-8ce6-a8e42ed48abe")
- )
- (wire
- (pts
- (xy 113.03 71.12) (xy 113.03 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a26566db-41ca-4183-930a-e0ff610ac448")
- )
- (wire
- (pts
- (xy 95.25 110.49) (xy 102.87 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a7026f9d-6e00-4abf-894f-0fa01528ee1b")
- )
- (wire
- (pts
- (xy 125.73 72.39) (xy 125.73 71.12)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "af3cc0c8-3d2a-427d-8964-9003bb01f30c")
- )
- (wire
- (pts
- (xy 181.61 119.38) (xy 182.88 119.38)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b602d36e-f1cd-4705-b7b7-6efce6e3e9cc")
- )
- (wire
- (pts
- (xy 166.37 45.72) (xy 166.37 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b8ffcb98-8f9e-46d7-ad4c-524914309f95")
- )
- (wire
- (pts
- (xy 95.25 114.3) (xy 102.87 114.3)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c46c6ee3-eede-40c9-82ad-ca53d97c8621")
- )
- (wire
- (pts
- (xy 102.87 88.9) (xy 104.14 88.9)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ce4e28e8-23d5-4fee-a038-8d0b3a6467ab")
- )
- (wire
- (pts
- (xy 144.78 102.87) (xy 144.78 104.14)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d47a4ac2-d7c2-47d5-9612-dbe3d32eadc1")
- )
- (wire
- (pts
- (xy 181.61 118.11) (xy 181.61 119.38)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d85dfb68-9972-4ffa-ad77-19f3c89e4cc4")
- )
- (wire
- (pts
- (xy 144.78 40.64) (xy 144.78 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ef18f1c8-95dd-4736-9508-873b54386171")
- )
- (wire
- (pts
- (xy 166.37 54.61) (xy 152.4 54.61)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f3b99d11-77cc-43b2-9e80-92590ec55d15")
- )
- (wire
- (pts
- (xy 129.54 74.93) (xy 132.08 74.93)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f4a19f3f-97d2-4562-ae95-7fed1219209c")
- )
- (wire
- (pts
- (xy 129.54 74.93) (xy 129.54 78.74)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f9e9e5ad-0782-4aa7-98b5-eb8ab787cf1b")
- )
- (wire
- (pts
- (xy 152.4 54.61) (xy 152.4 53.34)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fed9011f-f073-4b59-a93a-6811c68afdb9")
- )
- (hierarchical_label "TX_PROG"
- (shape output)
- (at 95.25 110.49 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "52c86781-8389-46a5-b735-a908e06be1e4")
- )
- (hierarchical_label "RX"
- (shape input)
- (at 102.87 114.3 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "53772b67-45d4-4e79-9f4a-5ab611f897fc")
- )
- (hierarchical_label "TX"
- (shape output)
- (at 102.87 88.9 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "6ca87534-34be-4288-afea-e2f90ef5869e")
- )
- (hierarchical_label "WIFI_SETUP"
- (shape input)
- (at 161.29 81.28 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "781de45c-3b6c-49b7-ac47-714b81172dc3")
- )
- (hierarchical_label "ESP_STATE"
- (shape input)
- (at 128.27 74.93 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "82e12f49-fce1-4d51-a28c-666879550bcb")
- )
- (hierarchical_label "WIFI_STATUS"
- (shape output)
- (at 161.29 83.82 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "9343bfa0-4b89-42f8-bbb9-bb016a0b777d")
- )
- (hierarchical_label "RX"
- (shape input)
- (at 102.87 92.71 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "97826f2b-032e-440f-bf3e-024c6fbd9af4")
- )
- (hierarchical_label "RX_PROG"
- (shape input)
- (at 95.25 114.3 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "ad10ca0c-c677-4ee0-b608-11f2fc4806ba")
- )
- (hierarchical_label "TX"
- (shape output)
- (at 102.87 110.49 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "d3c99038-14a0-4fa6-9484-e976632ac35a")
- )
- (hierarchical_label "3V3"
- (shape input)
- (at 182.88 119.38 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "ffe4be74-3e8d-43bf-8a65-9cc9d05c7fc6")
- )
- (symbol
- (lib_id "Device:C")
- (at 152.4 49.53 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 "09b91b6e-8d45-4edf-8d4c-f1a3a01ff340")
- (property "Reference" "C21"
- (at 156.21 48.2599 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "22u"
- (at 156.21 50.7999 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
- (at 153.3652 53.34 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 152.4 49.53 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 152.4 49.53 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "66fdf2b0-5cbf-4aa0-861c-65b10a73dd47")
- )
- (pin "1"
- (uuid "d6b04b26-944c-4b53-af94-a255da73d025")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "C21")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 166.37 49.53 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 "0c3368fc-0ab5-4228-a95e-f9b2f40d9242")
- (property "Reference" "C17"
- (at 170.18 48.2599 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 170.18 50.7999 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"
- (at 167.3352 53.34 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 166.37 49.53 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 166.37 49.53 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "ae0ff720-eb7d-4051-bd37-da3e4ac69071")
- )
- (pin "1"
- (uuid "df37285f-96bd-4840-a86c-3b8d0af24ea6")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "C17")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "ESP_modules:ESP-01")
- (at 144.78 82.55 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 "6c6a9c2e-84ec-433d-8794-3d646c6cf813")
- (property "Reference" "U6"
- (at 146.9233 59.69 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "ESP-01"
- (at 146.9233 62.23 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "esp:ESP-01"
- (at 144.78 82.55 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://academy.cba.mit.edu/classes/networking_communications/ESP8266/esp01.pdf"
- (at 144.78 82.55 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 144.78 82.55 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "51858527-19ab-41de-8d1c-8f099fa9d02d")
- )
- (pin "2"
- (uuid "91005a85-5e55-437c-bb26-89f26654b385")
- )
- (pin "3"
- (uuid "9f8ecc7b-ebbc-4942-8177-dfad60b2ecf0")
- )
- (pin "4"
- (uuid "401c2942-5ed8-4e6c-aab6-e85473bd0641")
- )
- (pin "5"
- (uuid "bc49fac9-1a67-4d50-a51c-3c4586b54614")
- )
- (pin "6"
- (uuid "3b0a1577-5bfc-48bf-bca0-1407af073248")
- )
- (pin "7"
- (uuid "6d5f5f04-8e65-464f-ae22-eecd2e1d4440")
- )
- (pin "8"
- (uuid "0427ee4f-9119-4f70-97bd-651431c0f527")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "U6")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 113.03 67.31 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "80e375bd-6e05-4a68-b1bf-eab10d0827b9")
- (property "Reference" "R21"
- (at 114.554 65.786 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "10k"
- (at 114.554 68.326 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 114.808 67.31 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 113.03 67.31 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 113.03 67.31 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "3c7c45c8-c22f-4487-8fc9-0f8d82bd1f51")
- )
- (pin "1"
- (uuid "0492bfd6-0e38-4f3c-b32c-ba687af39db2")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "R21")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 181.61 118.11 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 "915cf053-4574-4358-9ca3-96057a82618c")
- (property "Reference" "#PWR077"
- (at 181.61 121.92 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 181.61 113.03 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 181.61 118.11 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 181.61 118.11 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 118.11 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "f3948cb1-4c7e-4843-8bb9-391a236ede4d")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "#PWR077")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 125.73 67.31 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "962ab460-361a-485a-8c31-324ea4e7018c")
- (property "Reference" "R24"
- (at 127.254 65.786 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "10k"
- (at 127.254 68.326 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 127.508 67.31 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 125.73 67.31 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 125.73 67.31 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "cb77e44d-8f91-4d5d-8f5a-404ac4cc236f")
- )
- (pin "1"
- (uuid "0d0d0f31-414d-41f7-8144-8b655b637d82")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "R24")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector:TestPoint_Probe")
- (at 129.54 78.74 180)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "c2b02536-e7a1-45a3-a0ca-8218a70fd1ed")
- (property "Reference" "TP13"
- (at 126.492 82.042 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "ESP_STATE"
- (at 126.492 80.01 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm"
- (at 124.46 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 124.46 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "test point (alternative probe-style design)"
- (at 129.54 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "91c01163-c47c-494d-b502-8372471fe562")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "TP13")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 113.03 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 "d0f837c0-0085-4ba5-b3bd-05dd61aa3ffc")
- (property "Reference" "#PWR075"
- (at 113.03 66.04 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 113.03 57.15 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 113.03 62.23 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 113.03 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 \"+3V3\""
- (at 113.03 62.23 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "42cfe05b-7921-434d-a303-59fe5804588d")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "#PWR075")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 144.78 40.64 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 "de56b4f2-c63a-4870-a3ab-9bd43f965ead")
- (property "Reference" "#PWR072"
- (at 144.78 44.45 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 144.78 35.56 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 144.78 40.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 144.78 40.64 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 144.78 40.64 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "f7eff4e5-e620-4514-ba15-52402de8a2bf")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "#PWR072")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 125.73 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 "e018d015-dd5a-421d-8409-4f56151a633d")
- (property "Reference" "#PWR078"
- (at 125.73 66.04 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 125.73 57.15 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 125.73 62.23 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 125.73 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 \"+3V3\""
- (at 125.73 62.23 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "cbda981d-ef31-4879-b72f-7d796db26616")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "#PWR078")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 144.78 104.14 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 "e6e09801-b63e-4d11-a144-c919ebc0779a")
- (property "Reference" "#PWR076"
- (at 144.78 110.49 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 144.78 109.22 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 144.78 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 144.78 104.14 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 144.78 104.14 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "94dfb811-7ab6-465f-bdca-44e8f3539d26")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "#PWR076")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 107.95 88.9 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "f72324a8-ebc0-4f9f-96d4-021843306aa8")
- (property "Reference" "R25"
- (at 105.918 86.868 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "100R"
- (at 105.41 90.932 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder"
- (at 107.95 90.678 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 107.95 88.9 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 107.95 88.9 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "9193cc84-bacc-40dc-bc05-62e20c17d25b")
- )
- (pin "1"
- (uuid "ed181693-9e4f-4147-9d57-ffab3583d6a3")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "R25")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 166.37 55.88 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "ff91a7fd-3868-4184-a50b-37cdb102ac91")
- (property "Reference" "#PWR073"
- (at 166.37 62.23 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 166.37 60.96 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 166.37 55.88 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 166.37 55.88 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 166.37 55.88 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "b6c995cb-5838-4702-abb3-c24067695d05")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/0f9e9496-270c-4fa6-a1dd-88883876bb61"
- (reference "#PWR073")
- (unit 1)
- )
- )
- )
- )
- )
|