| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964 |
- (kicad_sch (version 20211123) (generator eeschema)
- (uuid 4c57000d-16a4-45b5-9ff0-ca64cb3fdf85)
- (paper "A4")
- (lib_symbols
- (symbol "DIodeInc:AP3211KTR-G1" (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 3.81 -10.16 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "AP3211KTR-G1" (id 1) (at 0 10.16 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 2.54 -2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 2.54 -2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "?" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "AP3211KTR-G1_0_0"
- (pin power_in line (at 0 -11.43 90) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -6.35 180) (length 2.54)
- (name "FB" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -7.62 -6.35 0) (length 2.54)
- (name "EN" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -7.62 6.35 0) (length 2.54)
- (name "IN" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 7.62 0 180) (length 2.54)
- (name "SW" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "AP3211KTR-G1_0_1"
- (rectangle (start -5.08 8.89) (end 5.08 -8.89)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- (symbol "AP3211KTR-G1_1_1"
- (pin passive line (at 7.62 6.35 180) (length 2.54)
- (name "BS" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Module:ESP-12F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 11.43 -15.24 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "ESP-12F" (id 1) (at 0 15.24 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 0 -1.27 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 -1.27 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "ESP-12F_0_1"
- (rectangle (start -12.7 -12.7) (end 12.7 13.97)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 6.35 -12.7) (end 6.35 -12.7)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (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_01X02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (id 0) (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X02" (id 1) (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X02 Pin_Header_Angled_1X02 Socket_Strip_Straight_1X02 Socket_Strip_Angled_1X02" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X02_0_1"
- (rectangle (start -1.27 -1.143) (end 0.254 -1.397)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 1.397) (end 0.254 1.143)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 2.54) (end 1.27 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CONN_01X02_1_1"
- (pin passive line (at -5.08 1.27 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 -1.27 0) (length 3.81)
- (name "P2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "conn:CONN_01X05" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "P" (id 0) (at 0 7.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CONN_01X05" (id 1) (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X05 Pin_Header_Angled_1X05 Socket_Strip_Straight_1X05 Socket_Strip_Angled_1X05" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CONN_01X05_0_1"
- (rectangle (start -1.27 -4.953) (end 0.254 -5.207)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 -2.413) (end 0.254 -2.667)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 0.127) (end 0.254 -0.127)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 2.667) (end 0.254 2.413)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 5.207) (end 0.254 4.953)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 6.35) (end 1.27 -6.35)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (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)) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.635 2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "C" (id 1) (at 0.635 -2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762)
- (xy 2.032 -0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.032 0.762)
- (xy 2.032 0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (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:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (id 0) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "D" (id 1) (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "D_0_1"
- (polyline
- (pts
- (xy -1.27 1.27)
- (xy -1.27 -1.27)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy -1.27 0)
- (xy 1.27 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- )
- (symbol "D_1_1"
- (pin passive line (at -3.81 0 0) (length 2.54)
- (name "K" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 3.81 0 180) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:FUSE" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
- (property "Reference" "F" (id 0) (at 2.54 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "FUSE" (id 1) (at -2.54 -1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (symbol "FUSE_0_1"
- (arc (start 0 0) (mid -1.905 1.905) (end -3.81 0)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start 0 0) (mid 1.905 -1.905) (end 3.81 0)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "FUSE_1_1"
- (pin input line (at -6.35 0 0) (length 2.54)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "1" (effects (font (size 1.016 1.016))))
- )
- (pin input line (at 6.35 0 180) (length 2.54)
- (name "~" (effects (font (size 1.016 1.016))))
- (number "2" (effects (font (size 1.016 1.016))))
- )
- )
- )
- (symbol "global:INDUCTOR" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "L" (id 0) (at -1.27 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "INDUCTOR" (id 1) (at 2.54 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (symbol "INDUCTOR_0_1"
- (arc (start 0.0254 -5.0546) (mid 1.2449 -3.8097) (end 0.0254 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start 0.0254 -2.5146) (mid 1.2703 -1.2444) (end 0.0254 0.0508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start 0.0254 0.0254) (mid 1.2703 1.2956) (end 0.0254 2.5908)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (arc (start 0.0254 2.5654) (mid 1.1941 3.7595) (end 0.0254 4.9784)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "INDUCTOR_1_1"
- (pin passive line (at 0 7.62 270) (length 2.54)
- (name "1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -7.62 90) (length 2.54)
- (name "2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:N_MOSFET" (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "Q" (id 0) (at 4.064 3.556 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "N_MOSFET" (id 1) (at 0 -3.556 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "N_MOSFET_0_1"
- (polyline
- (pts
- (xy -1.27 1.016)
- (xy 1.27 1.016)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.016 0.508)
- (xy -1.016 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.762 0.508)
- (xy -1.27 0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.254 -0.508)
- (xy 0 -0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.254 0.508)
- (xy 0.254 0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 -0.254)
- (xy 0 -0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 -0.254)
- (xy 0.254 -0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0.508)
- (xy 0 -0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 1.27)
- (xy 0 1.016)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.254 -0.508)
- (xy 0 -0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.762 0.508)
- (xy 1.27 0.508)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 -1.27)
- (xy 0 -1.27)
- (xy 0 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.016 0.508)
- (xy 1.016 -1.27)
- (xy 1.27 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0.254)
- (xy -0.254 -0.508)
- (xy 0.254 -0.508)
- (xy 0 0.254)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 0 0) (radius 2.032)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "N_MOSFET_1_1"
- (pin input line (at 0 6.35 270) (length 5.08)
- (name "G" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 6.35 -1.27 180) (length 5.08)
- (name "D" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -6.35 -1.27 0) (length 5.08)
- (name "S" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "global:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "R" (id 0) (at 2.032 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "R" (id 1) (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at -1.778 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_0_1"
- (rectangle (start -1.016 -2.54) (end 1.016 2.54)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (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))))
- )
- )
- )
- (symbol "global:TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (id 0) (at 3.81 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "TVS" (id 1) (at -3.81 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Datasheet" "" (id 3) (at 0 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "TVS_0_1"
- (polyline
- (pts
- (xy -1.27 1.27)
- (xy -2.54 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy -1.27 1.27)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy 2.54 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 -1.27)
- (xy 0 1.27)
- (xy -1.27 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- )
- (symbol "TVS_1_1"
- (pin passive line (at 0 3.81 270) (length 2.54)
- (name "K" (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.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- )
- (junction (at 140.97 97.79) (diameter 0) (color 0 0 0 0)
- (uuid 028e0e88-46d1-44e6-ba95-8e2b2e6d850b)
- )
- (junction (at 193.04 22.86) (diameter 0) (color 0 0 0 0)
- (uuid 0b8f8a49-2bd1-454a-a34d-799840bab973)
- )
- (junction (at 38.1 186.69) (diameter 0) (color 0 0 0 0)
- (uuid 0e35902c-1976-4f77-9472-362e36d64d04)
- )
- (junction (at 132.08 30.48) (diameter 0) (color 0 0 0 0)
- (uuid 0eda204c-5210-45fb-847f-dcbe50ea9a1a)
- )
- (junction (at 142.24 15.24) (diameter 0) (color 0 0 0 0)
- (uuid 0f75004e-0a0a-4b8e-8fba-3ea5aea5f22b)
- )
- (junction (at 67.31 91.44) (diameter 0) (color 0 0 0 0)
- (uuid 1d20764d-449f-4da3-8e29-f52514b8ac4f)
- )
- (junction (at 105.41 148.59) (diameter 0) (color 0 0 0 0)
- (uuid 27744428-1fe4-4fb0-a93a-61c36bb4be8b)
- )
- (junction (at 91.44 15.24) (diameter 0) (color 0 0 0 0)
- (uuid 3beccf76-af9c-42a6-b842-74d74ad0f53b)
- )
- (junction (at 142.24 55.88) (diameter 0) (color 0 0 0 0)
- (uuid 41b79675-b5b9-4b9c-bf6b-53c6e037568f)
- )
- (junction (at 34.29 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 44570ccd-e59f-4192-8890-3c2ddd9df6d8)
- )
- (junction (at 191.77 48.26) (diameter 0) (color 0 0 0 0)
- (uuid 4705052b-d218-4cfc-a019-884b0e53bf74)
- )
- (junction (at 40.64 48.26) (diameter 0) (color 0 0 0 0)
- (uuid 5e0d7ac1-d482-4b36-88ce-48cbc2d862d2)
- )
- (junction (at 193.04 15.24) (diameter 0) (color 0 0 0 0)
- (uuid 5fdd7ead-8209-471a-b61c-00e757d728ae)
- )
- (junction (at 191.77 55.88) (diameter 0) (color 0 0 0 0)
- (uuid 607bca8f-4a84-4572-8091-2a46df3c9817)
- )
- (junction (at 40.64 55.88) (diameter 0) (color 0 0 0 0)
- (uuid 63262350-1c9b-4fd5-ab58-af566e0eb6f6)
- )
- (junction (at 90.17 48.26) (diameter 0) (color 0 0 0 0)
- (uuid 7093f905-2cb8-46d5-aa6b-4a242151dc81)
- )
- (junction (at 58.42 91.44) (diameter 0) (color 0 0 0 0)
- (uuid 84a648c2-4470-418f-a1d5-af3c6d3b1ca8)
- )
- (junction (at 142.24 22.86) (diameter 0) (color 0 0 0 0)
- (uuid 86ffe591-2272-44be-8848-e91695972dd0)
- )
- (junction (at 40.64 15.24) (diameter 0) (color 0 0 0 0)
- (uuid 896851d8-95f0-4fe1-accd-6689302ce27e)
- )
- (junction (at 73.66 91.44) (diameter 0) (color 0 0 0 0)
- (uuid 8aa11261-8b22-4332-8e96-551dfa34b36e)
- )
- (junction (at 81.28 30.48) (diameter 0) (color 0 0 0 0)
- (uuid 95916e54-def9-430e-9401-0ba687b4ee59)
- )
- (junction (at 30.48 30.48) (diameter 0) (color 0 0 0 0)
- (uuid 95dbb73a-69c1-4460-96ec-499c0c017e7f)
- )
- (junction (at 80.01 63.5) (diameter 0) (color 0 0 0 0)
- (uuid 99ce86cf-ae4c-48e3-a0c9-476ce8c7256b)
- )
- (junction (at 40.64 22.86) (diameter 0) (color 0 0 0 0)
- (uuid b07a178e-f46b-42ae-a7a9-0f383eb5b342)
- )
- (junction (at 132.08 63.5) (diameter 0) (color 0 0 0 0)
- (uuid b27fb3eb-a97f-4778-9aa7-f42d53f5f78a)
- )
- (junction (at 99.06 162.56) (diameter 0) (color 0 0 0 0)
- (uuid b557cfbe-9232-4401-b826-5b91b060f942)
- )
- (junction (at 40.64 152.4) (diameter 0) (color 0 0 0 0)
- (uuid b9a7d31a-75ec-40c1-8574-0f55d4abb61e)
- )
- (junction (at 30.48 63.5) (diameter 0) (color 0 0 0 0)
- (uuid bd5d73d8-9f7b-4b1d-8132-db187bdc79a8)
- )
- (junction (at 142.24 48.26) (diameter 0) (color 0 0 0 0)
- (uuid beffc9c7-bd8b-43bd-a369-585c0838dd1b)
- )
- (junction (at 182.88 30.48) (diameter 0) (color 0 0 0 0)
- (uuid c3783eed-17c2-4967-bf6b-5f8154f628e3)
- )
- (junction (at 91.44 22.86) (diameter 0) (color 0 0 0 0)
- (uuid c6f69ced-b6b5-4b6a-bd09-27694682401d)
- )
- (junction (at 128.27 97.79) (diameter 0) (color 0 0 0 0)
- (uuid d098e9bd-493e-4460-92a2-b6b2caa71fe4)
- )
- (junction (at 105.41 97.79) (diameter 0) (color 0 0 0 0)
- (uuid d582eb04-b3d4-41f3-8ad0-656d775c0540)
- )
- (junction (at 128.27 107.95) (diameter 0) (color 0 0 0 0)
- (uuid df237b2b-48e1-4451-bbad-4405eadd362d)
- )
- (junction (at 38.1 179.07) (diameter 0) (color 0 0 0 0)
- (uuid e0e4b5bb-489b-4654-9568-90a2bf48001a)
- )
- (junction (at 101.6 97.79) (diameter 0) (color 0 0 0 0)
- (uuid ea6abac3-db3c-4164-a18f-a2c4fd637703)
- )
- (junction (at 181.61 63.5) (diameter 0) (color 0 0 0 0)
- (uuid ef7b7476-d2b9-453e-9c63-80e39a10bfa8)
- )
- (junction (at 90.17 55.88) (diameter 0) (color 0 0 0 0)
- (uuid f7765803-9a1e-4cf0-abee-4fe3ee413b6c)
- )
- (no_connect (at 46.99 154.94) (uuid 63ac02dc-fb8a-40f9-8969-60060c9dae0e))
- (no_connect (at 60.96 181.61) (uuid 97f595ec-67d4-48a5-8c32-d300e8a42637))
- (no_connect (at 68.58 181.61) (uuid afa0507b-0217-4a93-9ab1-ac1c2280be8a))
- (no_connect (at 58.42 181.61) (uuid d6c84f10-e660-4223-af45-cf324f4fd29d))
- (no_connect (at 71.12 181.61) (uuid eba19ec9-2225-4ec9-8f60-3f08e8198275))
- (wire (pts (xy 142.24 46.99) (xy 142.24 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0747720b-e27a-4131-823b-b70c1c6bc957)
- )
- (wire (pts (xy 91.44 20.32) (xy 91.44 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0750d9d5-3a5d-4752-89ee-9003e6d58749)
- )
- (wire (pts (xy 90.17 48.26) (xy 90.17 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0bc85283-5886-49d2-93c1-8bc3d90a4570)
- )
- (wire (pts (xy 133.35 48.26) (xy 142.24 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0d793688-1511-4f29-beab-5492235d5a2e)
- )
- (wire (pts (xy 40.64 46.99) (xy 40.64 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0f559b21-c0e0-4275-9e17-b09723fcb9c6)
- )
- (wire (pts (xy 91.44 13.97) (xy 91.44 15.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1092f9a1-e1d1-4a28-9561-2f4294e22324)
- )
- (wire (pts (xy 78.74 30.48) (xy 81.28 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 14b47029-572c-4288-b172-79b8f98d827d)
- )
- (wire (pts (xy 105.41 148.59) (xy 107.95 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 14f764ae-94c4-4f74-a227-8348fdf5fe43)
- )
- (wire (pts (xy 34.29 157.48) (xy 46.99 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 14fb843b-f7fc-4480-980d-976bf0a44da5)
- )
- (wire (pts (xy 118.11 30.48) (xy 121.92 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1590cb57-b79a-4603-b54d-41e2b89874d3)
- )
- (wire (pts (xy 101.6 97.79) (xy 105.41 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 15b65f1e-5022-426b-9563-db521271b8b4)
- )
- (wire (pts (xy 90.17 55.88) (xy 90.17 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 15efcd3d-c0f8-4e7b-b1ad-acd5c25a7d61)
- )
- (wire (pts (xy 90.17 53.34) (xy 90.17 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 17b45582-839d-42fe-86b8-e45b59d090d4)
- )
- (wire (pts (xy 67.31 104.14) (xy 67.31 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1889060a-1c15-4e5e-bf49-978fbd6b7359)
- )
- (wire (pts (xy 132.08 63.5) (xy 134.62 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1945723c-d227-429d-8358-7253d5cf1d6f)
- )
- (wire (pts (xy 81.28 30.48) (xy 83.82 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1be46a66-3f90-4cf0-83f2-6c839c875f94)
- )
- (wire (pts (xy 93.98 107.95) (xy 128.27 107.95))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1d3d4e12-062d-4637-b39e-6d0a23f610c2)
- )
- (wire (pts (xy 105.41 97.79) (xy 111.76 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1f58ca10-b44e-4423-8d0f-bb878840901c)
- )
- (wire (pts (xy 191.77 46.99) (xy 191.77 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 209300a4-aa8f-4201-b3ce-b0c7687e8795)
- )
- (wire (pts (xy 82.55 22.86) (xy 91.44 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 22091f56-c692-4206-bf3e-08d2a36d0de9)
- )
- (wire (pts (xy 16.51 63.5) (xy 20.32 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2326f8e8-715b-42cc-b6bf-18e0f5dd1346)
- )
- (wire (pts (xy 66.04 63.5) (xy 69.85 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 27b4be2a-2215-463d-b850-fefb58ac193e)
- )
- (wire (pts (xy 179.07 63.5) (xy 181.61 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2a612e56-ed77-4d94-bb08-706cc909d860)
- )
- (polyline (pts (xy 11.43 125.73) (xy 176.53 125.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2e8de283-b7a0-4eeb-990a-596d60db33b5)
- )
- (wire (pts (xy 58.42 91.44) (xy 58.42 95.25))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2ed5e491-6ad6-456d-a0ef-2e7ccef23208)
- )
- (wire (pts (xy 31.75 55.88) (xy 40.64 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3177edc6-8942-4d61-9f0f-8cc0fc5d364c)
- )
- (wire (pts (xy 140.97 97.79) (xy 153.67 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 335edc75-eb4d-4bb5-ab49-dbe29e4e65e0)
- )
- (wire (pts (xy 181.61 63.5) (xy 181.61 66.04))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 348dbc43-477d-4eaa-be03-82ca3ce5acc1)
- )
- (wire (pts (xy 77.47 63.5) (xy 80.01 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 377ebfe6-2aa4-48a7-a929-e5ab4bb10cb9)
- )
- (wire (pts (xy 129.54 30.48) (xy 132.08 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 37b9101b-a82d-48dc-987b-c8a0ca491c22)
- )
- (wire (pts (xy 90.17 46.99) (xy 90.17 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 393e3020-a3cd-4897-affc-88f0f33c5043)
- )
- (polyline (pts (xy 176.53 166.37) (xy 176.53 125.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3b65d359-9ae3-452c-9301-464658c7c074)
- )
- (wire (pts (xy 132.08 30.48) (xy 134.62 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3e521d6b-8c1d-4106-80a0-ae2c7029f93d)
- )
- (wire (pts (xy 142.24 15.24) (xy 142.24 17.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 45649b19-290d-40dd-b476-1e4a0f57cd2e)
- )
- (wire (pts (xy 67.31 91.44) (xy 73.66 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 46a564e1-0496-47f5-bd57-5a09d4f69a98)
- )
- (wire (pts (xy 74.93 104.14) (xy 78.74 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 48d08357-7247-4782-95eb-0c49e197ee7d)
- )
- (wire (pts (xy 81.28 55.88) (xy 90.17 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4b2d633a-f4ec-4d14-82ea-e4766f5e3497)
- )
- (wire (pts (xy 132.08 30.48) (xy 132.08 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4c0f7289-d5cf-4a41-a8a3-b12937b9e7dc)
- )
- (wire (pts (xy 132.08 63.5) (xy 132.08 66.04))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4cd53e92-cf1f-4c42-bc82-7ce2b21c0f07)
- )
- (wire (pts (xy 27.94 152.4) (xy 40.64 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4f37d48b-1800-4eec-b431-c9b3bf98bef4)
- )
- (wire (pts (xy 40.64 22.86) (xy 40.64 24.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5074b181-d544-4eb2-b63e-fbcaed3af2a1)
- )
- (wire (pts (xy 91.44 22.86) (xy 91.44 24.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5210404e-92a2-4d8e-b5e0-a7a299d277b3)
- )
- (wire (pts (xy 127 97.79) (xy 128.27 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 52c47b63-3666-4cc3-b27f-b4efbd4356c6)
- )
- (wire (pts (xy 40.64 152.4) (xy 46.99 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 54f9d381-b235-4ff6-8f6b-bd25559ceaa2)
- )
- (wire (pts (xy 99.06 148.59) (xy 105.41 148.59))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 580c0b60-5295-480f-9df5-e8d1f2057ae9)
- )
- (wire (pts (xy 128.27 97.79) (xy 140.97 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 58ada84b-f245-4723-9542-b7f95777ce1c)
- )
- (wire (pts (xy 191.77 53.34) (xy 191.77 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 596cacea-93a6-4ad4-8c35-83ec35e8ce28)
- )
- (wire (pts (xy 16.51 30.48) (xy 20.32 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5badca38-c5dc-4b41-8078-0415eae5a47e)
- )
- (wire (pts (xy 93.98 91.44) (xy 95.25 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5c14149d-e88f-491a-9925-524c47775156)
- )
- (wire (pts (xy 81.28 30.48) (xy 81.28 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5cb93cd7-f832-48ad-a595-c945c39220bd)
- )
- (wire (pts (xy 142.24 53.34) (xy 142.24 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5fce5d31-4c66-4819-b84a-ddeb63d0a2a2)
- )
- (wire (pts (xy 133.35 22.86) (xy 142.24 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 607bda4f-d38f-4312-bfcc-aafbd64dd958)
- )
- (wire (pts (xy 181.61 63.5) (xy 184.15 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 679b5944-e58c-49a4-81f3-d1ac2ced663f)
- )
- (wire (pts (xy 128.27 106.68) (xy 128.27 107.95))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 67d45d16-ed51-4a78-9bcb-93886bdec0f7)
- )
- (wire (pts (xy 81.28 48.26) (xy 90.17 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 68cdcec1-78c9-421d-985b-93361f8ddea8)
- )
- (wire (pts (xy 133.35 15.24) (xy 142.24 15.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 68e79a9a-d089-4cbd-ad88-efb54c21d511)
- )
- (wire (pts (xy 30.48 63.5) (xy 30.48 66.04))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 68f7080c-1eff-417b-a4fe-fd43772af955)
- )
- (wire (pts (xy 182.88 48.26) (xy 191.77 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6e432eb9-d2ec-4738-a0d7-3badf3d1fc90)
- )
- (wire (pts (xy 31.75 140.97) (xy 34.29 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 74356167-9eef-43e9-9d48-45bd43226a05)
- )
- (wire (pts (xy 30.48 63.5) (xy 33.02 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 74b8666b-3423-4ee3-b9ec-736f207c1385)
- )
- (wire (pts (xy 95.25 91.44) (xy 95.25 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 754ffa06-d8df-49b0-8433-39a54613ad5a)
- )
- (wire (pts (xy 38.1 179.07) (xy 46.99 179.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 75f37f77-262a-4973-b76c-4d2586299f33)
- )
- (wire (pts (xy 67.31 30.48) (xy 71.12 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 773ba613-3b5f-4f04-a8f7-a2998aabbd18)
- )
- (wire (pts (xy 40.64 55.88) (xy 40.64 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7aacfedd-92d8-42ed-96c9-55113b14bd52)
- )
- (wire (pts (xy 82.55 165.1) (xy 105.41 165.1))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c747c29-fc95-44e6-894a-3bce7c37fced)
- )
- (wire (pts (xy 191.77 55.88) (xy 191.77 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7ef7a9c9-6cb6-4155-9642-cfe34539de8e)
- )
- (wire (pts (xy 167.64 63.5) (xy 171.45 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7f4da385-4686-4d70-953b-86f784363ef3)
- )
- (polyline (pts (xy 12.7 78.74) (xy 176.53 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 809052ee-dddc-4beb-94a9-38838a4af291)
- )
- (wire (pts (xy 129.54 63.5) (xy 132.08 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 81f8c6cd-dc69-4047-b876-dbdf6ce52f09)
- )
- (wire (pts (xy 40.64 20.32) (xy 40.64 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 82e54964-54c5-4cc7-a343-3104d59237ae)
- )
- (wire (pts (xy 184.15 22.86) (xy 193.04 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8320fe2a-b13c-4802-afcd-3b50e51c6170)
- )
- (polyline (pts (xy 176.53 125.73) (xy 176.53 78.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8776e8e9-749d-4f87-b55b-a3e7810128c6)
- )
- (wire (pts (xy 99.06 156.21) (xy 99.06 162.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 878215bd-61d9-46e8-aee5-4d2964bcbc74)
- )
- (wire (pts (xy 40.64 15.24) (xy 40.64 17.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8b73b268-1ef6-487e-b057-b5d8e15b0a11)
- )
- (wire (pts (xy 142.24 55.88) (xy 142.24 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8cfe1408-bad6-4c42-b537-075e1ec75dcf)
- )
- (wire (pts (xy 193.04 22.86) (xy 193.04 24.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8d433a6d-cd5b-4061-be77-8375cc49fc2a)
- )
- (wire (pts (xy 168.91 30.48) (xy 172.72 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8dc072f6-903c-4386-8421-2b437f42f35c)
- )
- (wire (pts (xy 30.48 30.48) (xy 33.02 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 917eea61-bc2f-4e69-acdd-21478d1e01c7)
- )
- (wire (pts (xy 142.24 13.97) (xy 142.24 15.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 93140d34-381c-4829-96d6-50d1743f796e)
- )
- (wire (pts (xy 73.66 91.44) (xy 78.74 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 933f5614-cce4-4c1f-a784-03bc0c0c0a92)
- )
- (wire (pts (xy 33.02 179.07) (xy 38.1 179.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 95066cda-c01f-43af-97ef-5a5229695b6f)
- )
- (wire (pts (xy 27.94 63.5) (xy 30.48 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 95a5a8b9-396e-450f-91bd-8cf304efe01e)
- )
- (wire (pts (xy 80.01 63.5) (xy 80.01 66.04))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 95eed53f-ebb0-4b79-bc2e-987065af5f53)
- )
- (wire (pts (xy 182.88 30.48) (xy 185.42 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9614216d-af15-41b3-9c73-3e29749d07f6)
- )
- (wire (pts (xy 142.24 20.32) (xy 142.24 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 990630a9-04e0-4d53-b7d9-8bc0c21bfd7b)
- )
- (wire (pts (xy 52.07 91.44) (xy 58.42 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9c04b9bb-f4e4-4514-8a17-19a930154ab9)
- )
- (wire (pts (xy 38.1 186.69) (xy 46.99 186.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9c6f61c3-1903-451a-8cb6-2a8093fa7f8a)
- )
- (wire (pts (xy 34.29 140.97) (xy 40.64 140.97))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a0d70980-0f0d-46fd-9934-e6be6ba0f9aa)
- )
- (wire (pts (xy 31.75 15.24) (xy 40.64 15.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a43a34dd-2e2a-4f73-8d86-467ced51ba3a)
- )
- (wire (pts (xy 99.06 162.56) (xy 110.49 162.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a72530a3-d93d-4f10-92b6-8c0d5e48fbde)
- )
- (wire (pts (xy 95.25 90.17) (xy 101.6 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a8d57a5c-6a07-4ade-a5e0-5702ccafbf8a)
- )
- (wire (pts (xy 31.75 22.86) (xy 40.64 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1884c09-bc5b-4658-b80d-0f056dd720fb)
- )
- (wire (pts (xy 118.11 63.5) (xy 121.92 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1bf7bd6-7b84-4ffe-986c-9633395692a8)
- )
- (wire (pts (xy 58.42 91.44) (xy 67.31 91.44))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b2e33132-9a27-4e75-9545-85f89f6e9b96)
- )
- (wire (pts (xy 182.88 55.88) (xy 191.77 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b5360f58-06b9-44f4-be95-02caaba3958e)
- )
- (wire (pts (xy 40.64 13.97) (xy 40.64 15.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b6e24453-931b-45a4-b8b1-9152a18db1ad)
- )
- (wire (pts (xy 93.98 104.14) (xy 93.98 107.95))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b8b2744b-d07c-42cc-90f4-c875ca71aa34)
- )
- (wire (pts (xy 30.48 30.48) (xy 30.48 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b9343f2b-5acb-4c55-8da4-5cfafabde33f)
- )
- (wire (pts (xy 133.35 55.88) (xy 142.24 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ba4e8b39-015e-4c4a-8d70-5c308ca8270f)
- )
- (wire (pts (xy 193.04 13.97) (xy 193.04 15.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c5406451-0272-4b54-b2fa-97667c7fa206)
- )
- (wire (pts (xy 105.41 156.21) (xy 105.41 165.1))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c60a902b-9fdc-4aa3-b60b-149932315b88)
- )
- (wire (pts (xy 82.55 15.24) (xy 91.44 15.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c670be7b-be06-4524-95ac-b70fef02ec5e)
- )
- (wire (pts (xy 27.94 30.48) (xy 30.48 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c8d11b2c-9cf7-421d-ba27-c1f1f2226f8d)
- )
- (wire (pts (xy 193.04 15.24) (xy 193.04 17.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c912a808-470e-4307-b88d-f524d3bad9b8)
- )
- (wire (pts (xy 142.24 22.86) (xy 142.24 24.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ca0116f1-a666-4474-b41d-912f778c7ff8)
- )
- (wire (pts (xy 182.88 30.48) (xy 182.88 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ca7198ec-6006-453f-b3f9-40ddb5966502)
- )
- (wire (pts (xy 184.15 15.24) (xy 193.04 15.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cc25f0eb-7bbd-41da-9ee1-648cb4e808e3)
- )
- (wire (pts (xy 40.64 53.34) (xy 40.64 55.88))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cc9a3cf6-40e6-41c4-a28d-bf2d7e892e21)
- )
- (wire (pts (xy 33.02 186.69) (xy 38.1 186.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cfc366d1-c947-469f-a41c-9c153b312931)
- )
- (wire (pts (xy 91.44 15.24) (xy 91.44 17.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d5a9408d-afb6-4bff-9f08-ca40c26ab7a8)
- )
- (wire (pts (xy 128.27 107.95) (xy 128.27 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d805b8ab-e633-45ba-aea1-184082087030)
- )
- (wire (pts (xy 31.75 48.26) (xy 40.64 48.26))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e1d0e19e-33cd-4529-a6bf-0e1aea98a6e3)
- )
- (wire (pts (xy 80.01 63.5) (xy 82.55 63.5))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e2a1ee86-4af0-41bb-a408-34cfe5abb532)
- )
- (wire (pts (xy 93.98 97.79) (xy 101.6 97.79))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ea34b843-09d6-4f31-a9cf-3678badf63c1)
- )
- (wire (pts (xy 40.64 48.26) (xy 40.64 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eb6bab29-ba54-492d-9e7f-c359da7cdff6)
- )
- (wire (pts (xy 40.64 148.59) (xy 40.64 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ebc9fd5a-0d6e-4de6-a68b-2518bed43e05)
- )
- (wire (pts (xy 180.34 30.48) (xy 182.88 30.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ef9c588f-7b69-45e3-af8d-390b4df6cd1e)
- )
- (wire (pts (xy 128.27 97.79) (xy 128.27 99.06))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f2095064-f8f8-4b0c-bc35-50f1ebeb8621)
- )
- (wire (pts (xy 82.55 162.56) (xy 99.06 162.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f3379657-2d5e-4421-aab8-92c9c70f4a3f)
- )
- (wire (pts (xy 193.04 20.32) (xy 193.04 22.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f3bf4052-803d-4b6b-95b0-722b92405af7)
- )
- (wire (pts (xy 34.29 148.59) (xy 34.29 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f9f8c30a-e1f1-4743-b366-bf6f73c9ac2f)
- )
- (wire (pts (xy 191.77 48.26) (xy 191.77 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fb38ebfc-c509-471a-8ac9-dae59ad03098)
- )
- (wire (pts (xy 142.24 48.26) (xy 142.24 50.8))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fd24379d-3799-417a-8974-61c2a8053fe8)
- )
- (text "ESP-12F\n" (at 59.69 193.04 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 90928d5c-4313-494b-a812-cb1f47d5ccab)
- )
- (label "TX" (at 135.89 151.13 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 0274d347-ee6a-48e6-87eb-52156b65b01e)
- )
- (label "Vin" (at 193.04 13.97 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 09f39503-9721-4b1a-8562-228d13f12bda)
- )
- (label "RX" (at 82.55 154.94 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 0d2a63a9-6327-47be-9dc4-f79c10b7439d)
- )
- (label "Vin" (at 22.86 110.49 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 0d55d571-7c83-4f4a-831f-9b547d75d4dc)
- )
- (label "Vin" (at 40.64 46.99 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 0ecfc1c7-a40a-494a-93dd-e8cc49727a4c)
- )
- (label "GND" (at 181.61 73.66 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 159ecb75-1894-40d6-adfe-59dc06ae72e7)
- )
- (label "GND" (at 86.36 109.22 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 1739471b-00ca-4108-9000-896d2b1a9ee9)
- )
- (label "Vin" (at 39.37 91.44 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 18164c40-2910-48b9-9b31-64164de82ba7)
- )
- (label "GND" (at 132.08 73.66 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 1f4fa0c7-eb1b-4cbd-ae31-ade838338d7f)
- )
- (label "GPIO0" (at 135.89 156.21 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 225c161f-ad44-4cec-9e67-56056bb66c8f)
- )
- (label "R4" (at 168.91 30.48 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 25c78cc3-2e49-4f90-82e5-0a82b2629388)
- )
- (label "Vin" (at 142.24 13.97 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 25fef09f-2c1d-46f5-bdb9-7ed3185c8057)
- )
- (label "GND" (at 193.04 36.83 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 26caec40-48aa-4d50-a74b-fc41855e801e)
- )
- (label "GND" (at 22.86 113.03 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 296310ce-2bf1-45f9-966c-e2f729dfcebd)
- )
- (label "GND" (at 182.88 40.64 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 3313d5f9-54e3-4b82-b930-c1ecd860a57c)
- )
- (label "Vin" (at 40.64 13.97 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 35c00c09-dc0a-4f35-9496-8756d839789f)
- )
- (label "R8" (at 167.64 63.5 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 3e88f630-6dff-46ef-a1d4-10b48ca75fd2)
- )
- (label "3V3" (at 46.99 170.18 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 436f73bd-aab3-4ed4-881c-106ba2389ac8)
- )
- (label "TX" (at 82.55 152.4 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 47488d55-6153-4dfd-8a3e-18c5bc3c65bc)
- )
- (label "GND" (at 80.01 73.66 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 4ea90b67-17e2-49f4-b5fb-0c4e4b989f6a)
- )
- (label "GND" (at 82.55 170.18 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 543a7ee4-3b0e-4331-8dc0-b6d885bdba81)
- )
- (label "GND" (at 81.28 40.64 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 5b6d3d1c-c530-469d-b0f8-a18f8c89945a)
- )
- (label "GND" (at 40.64 69.85 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 6038b6f8-a7a7-44b7-a0a3-47fd26414bb7)
- )
- (label "R5" (at 16.51 63.5 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 61e64ea7-a4b6-47f6-bb62-81a2264c00b4)
- )
- (label "GND" (at 191.77 69.85 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 628f93b2-7e53-468c-a7ca-64c4d32d30b8)
- )
- (label "3V3" (at 153.67 97.79 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 63370fc1-1acd-498c-894a-080f548774da)
- )
- (label "Vin" (at 90.17 46.99 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 68e3a148-5b7d-4e27-aa02-ab80a83d440a)
- )
- (label "RST" (at 135.89 158.75 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 6db7ec4e-3038-443f-af18-59b747ba31f2)
- )
- (label "GND" (at 142.24 69.85 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 72ce94b0-e5bb-4c0b-a43f-6656835ad14c)
- )
- (label "GND" (at 132.08 40.64 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 79ba1051-3429-4999-8be6-918f459b12c7)
- )
- (label "GND" (at 140.97 105.41 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 7d5c3cb1-86fe-4bab-99cf-210a45c2a46b)
- )
- (label "GND" (at 40.64 36.83 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 8156592a-b239-46ed-bc3e-276778180043)
- )
- (label "GND" (at 73.66 99.06 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 8466004c-f6a7-4b1d-ba43-f8f4b85c803c)
- )
- (label "3V3" (at 33.02 179.07 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 8ace9090-4e44-46f8-bceb-a98e17b202d5)
- )
- (label "GND" (at 58.42 102.87 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 92333d64-6369-41c2-b885-359965c9e1ed)
- )
- (label "3V3" (at 31.75 140.97 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 93c4efca-b2d4-481c-b709-43b4dbddbadd)
- )
- (label "GND" (at 82.55 167.64 0)
- (effects (font (size 1.524 1.524)) (justify left bottom))
- (uuid 947c45c0-965e-431a-ac6f-3cc1a75f8fd3)
- )
- (label "R3" (at 46.99 160.02 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 95f32910-fc56-44ce-b99a-4ac8feefa944)
- )
- (label "GND" (at 142.24 36.83 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 96ecaccf-c750-4619-b401-cc3acd592efd)
- )
- (label "R5" (at 46.99 165.1 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 9800f73f-458f-4b36-abdd-5590b4a8823c)
- )
- (label "GND" (at 33.02 186.69 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid 9a031a7c-009c-4568-bd32-073816abbe11)
- )
- (label "R7" (at 63.5 181.61 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid a09f6e7e-0d8b-40de-98f2-1dba6d2a006a)
- )
- (label "RST" (at 27.94 152.4 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid a398927b-a2ea-4949-8890-201641b3ba45)
- )
- (label "GND" (at 30.48 73.66 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid a5893f27-a681-4274-bbcc-4e13f879c68b)
- )
- (label "Vin" (at 142.24 46.99 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a6b36ead-a2ec-490f-b7cf-f5a658024e41)
- )
- (label "RX" (at 135.89 153.67 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid aa2a3abb-5c90-4149-9bdc-a6bf0437d1ac)
- )
- (label "GND" (at 90.17 69.85 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid acbe9ce6-c316-4756-b6d0-f10415b38b20)
- )
- (label "Vin" (at 91.44 13.97 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ad8b5652-5ea5-4927-a51f-74b8a84018d0)
- )
- (label "R2" (at 67.31 30.48 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid aff6216f-f424-4cde-8348-60051b76f96b)
- )
- (label "R1" (at 82.55 157.48 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b5bf3e73-60d0-4826-91d5-84b12449fada)
- )
- (label "GPIO0" (at 110.49 162.56 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b6f00976-0f08-4a03-a2ee-c672331a2331)
- )
- (label "GND" (at 135.89 161.29 180)
- (effects (font (size 1.524 1.524)) (justify right bottom))
- (uuid b853680f-2104-4667-a46b-e33e73b48252)
- )
- (label "3V3" (at 107.95 148.59 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b96b892f-4f2b-49fa-bd51-8b2a3fbbe390)
- )
- (label "GND" (at 105.41 105.41 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid bcdd398d-475c-4d01-a17b-9659ae35b1a5)
- )
- (label "R1" (at 16.51 30.48 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid c0093bee-e162-4729-9e14-09291de19366)
- )
- (label "R2" (at 82.55 160.02 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid cd7f521b-47fd-49f5-8642-d865954ed127)
- )
- (label "R7" (at 118.11 63.5 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid cf7b7f81-a544-4d94-83cc-ecf2950028c6)
- )
- (label "R8" (at 66.04 181.61 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid d205ff0e-cfe8-4533-93aa-40ffd8b55be9)
- )
- (label "R4" (at 46.99 162.56 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid e054d2dd-97dd-426e-8399-9f33c6a49361)
- )
- (label "R6" (at 46.99 167.64 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid e357b87a-8d7e-4a9b-899b-4b680f22a875)
- )
- (label "GND" (at 128.27 116.84 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid e452c036-c4f1-42cc-9459-23d18eb92704)
- )
- (label "GND" (at 91.44 36.83 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid efb20361-18f2-425d-8cce-c5a8b3643551)
- )
- (label "GND" (at 30.48 40.64 270)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f0b4d779-367c-4b6b-8c2e-0597d1be6832)
- )
- (label "Vin" (at 191.77 46.99 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid f6d9738d-1f31-4a94-945a-7b35eab96c5f)
- )
- (label "R3" (at 118.11 30.48 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f9695c0d-77b2-49f9-8b72-f8e808940369)
- )
- (label "R6" (at 66.04 63.5 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid fc867040-5d93-4739-9e50-ec13929289db)
- )
- (symbol (lib_id "conn:CONN_01X02") (at 196.85 52.07 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 01766516-c2eb-4356-8bf2-8b05434cf46c)
- (property "Reference" "M8" (id 0) (at 199.39 50.7999 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 199.39 53.3399 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 196.85 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 196.85 52.07 0))
- (property "Partkeepr" "0004" (id 4) (at 196.85 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8ba16cdb-9126-401d-873b-37af03cda153))
- (pin "2" (uuid a4b88afc-eab0-4411-b62a-697f23ed8a7e))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 198.12 19.05 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 02a3c444-66a0-4d39-b8e2-54f14fff513d)
- (property "Reference" "M4" (id 0) (at 200.66 17.7799 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 200.66 20.3199 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 198.12 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 198.12 19.05 0))
- (property "Partkeepr" "0004" (id 4) (at 198.12 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e6c4b03d-5585-413f-93b6-dd79131fae19))
- (pin "2" (uuid dbf4f0a6-dacd-4a99-a73a-765d4a2ba3ea))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 45.72 19.05 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 06b7ea69-bc47-47e6-8b91-d06bd4a07413)
- (property "Reference" "M1" (id 0) (at 48.26 17.7799 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 48.26 20.3199 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 45.72 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 45.72 19.05 0))
- (property "Partkeepr" "0004" (id 4) (at 45.72 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 7f2c7bc0-a812-49dc-8b92-ecae3a39078f))
- (pin "2" (uuid 122cff66-9c46-4d66-80c0-a2597707985e))
- )
- (symbol (lib_id "global:R") (at 24.13 63.5 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 0c049cdb-4255-4ceb-bb39-7e892ca9a99b)
- (property "Reference" "R9" (id 0) (at 24.13 60.96 90))
- (property "Value" "120" (id 1) (at 24.13 63.5 90))
- (property "Footprint" "R:0805" (id 2) (at 24.13 61.722 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 24.13 63.5 0))
- (property "Partkeepr" "0911" (id 4) (at 24.13 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid bc2700c8-fbfa-45de-9a6c-081d67061679))
- (pin "2" (uuid 4021fa3e-5bc3-4a2b-a77b-161c1117d8f4))
- )
- (symbol (lib_id "global:D") (at 133.35 19.05 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 0e04617a-3a28-45c3-92cb-24168d4ab405)
- (property "Reference" "D3" (id 0) (at 135.89 17.7418 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SS32" (id 1) (at 135.89 20.2818 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMC" (id 2) (at 133.35 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 133.35 19.05 0))
- (property "Partkeepr" "1306" (id 4) (at 133.35 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2f0d790d-d7b4-4409-84ed-4364c5770b72))
- (pin "2" (uuid 9057856a-2c78-4483-b18f-0b96f5e57a94))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 27.94 111.76 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 0efe519c-39a6-42ea-8084-dd5228ba5014)
- (property "Reference" "P1" (id 0) (at 30.48 110.4899 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 30.48 113.0299 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Connector:DC_Jack" (id 2) (at 27.94 111.76 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 27.94 111.76 0))
- (property "Partkeepr" "0000" (id 4) (at 27.94 111.76 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dd5dbbf2-17b8-4b5d-9def-083fb467f180))
- (pin "2" (uuid c9add11d-94b2-4e2f-9a99-9b57728586b3))
- )
- (symbol (lib_id "global:R") (at 125.73 30.48 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 116eaacd-2f68-4a4f-91d5-3d46ea099e00)
- (property "Reference" "R3" (id 0) (at 125.73 27.94 90))
- (property "Value" "120" (id 1) (at 125.73 30.48 90))
- (property "Footprint" "R:0805" (id 2) (at 125.73 28.702 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 125.73 30.48 0))
- (property "Partkeepr" "0911" (id 4) (at 125.73 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5da84ffa-84ed-42c6-93c3-e42cd79300cf))
- (pin "2" (uuid 3d18046f-2fb9-4170-bc90-04e1dcf32424))
- )
- (symbol (lib_id "global:D") (at 105.41 101.6 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 19577703-7dca-4312-93b8-9d8b4e107d29)
- (property "Reference" "D10" (id 0) (at 107.95 100.2918 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "D" (id 1) (at 107.95 102.8318 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SOD-123" (id 2) (at 105.41 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 105.41 101.6 0))
- (property "Partkeepr" "1300" (id 4) (at 105.41 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 94d7df70-8d29-46c5-9a6b-82c4c56537cc))
- (pin "2" (uuid c965556f-77a0-4528-a991-eabd469d8fab))
- )
- (symbol (lib_id "global:R") (at 24.13 30.48 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 214861b3-04c6-422b-b952-f3ef4077e6bf)
- (property "Reference" "R1" (id 0) (at 24.13 27.94 90))
- (property "Value" "120" (id 1) (at 24.13 30.48 90))
- (property "Footprint" "R:0805" (id 2) (at 24.13 28.702 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 24.13 30.48 0))
- (property "Partkeepr" "0911" (id 4) (at 24.13 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 394935f2-7c69-4669-9340-e9ef930b13f6))
- (pin "2" (uuid fc928968-5725-4994-bff9-e2b61939d408))
- )
- (symbol (lib_id "global:R") (at 74.93 30.48 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 26a1d436-2047-49bb-a50a-62c63abb206c)
- (property "Reference" "R2" (id 0) (at 74.93 27.94 90))
- (property "Value" "120" (id 1) (at 74.93 30.48 90))
- (property "Footprint" "R:0805" (id 2) (at 74.93 28.702 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 74.93 30.48 0))
- (property "Partkeepr" "0911" (id 4) (at 74.93 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1183faa1-4d2e-41c1-b35a-317226f96c36))
- (pin "2" (uuid 8ed9f78e-9e9e-4f60-b03f-649122d83b3a))
- )
- (symbol (lib_id "global:D") (at 133.35 52.07 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 356fe18f-0750-4ec2-a2eb-39b783f2780c)
- (property "Reference" "D7" (id 0) (at 135.89 50.7618 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SS32" (id 1) (at 135.89 53.3018 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMC" (id 2) (at 135.89 54.5718 90)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 133.35 52.07 0))
- (property "Partkeepr" "1306" (id 4) (at 133.35 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fac6fd9c-5ebf-4e40-8ab9-740f74bb98f3))
- (pin "2" (uuid 69e46543-4f07-4fab-b2b9-aeae24aafa2e))
- )
- (symbol (lib_id "global:R") (at 125.73 63.5 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 36567b2e-675c-4410-8751-c28054f851a0)
- (property "Reference" "R11" (id 0) (at 125.73 60.96 90))
- (property "Value" "120" (id 1) (at 125.73 63.5 90))
- (property "Footprint" "R:0805" (id 2) (at 125.73 61.722 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 125.73 63.5 0))
- (property "Partkeepr" "0911" (id 4) (at 125.73 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 36f513f3-e74a-481f-915d-4ed805ef0b72))
- (pin "2" (uuid b65345fd-5093-4cf1-be4d-a891dcbe3643))
- )
- (symbol (lib_id "global:R") (at 182.88 36.83 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 3ceb7a8c-f767-4229-a6ca-2f70fa951d55)
- (property "Reference" "R8" (id 0) (at 184.15 35.56 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 182.88 39.37 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 181.102 36.83 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 182.88 36.83 0))
- (property "Partkeepr" "0916" (id 4) (at 182.88 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8139dae7-4a37-4e4e-9fd9-e235cc74da33))
- (pin "2" (uuid 37c34a13-87d2-412b-80b2-0ef21747e543))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 45.72 52.07 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 49d084ac-26c2-4c58-876a-296bf45ef11a)
- (property "Reference" "M5" (id 0) (at 48.26 50.7999 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 48.26 53.3399 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 45.72 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 45.72 52.07 0))
- (property "Partkeepr" "0004" (id 4) (at 45.72 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 7db41ef7-8c95-4d4b-adc5-b059b2009d61))
- (pin "2" (uuid e4488ead-fae0-4ea1-a9d8-44d13b7c4254))
- )
- (symbol (lib_id "global:D") (at 182.88 52.07 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 50cf8ca7-f343-4e25-8039-bfb9792c2fad)
- (property "Reference" "D8" (id 0) (at 185.42 50.7618 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SS32" (id 1) (at 185.42 53.3018 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMC" (id 2) (at 182.88 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 182.88 52.07 0))
- (property "Partkeepr" "1306" (id 4) (at 182.88 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 56ee4f26-20c2-4902-9f48-26056fa04730))
- (pin "2" (uuid 97ea86bd-4fc8-4256-a8d0-3d65a716ef2f))
- )
- (symbol (lib_id "global:R") (at 132.08 69.85 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 55b9d5ef-5f52-4f3f-89e7-5d040ac9d5d1)
- (property "Reference" "R15" (id 0) (at 133.35 68.58 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 132.08 72.39 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 130.302 69.85 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 132.08 69.85 0))
- (property "Partkeepr" "0916" (id 4) (at 132.08 69.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 429dd4dd-bb86-45a8-8aea-a5dea0fe476b))
- (pin "2" (uuid b800a07c-7947-406b-b4c4-04d8178b77e5))
- )
- (symbol (lib_id "global:N_MOSFET") (at 140.97 63.5 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 5619995d-93b6-4094-bb0c-5cbaf730820b)
- (property "Reference" "Q7" (id 0) (at 144.78 62.23 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "N_MOSFET" (id 1) (at 144.78 66.04 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "U:TO-252" (id 2) (at 140.97 63.5 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 140.97 63.5 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2007" (id 4) (at 140.97 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1cbb73da-4d68-4a2f-9152-cf67b5788ff6))
- (pin "2" (uuid 90b5ffc3-bae2-4928-8a41-38dc977e7c71))
- (pin "3" (uuid a3562cac-caa8-4c6c-843e-ffc9b3ea3354))
- )
- (symbol (lib_id "global:N_MOSFET") (at 140.97 30.48 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 567b26d4-cc78-4aa9-9ca2-22fa5ef88415)
- (property "Reference" "Q3" (id 0) (at 144.78 29.21 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "N_MOSFET" (id 1) (at 144.78 33.02 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "U:TO-252" (id 2) (at 140.97 30.48 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 140.97 30.48 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2007" (id 4) (at 140.97 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d407bd0f-c42c-41ae-b783-e2dcf0802a94))
- (pin "2" (uuid 7dde8103-76d5-478b-afa6-25ab5c3f2ed8))
- (pin "3" (uuid 7efa8267-08e0-4b31-8599-76a05bbabdfc))
- )
- (symbol (lib_id "global:R") (at 73.66 63.5 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 587ebfb2-6049-46bd-a461-19295f6d8c0f)
- (property "Reference" "R10" (id 0) (at 73.66 60.96 90))
- (property "Value" "120" (id 1) (at 73.66 63.5 90))
- (property "Footprint" "R:0805" (id 2) (at 73.66 61.722 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 73.66 63.5 0))
- (property "Partkeepr" "0911" (id 4) (at 73.66 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 81f2c5bb-8cbf-4ab5-885d-7fd275ea305e))
- (pin "2" (uuid 9762f82a-991f-49e0-bcac-a3e282b175c3))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 96.52 19.05 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 59ec6108-a3d7-46fa-8055-6ac4148e77fa)
- (property "Reference" "M2" (id 0) (at 99.06 17.7799 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 99.06 20.3199 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 96.52 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 96.52 19.05 0))
- (property "Partkeepr" "0004" (id 4) (at 96.52 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b6df5356-fb69-4501-9f9b-34692f41c53b))
- (pin "2" (uuid 6a2d229e-e769-4fab-bfbc-486de25fed3a))
- )
- (symbol (lib_id "global:C") (at 140.97 101.6 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 5c648fed-4630-4f71-8428-f6532e5dc991)
- (property "Reference" "C3" (id 0) (at 144.78 100.3299 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "22µF" (id 1) (at 144.78 102.8699 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (id 2) (at 141.9352 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 140.97 101.6 0))
- (property "Partkeepr" "0622" (id 4) (at 140.97 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f10e3b52-6912-4ac7-8293-fdf0dde2408d))
- (pin "2" (uuid fc8ae59d-6f14-4e7b-aa6d-f8204d6f2457))
- )
- (symbol (lib_id "global:TVS") (at 58.42 99.06 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 61c004d4-1c00-4308-8f7a-553c0e36297e)
- (property "Reference" "D9" (id 0) (at 62.23 97.1549 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "TVS" (id 1) (at 62.23 99.6949 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMB" (id 2) (at 62.23 100.9649 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 58.42 99.06 90))
- (property "Partkeepr" "1400" (id 4) (at 58.42 99.06 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 74230c3c-d718-40fa-96fc-7e5112a7a8fc))
- (pin "2" (uuid 9e19b163-f2aa-437b-bbf9-4e159b80190e))
- )
- (symbol (lib_id "global:N_MOSFET") (at 39.37 63.5 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 636cff3e-defa-41d6-be19-20bcaccaaa54)
- (property "Reference" "Q5" (id 0) (at 43.18 62.23 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "N_MOSFET" (id 1) (at 43.18 66.04 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "U:TO-252" (id 2) (at 39.37 63.5 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 39.37 63.5 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2007" (id 4) (at 39.37 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e215bb1c-a7ad-4aae-b33f-8069bd0535fe))
- (pin "2" (uuid 51e17d8f-0f0a-400c-8219-0cae168d3aa1))
- (pin "3" (uuid 27d98bf0-4723-4b15-88cb-1252931e194c))
- )
- (symbol (lib_id "global:R") (at 71.12 104.14 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 63f22bcb-433a-417a-961b-6cb50c16005a)
- (property "Reference" "R18" (id 0) (at 69.85 106.68 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 68.58 104.14 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 71.12 102.362 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 71.12 104.14 0))
- (property "Partkeepr" "0916" (id 4) (at 71.12 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 057fb853-5f6c-4689-84aa-a727dc075f28))
- (pin "2" (uuid af9172ce-a988-4c0c-b504-2987fab9c654))
- )
- (symbol (lib_id "global:C") (at 73.66 95.25 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 6713009f-f7cf-440d-93b6-d48ee3822110)
- (property "Reference" "C2" (id 0) (at 74.93 92.71 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10µF" (id 1) (at 74.93 97.79 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (id 2) (at 74.6252 99.06 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 73.66 95.25 0))
- (property "Partkeepr" "0609" (id 4) (at 73.66 95.25 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f0c4cc41-1921-4a41-8b37-4e481f87cbae))
- (pin "2" (uuid a3d3730d-2702-4c6f-be6b-ff8a09edca3e))
- )
- (symbol (lib_id "global:R") (at 132.08 36.83 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 68453239-8878-4140-8302-3602918abd33)
- (property "Reference" "R7" (id 0) (at 133.35 35.56 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 132.08 39.37 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 130.302 36.83 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 132.08 36.83 0))
- (property "Partkeepr" "0916" (id 4) (at 132.08 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 06cc6f08-c4c9-416a-b5f8-d28bffb58716))
- (pin "2" (uuid ff70fc02-06bc-40f1-9897-3452f19f404a))
- )
- (symbol (lib_id "global:D") (at 31.75 52.07 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 69e99e26-a6f6-4c71-a2e3-812498a61ba7)
- (property "Reference" "D5" (id 0) (at 34.29 50.7618 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SS32" (id 1) (at 34.29 53.3018 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMC" (id 2) (at 31.75 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 31.75 52.07 0))
- (property "Partkeepr" "1306" (id 4) (at 31.75 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0629eba2-4594-4ddb-9c8a-03a3756dc81b))
- (pin "2" (uuid 94ff8969-b199-49bd-8fc7-942f4b0d20cd))
- )
- (symbol (lib_id "global:C") (at 46.99 182.88 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 777c5661-c5cd-4304-9f83-faa178ac0467)
- (property "Reference" "C5" (id 0) (at 49.911 181.7116 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 49.911 184.023 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (id 2) (at 47.9552 186.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 46.99 182.88 0))
- (property "Partkeepr" "0605" (id 4) (at 15.24 231.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 50f51bee-97fb-4031-92f9-60b5558d3d29))
- (pin "2" (uuid d7803cce-86df-4311-b2de-88f756c31dc4))
- )
- (symbol (lib_id "global:N_MOSFET") (at 39.37 30.48 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 80d4d556-9395-4c26-9b9e-221b582f1898)
- (property "Reference" "Q1" (id 0) (at 43.18 29.21 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "N_MOSFET" (id 1) (at 43.18 33.02 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "U:TO-252" (id 2) (at 39.37 30.48 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 39.37 30.48 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2007" (id 4) (at 39.37 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8562e7a7-4be9-45c4-8fca-a382d8934df1))
- (pin "2" (uuid 70e697f3-6853-428d-9560-5eb23540362d))
- (pin "3" (uuid f33820ee-0687-4fef-bc82-17c9ad7a1a01))
- )
- (symbol (lib_id "global:R") (at 128.27 102.87 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 84661d95-ec44-4433-b822-94d7504db147)
- (property "Reference" "R17" (id 0) (at 130.81 101.5999 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "49.9K" (id 1) (at 129.54 104.14 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 126.492 102.87 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 128.27 102.87 0))
- (property "Partkeepr" "0932" (id 4) (at 128.27 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 539922c7-a6c4-47f3-82a2-8a5047a7a0df))
- (pin "2" (uuid 6762c9b8-5972-4e05-b082-5ff332c0321b))
- )
- (symbol (lib_id "global:R") (at 30.48 69.85 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 857d8169-5977-41e4-9d50-3b9d65f334f6)
- (property "Reference" "R13" (id 0) (at 31.75 68.58 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 30.48 72.39 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 28.702 69.85 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 30.48 69.85 0))
- (property "Partkeepr" "0916" (id 4) (at 30.48 69.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 98ee792a-240c-4d31-ad35-d6653202b226))
- (pin "2" (uuid b88c91fa-015d-49a5-b62d-48b07c0ec7ee))
- )
- (symbol (lib_id "global:N_MOSFET") (at 191.77 30.48 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 89f4825b-8992-4768-ae4f-c445f1577b0b)
- (property "Reference" "Q4" (id 0) (at 195.58 29.21 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "N_MOSFET" (id 1) (at 195.58 33.02 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "U:TO-252" (id 2) (at 191.77 30.48 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 191.77 30.48 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2007" (id 4) (at 191.77 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ecf2c15d-ce6e-4802-b05e-acdf8a321367))
- (pin "2" (uuid 8996f23a-ebb4-47ad-a276-af3722e4528f))
- (pin "3" (uuid 2aa8e2a6-4b93-4fa2-af3f-0255f66cf24c))
- )
- (symbol (lib_id "global:INDUCTOR") (at 119.38 97.79 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 8b616ae9-66ac-4561-9687-81c8072fc680)
- (property "Reference" "L1" (id 0) (at 119.38 91.44 90))
- (property "Value" "4.7µH" (id 1) (at 119.38 93.98 90))
- (property "Footprint" "L:APH0630" (id 2) (at 119.38 97.79 0))
- (property "Datasheet" "" (id 3) (at 119.38 97.79 0))
- (property "Partkeepr" "0805" (id 4) (at 119.38 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1d7bff79-ebb6-4ab6-bc40-348f2d87ad51))
- (pin "2" (uuid 39b1b26e-b034-402a-b90a-4169c0905d31))
- )
- (symbol (lib_id "global:R") (at 40.64 144.78 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 8e30888a-31fa-431d-8d1b-16c047c91751)
- (property "Reference" "R21" (id 0) (at 42.672 144.78 90))
- (property "Value" "10K" (id 1) (at 40.64 144.78 90))
- (property "Footprint" "R:0805" (id 2) (at 38.862 144.78 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 40.64 144.78 0))
- (property "Partkeepr" "0910" (id 4) (at 12.7 162.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 316e2dc9-efbd-49fb-82b4-a66796763b5e))
- (pin "2" (uuid dd5cfae7-161f-4f79-9e8c-dab9d85377d4))
- )
- (symbol (lib_id "global:C") (at 101.6 93.98 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 8f653806-50f9-4796-8bcb-0d093d94b304)
- (property "Reference" "C1" (id 0) (at 105.41 92.7099 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10nF" (id 1) (at 105.41 95.2499 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (id 2) (at 102.5652 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 101.6 93.98 0))
- (property "Partkeepr" "0604" (id 4) (at 101.6 93.98 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid afca0222-a614-4ab3-a36f-7b9610499562))
- (pin "2" (uuid 88b0d0f5-a3be-4145-bf55-1b15850ae91e))
- )
- (symbol (lib_id "global:R") (at 105.41 152.4 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 91450dd3-5456-415a-9267-a237321b35a2)
- (property "Reference" "R23" (id 0) (at 107.442 152.4 90))
- (property "Value" "10K" (id 1) (at 105.41 152.4 90))
- (property "Footprint" "R:0805" (id 2) (at 103.632 152.4 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 105.41 152.4 0))
- (property "Partkeepr" "0910" (id 4) (at 27.94 194.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1fe52774-ae5c-4976-b5ab-027d9c932e5c))
- (pin "2" (uuid 023a6f45-2600-4c80-8a0e-e878e0da53f6))
- )
- (symbol (lib_id "global:N_MOSFET") (at 90.17 30.48 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 9748af79-79c9-45f5-b1bd-a65151cfb309)
- (property "Reference" "Q2" (id 0) (at 93.98 29.21 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "N_MOSFET" (id 1) (at 93.98 33.02 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "U:TO-252" (id 2) (at 90.17 30.48 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 90.17 30.48 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2007" (id 4) (at 90.17 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 004e88c3-1da4-4ffb-8755-7a873b65e7a6))
- (pin "2" (uuid 6bcea7e6-0279-4eef-b202-45c128d87eb3))
- (pin "3" (uuid d92e1dad-016c-4a3e-ac1c-7ded450d5fea))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 147.32 19.05 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 9a91f4f6-b41f-4198-9a66-aa029dc366e5)
- (property "Reference" "M3" (id 0) (at 149.86 17.7799 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 149.86 20.3199 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 147.32 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 147.32 19.05 0))
- (property "Partkeepr" "0004" (id 4) (at 147.32 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ee893b15-ad35-4551-b167-1ec8f92fc0f8))
- (pin "2" (uuid 6d91d0a9-4fd1-4bd7-98fe-f0be4d75f41e))
- )
- (symbol (lib_id "global:R") (at 99.06 152.4 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 9dabe3d7-5d0d-466c-aaed-82616d0b140d)
- (property "Reference" "R22" (id 0) (at 101.092 152.4 90))
- (property "Value" "10K" (id 1) (at 99.06 152.4 90))
- (property "Footprint" "R:0805" (id 2) (at 97.282 152.4 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 99.06 152.4 0))
- (property "Partkeepr" "0910" (id 4) (at 24.13 182.88 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 59e95bf9-7d43-4973-a32a-f8176da3cbd1))
- (pin "2" (uuid 6c3ff449-7410-4b80-a7a4-544f4c431df0))
- )
- (symbol (lib_id "conn:CONN_01X05") (at 140.97 156.21 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 9f1409b1-7fe5-46ff-b5b1-2ab13d5146f8)
- (property "Reference" "P2" (id 0) (at 143.51 154.9399 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X05" (id 1) (at 143.51 157.4799 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "PinHeader:PinHeader2.54_1X5" (id 2) (at 140.97 156.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 140.97 156.21 0))
- (property "Partkeepr" "0100" (id 4) (at 140.97 156.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d491c4f0-9c51-4dad-913f-4f7a04cb0b84))
- (pin "2" (uuid a22ad97e-c22b-49c2-bad5-0baf5058a918))
- (pin "3" (uuid 97bc814f-c1f3-43f2-9670-21e3b5b4475b))
- (pin "4" (uuid be1ed2c9-158e-44f9-91ca-0bb877df931d))
- (pin "5" (uuid 2b60bd86-0e91-4e40-a490-91ad56e8e265))
- )
- (symbol (lib_id "global:D") (at 184.15 19.05 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid a36c569a-c7f0-4dc0-842d-9b3dcd968d72)
- (property "Reference" "D4" (id 0) (at 186.69 17.7418 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SS32" (id 1) (at 186.69 20.2818 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMC" (id 2) (at 184.15 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 184.15 19.05 0))
- (property "Partkeepr" "1306" (id 4) (at 184.15 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 455bed85-dd37-4286-8644-1fbc244cb968))
- (pin "2" (uuid 194172df-daa3-4575-8a92-df133a1258cb))
- )
- (symbol (lib_id "global:R") (at 81.28 36.83 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid a4266c76-2795-4d92-9dd7-0b8f3dc6ed86)
- (property "Reference" "R6" (id 0) (at 82.55 35.56 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 81.28 39.37 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 79.502 36.83 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 81.28 36.83 0))
- (property "Partkeepr" "0916" (id 4) (at 81.28 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 65359c52-47da-4831-8c35-58e3f281a935))
- (pin "2" (uuid 7eb93646-a05b-40ca-9fdc-f1f6a6f85afb))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 95.25 52.07 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid ac9b4a03-93e7-45ed-beb0-a37b23040369)
- (property "Reference" "M6" (id 0) (at 97.79 50.7999 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 97.79 53.3399 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 95.25 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 95.25 52.07 0))
- (property "Partkeepr" "0004" (id 4) (at 95.25 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2a58f7de-cb88-4589-8d66-b386b5209db1))
- (pin "2" (uuid 9837ce4c-fd3d-4240-843c-80d0d29ef858))
- )
- (symbol (lib_id "global:FUSE") (at 45.72 91.44 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid ae88c0bd-fef6-4795-b9fb-6e582a3695b5)
- (property "Reference" "F1" (id 0) (at 45.72 83.82 0))
- (property "Value" "FUSE" (id 1) (at 45.72 86.36 0))
- (property "Footprint" "F:1812" (id 2) (at 45.72 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 45.72 91.44 0))
- (property "Partkeepr" "1450" (id 4) (at 45.72 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a04714f2-467d-4566-b86d-fe748c6ec1db))
- (pin "2" (uuid d5b7a171-5128-4c67-a146-d76911f9a535))
- )
- (symbol (lib_id "global:R") (at 34.29 144.78 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid af4a861d-9b3f-4fb7-b88b-ac20db198d64)
- (property "Reference" "R20" (id 0) (at 36.322 144.78 90))
- (property "Value" "10K" (id 1) (at 34.29 144.78 90))
- (property "Footprint" "R:0805" (id 2) (at 32.512 144.78 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 34.29 144.78 0))
- (property "Partkeepr" "0910" (id 4) (at 6.35 167.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2438edd9-0e80-49c4-b7bf-f75ed5ea0b20))
- (pin "2" (uuid 7eeb8036-a61b-49ec-8dea-5978b63a29e4))
- )
- (symbol (lib_id "global:C") (at 38.1 182.88 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid c312d58c-2723-475d-aac3-dccc64fe6557)
- (property "Reference" "C4" (id 0) (at 38.735 180.34 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4.7µF" (id 1) (at 38.735 185.42 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "C:0805" (id 2) (at 39.0652 186.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 38.1 182.88 0))
- (property "Partkeepr" "0607" (id 4) (at 17.78 360.045 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid df2f2153-7d8d-4fe8-a4ae-4b7b70a4524c))
- (pin "2" (uuid 85a709a8-1863-47ae-98f3-57a37d4a7005))
- )
- (symbol (lib_id "global:R") (at 30.48 36.83 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid c4d46b38-1e7f-4d5d-b4c3-a1ae1e416a9d)
- (property "Reference" "R5" (id 0) (at 31.75 35.56 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 30.48 39.37 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 28.702 36.83 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 30.48 36.83 0))
- (property "Partkeepr" "0916" (id 4) (at 30.48 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 00646eb4-6d94-4602-8263-091a07636798))
- (pin "2" (uuid 79a79887-e18d-46e0-885b-0d46a1f350d6))
- )
- (symbol (lib_id "global:R") (at 80.01 69.85 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid c6c9253c-b0fe-4610-b539-f7f1d524323f)
- (property "Reference" "R14" (id 0) (at 81.28 68.58 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 80.01 72.39 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 78.232 69.85 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 80.01 69.85 0))
- (property "Partkeepr" "0916" (id 4) (at 80.01 69.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 581ca300-94c7-4562-8e24-437945038e12))
- (pin "2" (uuid 11c93a5e-7df4-4f6b-a3ca-8a864e1aace6))
- )
- (symbol (lib_id "global:R") (at 128.27 113.03 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid ca898450-8cf3-4188-a47c-fc248145c9e8)
- (property "Reference" "R19" (id 0) (at 130.81 111.7599 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "16.3K" (id 1) (at 130.81 114.2999 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 126.492 113.03 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 128.27 113.03 0))
- (property "Partkeepr" "0933" (id 4) (at 128.27 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 173f19e4-79cb-474d-af57-bb567bf91ece))
- (pin "2" (uuid 6ffe155f-ca1e-48c7-a0bf-d6fbcc061222))
- )
- (symbol (lib_id "global:D") (at 81.28 52.07 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid cab530bc-7b81-4c26-ac4a-4af565b24a08)
- (property "Reference" "D6" (id 0) (at 83.82 50.7618 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SS32" (id 1) (at 83.82 53.3018 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMC" (id 2) (at 81.28 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 81.28 52.07 0))
- (property "Partkeepr" "1306" (id 4) (at 81.28 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 94b2d79a-2f12-4866-84dc-d2014b381979))
- (pin "2" (uuid 7d6a26c8-0a11-4baa-b41f-a0a4ae359aac))
- )
- (symbol (lib_id "global:R") (at 176.53 30.48 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid cd6fbe07-24ff-4d19-8533-fea5bb9df995)
- (property "Reference" "R4" (id 0) (at 176.53 27.94 90))
- (property "Value" "120" (id 1) (at 176.53 30.48 90))
- (property "Footprint" "R:0805" (id 2) (at 176.53 28.702 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 176.53 30.48 0))
- (property "Partkeepr" "0911" (id 4) (at 176.53 30.48 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid de9e256b-72a5-48cb-8012-d2de88cdd1d6))
- (pin "2" (uuid d99021cf-5eb7-45f8-96a2-a6428bc05530))
- )
- (symbol (lib_id "global:R") (at 181.61 69.85 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid d08fc6ce-1592-4fce-b5a6-3806f62122ab)
- (property "Reference" "R16" (id 0) (at 182.88 68.58 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100K" (id 1) (at 181.61 72.39 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "R:0805" (id 2) (at 179.832 69.85 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 181.61 69.85 0))
- (property "Partkeepr" "0916" (id 4) (at 181.61 69.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 163b7fcd-eea2-48fe-b03e-20637aef0899))
- (pin "2" (uuid a06dd739-45a5-499f-abb3-8c98d6758a08))
- )
- (symbol (lib_id "global:N_MOSFET") (at 190.5 63.5 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid e6c41266-e766-4559-bac1-d54be622b404)
- (property "Reference" "Q8" (id 0) (at 194.31 62.23 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "N_MOSFET" (id 1) (at 194.31 66.04 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "U:TO-252" (id 2) (at 190.5 63.5 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 190.5 63.5 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2007" (id 4) (at 190.5 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4654a2a7-bb7f-40d0-b286-0dc16b83e8ee))
- (pin "2" (uuid 8ea4762d-1346-42b7-a120-ee65611bae10))
- (pin "3" (uuid c3020add-58a7-4b27-9122-c4d8c43dc235))
- )
- (symbol (lib_id "Module:ESP-12F") (at 64.77 163.83 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid ec0376b5-b64f-4c88-a52c-bc3198d3e840)
- (property "Reference" "U2" (id 0) (at 64.77 145.1102 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "ESP-12F" (id 1) (at 64.77 147.8026 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "Module:ESP-12F" (id 2) (at 64.77 165.1 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 64.77 165.1 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2800" (id 4) (at 64.77 163.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2eae3e3d-ead1-4ce4-ab86-74f0321267de))
- (pin "10" (uuid 9fa3548f-fbf8-4411-bf8e-43a8cbca0e25))
- (pin "11" (uuid dd063726-8aab-4b00-8ee1-c379ee24bfdc))
- (pin "12" (uuid a7f9210d-e550-4cc1-9220-aa6050a52de8))
- (pin "13" (uuid 8eb45e7a-25b0-4928-82ea-de65d9ffbae5))
- (pin "14" (uuid 9cd4409d-298b-4bce-9be3-7bef214f3e4b))
- (pin "15" (uuid 35786073-2cd0-4e04-938f-61648ff5eeb3))
- (pin "16" (uuid b0736914-30eb-49dd-bdbb-e9b09022aa41))
- (pin "17" (uuid 83939822-1ebe-480e-b995-56209f854459))
- (pin "18" (uuid b85fbea4-e7f4-459d-98f1-c55fc3d860d3))
- (pin "19" (uuid ca0bab87-1aa3-417a-bfad-e6e9ba76165b))
- (pin "2" (uuid cc9137ec-8b93-47e4-bd98-02b246acfbc8))
- (pin "20" (uuid 3cd03601-e0be-48ba-b258-3caf2698bb52))
- (pin "21" (uuid af493613-2144-406c-86e4-044b8c28b719))
- (pin "22" (uuid 014e7929-ab3d-464e-ba06-60d42f6c3995))
- (pin "3" (uuid 8aefc0d4-dc87-46b0-8a23-469c55b5ace5))
- (pin "4" (uuid 34839871-7506-4e6d-83db-22276aaf2af0))
- (pin "5" (uuid 005e37ba-e4ba-4fc5-a52d-735ab7e8fa5d))
- (pin "6" (uuid caf915a6-6f05-416b-87f8-e64f6f5b0473))
- (pin "7" (uuid f7bbfd32-b099-419b-883e-11551d92fe34))
- (pin "8" (uuid 6c471b78-ba61-4ba6-8d78-b7eb4dab41fb))
- (pin "9" (uuid 1a95e00e-3284-4512-adb1-eae5287ee9a0))
- )
- (symbol (lib_id "global:D") (at 31.75 19.05 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid ecb42b89-f39c-4603-b13f-6539f1cb5a35)
- (property "Reference" "D1" (id 0) (at 34.29 17.7418 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SS32" (id 1) (at 34.29 20.2818 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMC" (id 2) (at 31.75 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 31.75 19.05 0))
- (property "Partkeepr" "1306" (id 4) (at 31.75 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 17595786-2785-4085-b935-651e4bf66d61))
- (pin "2" (uuid 918f4da9-00d5-4748-aa3c-312ec776bb34))
- )
- (symbol (lib_id "global:R") (at 175.26 63.5 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid f63609bf-c579-436c-a139-963dea658304)
- (property "Reference" "R12" (id 0) (at 175.26 60.96 90))
- (property "Value" "120" (id 1) (at 175.26 63.5 90))
- (property "Footprint" "R:0805" (id 2) (at 175.26 61.722 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 175.26 63.5 0))
- (property "Partkeepr" "0911" (id 4) (at 175.26 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 949ae016-ebbc-4be6-a325-a50e54e6356f))
- (pin "2" (uuid 7de93432-785f-479e-8c09-4aacc8ae1e0f))
- )
- (symbol (lib_id "global:D") (at 82.55 19.05 270) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid fa1c8450-76bd-46c0-a7a1-dab1f714ec4e)
- (property "Reference" "D2" (id 0) (at 85.09 17.7418 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SS32" (id 1) (at 85.09 20.2818 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "D:SMC" (id 2) (at 82.55 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 82.55 19.05 0))
- (property "Partkeepr" "1306" (id 4) (at 82.55 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid caacec7c-8d18-42df-a62e-99c77a9e8621))
- (pin "2" (uuid e9ce1029-0697-4b4e-9e0e-61da69dfdf81))
- )
- (symbol (lib_id "global:N_MOSFET") (at 88.9 63.5 90) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid fca880a1-e68b-46bf-8ab5-ac65e7a22fbc)
- (property "Reference" "Q6" (id 0) (at 92.71 62.23 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Value" "N_MOSFET" (id 1) (at 92.71 66.04 90)
- (effects (font (size 1.524 1.524)) (justify right))
- )
- (property "Footprint" "U:TO-252" (id 2) (at 88.9 63.5 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 88.9 63.5 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Partkeepr" "2007" (id 4) (at 88.9 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e679f85f-d848-4c39-8d27-58417c875aee))
- (pin "2" (uuid 3c68986d-9246-46bc-8fe2-8b855faaefd9))
- (pin "3" (uuid b952b5a0-eb01-4859-addd-4944fc4e5df8))
- )
- (symbol (lib_id "conn:CONN_01X02") (at 147.32 52.07 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid fe23a545-ee4b-4e2a-a169-532fcdc83c38)
- (property "Reference" "M7" (id 0) (at 149.86 50.7999 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "CONN_01X02" (id 1) (at 149.86 53.3399 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2" (id 2) (at 147.32 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 147.32 52.07 0))
- (property "Partkeepr" "0004" (id 4) (at 147.32 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f0f134a8-401b-4712-9c77-4288100fd60f))
- (pin "2" (uuid 7b3b3916-5797-4e44-ac1e-8c3280aa4dd7))
- )
- (symbol (lib_id "DIodeInc:AP3211KTR-G1") (at 86.36 97.79 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid fe454daa-2828-444c-b4a9-bc549fd09754)
- (property "Reference" "U1" (id 0) (at 88.9 107.95 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "AP3211KTR-G1" (id 1) (at 78.74 87.63 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "U:SOT23-6" (id 2) (at 86.36 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 86.36 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Partkeepr" "1809" (id 4) (at 86.36 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 2cfd9fd8-697b-45f2-be7d-b667ec2f5d37))
- (pin "3" (uuid f8262c1d-d060-42e8-b0bd-902645ce99b8))
- (pin "4" (uuid b5ab9414-42a7-4e79-9b5b-3610bc99115e))
- (pin "5" (uuid 91faf78a-54af-4256-9941-e838d7ddf111))
- (pin "6" (uuid 86be06ff-aa5f-4be8-8df0-615ef8fb042f))
- (pin "1" (uuid 56495514-9c8e-493f-a8b5-89fd9f282891))
- )
- (sheet_instances
- (path "/" (page "1"))
- )
- (symbol_instances
- (path "/8f653806-50f9-4796-8bcb-0d093d94b304"
- (reference "C1") (unit 1) (value "10nF") (footprint "C:0805")
- )
- (path "/6713009f-f7cf-440d-93b6-d48ee3822110"
- (reference "C2") (unit 1) (value "10µF") (footprint "C:0805")
- )
- (path "/5c648fed-4630-4f71-8428-f6532e5dc991"
- (reference "C3") (unit 1) (value "22µF") (footprint "C:0805")
- )
- (path "/c312d58c-2723-475d-aac3-dccc64fe6557"
- (reference "C4") (unit 1) (value "4.7µF") (footprint "C:0805")
- )
- (path "/777c5661-c5cd-4304-9f83-faa178ac0467"
- (reference "C5") (unit 1) (value "100nF") (footprint "C:0805")
- )
- (path "/ecb42b89-f39c-4603-b13f-6539f1cb5a35"
- (reference "D1") (unit 1) (value "SS32") (footprint "D:SMC")
- )
- (path "/fa1c8450-76bd-46c0-a7a1-dab1f714ec4e"
- (reference "D2") (unit 1) (value "SS32") (footprint "D:SMC")
- )
- (path "/0e04617a-3a28-45c3-92cb-24168d4ab405"
- (reference "D3") (unit 1) (value "SS32") (footprint "D:SMC")
- )
- (path "/a36c569a-c7f0-4dc0-842d-9b3dcd968d72"
- (reference "D4") (unit 1) (value "SS32") (footprint "D:SMC")
- )
- (path "/69e99e26-a6f6-4c71-a2e3-812498a61ba7"
- (reference "D5") (unit 1) (value "SS32") (footprint "D:SMC")
- )
- (path "/cab530bc-7b81-4c26-ac4a-4af565b24a08"
- (reference "D6") (unit 1) (value "SS32") (footprint "D:SMC")
- )
- (path "/356fe18f-0750-4ec2-a2eb-39b783f2780c"
- (reference "D7") (unit 1) (value "SS32") (footprint "D:SMC")
- )
- (path "/50cf8ca7-f343-4e25-8039-bfb9792c2fad"
- (reference "D8") (unit 1) (value "SS32") (footprint "D:SMC")
- )
- (path "/61c004d4-1c00-4308-8f7a-553c0e36297e"
- (reference "D9") (unit 1) (value "TVS") (footprint "D:SMB")
- )
- (path "/19577703-7dca-4312-93b8-9d8b4e107d29"
- (reference "D10") (unit 1) (value "D") (footprint "D:SOD-123")
- )
- (path "/ae88c0bd-fef6-4795-b9fb-6e582a3695b5"
- (reference "F1") (unit 1) (value "FUSE") (footprint "F:1812")
- )
- (path "/8b616ae9-66ac-4561-9687-81c8072fc680"
- (reference "L1") (unit 1) (value "4.7µH") (footprint "L:APH0630")
- )
- (path "/06b7ea69-bc47-47e6-8b91-d06bd4a07413"
- (reference "M1") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
- )
- (path "/59ec6108-a3d7-46fa-8055-6ac4148e77fa"
- (reference "M2") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
- )
- (path "/9a91f4f6-b41f-4198-9a66-aa029dc366e5"
- (reference "M3") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
- )
- (path "/02a3c444-66a0-4d39-b8e2-54f14fff513d"
- (reference "M4") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
- )
- (path "/49d084ac-26c2-4c58-876a-296bf45ef11a"
- (reference "M5") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
- )
- (path "/ac9b4a03-93e7-45ed-beb0-a37b23040369"
- (reference "M6") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
- )
- (path "/fe23a545-ee4b-4e2a-a169-532fcdc83c38"
- (reference "M7") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
- )
- (path "/01766516-c2eb-4356-8bf2-8b05434cf46c"
- (reference "M8") (unit 1) (value "CONN_01X02") (footprint "Bornier:Bornier2.54_1x2")
- )
- (path "/0efe519c-39a6-42ea-8084-dd5228ba5014"
- (reference "P1") (unit 1) (value "CONN_01X02") (footprint "Connector:DC_Jack")
- )
- (path "/9f1409b1-7fe5-46ff-b5b1-2ab13d5146f8"
- (reference "P2") (unit 1) (value "CONN_01X05") (footprint "PinHeader:PinHeader2.54_1X5")
- )
- (path "/80d4d556-9395-4c26-9b9e-221b582f1898"
- (reference "Q1") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
- )
- (path "/9748af79-79c9-45f5-b1bd-a65151cfb309"
- (reference "Q2") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
- )
- (path "/567b26d4-cc78-4aa9-9ca2-22fa5ef88415"
- (reference "Q3") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
- )
- (path "/89f4825b-8992-4768-ae4f-c445f1577b0b"
- (reference "Q4") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
- )
- (path "/636cff3e-defa-41d6-be19-20bcaccaaa54"
- (reference "Q5") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
- )
- (path "/fca880a1-e68b-46bf-8ab5-ac65e7a22fbc"
- (reference "Q6") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
- )
- (path "/5619995d-93b6-4094-bb0c-5cbaf730820b"
- (reference "Q7") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
- )
- (path "/e6c41266-e766-4559-bac1-d54be622b404"
- (reference "Q8") (unit 1) (value "N_MOSFET") (footprint "U:TO-252")
- )
- (path "/214861b3-04c6-422b-b952-f3ef4077e6bf"
- (reference "R1") (unit 1) (value "120") (footprint "R:0805")
- )
- (path "/26a1d436-2047-49bb-a50a-62c63abb206c"
- (reference "R2") (unit 1) (value "120") (footprint "R:0805")
- )
- (path "/116eaacd-2f68-4a4f-91d5-3d46ea099e00"
- (reference "R3") (unit 1) (value "120") (footprint "R:0805")
- )
- (path "/cd6fbe07-24ff-4d19-8533-fea5bb9df995"
- (reference "R4") (unit 1) (value "120") (footprint "R:0805")
- )
- (path "/c4d46b38-1e7f-4d5d-b4c3-a1ae1e416a9d"
- (reference "R5") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/a4266c76-2795-4d92-9dd7-0b8f3dc6ed86"
- (reference "R6") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/68453239-8878-4140-8302-3602918abd33"
- (reference "R7") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/3ceb7a8c-f767-4229-a6ca-2f70fa951d55"
- (reference "R8") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/0c049cdb-4255-4ceb-bb39-7e892ca9a99b"
- (reference "R9") (unit 1) (value "120") (footprint "R:0805")
- )
- (path "/587ebfb2-6049-46bd-a461-19295f6d8c0f"
- (reference "R10") (unit 1) (value "120") (footprint "R:0805")
- )
- (path "/36567b2e-675c-4410-8751-c28054f851a0"
- (reference "R11") (unit 1) (value "120") (footprint "R:0805")
- )
- (path "/f63609bf-c579-436c-a139-963dea658304"
- (reference "R12") (unit 1) (value "120") (footprint "R:0805")
- )
- (path "/857d8169-5977-41e4-9d50-3b9d65f334f6"
- (reference "R13") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/c6c9253c-b0fe-4610-b539-f7f1d524323f"
- (reference "R14") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/55b9d5ef-5f52-4f3f-89e7-5d040ac9d5d1"
- (reference "R15") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/d08fc6ce-1592-4fce-b5a6-3806f62122ab"
- (reference "R16") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/84661d95-ec44-4433-b822-94d7504db147"
- (reference "R17") (unit 1) (value "49.9K") (footprint "R:0805")
- )
- (path "/63f22bcb-433a-417a-961b-6cb50c16005a"
- (reference "R18") (unit 1) (value "100K") (footprint "R:0805")
- )
- (path "/ca898450-8cf3-4188-a47c-fc248145c9e8"
- (reference "R19") (unit 1) (value "16.3K") (footprint "R:0805")
- )
- (path "/af4a861d-9b3f-4fb7-b88b-ac20db198d64"
- (reference "R20") (unit 1) (value "10K") (footprint "R:0805")
- )
- (path "/8e30888a-31fa-431d-8d1b-16c047c91751"
- (reference "R21") (unit 1) (value "10K") (footprint "R:0805")
- )
- (path "/9dabe3d7-5d0d-466c-aaed-82616d0b140d"
- (reference "R22") (unit 1) (value "10K") (footprint "R:0805")
- )
- (path "/91450dd3-5456-415a-9267-a237321b35a2"
- (reference "R23") (unit 1) (value "10K") (footprint "R:0805")
- )
- (path "/fe454daa-2828-444c-b4a9-bc549fd09754"
- (reference "U1") (unit 1) (value "AP3211KTR-G1") (footprint "U:SOT23-6")
- )
- (path "/ec0376b5-b64f-4c88-a52c-bc3198d3e840"
- (reference "U2") (unit 1) (value "ESP-12F") (footprint "Module:ESP-12F")
- )
- )
- )
|