| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202 |
- (kicad_sch
- (version 20260306)
- (generator "eeschema")
- (generator_version "10.0")
- (uuid "7cc889a8-1a63-4464-b152-8fe23a9c82be")
- (paper "A4")
- (lib_symbols
- (symbol "Connector_Generic:Conn_02x01"
- (pin_names
- (offset 1.016)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "J"
- (at 1.27 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Conn_02x01"
- (at 1.27 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "connector"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "Connector*:*_2x??_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "Conn_02x01_1_1"
- (rectangle
- (start -1.27 1.27)
- (end 3.81 -1.27)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- (rectangle
- (start -1.27 0.127)
- (end 0 -0.127)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start 3.81 0.127)
- (end 2.54 -0.127)
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin passive line
- (at -5.08 0 0)
- (length 3.81)
- (name "Pin_1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 7.62 0 180)
- (length 3.81)
- (name "Pin_2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (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" "U"
- (at -9.652 18.034 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "ESP-01"
- (at 6.096 18.034 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" "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 -7.62 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 -10.16 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 143.51 57.15)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "466f71c4-203e-46b7-ab11-22fe229d31d0")
- )
- (junction
- (at 107.95 113.03)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "69b58a09-972f-4c23-afc6-7a366868192e")
- )
- (junction
- (at 107.95 77.47)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "82258aa3-5617-4b33-834e-2b232ef755b6")
- )
- (junction
- (at 119.38 92.71)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "831653a2-cf66-4a52-aa5b-b0c708b582e4")
- )
- (junction
- (at 107.95 95.25)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c207c84b-9854-4884-9bc3-626b086ac832")
- )
- (wire
- (pts
- (xy 156.21 101.6) (xy 158.75 101.6)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "019453bc-6f52-4a50-9f1a-b605a602c03d")
- )
- (wire
- (pts
- (xy 107.95 110.49) (xy 107.95 113.03)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "033ba43f-fb3a-4709-9e7e-fb12e8e86212")
- )
- (wire
- (pts
- (xy 107.95 74.93) (xy 107.95 77.47)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0f7b90b1-4609-4671-8f1c-d990aa0d1b0b")
- )
- (wire
- (pts
- (xy 119.38 92.71) (xy 119.38 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "17a552cc-5dfb-46eb-8414-a2dc4eaceff1")
- )
- (wire
- (pts
- (xy 1.3462 1.3462) (xy 3.8862 1.3462)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1b8ecd04-448c-423d-aa12-583e1d946493")
- )
- (wire
- (pts
- (xy 119.38 110.49) (xy 119.38 113.03)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "215f48f4-7c03-460c-8154-3b03968e3c89")
- )
- (wire
- (pts
- (xy 1.3462 16.5862) (xy 1.3462 1.3462)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3493401a-b003-4f11-b698-e2963fe7852e")
- )
- (wire
- (pts
- (xy 107.95 95.25) (xy 107.95 97.79)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3b80f4d8-b78a-4daf-90fd-ef8f3a22a164")
- )
- (wire
- (pts
- (xy 107.95 87.63) (xy 107.95 95.25)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3ff5e314-f6f8-4333-9d13-75d5f1e6168c")
- )
- (wire
- (pts
- (xy 107.95 113.03) (xy 119.38 113.03)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "442246ba-9a3c-4040-8acd-06931e4ac220")
- )
- (wire
- (pts
- (xy 143.51 123.19) (xy 143.51 125.73)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4c43359b-5ca3-4277-a42b-fa348601de64")
- )
- (wire
- (pts
- (xy 35.6362 20.3962) (xy 0.0762 20.3962)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5dbbec94-4f33-4df6-9abb-1c928867fb09")
- )
- (wire
- (pts
- (xy 143.51 57.15) (xy 143.51 82.55)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "64a3a6ff-a061-4d60-89f9-74fa4a7e0a1f")
- )
- (wire
- (pts
- (xy 128.27 110.49) (xy 130.81 110.49)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6d06e2e9-fe5e-46a0-a82c-91c0568e1447")
- )
- (wire
- (pts
- (xy 107.95 77.47) (xy 119.38 77.47)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "72de7c34-63ea-410c-bdaa-590375f793e8")
- )
- (wire
- (pts
- (xy 119.38 92.71) (xy 130.81 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8358198d-45aa-4214-badb-eb836613d26e")
- )
- (wire
- (pts
- (xy 149.86 69.85) (xy 149.86 67.31)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "83e783a1-8540-4c25-bb1c-f254edffa0e3")
- )
- (wire
- (pts
- (xy 107.95 77.47) (xy 107.95 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a7bc42ac-ef09-4002-8523-8a095fc15e6c")
- )
- (wire
- (pts
- (xy 128.27 113.03) (xy 130.81 113.03)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "adc95c3b-0351-42fd-ac1d-ac7dbb3761b6")
- )
- (wire
- (pts
- (xy 119.38 87.63) (xy 119.38 92.71)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b7fdb6e3-1940-49bb-8eae-fd3bbc7c18c6")
- )
- (wire
- (pts
- (xy 107.95 115.57) (xy 107.95 113.03)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c95645fb-19a5-44ee-9cf6-b4f6794c11dd")
- )
- (wire
- (pts
- (xy 0.0762 0.0762) (xy 1.3462 0.0762)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d96d8dda-27c9-4642-820b-e90d31a65231")
- )
- (wire
- (pts
- (xy 119.38 77.47) (xy 119.38 80.01)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "dc9ec121-ba7b-4d80-adce-91a308d5f715")
- )
- (wire
- (pts
- (xy 156.21 104.14) (xy 158.75 104.14)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e445b083-d251-42f2-b04f-a2eca713cfd9")
- )
- (wire
- (pts
- (xy 107.95 95.25) (xy 130.81 95.25)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e4dd9f49-06ee-49e7-b96a-a4531646c240")
- )
- (wire
- (pts
- (xy 143.51 54.61) (xy 143.51 57.15)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "eaed46a2-ec18-491b-bdd3-f22dc8e44992")
- )
- (wire
- (pts
- (xy 0.0762 20.3962) (xy 0.0762 0.0762)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ef7513e2-b423-4d3b-98a3-e1585dc3d59c")
- )
- (wire
- (pts
- (xy 35.6362 16.5862) (xy 1.3462 16.5862)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f28d5748-13ef-46f2-9f4b-d70feba9157a")
- )
- (wire
- (pts
- (xy 143.51 57.15) (xy 149.86 57.15)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f5fbaf68-52ea-4a1b-9971-7b9c5d402c9b")
- )
- (wire
- (pts
- (xy 149.86 57.15) (xy 149.86 59.69)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ffbfcd2f-fc4f-4f92-9479-7016b6a9ce36")
- )
- (hierarchical_label "TX"
- (shape output)
- (at 128.27 113.03 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "a63336f3-c77c-4a8b-ad92-01e89a94ab79")
- )
- (hierarchical_label "RF_LED"
- (shape output)
- (at 158.75 101.6 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "b0bd845a-2426-41d0-9691-8c6a123ca4e1")
- )
- (hierarchical_label "LEDS_CHAIN"
- (shape output)
- (at 158.75 104.14 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "d20a5d34-146a-45d7-8aeb-4f6f59bcae78")
- )
- (hierarchical_label "RX"
- (shape input)
- (at 128.27 110.49 180)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "f0db8a5e-0d08-4dba-970d-64f12c0127e5")
- )
- (symbol
- (lib_id "Connector_Generic:Conn_02x01")
- (at 107.95 105.41 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "03e2d858-b0e8-4b86-a389-1adb65298a67")
- (property "Reference" "J1"
- (at 109.22 102.616 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "BURN"
- (at 109.22 105.41 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical"
- (at 107.95 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 107.95 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 107.95 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "928edfd6-a93a-4d01-9787-96b110b236dc")
- )
- (pin "1"
- (uuid "0a03438e-c8ab-45fa-8718-8b255d017448")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "J1")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 119.38 83.82 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "4e74fe30-ec53-44a7-974d-3820fbcc63de")
- (property "Reference" "R17"
- (at 120.396 82.55 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "10k"
- (at 120.396 85.09 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 117.602 83.82 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 119.38 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 119.38 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "7469f3cb-cb50-4514-95e3-afcc908bdd98")
- )
- (pin "1"
- (uuid "6c19f06e-71e9-4696-a242-bf170e4cc825")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "R17")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 149.86 63.5 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "708431c3-b935-4ab6-86f4-60cad7d7edff")
- (property "Reference" "C10"
- (at 149.86 61.468 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100n"
- (at 149.86 65.532 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder"
- (at 150.8252 67.31 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 149.86 63.5 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 149.86 63.5 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "3f75ff90-17f3-49a7-924c-3c5d5481c157")
- )
- (pin "2"
- (uuid "2e8cf8d7-dac3-4e8f-ac33-b4748dff9c91")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "C10")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:R")
- (at 107.95 83.82 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "8893a592-e7ad-4bb9-86b8-d6dfae161c4f")
- (property "Reference" "R18"
- (at 108.966 82.55 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "10k"
- (at 108.966 85.09 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder"
- (at 106.172 83.82 90)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 107.95 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Resistor"
- (at 107.95 83.82 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "e02c6660-fafb-4154-ac16-0995122a50f1")
- )
- (pin "1"
- (uuid "664e64f1-0d71-4440-9424-66266e4f7205")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "R18")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 143.51 54.61 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 "abc37a81-886f-4d7f-9289-bfc35e6456e9")
- (property "Reference" "#PWR028"
- (at 143.51 58.42 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 143.51 49.53 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 143.51 54.61 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 143.51 54.61 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 143.51 54.61 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "0ffcb4b1-a088-492f-9ee0-e9c73454bc8d")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "#PWR028")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 149.86 69.85 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 "af2fbd88-2944-4f72-8a86-223132e4e065")
- (property "Reference" "#PWR029"
- (at 149.86 76.2 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 149.86 74.93 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 149.86 69.85 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 149.86 69.85 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 69.85 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "2903e1a1-5983-4c01-8dba-09dadf8b5779")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "#PWR029")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "ESP_modules:ESP-01")
- (at 143.51 102.87 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "b1cfa9ca-8ff9-4aa8-b59d-488d87badb92")
- (property "Reference" "U4"
- (at 133.35 84.074 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "ESP-01"
- (at 146.304 84.074 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "esp:ESP-01"
- (at 143.51 102.87 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 143.51 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 143.51 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "4"
- (uuid "4ee66ff2-d82c-4467-aa19-f60fcdaaee96")
- )
- (pin "7"
- (uuid "5d1d07af-8776-4f2e-91d6-6635281b8bb1")
- )
- (pin "6"
- (uuid "8dd13f3a-3ca1-4e6c-96d5-d17972a5937a")
- )
- (pin "5"
- (uuid "39f2dcf5-1540-4fed-83f8-af348c9634d9")
- )
- (pin "3"
- (uuid "ea60181c-c973-4722-b5bc-0b75855661d6")
- )
- (pin "2"
- (uuid "aa9ff680-a187-4595-8d3c-70873e1f6a95")
- )
- (pin "1"
- (uuid "73712446-841b-4022-98d3-44abcb6b4a6e")
- )
- (pin "8"
- (uuid "0932b22e-8708-4a9a-a5eb-543b7f92e615")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "U4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Connector_Generic:Conn_02x01")
- (at 119.38 105.41 90)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "bb6f10d5-cf59-4a94-836e-1f0724b83943")
- (property "Reference" "J4"
- (at 120.65 102.616 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "ESP_RST"
- (at 120.65 105.41 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical"
- (at 119.38 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 119.38 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)"
- (at 119.38 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "78a06b56-8033-45db-9a88-9c1bde1f48ea")
- )
- (pin "1"
- (uuid "24ba3cf1-0481-4528-98cc-7e41a04437e3")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "J4")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 143.51 125.73 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 "bec363de-3444-4b38-a35a-15334708eafa")
- (property "Reference" "#PWR025"
- (at 143.51 132.08 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 143.51 130.81 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 143.51 125.73 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 143.51 125.73 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 143.51 125.73 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "98cc1e3f-a0c2-4641-9aee-29818e1fc471")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "#PWR025")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 107.95 115.57 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 "d8225516-59cc-417d-8443-ba9e85537347")
- (property "Reference" "#PWR026"
- (at 107.95 121.92 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 107.95 120.65 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 107.95 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 107.95 115.57 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 107.95 115.57 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "45ce23ba-d347-44d4-82e3-4088c38b16c3")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "#PWR026")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 107.95 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 "e3b820bb-76e8-4f3e-9aeb-0b99fafb96ff")
- (property "Reference" "#PWR027"
- (at 107.95 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 107.95 69.85 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 107.95 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 107.95 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 \"+3V3\""
- (at 107.95 74.93 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "03c0f93a-e2ea-4f8c-b698-abf082626275")
- )
- (instances
- (project "cx-copter"
- (path "/ba52275e-7265-4eef-bd45-f34f2790d7f1/1b0a1d68-e8b7-4c38-9961-408ecb09dccc"
- (reference "#PWR027")
- (unit 1)
- )
- )
- )
- )
- )
|