| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343 |
- (kicad_sch
- (version 20231120)
- (generator "eeschema")
- (generator_version "8.0")
- (uuid "f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69")
- (paper "A4")
- (lib_symbols
- (symbol "DIodeInc:AP3211KTR-G1"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U"
- (at 3.81 -10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "AP3211KTR-G1"
- (at 0 10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 2.54 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 2.54 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "?"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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)
- )
- (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 "global:C"
- (pin_numbers hide)
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762) (xy 2.032 -0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 0.762) (xy 2.032 0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "C_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- )
- )
- )
- (symbol "global:D"
- (pin_numbers hide)
- (pin_names
- (offset 1.016) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "D"
- (at 0 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "D"
- (at 0 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "D_0_1"
- (polyline
- (pts
- (xy -1.27 1.27) (xy -1.27 -1.27)
- )
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (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)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "F"
- (at 2.54 1.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "FUSE"
- (at -2.54 -1.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "FUSE_0_1"
- (arc
- (start 0 0)
- (mid -1.905 1.8967)
- (end -3.81 0)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start 0 0)
- (mid 1.905 -1.8967)
- (end 3.81 0)
- (stroke
- (width 0)
- (type default)
- )
- (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)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "L"
- (at -1.27 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "INDUCTOR"
- (at 2.54 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (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)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start 0.0254 -2.5146)
- (mid 1.2703 -1.2444)
- (end 0.0254 0.0508)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start 0.0254 0.0254)
- (mid 1.2703 1.2956)
- (end 0.0254 2.5908)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (arc
- (start 0.0254 2.5654)
- (mid 1.1941 3.7595)
- (end 0.0254 4.9784)
- (stroke
- (width 0)
- (type default)
- )
- (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:R"
- (pin_numbers hide)
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "R"
- (at 2.032 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "R"
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "R_* Resistor_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "R_0_1"
- (rectangle
- (start -1.016 -2.54)
- (end 1.016 2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "R_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "global:TVS"
- (pin_numbers hide)
- (pin_names
- (offset 1.016) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "D"
- (at 3.81 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "TVS"
- (at -3.81 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "TVS_0_1"
- (polyline
- (pts
- (xy -1.27 1.27) (xy -2.54 0)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 1.27) (xy -1.27 1.27)
- )
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 1.27) (xy 2.54 2.54)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 -1.27) (xy 0 1.27) (xy -1.27 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (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 39.37 31.75)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "0291efe4-3105-43fe-9989-f42b88597166")
- )
- (junction
- (at 82.55 38.1)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "105ebf3f-4213-491f-8977-733c0e62e413")
- )
- (junction
- (at 48.26 31.75)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "34023d6b-ebc9-4b1c-a46c-39829fbc69f0")
- )
- (junction
- (at 121.92 38.1)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "51785745-076e-4fae-adf5-0a99d4d24924")
- )
- (junction
- (at 54.61 31.75)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "6c21674e-b03c-44dc-ba38-ea21fd855d70")
- )
- (junction
- (at 86.36 38.1)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c6af4a17-e18c-4369-8114-27dcba4e1bfc")
- )
- (junction
- (at 109.22 48.26)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "cf077c05-158d-4506-b0b2-286ac756f610")
- )
- (junction
- (at 109.22 38.1)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "ffd17341-2dd4-4bdb-bc59-ce4d41e1d1c8")
- )
- (wire
- (pts
- (xy 109.22 38.1) (xy 109.22 39.37)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "06d9ff05-bca7-448f-92da-2ac5e70caee7")
- )
- (wire
- (pts
- (xy 74.93 48.26) (xy 109.22 48.26)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "14342f47-f0b2-4315-945b-89c024323980")
- )
- (wire
- (pts
- (xy 48.26 44.45) (xy 48.26 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "2556715b-0ebd-41fa-b210-6fff13917452")
- )
- (wire
- (pts
- (xy 109.22 38.1) (xy 121.92 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4e83f921-434a-49e0-bf42-bcbabdd5a05f")
- )
- (wire
- (pts
- (xy 39.37 31.75) (xy 48.26 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "535d3181-5c66-4982-b7fb-3b0de9f2ca94")
- )
- (wire
- (pts
- (xy 86.36 38.1) (xy 92.71 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "570b5b81-bbab-415b-8145-0308725958b0")
- )
- (wire
- (pts
- (xy 74.93 31.75) (xy 76.2 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6037253a-bbb4-4b0e-8433-1ca6209915a0")
- )
- (wire
- (pts
- (xy 20.32 49.53) (xy 22.86 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "992d74ea-b18a-48b1-b100-d4cb49af75bf")
- )
- (wire
- (pts
- (xy 55.88 44.45) (xy 59.69 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "996c6e18-7aaa-4563-95d0-92457a33e709")
- )
- (wire
- (pts
- (xy 76.2 30.48) (xy 82.55 30.48)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9a67d5fa-c72e-4f6a-a206-a6d5fe87e300")
- )
- (wire
- (pts
- (xy 39.37 31.75) (xy 39.37 35.56)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a43fd3fd-ada2-438f-bf0e-0b77c91b2a13")
- )
- (wire
- (pts
- (xy 76.2 31.75) (xy 76.2 30.48)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a50b29f6-ba53-48a4-b7e9-2a8069c0fc51")
- )
- (wire
- (pts
- (xy 107.95 38.1) (xy 109.22 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b6e56ee1-b92f-4f9c-9c86-892eebb0a41b")
- )
- (wire
- (pts
- (xy 82.55 38.1) (xy 86.36 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b9e38b2e-cd8a-41cf-8f5e-667a1fba2ce6")
- )
- (wire
- (pts
- (xy 121.92 38.1) (xy 134.62 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cec26e42-96db-48ff-9ed2-02e68ecfff2d")
- )
- (wire
- (pts
- (xy 74.93 44.45) (xy 74.93 48.26)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "da2e81c9-002c-4e14-bb0f-11979eb81e3e")
- )
- (wire
- (pts
- (xy 48.26 31.75) (xy 54.61 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "df838eb4-3873-41ab-8fe6-26aedd21f3ce")
- )
- (wire
- (pts
- (xy 54.61 31.75) (xy 59.69 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e26d5c11-42f2-498c-8004-d362701e9ec9")
- )
- (wire
- (pts
- (xy 109.22 46.99) (xy 109.22 48.26)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e3012c60-06d6-4afa-ae15-5bd0eb760c77")
- )
- (wire
- (pts
- (xy 33.02 31.75) (xy 39.37 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e428c217-56f7-4ec8-a9f0-6dde26bd479d")
- )
- (wire
- (pts
- (xy 109.22 48.26) (xy 109.22 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f8ecba94-b909-46c2-bf37-88337cc0c5f9")
- )
- (wire
- (pts
- (xy 74.93 38.1) (xy 82.55 38.1)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "fa78d2ef-8ba9-4973-84b1-3a08c13394f1")
- )
- (text "VIN beetween 4.5 and 18V"
- (exclude_from_sim no)
- (at 13.97 15.24 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "80d98050-4b74-47c8-b397-ab49f56b007f")
- )
- (text "Vout = (0.81 * (A+B)) / B\nutilisé la fonction TrouveResistance pour trouver le meilleur rapport de résistance\nA = 83.8 B = 16.3 pour 5V\n"
- (exclude_from_sim no)
- (at 101.6 21.59 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "f5312af6-5888-4875-85c6-195f1fac7a69")
- )
- (label "GND"
- (at 86.36 45.72 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "05875794-e554-4c47-8495-ced377fdcfe6")
- )
- (label "GND"
- (at 22.86 49.53 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "2254b044-8fc3-4bf9-8491-414aa9e28f6b")
- )
- (label "GND"
- (at 67.31 49.53 270)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "547bb3b4-ff47-4d88-a81d-3c2616c60dab")
- )
- (label "GND"
- (at 109.22 57.15 270)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "7d0d84b4-2b49-4050-92d5-5fbe90bfb972")
- )
- (label "GND"
- (at 39.37 43.18 270)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "b2d8b49e-f866-43af-8345-3610ee15e9cb")
- )
- (label "GND"
- (at 121.92 45.72 270)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "d5917165-b910-474b-935c-031beadbeaa4")
- )
- (label "GND"
- (at 54.61 39.37 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "e1c984e3-3507-4c0c-9668-c00cddf9aec0")
- )
- (hierarchical_label "3V3"
- (shape output)
- (at 134.62 38.1 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- (uuid "0eadad72-f4d6-448c-b1c1-c86fec05041e")
- )
- (hierarchical_label "Vin"
- (shape input)
- (at 20.32 31.75 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "31d630a2-7cb9-4414-8ac0-a54fa6ea35fd")
- )
- (hierarchical_label "GND"
- (shape input)
- (at 20.32 49.53 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- (uuid "355dc975-3404-4052-b86a-b567e3ace22c")
- )
- (symbol
- (lib_id "global:C")
- (at 82.55 34.29 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "048d336f-b609-4390-b71f-13585903d3b0")
- (property "Reference" "C?"
- (at 86.36 33.0199 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "10nF"
- (at 86.36 35.5599 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 83.5152 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 82.55 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 82.55 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0604"
- (at 82.55 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "54574f71-ce01-4781-b1a2-245945e99414")
- )
- (pin "2"
- (uuid "f4e08f2b-6010-4419-acef-e8eb7a95a12e")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "C?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "C?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "DIodeInc:AP3211KTR-G1")
- (at 67.31 38.1 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "504f436b-fcb1-480e-84bd-7664085b476a")
- (property "Reference" "U?"
- (at 69.85 48.26 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "AP3211KTR-G1"
- (at 59.69 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "U:SOT23-6"
- (at 67.31 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 67.31 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 67.31 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "1809"
- (at 67.31 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "2"
- (uuid "3b967743-6c31-4e6e-a0f4-6422d41a9c57")
- )
- (pin "3"
- (uuid "74cda0a5-6ace-46c7-8d87-98ad9f3732ac")
- )
- (pin "4"
- (uuid "3f809e1f-0778-48f1-a405-818d64e0967b")
- )
- (pin "5"
- (uuid "8a831d2e-0d04-44be-a12a-a21990ae1fd5")
- )
- (pin "6"
- (uuid "b2de2038-606f-4b5c-882d-6c5a2573a29e")
- )
- (pin "1"
- (uuid "8ea81251-6486-42a9-abae-1e42e06c49ea")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "U?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "U?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "U?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:INDUCTOR")
- (at 100.33 38.1 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "54866b1e-7b10-4f6b-b58c-59154c25057a")
- (property "Reference" "L?"
- (at 100.33 31.75 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "4.7µH"
- (at 100.33 34.29 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "L:0630"
- (at 100.33 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 100.33 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 100.33 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0805"
- (at 100.33 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "17880507-7688-4a20-a2ff-ef120b9ce672")
- )
- (pin "2"
- (uuid "e3ef6d5c-6e37-4177-9efa-dda0f44e4c0a")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "L?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "L?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "L?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 52.07 44.45 270)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "64071c9e-3076-43c8-a030-2cf6bdfd9669")
- (property "Reference" "R?"
- (at 50.8 46.99 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100K"
- (at 49.53 44.45 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:0805"
- (at 52.07 42.672 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 52.07 44.45 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 52.07 44.45 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0916"
- (at 52.07 44.45 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "c3867cad-3ba0-4086-a1da-e08470bc2ddc")
- )
- (pin "2"
- (uuid "35eb9553-fe21-4cfa-9aa6-ba217b684c0d")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "R?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "R?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 121.92 41.91 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "6745a070-4000-4cb0-be7a-fb1c908ebe2c")
- (property "Reference" "C?"
- (at 125.73 40.6399 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "22µF"
- (at 125.73 43.1799 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 122.8852 45.72 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 121.92 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 121.92 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0622"
- (at 121.92 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "ba2b27af-8b14-462f-8733-84de171e8072")
- )
- (pin "2"
- (uuid "fcd25a4a-b74b-4de8-9140-703b6884ae72")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "C?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "C?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 109.22 43.18 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "9bfe6db6-d6a0-470c-beac-c3acfcd2bc15")
- (property "Reference" "R?"
- (at 111.76 41.9099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "49.9K"
- (at 110.49 44.45 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:0805"
- (at 107.442 43.18 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 109.22 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 109.22 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0932"
- (at 109.22 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "8879e039-6c64-4161-8c84-6e2c1fef648e")
- )
- (pin "2"
- (uuid "364c5d8b-8e9b-47c5-bb9c-34520f41c005")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "R?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "R?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:TVS")
- (at 39.37 39.37 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "bf2a0958-b7d5-43d7-b7f1-0a8b243ce1b6")
- (property "Reference" "D?"
- (at 43.18 37.4649 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "TVS"
- (at 43.18 40.0049 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "D:SMB"
- (at 43.18 41.2749 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 39.37 39.37 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 39.37 39.37 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "1400"
- (at 39.37 39.37 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "1d3b2eed-7c3a-439a-ad03-af8357e755de")
- )
- (pin "2"
- (uuid "04c1efb4-d8cd-4876-aa3d-e7780285a187")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "D?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "D?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "D?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 54.61 35.56 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "c49fd1de-fe0d-4c2c-836f-0f01f5c96f03")
- (property "Reference" "C?"
- (at 55.88 33.02 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "10µF"
- (at 55.88 38.1 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 55.5752 39.37 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 54.61 35.56 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 54.61 35.56 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" ""
- (at 54.61 35.56 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "be7d7ea3-402c-4517-b0ed-1060de566cb2")
- )
- (pin "2"
- (uuid "cb991dbf-ce47-448f-8f05-e1bb2378c2b3")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "C?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "C?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:D")
- (at 86.36 41.91 270)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "cb6e9cd4-0fcc-4805-940c-175a691ec451")
- (property "Reference" "D?"
- (at 88.9 40.6018 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "D"
- (at 88.9 43.1418 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "D:SOD-123"
- (at 86.36 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 86.36 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 86.36 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "1300"
- (at 86.36 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "6e1c0150-70eb-4cb6-9dd1-e7b41ac4e00e")
- )
- (pin "2"
- (uuid "c852a8f9-b4a3-4a52-9370-5c45a509ebec")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "D?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "D?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "D?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:FUSE")
- (at 26.67 31.75 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "ec2dd0fb-7ede-4aed-994a-b60356ae27f2")
- (property "Reference" "F?"
- (at 26.67 24.13 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "FUSE"
- (at 26.67 26.67 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "F:1812"
- (at 26.67 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 26.67 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 26.67 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "1450"
- (at 26.67 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "0b168102-da15-4ab5-a3af-58c689f523f0")
- )
- (pin "2"
- (uuid "3c7760df-f7ff-43d1-aab7-dfaeb61652e4")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "F?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "F?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "F?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 109.22 53.34 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "fa12c611-ac2e-4ec1-97a9-4f4fa838d897")
- (property "Reference" "R?"
- (at 111.76 52.0699 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "16.3K"
- (at 111.76 54.6099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:0805"
- (at 107.442 53.34 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 109.22 53.34 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 109.22 53.34 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0933"
- (at 109.22 53.34 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "19ad5732-89bc-4eb2-b35f-a863399af3b9")
- )
- (pin "2"
- (uuid "e50c745b-b58c-43ee-a5cb-2f431044248a")
- )
- (instances
- (project "AP3211KTR"
- (path "/87c78429-be2b-40ed-8d3b-56cb9666a56f/2d375f47-1883-46d3-bdb7-6fc7f6853538"
- (reference "R?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/dfb02f5f-9239-40b3-93dc-decec4ca7122/3e4831c1-a44c-4aa4-bf40-20281882d814"
- (reference "R?")
- (unit 1)
- )
- )
- (project "AP3211KTR"
- (path "/f0d4e7e2-8ba5-41de-a7ff-5f1d4227bd69"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- )
|