| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082 |
- (kicad_sch
- (version 20231120)
- (generator "eeschema")
- (generator_version "8.0")
- (uuid "9665ebc7-28f2-41dc-b976-4876726bc137")
- (paper "A4")
- (lib_symbols
- (symbol "Module:ESP-12F"
- (pin_names
- (offset 1.016)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U"
- (at 11.43 -15.24 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- )
- )
- (property "Value" "ESP-12F"
- (at 0 15.24 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- )
- )
- (property "Footprint" ""
- (at 0 -1.27 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 -1.27 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "ESP-12F_0_1"
- (rectangle
- (start -12.7 -12.7)
- (end 12.7 13.97)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start 6.35 -12.7)
- (end 6.35 -12.7)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "ESP-12F_1_1"
- (pin input line
- (at -17.78 11.43 0)
- (length 5.08)
- (name "RST"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -3.81 -17.78 90)
- (length 5.08)
- (name "MISO"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -1.27 -17.78 90)
- (length 5.08)
- (name "GPIO9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "11"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 1.27 -17.78 90)
- (length 5.08)
- (name "GPIO10"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "12"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 3.81 -17.78 90)
- (length 5.08)
- (name "MOSI"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "13"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 6.35 -17.78 90)
- (length 5.08)
- (name "SCLK"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "14"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 17.78 -6.35 180)
- (length 5.08)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "15"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 17.78 -3.81 180)
- (length 5.08)
- (name "GPIO15"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "16"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 17.78 -1.27 180)
- (length 5.08)
- (name "GPIO2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "17"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 17.78 1.27 180)
- (length 5.08)
- (name "GPIO0"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "18"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 17.78 3.81 180)
- (length 5.08)
- (name "GPIO4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "19"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 8.89 0)
- (length 5.08)
- (name "ADC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 17.78 6.35 180)
- (length 5.08)
- (name "GPIO5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "20"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 17.78 8.89 180)
- (length 5.08)
- (name "RXD"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "21"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at 17.78 11.43 180)
- (length 5.08)
- (name "TXD"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "22"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 6.35 0)
- (length 5.08)
- (name "EN"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 3.81 0)
- (length 5.08)
- (name "GPIO16"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 1.27 0)
- (length 5.08)
- (name "GPIO14"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 -1.27 0)
- (length 5.08)
- (name "GPIO12"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 -3.81 0)
- (length 5.08)
- (name "GPIO13"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -17.78 -6.35 0)
- (length 5.08)
- (name "VCC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -6.35 -17.78 90)
- (length 5.08)
- (name "CS0"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "9"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "conn:CONN_01X05"
- (pin_names
- (offset 1.016) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "P"
- (at 0 7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "CONN_01X05"
- (at 2.54 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X05 Pin_Header_Angled_1X05 Socket_Strip_Straight_1X05 Socket_Strip_Angled_1X05"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "CONN_01X05_0_1"
- (rectangle
- (start -1.27 -4.953)
- (end 0.254 -5.207)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 -2.413)
- (end 0.254 -2.667)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 0.127)
- (end 0.254 -0.127)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 2.667)
- (end 0.254 2.413)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 5.207)
- (end 0.254 4.953)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 6.35)
- (end 1.27 -6.35)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "CONN_01X05_1_1"
- (pin passive line
- (at -5.08 5.08 0)
- (length 3.81)
- (name "P1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 2.54 0)
- (length 3.81)
- (name "P2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 0 0)
- (length 3.81)
- (name "P3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -2.54 0)
- (length 3.81)
- (name "P4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -5.08 0)
- (length 3.81)
- (name "P5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "global:C"
- (pin_numbers hide)
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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.016 1.016)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- )
- )
- )
- (symbol "global:R"
- (pin_numbers hide)
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "R"
- (at 2.032 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "R"
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "R_* Resistor_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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)
- )
- )
- )
- )
- )
- )
- )
- (junction
- (at 24.13 16.51)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2cffcee9-8871-4410-b6d2-b7dddac05c5d")
- )
- (junction
- (at 27.94 62.23)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "6185fdf8-8d65-4ea9-8db9-f3c604a354a1")
- )
- (junction
- (at 30.48 27.94)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "a88798fe-decd-4fa2-8f29-74447799eef7")
- )
- (junction
- (at 88.9 38.1)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "cf51d4d7-d432-423e-901f-a7df50c83ee3")
- )
- (junction
- (at 27.94 54.61)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "df9ba796-f680-4d71-83e4-83f135e655e1")
- )
- (junction
- (at 95.25 24.13)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "fbe015d9-b3d0-4695-8d53-84e8927323fa")
- )
- (no_connect
- (at 36.83 38.1)
- (uuid "25e11784-3a59-4f4f-9b16-77cdd6082bbc")
- )
- (no_connect
- (at 36.83 40.64)
- (uuid "421c5ed9-e4cd-46af-b4fb-2b18d7fa93da")
- )
- (no_connect
- (at 60.96 57.15)
- (uuid "4fe3e923-9850-4c74-8451-37c24bf79676")
- )
- (no_connect
- (at 58.42 57.15)
- (uuid "7e99c5f3-0ead-467c-a8c3-f5bbc290611c")
- )
- (no_connect
- (at 36.83 35.56)
- (uuid "9f713c0d-868a-4290-bca3-027ceaf9dc10")
- )
- (no_connect
- (at 50.8 57.15)
- (uuid "a97a81d0-f180-44e0-a3d8-8b7759aa9eca")
- )
- (no_connect
- (at 36.83 43.18)
- (uuid "a9cae65d-165a-41a9-9a22-fd8445a81df3")
- )
- (no_connect
- (at 53.34 57.15)
- (uuid "b36c8c09-a5c6-4cbe-9080-34b5a43995f4")
- )
- (no_connect
- (at 36.83 30.48)
- (uuid "c1333edb-e2bd-410d-9de7-11a3302fd9b5")
- )
- (no_connect
- (at 55.88 57.15)
- (uuid "d73a664b-4cb1-46b2-8b0f-5920d20fec5d")
- )
- (no_connect
- (at 72.39 33.02)
- (uuid "dbc11d04-59cc-4fc9-9340-70805268b454")
- )
- (no_connect
- (at 48.26 57.15)
- (uuid "edae29a4-9b4d-4bc8-bc36-7c9173aaed7c")
- )
- (no_connect
- (at 72.39 35.56)
- (uuid "fc281f08-cc4f-43d7-85e1-f3a38c08bd75")
- )
- (wire
- (pts
- (xy 21.59 16.51) (xy 24.13 16.51)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0632cfe1-0141-4872-bca2-3386fe819f95")
- )
- (wire
- (pts
- (xy 88.9 31.75) (xy 88.9 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1201e02a-9950-4718-890b-541f827e24ca")
- )
- (wire
- (pts
- (xy 95.25 24.13) (xy 97.79 24.13)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "16e9104e-7caf-427e-8352-3603bfc9f885")
- )
- (wire
- (pts
- (xy 17.78 27.94) (xy 30.48 27.94)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "17cafdf7-93c7-4756-a2b8-880722a84506")
- )
- (wire
- (pts
- (xy 30.48 27.94) (xy 36.83 27.94)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1daf04b9-2c1b-41ce-b373-d7ec46dd774e")
- )
- (wire
- (pts
- (xy 88.9 24.13) (xy 95.25 24.13)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "259c9a94-4ee4-420d-8b91-284b9179a2ce")
- )
- (wire
- (pts
- (xy 24.13 33.02) (xy 36.83 33.02)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2a2474c1-2117-494f-8cf3-37760f2b5162")
- )
- (wire
- (pts
- (xy 95.25 31.75) (xy 95.25 40.64)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3587b16a-b76c-4e53-a2a7-d91959cd3a18")
- )
- (wire
- (pts
- (xy 24.13 16.51) (xy 30.48 16.51)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4960c00b-a81e-43e8-9f42-ee6129ba85f4")
- )
- (wire
- (pts
- (xy 22.86 62.23) (xy 27.94 62.23)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "504727e5-0a5f-4c1e-b9e0-ca7d6f042143")
- )
- (wire
- (pts
- (xy 30.48 24.13) (xy 30.48 27.94)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5bbabcf8-01e7-4566-b232-eb800aad1b77")
- )
- (wire
- (pts
- (xy 22.86 54.61) (xy 27.94 54.61)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "64c8ac61-cd12-40d2-94aa-679411f15aeb")
- )
- (wire
- (pts
- (xy 88.9 38.1) (xy 100.33 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "67a8c8aa-68de-4680-bf5c-64f85d72b1b8")
- )
- (wire
- (pts
- (xy 72.39 38.1) (xy 88.9 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8883f6da-c9b4-4727-a3e7-cb10eea46085")
- )
- (wire
- (pts
- (xy 27.94 54.61) (xy 36.83 54.61)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "89dc4282-8229-4f89-83e2-901ab1fb3c3c")
- )
- (wire
- (pts
- (xy 72.39 40.64) (xy 95.25 40.64)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8b376445-6d5c-4252-8b36-28d688c6c7ce")
- )
- (wire
- (pts
- (xy 27.94 62.23) (xy 36.83 62.23)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "913b3cd7-6942-44ba-a892-a51b3d831a2d")
- )
- (wire
- (pts
- (xy 24.13 24.13) (xy 24.13 33.02)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "abc8e683-f00d-47d8-9a82-98354486ebd6")
- )
- (text "V2 :\nLa V2 du schéma de l'ESP utilise un NODE MCU pour programmé le ESP.\nNODE MCU sans esp\nPensé a mettre le STM32 en reset (monter sans le cable usb la carte de programation)"
- (exclude_from_sim no)
- (at 19.05 187.96 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "6339da43-b217-48b8-9b2c-238a5c6f0af1")
- )
- (text "ESP-12F\n"
- (exclude_from_sim no)
- (at 49.53 68.58 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify left bottom)
- )
- (uuid "66d73138-c54b-40cb-9ecf-36ef3f2bfd00")
- )
- (label "3.3V"
- (at 36.83 45.72 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify right bottom)
- )
- (uuid "124fc515-0ae8-4f76-ad7a-5fb690d95265")
- )
- (label "3.3V"
- (at 97.79 24.13 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify left bottom)
- )
- (uuid "15c0a256-5301-4e11-9a68-9f1ca3a9b66d")
- )
- (label "GND"
- (at 22.86 62.23 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify right bottom)
- )
- (uuid "1955cfa8-494a-4ff1-95e4-449cb77cc943")
- )
- (label "TX"
- (at 125.73 26.67 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify right bottom)
- )
- (uuid "1b9a8554-f1e1-42d6-b46a-c598e59fb4e7")
- )
- (label "RST"
- (at 17.78 27.94 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "1fa6075c-d807-45d7-a9c1-ac71b85c429e")
- )
- (label "TX"
- (at 72.39 27.94 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify left bottom)
- )
- (uuid "239e3a2b-c5b3-44ac-8317-269bfe9bb9d0")
- )
- (label "GND"
- (at 72.39 43.18 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify left bottom)
- )
- (uuid "24b8e56c-330a-4446-b97e-3e13ea825498")
- )
- (label "GPIO0"
- (at 100.33 38.1 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "2d8917e3-6d81-4308-889e-8d42c0264f69")
- )
- (label "3.3V"
- (at 22.86 54.61 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify right bottom)
- )
- (uuid "3d990992-5143-4d4c-8ba5-b029ebc06f4e")
- )
- (label "3.3V"
- (at 21.59 16.51 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify right bottom)
- )
- (uuid "61f8c0ae-53e1-47b7-a11f-e74a54d3fb5b")
- )
- (label "GND"
- (at 125.73 36.83 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify right bottom)
- )
- (uuid "6382f53a-d2f5-4940-9958-cf9f59e948a7")
- )
- (label "GND"
- (at 72.39 45.72 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify left bottom)
- )
- (uuid "8fe345cd-3398-4f70-b167-737d453ac8c5")
- )
- (label "RX"
- (at 125.73 29.21 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify right bottom)
- )
- (uuid "ac2cd8ec-0930-4e22-ba58-97ef2d885292")
- )
- (label "GPIO0"
- (at 125.73 31.75 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "d1c3c0fb-a90d-4e59-b2f1-e59228b5d867")
- )
- (label "RX"
- (at 72.39 30.48 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.524 1.524)
- )
- (justify left bottom)
- )
- (uuid "e50d7a5f-ca2e-43ce-9eb7-09cc4ac54d22")
- )
- (label "RST"
- (at 125.73 34.29 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "f5a64210-018e-416d-a63d-0665730f93ab")
- )
- (symbol
- (lib_id "global:R")
- (at 30.48 20.32 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005ceee96c")
- (property "Reference" "R?"
- (at 32.512 20.32 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10K"
- (at 30.48 20.32 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 28.702 20.32 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 30.48 20.32 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 30.48 20.32 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0910"
- (at 2.54 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "7bf289d6-68c4-412b-9f0a-4dffd3319dce")
- )
- (pin "2"
- (uuid "269c0a98-117f-47d0-84fe-c14359ed040f")
- )
- (instances
- (project ""
- (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 24.13 20.32 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005ceee974")
- (property "Reference" "R?"
- (at 26.162 20.32 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10K"
- (at 24.13 20.32 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 22.352 20.32 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 24.13 20.32 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 24.13 20.32 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0910"
- (at -3.81 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "a5bffeab-6117-4073-ac44-be5e14cf651d")
- )
- (pin "2"
- (uuid "b5fa7f5d-3107-4fe9-8640-4e9e65c0661a")
- )
- (instances
- (project ""
- (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 36.83 58.42 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005ceee98a")
- (property "Reference" "C?"
- (at 39.751 57.2516 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100nF"
- (at 39.751 59.563 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 37.7952 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 36.83 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 36.83 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0605"
- (at 5.08 106.68 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "5add8a08-1826-4ea1-8613-d67ac8663fce")
- )
- (pin "2"
- (uuid "c8f96216-9476-45d9-ac77-f9a1120b2891")
- )
- (instances
- (project ""
- (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 88.9 27.94 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005ceee994")
- (property "Reference" "R?"
- (at 90.932 27.94 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10K"
- (at 88.9 27.94 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 87.122 27.94 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 88.9 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 88.9 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0910"
- (at 13.97 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "fd06b059-d45f-4a65-805e-51d0b38327f9")
- )
- (pin "2"
- (uuid "56002ab7-0c97-47b1-aebc-898bb99738e7")
- )
- (instances
- (project ""
- (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 95.25 27.94 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005ceee99e")
- (property "Reference" "R?"
- (at 97.282 27.94 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "10K"
- (at 95.25 27.94 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 93.472 27.94 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 95.25 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 95.25 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0910"
- (at 17.78 69.85 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "156985ca-2324-4463-9ead-e18eb7e8550b")
- )
- (pin "2"
- (uuid "c807d400-0dea-4e24-94c5-c673284faa52")
- )
- (instances
- (project ""
- (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 27.94 58.42 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005ceee9c1")
- (property "Reference" "C?"
- (at 28.575 55.88 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "4.7µF"
- (at 28.575 60.96 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 28.9052 62.23 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 27.94 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 27.94 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0607"
- (at 7.62 235.585 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "27207fed-570b-499c-9b43-25bd84a1d79b")
- )
- (pin "2"
- (uuid "b28e35c6-8d26-446b-adb7-69d88fc6bd17")
- )
- (instances
- (project ""
- (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Module:ESP-12F")
- (at 54.61 39.37 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "00000000-0000-0000-0000-00005e455468")
- (property "Reference" "U?"
- (at 54.61 20.6502 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- )
- )
- (property "Value" "ESP-12F"
- (at 54.61 23.3426 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- )
- )
- (property "Footprint" "Module:ESP-12F"
- (at 54.61 40.64 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 54.61 40.64 0)
- (effects
- (font
- (size 1.524 1.524)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 54.61 39.37 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "2800"
- (at 54.61 39.37 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "f7557fa6-e168-4368-bec6-43e190ff5feb")
- )
- (pin "10"
- (uuid "a13a9891-08dc-45ff-bb45-7fe40ed0eae2")
- )
- (pin "11"
- (uuid "9673ae97-283d-4f2f-a6dd-94764eae7d22")
- )
- (pin "12"
- (uuid "fda4cbf1-9dfa-47c8-aa63-a2e6c8cd4526")
- )
- (pin "13"
- (uuid "7bca64fa-113c-42d1-a06c-cc12a8779975")
- )
- (pin "14"
- (uuid "029774aa-37cf-40f9-b943-d6d6389109dc")
- )
- (pin "15"
- (uuid "c10a3dd8-3382-4bfc-88fd-e85261581852")
- )
- (pin "16"
- (uuid "b68cee68-0981-4af5-a05a-f3a98132b38f")
- )
- (pin "17"
- (uuid "c090dc02-0ae5-4b89-adf8-b75751b6dc2f")
- )
- (pin "18"
- (uuid "2cd5b243-bf57-4c1c-b897-f28b3b0d68eb")
- )
- (pin "19"
- (uuid "36f899c5-db4a-44ac-9f00-7e280ef774bf")
- )
- (pin "2"
- (uuid "1a89d2a4-a6e0-417e-8bb8-610cd02e75f7")
- )
- (pin "20"
- (uuid "3babd4ef-0ae3-4506-b3a9-9aefd253edf4")
- )
- (pin "21"
- (uuid "8aa3169a-88e3-4d52-9e9c-a18c220a3dff")
- )
- (pin "22"
- (uuid "38e4bf0b-e3a5-4320-9d97-7f9e5a9f4c6b")
- )
- (pin "3"
- (uuid "c39c9fea-a4f2-4c7f-b400-bf438249cfe2")
- )
- (pin "4"
- (uuid "370fffc0-493a-4f29-bfde-bfdad1aad6da")
- )
- (pin "5"
- (uuid "2f586e05-bfe9-43ed-b148-2ea299d270c1")
- )
- (pin "6"
- (uuid "7625d1f8-c776-42d9-9ea3-299275481d23")
- )
- (pin "7"
- (uuid "4d2a91c1-5cc8-4757-8d33-f84fa73a210c")
- )
- (pin "8"
- (uuid "584b603b-ba83-4f7b-98c2-7878c32a6212")
- )
- (pin "9"
- (uuid "976216f2-adef-4035-a198-47057c207ae3")
- )
- (instances
- (project ""
- (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
- (reference "U?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "conn:CONN_01X05")
- (at 130.81 31.75 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "85572356-6139-4ed2-8486-a84cc09f4a4f")
- (property "Reference" "P?"
- (at 133.35 30.4799 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "CONN_01X05"
- (at 133.35 33.0199 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "PinHeader:PinHeader2.54_1X5_CMS"
- (at 130.81 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 130.81 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 130.81 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0100"
- (at 130.81 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "114e7ef6-8ed3-4db7-81de-d8691d836c8a")
- )
- (pin "2"
- (uuid "c94bd112-a30d-45dd-b7c6-2981c827d2f5")
- )
- (pin "3"
- (uuid "ee05f436-58c8-4b94-8789-aa3a8a915968")
- )
- (pin "4"
- (uuid "78eec8eb-77a8-4de3-abf7-1ee784f0af44")
- )
- (pin "5"
- (uuid "07d1f389-619c-45cf-96ee-667aceba32eb")
- )
- (instances
- (project ""
- (path "/9665ebc7-28f2-41dc-b976-4876726bc137"
- (reference "P?")
- (unit 1)
- )
- )
- )
- )
- (sheet_instances
- (path "/"
- (page "1")
- )
- )
- )
|