| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727 |
- (kicad_sch
- (version 20260306)
- (generator "eeschema")
- (generator_version "10.0")
- (uuid "07f0bad5-bbb9-4213-b80e-0e5d6f16756c")
- (paper "A4")
- (lib_symbols
- (symbol "Device:C"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "cap capacitor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "C_*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 0.762) (xy 2.032 0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 -0.762) (xy 2.032 -0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "C_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 2.794)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Diode:B120-E3"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "D"
- (at 0 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "B120-E3"
- (at 0 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Diode_SMD:D_SMA"
- (at 0 -4.445 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "diode Schottky"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "D*SMA*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "B120-E3_0_1"
- (polyline
- (pts
- (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 0) (xy -1.27 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "B120-E3_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)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Diode:MM3Zxx"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "D"
- (at 0 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "MM3Zxx"
- (at 0 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Diode_SMD:D_SOD-323F"
- (at 0 -4.445 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://diotec.com/tl_files/diotec/files/pdf/datasheets/mm3z2v4.pdf"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "300mW Zener Diode, SOD-323F"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "zener diode"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "D?SOD?323F*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "MM3Zxx_0_1"
- (polyline
- (pts
- (xy -1.27 -1.27) (xy -1.27 1.27) (xy -0.762 1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 0) (xy -1.27 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "MM3Zxx_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)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Diode:SMAJ5.0A"
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 1.016)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "D"
- (at 0 2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "SMAJ5.0A"
- (at 0 -2.54 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Diode_SMD:D_SMA"
- (at 0 -5.08 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://www.littelfuse.com/media?resourcetype=datasheets&itemid=75e32973-b177-4ee3-a0ff-cedaf1abdb93&filename=smaj-datasheet"
- (at -1.27 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "400W unidirectional Transient Voltage Suppressor, 5.0Vr, SMA(DO-214AC)"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "unidirectional diode TVS voltage suppressor"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "D*SMA*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "SMAJ5.0A_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy -1.27 1.27) (xy -1.27 -1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27)
- )
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "SMAJ5.0A_1_1"
- (pin passive line
- (at -3.81 0 0)
- (length 2.54)
- (name "A1"
- (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 "A2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "Regulator_Linear:LM1117MP-3.3"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "U"
- (at -3.81 3.175 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LM1117MP-3.3"
- (at 0 3.175 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "linear regulator ldo fixed positive"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_fp_filters" "SOT?223*"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "LM1117MP-3.3_0_1"
- (rectangle
- (start -5.08 -5.08)
- (end 5.08 1.905)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type background)
- )
- )
- )
- (symbol "LM1117MP-3.3_1_1"
- (pin power_in line
- (at 0 -7.62 90)
- (length 2.54)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_out line
- (at 7.62 0 180)
- (length 2.54)
- (name "VO"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at -7.62 0 0)
- (length 2.54)
- (name "VI"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:+3V3"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 0 3.556 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "+3V3_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+3V3_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:+5V"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+5V"
- (at 0 3.556 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+5V\""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "+5V_0_1"
- (polyline
- (pts
- (xy -0.762 1.27) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 2.54) (xy 0.762 1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 0 0) (xy 0 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "+5V_1_1"
- (pin power_in line
- (at 0 0 90)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- (symbol "power:GND"
- (power global)
- (pin_numbers
- (hide yes)
- )
- (pin_names
- (offset 0)
- (hide yes)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (duplicate_pin_numbers_are_jumpers no)
- (property "Reference" "#PWR"
- (at 0 -6.35 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 0 -3.81 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "ki_keywords" "global power"
- (at 0 0 0)
- (show_name no)
- (do_not_autoplace no)
- (hide yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "GND_1_1"
- (pin power_in line
- (at 0 0 270)
- (length 0)
- (name ""
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (embedded_fonts no)
- )
- )
- (text_box "3.3V Protection circuit.\nThe 5V TVS diode is used to accept the main pulse, while the 3.6V Zener diode accepts a 5V -> 3.3V pulse."
- (exclude_from_sim no)
- (at 64.77 128.27 0)
- (size 44.45 13.97)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "058433ac-6ae7-4d59-8d7a-6befca81bdd8")
- )
- (text_box "Iout (max) = 150mA\nVin = 5V\nVout = 3.3V\nVdiff = 1.7V\n\nP (max) = Vdiff * Iout\nP (max) = 0.255W"
- (exclude_from_sim no)
- (at 181.61 78.74 0)
- (size 41.91 24.13)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "1f628aef-c620-4533-8a87-d1a771ba0ab2")
- )
- (text_box "Maximum current of logic section is lower than 150mA. Maximum current of LM1117-3.3 is 800mA, which gives a large margin of safety. \n\nDatasheet recommends minimum 10uF input capacitor and minimum 10uF output capacitor. Capacitors should be ceramic low ESR. (See 9.2.2.1.* in datasheet)\n\nDiode should be used to protect LM1117-3.3 from reverse current. (See 8.4.1 in datasheet)\n"
- (exclude_from_sim no)
- (at 66.04 76.2 0)
- (size 44.45 36.8299)
- (margins 0.9525 0.9525 0.9525 0.9525)
- (stroke
- (width 0)
- (type solid)
- )
- (fill
- (type none)
- )
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- (uuid "dcea7838-24af-44f2-850e-1bc7f58b3217")
- )
- (junction
- (at 166.37 104.14)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "38f89fcf-5e10-43ab-ab5d-26060236c632")
- )
- (junction
- (at 123.19 93.98)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "3aea2ac0-9bf3-43a9-a34e-dc6b684a86ec")
- )
- (junction
- (at 154.94 93.98)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "58327141-82fd-42ff-991b-2d40b3f4e6e7")
- )
- (junction
- (at 166.37 78.74)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "6ed86689-55d4-4cfa-b3cb-4f9ef4e1c8dc")
- )
- (junction
- (at 123.19 132.08)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "acbb9b61-0e33-4c63-ba68-619a1a25f239")
- )
- (junction
- (at 123.19 78.74)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "bc84dcc2-4755-4fcf-b2a4-f1d120f6edf5")
- )
- (junction
- (at 166.37 93.98)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "d096e932-65fb-4c85-aea8-a7314205664d")
- )
- (wire
- (pts
- (xy 166.37 95.25) (xy 166.37 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0c07f3d1-5460-4634-8ce3-5fe2b79859d1")
- )
- (wire
- (pts
- (xy 123.19 78.74) (xy 123.19 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0c18953e-fbad-4acf-a279-ceb95fe515cd")
- )
- (wire
- (pts
- (xy 123.19 140.97) (xy 123.19 142.24)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1168f166-470e-4817-836c-3f59f7d6a511")
- )
- (wire
- (pts
- (xy 148.59 93.98) (xy 154.94 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "1e15d729-8edd-44e7-955f-731d51c24096")
- )
- (wire
- (pts
- (xy 166.37 77.47) (xy 166.37 78.74)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "34410907-7fa7-4b4f-aa1d-33c8742d5116")
- )
- (wire
- (pts
- (xy 123.19 77.47) (xy 123.19 78.74)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "3527dc7f-5059-4983-97f4-39f08c92b7e4")
- )
- (wire
- (pts
- (xy 140.97 140.97) (xy 140.97 142.24)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "417b6b33-3616-4adb-bb39-0f86a4ef0ec3")
- )
- (wire
- (pts
- (xy 140.97 101.6) (xy 140.97 102.87)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4eabf22d-625c-4738-8c0b-809097618499")
- )
- (wire
- (pts
- (xy 123.19 93.98) (xy 133.35 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5aa6d780-fddf-42ef-830a-64971a43938a")
- )
- (wire
- (pts
- (xy 140.97 133.35) (xy 140.97 132.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5dc0b670-4aca-46cd-ab17-246e66cfa0b2")
- )
- (wire
- (pts
- (xy 166.37 102.87) (xy 166.37 104.14)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6af214e3-0cc6-448c-88da-77735c04bd1e")
- )
- (wire
- (pts
- (xy 154.94 104.14) (xy 166.37 104.14)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6d4c5ad9-dba0-4d5d-82c3-e816a32e0062")
- )
- (wire
- (pts
- (xy 123.19 102.87) (xy 123.19 105.41)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7de5b4a4-fdbb-4078-b04a-fe3495439733")
- )
- (wire
- (pts
- (xy 123.19 132.08) (xy 140.97 132.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7fe6ab5f-2573-430d-a5e9-3eeb2b7da463")
- )
- (wire
- (pts
- (xy 166.37 105.41) (xy 166.37 104.14)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "8d99afc6-5875-4af9-8739-6c4c307fb9a7")
- )
- (wire
- (pts
- (xy 123.19 93.98) (xy 123.19 95.25)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "915c7772-2fd1-4686-95b5-3c834d449ad5")
- )
- (wire
- (pts
- (xy 166.37 78.74) (xy 166.37 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "94c8e391-19ee-439f-9315-b5400fa43539")
- )
- (wire
- (pts
- (xy 123.19 132.08) (xy 123.19 133.35)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9d7cc3b6-a69f-4fbc-b6d6-37a497c9625a")
- )
- (wire
- (pts
- (xy 123.19 130.81) (xy 123.19 132.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ad782ae2-c1b7-4ea2-bd24-295735b028d2")
- )
- (wire
- (pts
- (xy 154.94 102.87) (xy 154.94 104.14)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b55135ae-99b4-4fac-a03c-2193f27425b9")
- )
- (wire
- (pts
- (xy 154.94 93.98) (xy 166.37 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c5f6c41b-eafa-4cc0-9347-bd083740868a")
- )
- (wire
- (pts
- (xy 154.94 95.25) (xy 154.94 93.98)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c7794198-055a-41df-b1a1-3722b88d9416")
- )
- (wire
- (pts
- (xy 123.19 78.74) (xy 137.16 78.74)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c9969096-885a-40b3-b7aa-d4ce24ff51f5")
- )
- (wire
- (pts
- (xy 144.78 78.74) (xy 166.37 78.74)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ed789b5f-e41b-4358-82dc-ffc44eab32a3")
- )
- (symbol
- (lib_id "power:+3V3")
- (at 123.19 130.81 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "1d6959c6-bffc-48bb-b909-e6f85df5ec16")
- (property "Reference" "#PWR044"
- (at 123.19 134.62 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 123.19 125.73 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 123.19 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 123.19 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 123.19 130.81 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "2f3c7ee9-515d-41f1-996e-2f1e16768d60")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "#PWR044")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Diode:SMAJ5.0A")
- (at 123.19 137.16 270)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "2d806ee4-2995-40d7-b0d2-5baa6191a1b4")
- (property "Reference" "D7"
- (at 125.73 135.8899 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "SMAJ5.0A"
- (at 125.73 138.4299 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Diode_SMD:D_SMA"
- (at 118.11 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://www.littelfuse.com/media?resourcetype=datasheets&itemid=75e32973-b177-4ee3-a0ff-cedaf1abdb93&filename=smaj-datasheet"
- (at 123.19 135.89 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "400W unidirectional Transient Voltage Suppressor, 5.0Vr, SMA(DO-214AC)"
- (at 123.19 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "fe7e2395-8f4e-420e-a80e-2865a0d028ce")
- )
- (pin "1"
- (uuid "286f379a-bd05-429e-8c32-ab720b563712")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "D7")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 140.97 102.87 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "2f2b4b6e-c7d5-4d59-83a4-59a9d4460e19")
- (property "Reference" "#PWR042"
- (at 140.97 109.22 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 140.97 107.95 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 140.97 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 140.97 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 140.97 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "8842e184-b41f-468a-8cbe-c5b20ae11746")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "#PWR042")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Diode:B120-E3")
- (at 140.97 78.74 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "30587f09-bdeb-4a92-ba5f-1143d207fc9e")
- (property "Reference" "D6"
- (at 140.97 81.28 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "B120-13-F"
- (at 140.97 76.2 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Diode_SMD:D_SMA"
- (at 140.97 83.185 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "http://www.vishay.com/docs/88946/b120.pdf"
- (at 140.97 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "20V 1A Schottky Barrier Rectifier Diode, SMA(DO-214AC)"
- (at 140.97 78.74 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "ccfe1dad-59c6-408f-9ab0-ef22068a1f46")
- )
- (pin "2"
- (uuid "3152fd0a-b7b0-46c5-a022-0fc668b4006d")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "D6")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Regulator_Linear:LM1117MP-3.3")
- (at 140.97 93.98 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "3990e9c6-ab7f-4302-827f-cbe319641567")
- (property "Reference" "U5"
- (at 140.97 87.63 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LM1117MP-3.3"
- (at 140.97 90.17 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2"
- (at 140.97 93.98 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm1117.pdf"
- (at 140.97 93.98 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "800mA Low-Dropout Linear Regulator, 3.3V fixed output, SOT-223"
- (at 140.97 93.98 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "3"
- (uuid "b7af2086-5046-4edf-956c-2f655dc9c992")
- )
- (pin "1"
- (uuid "a38c6875-ae35-45d1-a281-ea2f5f90a96a")
- )
- (pin "2"
- (uuid "9638a547-be5d-42d9-8027-6055c3ce7803")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "U5")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Diode:MM3Zxx")
- (at 140.97 137.16 270)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "731c04fb-28ae-4ac2-81d4-0f2c73b92e0c")
- (property "Reference" "D8"
- (at 143.51 135.8899 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "MM3Z3V6"
- (at 143.51 138.4299 90)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "Diode_SMD:D_SOD-323F"
- (at 136.525 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" "https://diotec.com/tl_files/diotec/files/pdf/datasheets/mm3z2v4.pdf"
- (at 140.97 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "300mW Zener Diode, SOD-323F"
- (at 140.97 137.16 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "c5e4bd83-9747-48a1-9977-a10f860cec12")
- )
- (pin "1"
- (uuid "55be3f81-4f1b-4596-83f3-a3185fcc3eaf")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "D8")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 123.19 105.41 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "741680d6-a433-4847-9a66-043251f98342")
- (property "Reference" "#PWR041"
- (at 123.19 111.76 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 123.19 110.49 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 123.19 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 123.19 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 123.19 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "fd0a7fd5-63ef-4993-a533-ec7c6517b015")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "#PWR041")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 166.37 99.06 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "7f46e893-82d4-4bdf-bc4b-ef9b45238035")
- (property "Reference" "C18"
- (at 168.656 97.79 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "47uF"
- (at 168.91 100.33 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 167.3352 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 166.37 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 166.37 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "33558cbe-43d4-440f-9c07-d5598038af5d")
- )
- (pin "1"
- (uuid "c523d828-7488-486a-8808-478af5af4ecb")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "C18")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+3V3")
- (at 166.37 77.47 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "838b112a-ebd6-431b-a1b5-f271c8d2a148")
- (property "Reference" "#PWR037"
- (at 166.37 81.28 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+3V3"
- (at 166.37 72.39 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 166.37 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 166.37 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+3V3\""
- (at 166.37 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "1699ebf9-2689-4148-81a9-4fbf09afddea")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "#PWR037")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 166.37 105.41 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "87e13787-1375-4030-a649-29d2131a75ad")
- (property "Reference" "#PWR040"
- (at 166.37 111.76 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 166.37 110.49 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 166.37 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 166.37 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 166.37 105.41 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "af8ca7b0-290f-4c21-930f-5c3b9ea01df3")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "#PWR040")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 123.19 142.24 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "88e5e784-a118-4b08-a8c3-b6290747dc5f")
- (property "Reference" "#PWR045"
- (at 123.19 148.59 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 123.19 147.32 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 123.19 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 123.19 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 123.19 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "c6894bdb-2628-4a73-a0b3-762ea352a0f1")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "#PWR045")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:GND")
- (at 140.97 142.24 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "937f6cb5-5156-45df-a3f0-c1a672f0dcec")
- (property "Reference" "#PWR046"
- (at 140.97 148.59 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "GND"
- (at 140.97 147.32 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 140.97 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 140.97 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"GND\" , ground"
- (at 140.97 142.24 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "4a529d57-d221-48e8-b934-8fb04ab46a46")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "#PWR046")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 123.19 99.06 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "ca640049-ee99-4bcf-beb7-27059bc317a8")
- (property "Reference" "C19"
- (at 125.476 97.79 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "22uF"
- (at 125.476 100.33 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 124.1552 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 123.19 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 123.19 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "78e75238-962c-4068-b392-d931355a5b5d")
- )
- (pin "1"
- (uuid "6f7c0a3c-86c5-46b1-bcf4-dabc267afd01")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "C19")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "power:+5V")
- (at 123.19 77.47 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "d4bb3e37-e535-4cc8-9b5d-fa83c6c623a7")
- (property "Reference" "#PWR039"
- (at 123.19 81.28 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "+5V"
- (at 123.19 72.39 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 123.19 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 123.19 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Power symbol creates a global label with name \"+5V\""
- (at 123.19 77.47 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "1"
- (uuid "d6dda649-10e7-4d4f-938e-1a0b4019fa0a")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "#PWR039")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "Device:C")
- (at 154.94 99.06 0)
- (unit 1)
- (body_style 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (in_pos_files yes)
- (dnp no)
- (uuid "eb20124c-c4f4-4d13-9beb-168ba0a9c991")
- (property "Reference" "C13"
- (at 157.226 97.79 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "22uF"
- (at 157.226 100.33 0)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 155.9052 102.87 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 154.94 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" "Unpolarized capacitor"
- (at 154.94 99.06 0)
- (hide yes)
- (show_name no)
- (do_not_autoplace no)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (pin "2"
- (uuid "7a2295c4-b6e2-4781-b27a-c5eeaba21ffd")
- )
- (pin "1"
- (uuid "8781be18-101f-48ab-a13d-d5fa041ffd7b")
- )
- (instances
- (project "cx-copter-schematic"
- (path "/4a590ed2-d600-4e37-8f7e-ac4e1ec0f4fe/cb93fa9b-3b28-4546-a57a-5eb14453a8fe/92e9f6da-f1e2-49fd-abd2-7b2f522aa159"
- (reference "C13")
- (unit 1)
- )
- )
- )
- )
- )
|