123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793 |
- (kicad_sch (version 20230121) (generator eeschema)
-
- (uuid b55e0164-5a1f-4383-81f7-ffdb0299d4dd)
-
- (paper "A4")
-
- (title_block
- (title "Composite Video to XYZ converter")
- (date "2024-02-14")
- (rev "1")
- (company "xythobuz.de")
- )
-
- (lib_symbols
- (symbol "152EC0410_1" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U13" (at -0.0001 7.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "152EC0410" (at -0.0001 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD6.3-P2.50-D0.6-FD" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200309/C494514_9F3A4DA017A0C8951531EE171572BF22.pdf" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C6718390" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C6718390" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "152EC0410_1_0_1"
- (polyline
- (pts
- (xy -2.5402 0.0002)
- (xy -0.5082 0.0002)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.2862 1.2702)
- (xy -1.2702 1.2702)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.7782 1.7782)
- (xy -1.7782 0.7622)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.5082 1.7782)
- (xy -0.5082 -1.7779)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.5078 0.0002)
- (xy 2.5398 0.0002)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (arc (start 1.27 1.27) (mid 0.0658 0) (end 1.27 -1.27)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin input line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin input line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:01EC1809SHC10UF50V" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "C1" (at 1.27 7.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "01EC1809SHC10UF50V" (at 1.27 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD5.0-P2.00-D0.8-FD" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/44805.html" (at -7.62 -2.54 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C503219" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C503219" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "01EC1809SHC10UF50V_0_1"
- (rectangle (start -2.54 1.27) (end -1.524 1.2446)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (rectangle (start -2.032 1.778) (end -2.0066 0.762)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (polyline
- (pts
- (xy -0.762 2.54)
- (xy -0.762 -2.54)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (arc (start 2.54 2.54) (mid 0.1499 0) (end 2.54 -2.54)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin unspecified line (at -5.08 0 0) (length 4.318)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 4.826)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:05B472K500PF3C1N0R" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "C" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "05B472K500PF3C1N0R" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_L4.2-W3.8-P5.08-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/297366.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C409817" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C409817" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "05B472K500PF3C1N0R_0_1"
- (polyline
- (pts
- (xy -2.032 0.508)
- (xy 2.032 0.508)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 -0.508)
- (xy 0 -2.54)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0 0.508)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.032 -0.508)
- (xy -2.032 -0.508)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin unspecified line (at 0 -5.08 90) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 0 5.08 270) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:152EC0410" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U10" (at -0.0001 7.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "152EC0410" (at -0.0001 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD6.3-P2.50-D0.6-FD" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200309/C494514_9F3A4DA017A0C8951531EE171572BF22.pdf" (at -5.08 -2.54 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C6718390" (at 0 2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C6718390" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "152EC0410_0_1"
- (polyline
- (pts
- (xy -2.5402 0.0002)
- (xy -0.5082 0.0002)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.2862 1.2702)
- (xy -1.2702 1.2702)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.7782 1.7782)
- (xy -1.7782 0.7622)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.5082 1.7782)
- (xy -0.5082 -1.7779)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.5078 0.0002)
- (xy 2.5398 0.0002)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (arc (start 1.27 1.27) (mid 0.1552 0) (end 1.27 -1.27)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin input line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin input line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:1N4148S" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "1N4148S" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:DO-34_BD1.6-L3.0-P7.00-D0.6-RD" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/145611.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C179555" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C179555" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "1N4148S_0_1"
- (polyline
- (pts
- (xy -1.27 -1.524)
- (xy -1.27 1.524)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.524)
- (xy -1.27 0)
- (xy 1.27 -1.524)
- (xy 1.27 1.524)
- )
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 3.81)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 3.81)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:450BXC1MEFC8X11_5" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U14" (at 0 6.35 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "450BXC1MEFC8X11_5" (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD8.0-P3.50-D0.6-FD_1" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20180416/C191234_733C5C0149568155CE2C084CF497C985.pdf" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C1651069" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C1651069" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "450BXC1MEFC8X11_5_0_1"
- (polyline
- (pts
- (xy -2.54 0)
- (xy -0.508 0)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.286 1.27)
- (xy -1.27 1.27)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.778 1.778)
- (xy -1.778 0.762)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.508 1.778)
- (xy -0.508 -1.778)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.508 0)
- (xy 2.54 0)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (arc (start 1.27 1.27) (mid 0.0658 0) (end 1.27 -1.27)
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin input line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin input line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:AV-5" (in_bom yes) (on_board yes)
- (property "Reference" "U5" (at 2.159 -11.43 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "AV-5" (at -0.381 -11.43 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_AV-5" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/18768.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C18080" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C18080" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "AV-5_0_1"
- (rectangle (start -3.302 5.08) (end 2.54 0)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (rectangle (start 2.54 4.826) (end 5.08 1.778)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at 0 -5.08 90) (length 5.08)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -2.54 -5.08 90) (length 5.08)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:BC547B" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "BC547B" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:TO-92-3_L4.9-W3.7-P1.27-L" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20180629/C233232_99576441F8ED8E9074FB1575A6BE3592.PDF" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C713613" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C713613" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "BC547B_0_1"
- (polyline
- (pts
- (xy -2.54 -0.762)
- (xy 0 -2.54)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.54 2.286)
- (xy -2.54 -2.286)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy -2.54 0.762)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 -2.54)
- (xy -0.762 -1.27)
- (xy -1.524 -2.286)
- (xy 0 -2.54)
- )
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin input line (at 0 5.08 270) (length 2.54)
- (name "C" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin input line (at -5.08 0 0) (length 2.54)
- (name "B" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- (pin input line (at 0 -5.08 90) (length 2.54)
- (name "E" (effects (font (size 1 1))))
- (number "3" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:BC557B_C713617" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "BC557B_C713617" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:TO-92-3_L4.9-W3.7-P1.27-L" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20180629/C233232_99576441F8ED8E9074FB1575A6BE3592.PDF" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C713617" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C713617" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "BC557B_C713617_0_1"
- (polyline
- (pts
- (xy -2.54 -0.762)
- (xy 0 -2.54)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.54 2.286)
- (xy -2.54 -2.286)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy -2.54 0.762)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.54 -0.762)
- (xy -1.778 -2.032)
- (xy -1.016 -1.016)
- (xy -2.54 -0.762)
- )
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin input line (at 0 5.08 270) (length 2.54)
- (name "C" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin input line (at -5.08 0 0) (length 2.54)
- (name "B" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- (pin input line (at 0 -5.08 90) (length 2.54)
- (name "E" (effects (font (size 1 1))))
- (number "3" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:CD1E106MC9BER2F100" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CD1E106MC9BER2F100" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_L5.5-W3.8-P3.50-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20210512/C2761762_7AEAEBBE16673951158B42993B4AFA88.pdf" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C2761733" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C2761733" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CD1E106MC9BER2F100_0_1"
- (polyline
- (pts
- (xy -0.508 -2.032)
- (xy -0.508 2.032)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.508 0)
- (xy -2.54 0)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.508 2.032)
- (xy 0.508 -2.032)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 0)
- (xy 0.508 0)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:CD1H103KC94ER1D000" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "C" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CD1H103KC94ER1D000" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_L4.2-W3.8-P5.08-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/297366.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C263180" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C263180" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CD1H103KC94ER1D000_0_1"
- (polyline
- (pts
- (xy -0.508 -2.032)
- (xy -0.508 2.032)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -0.508 0)
- (xy -2.54 0)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.508 2.032)
- (xy 0.508 -2.032)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.54 0)
- (xy 0.508 0)
- )
- (stroke (width 0) (type default))
- (fill (type none))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:CR1_4W-75Ω±5%-OT52" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "CR1_4W-75Ω±5%-OT52" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.7-L6.2-P10.20-D0.4" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/486756.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C2896897" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C2896897" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "CR1_4W-75Ω±5%-OT52_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:MF1_4W-1KΩ±1%T52" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MF1_4W-1KΩ±1%T52" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.3-L6.5-P10.50-D0.5" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/123457.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C713997" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C713997" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "MF1_4W-1KΩ±1%T52_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:MF1_4W-82Ω±1%_T52" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MF1_4W-82Ω±1%_T52" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.2-L6.5-P10.50-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/59661.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C119302" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C119302" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "MF1_4W-82Ω±1%_T52_0_1"
- (rectangle (start -2.54 1.016) (end 2.54 -1.016)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:MFR-25FTE52-100K" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MFR-25FTE52-100K" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.2-L6.5-P10.50-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/59661.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C172965" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C172965" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "MFR-25FTE52-100K_0_1"
- (rectangle (start -2.54 1.016) (end 2.54 -1.016)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:RN_1_4W_10K_F_T_B_A1" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "RN_1_4W_10K_F_T_B_A1" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410695" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C410695" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "RN_1_4W_10K_F_T_B_A1_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:RN_1_4W_220R_F_T_B_A1" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "RN_1_4W_220R_F_T_B_A1" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410657" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C410657" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "RN_1_4W_220R_F_T_B_A1_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:RN_1_4W_3K3_F_T_B_A1" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "RN_1_4W_3K3_F_T_B_A1" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410631" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C410631" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "RN_1_4W_3K3_F_T_B_A1_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:RN_1_4W_470R_F_T_B_A1" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "RN_1_4W_470R_F_T_B_A1" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410615" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C410615" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "RN_1_4W_470R_F_T_B_A1_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:RN_2WS_22R_F_T_B_A1" (pin_names hide) (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "RN_2WS_22R_F_T_B_A1" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD4.5-L11.0-P15.00-D0.8" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/290324.html" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C433604" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C433604" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "RN_2WS_22R_F_T_B_A1_0_1"
- (rectangle (start -2.54 1.27) (end 2.54 -1.27)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 0 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at 5.08 0 180) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "jlc:XY300V-A-5_0-2P" (in_bom yes) (on_board yes)
- (property "Reference" "U" (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "XY300V-A-5_0-2P" (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_XY300V-A-5.0-2P" (at 0 -10.16 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200527/C557648_4A2FA4132AA24EE423B62B1474E9B5BB.pdf" (at -2.286 0.127 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C557648" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "C557648" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "XY300V-A-5_0-2P_0_1"
- (rectangle (start -2.54 3.81) (end 2.54 -3.81)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (circle (center -1.27 2.54) (radius 0.381)
- (stroke (width 0) (type default))
- (fill (type background))
- )
- (pin unspecified line (at -5.08 1.27 0) (length 2.54)
- (name "1" (effects (font (size 1 1))))
- (number "1" (effects (font (size 1 1))))
- )
- (pin unspecified line (at -5.08 -1.27 0) (length 2.54)
- (name "2" (effects (font (size 1 1))))
- (number "2" (effects (font (size 1 1))))
- )
- )
- )
- (symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+12V" (at 0 3.556 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "global power" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+12V\"" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+12V_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 0)
- (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))
- )
- )
- (symbol "+12V_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+12V" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (at 0 -6.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "global power" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (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) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- )
-
- (junction (at 157.48 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 1827b874-1cd7-46dc-b045-30ce5fadc47d)
- )
- (junction (at 113.03 100.33) (diameter 0) (color 0 0 0 0)
- (uuid 2b87d237-8a06-469f-bd99-a3a3eb053582)
- )
- (junction (at 157.48 78.74) (diameter 0) (color 0 0 0 0)
- (uuid 2c7f765c-6162-40cf-b019-e861a887d124)
- )
- (junction (at 217.17 63.5) (diameter 0) (color 0 0 0 0)
- (uuid 341e08c4-7be5-4abe-8fde-3bc843107b44)
- )
- (junction (at 203.2 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 3881005e-6a45-4aea-810f-f805a76fbdc9)
- )
- (junction (at 177.8 78.74) (diameter 0) (color 0 0 0 0)
- (uuid 4115bb3f-4ae7-45cd-b46d-d6706fe6cad6)
- )
- (junction (at 123.19 100.33) (diameter 0) (color 0 0 0 0)
- (uuid 42857501-a6ba-4805-8b85-6146ea88847f)
- )
- (junction (at 113.03 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 507f0a5c-5507-48e3-933f-34ef744da3fb)
- )
- (junction (at 217.17 119.38) (diameter 0) (color 0 0 0 0)
- (uuid 552c7403-cac5-4d98-8c89-5b2b2a90ffc6)
- )
- (junction (at 81.28 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 58abfb22-dc6c-419c-bbab-5efe6325c34c)
- )
- (junction (at 203.2 63.5) (diameter 0) (color 0 0 0 0)
- (uuid 5fd50bfa-1dda-4cb0-8c0a-3a13225e0407)
- )
- (junction (at 157.48 111.76) (diameter 0) (color 0 0 0 0)
- (uuid 649a8fac-3a2a-4341-9d40-b4ad3d73e2a6)
- )
- (junction (at 190.5 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 6bce8e53-8dc3-4eda-bab8-5a4beb5cc45d)
- )
- (junction (at 96.52 97.79) (diameter 0) (color 0 0 0 0)
- (uuid 6fca840a-1250-44fd-b28b-0f57805d5bde)
- )
- (junction (at 113.03 125.73) (diameter 0) (color 0 0 0 0)
- (uuid 723017bc-a7af-4657-a649-d0d80b2856c0)
- )
- (junction (at 81.28 107.95) (diameter 0) (color 0 0 0 0)
- (uuid 729f3a47-7c59-4796-b1ff-4c66b4ea2602)
- )
- (junction (at 203.2 104.14) (diameter 0) (color 0 0 0 0)
- (uuid 750750d4-9c2e-448a-831f-9f59ddbc1642)
- )
- (junction (at 116.84 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 76f4d566-175f-482d-968f-160c108ddb2a)
- )
- (junction (at 157.48 63.5) (diameter 0) (color 0 0 0 0)
- (uuid 775713d3-63ed-4321-a02f-5cfa9b8e2f20)
- )
- (junction (at 66.04 86.36) (diameter 0) (color 0 0 0 0)
- (uuid 7a63adbd-c854-4cbe-bdef-591038d83599)
- )
- (junction (at 177.8 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 818a06a4-1adc-498e-a91d-3c00e4e738bf)
- )
- (junction (at 71.12 63.5) (diameter 0) (color 0 0 0 0)
- (uuid 93df1db2-322b-4e57-8aad-6357a5f03aa3)
- )
- (junction (at 81.28 125.73) (diameter 0) (color 0 0 0 0)
- (uuid 974f1866-d5f8-48ce-b434-667502dd176a)
- )
- (junction (at 123.19 140.97) (diameter 0) (color 0 0 0 0)
- (uuid 98de8749-28d2-40ba-a99e-bd90347a68e2)
- )
- (junction (at 81.28 97.79) (diameter 0) (color 0 0 0 0)
- (uuid a2ba7bab-5d6a-4da9-90a4-7aa3a9825363)
- )
- (junction (at 190.5 111.76) (diameter 0) (color 0 0 0 0)
- (uuid cdc385a9-323a-40f4-89aa-87c2f714a672)
- )
- (junction (at 96.52 107.95) (diameter 0) (color 0 0 0 0)
- (uuid d35a3530-d16a-4a43-a73f-d28e34f15b0b)
- )
- (junction (at 113.03 63.5) (diameter 0) (color 0 0 0 0)
- (uuid d3f0c698-ee74-4e49-9dcf-ddc306ff879c)
- )
- (junction (at 177.8 63.5) (diameter 0) (color 0 0 0 0)
- (uuid d5e7174c-ac1e-4f79-9fa0-858675846cd2)
- )
- (junction (at 177.8 123.19) (diameter 0) (color 0 0 0 0)
- (uuid dac26d85-ffc0-49e5-90c6-8839170d47fb)
- )
- (junction (at 167.64 63.5) (diameter 0) (color 0 0 0 0)
- (uuid db4588d3-f82d-4f89-be17-de903bfcd5e8)
- )
- (junction (at 157.48 123.19) (diameter 0) (color 0 0 0 0)
- (uuid effbb491-1dd3-4cdb-ae32-4c0b22b10114)
- )
- (junction (at 91.44 140.97) (diameter 0) (color 0 0 0 0)
- (uuid f126611d-2859-4d67-a5b9-1bbba8d0dd90)
- )
- (junction (at 217.17 104.14) (diameter 0) (color 0 0 0 0)
- (uuid f76512e2-f957-43a6-8121-738d546a5efe)
- )
- (junction (at 81.28 63.5) (diameter 0) (color 0 0 0 0)
- (uuid f91a47bb-85a6-4af1-a237-6447dfed20fb)
- )
- (junction (at 203.2 119.38) (diameter 0) (color 0 0 0 0)
- (uuid fe8446b6-5b40-46bc-ae89-7d0a26d81bf0)
- )
-
- (wire (pts (xy 217.17 104.14) (xy 203.2 104.14))
- (stroke (width 0) (type default))
- (uuid 020ada14-e265-407b-8490-2b86ab379d2e)
- )
- (wire (pts (xy 177.8 123.19) (xy 177.8 78.74))
- (stroke (width 0) (type default))
- (uuid 032ec1fe-7f52-4685-833e-f17776fc3138)
- )
- (wire (pts (xy 177.8 63.5) (xy 203.2 63.5))
- (stroke (width 0) (type default))
- (uuid 03581188-e448-4a05-8edf-974b8ee05652)
- )
- (wire (pts (xy 162.56 123.19) (xy 157.48 123.19))
- (stroke (width 0) (type default))
- (uuid 051c1fda-829e-49fa-93ac-15b0efc231e8)
- )
- (wire (pts (xy 81.28 140.97) (xy 91.44 140.97))
- (stroke (width 0) (type default))
- (uuid 05d4f970-ce59-4fc1-b06b-7b47d19ec46c)
- )
- (wire (pts (xy 113.03 138.43) (xy 113.03 140.97))
- (stroke (width 0) (type default))
- (uuid 07851877-55a5-46d3-a4cf-45a5964fa9fd)
- )
- (wire (pts (xy 157.48 66.04) (xy 157.48 63.5))
- (stroke (width 0) (type default))
- (uuid 091e94f6-adf4-4bbc-bbdf-c1a90f9ad7c1)
- )
- (wire (pts (xy 49.53 88.9) (xy 49.53 91.44))
- (stroke (width 0) (type default))
- (uuid 0e01a859-b183-432d-b09e-f7dbfbfae35d)
- )
- (wire (pts (xy 203.2 140.97) (xy 190.5 140.97))
- (stroke (width 0) (type default))
- (uuid 0e6cbc37-a6b1-4052-b867-1a3c7c1d5591)
- )
- (wire (pts (xy 116.84 140.97) (xy 113.03 140.97))
- (stroke (width 0) (type default))
- (uuid 0efc16ca-11e5-4a7b-887a-b58a5af76cc7)
- )
- (wire (pts (xy 167.64 76.2) (xy 167.64 78.74))
- (stroke (width 0) (type default))
- (uuid 0fd30c09-6abb-417f-9b8d-36945b1ecdde)
- )
- (wire (pts (xy 186.69 78.74) (xy 177.8 78.74))
- (stroke (width 0) (type default))
- (uuid 116d5265-b6e9-40b5-bf44-d2273bead019)
- )
- (wire (pts (xy 172.72 123.19) (xy 177.8 123.19))
- (stroke (width 0) (type default))
- (uuid 1af31778-7e2d-4a50-b343-4efc62b04cc8)
- )
- (wire (pts (xy 217.17 119.38) (xy 224.79 119.38))
- (stroke (width 0) (type default))
- (uuid 1b82f324-fdaa-4e25-8c83-936b7db274aa)
- )
- (wire (pts (xy 184.15 54.61) (xy 184.15 57.15))
- (stroke (width 0) (type default))
- (uuid 1ffde8c9-a2c0-4d69-88a5-1a74167338a8)
- )
- (wire (pts (xy 190.5 138.43) (xy 190.5 140.97))
- (stroke (width 0) (type default))
- (uuid 20e6523e-e2f8-4f2d-bbba-03ad23e2eb1e)
- )
- (wire (pts (xy 217.17 119.38) (xy 203.2 119.38))
- (stroke (width 0) (type default))
- (uuid 227ca04b-3aa0-43ab-bfc3-8378b5260042)
- )
- (wire (pts (xy 157.48 105.41) (xy 157.48 111.76))
- (stroke (width 0) (type default))
- (uuid 25eeff33-f86d-4b36-9fa0-c67c64f62626)
- )
- (wire (pts (xy 113.03 125.73) (xy 113.03 128.27))
- (stroke (width 0) (type default))
- (uuid 274c336e-e8d4-40af-9737-baac6ddf678b)
- )
- (wire (pts (xy 203.2 116.84) (xy 203.2 119.38))
- (stroke (width 0) (type default))
- (uuid 280db927-62f6-4b87-a597-14234bdcb39a)
- )
- (wire (pts (xy 123.19 140.97) (xy 116.84 140.97))
- (stroke (width 0) (type default))
- (uuid 28316b86-2aff-4624-a74a-68a3862e3373)
- )
- (wire (pts (xy 217.17 66.04) (xy 217.17 63.5))
- (stroke (width 0) (type default))
- (uuid 2b384b16-93e6-4c2c-b317-1f50a6904204)
- )
- (wire (pts (xy 190.5 140.97) (xy 177.8 140.97))
- (stroke (width 0) (type default))
- (uuid 2b75a809-d5f4-49b1-b10a-9e04dd3f87f8)
- )
- (wire (pts (xy 81.28 107.95) (xy 81.28 97.79))
- (stroke (width 0) (type default))
- (uuid 2c36057f-bd06-40c4-acbd-a675492e4950)
- )
- (wire (pts (xy 157.48 140.97) (xy 123.19 140.97))
- (stroke (width 0) (type default))
- (uuid 302b085d-85a1-46aa-a5a4-b3f95a24d782)
- )
- (wire (pts (xy 157.48 138.43) (xy 157.48 140.97))
- (stroke (width 0) (type default))
- (uuid 32859174-dbb0-4ed8-af05-48718f0f424a)
- )
- (wire (pts (xy 113.03 100.33) (xy 123.19 100.33))
- (stroke (width 0) (type default))
- (uuid 3730fa68-b338-4f82-91ee-5e2db6c1201e)
- )
- (wire (pts (xy 120.65 54.61) (xy 120.65 57.15))
- (stroke (width 0) (type default))
- (uuid 395bc118-5890-4f86-8e06-1bc221327741)
- )
- (wire (pts (xy 157.48 140.97) (xy 177.8 140.97))
- (stroke (width 0) (type default))
- (uuid 3b2b6432-0bea-4e32-9b62-46172290bf72)
- )
- (wire (pts (xy 255.27 116.84) (xy 256.54 116.84))
- (stroke (width 0) (type default))
- (uuid 3c08a452-87c6-4e96-8fc8-bed6a47fc128)
- )
- (wire (pts (xy 71.12 60.96) (xy 71.12 63.5))
- (stroke (width 0) (type default))
- (uuid 4202c59b-125a-4da9-abbc-3135a785a5ea)
- )
- (wire (pts (xy 240.03 140.97) (xy 203.2 140.97))
- (stroke (width 0) (type default))
- (uuid 4686ce28-52eb-48df-9aad-32016f46c76e)
- )
- (wire (pts (xy 123.19 54.61) (xy 123.19 100.33))
- (stroke (width 0) (type default))
- (uuid 46abc2d8-68ee-4dfc-b16a-6901dc084495)
- )
- (wire (pts (xy 93.98 86.36) (xy 96.52 86.36))
- (stroke (width 0) (type default))
- (uuid 4b881bd9-2660-472b-873e-d83b6b0846a4)
- )
- (wire (pts (xy 157.48 63.5) (xy 167.64 63.5))
- (stroke (width 0) (type default))
- (uuid 4bcc0e99-99aa-4897-b404-998b510964cf)
- )
- (wire (pts (xy 46.99 86.36) (xy 66.04 86.36))
- (stroke (width 0) (type default))
- (uuid 4c207664-331a-4040-961c-2dfa912ec792)
- )
- (wire (pts (xy 157.48 78.74) (xy 157.48 95.25))
- (stroke (width 0) (type default))
- (uuid 4e1b0152-3e5e-42de-9e48-5fb5e6a8c1b2)
- )
- (wire (pts (xy 217.17 63.5) (xy 203.2 63.5))
- (stroke (width 0) (type default))
- (uuid 507209ef-474f-4ee1-acaa-806e38dd358d)
- )
- (wire (pts (xy 81.28 138.43) (xy 81.28 140.97))
- (stroke (width 0) (type default))
- (uuid 55afffb3-84ea-4b77-acf1-2aeb5fc51e14)
- )
- (wire (pts (xy 240.03 127) (xy 240.03 63.5))
- (stroke (width 0) (type default))
- (uuid 55bf6d7f-e0a7-4f16-8082-f50f4f4dda4b)
- )
- (wire (pts (xy 81.28 63.5) (xy 81.28 66.04))
- (stroke (width 0) (type default))
- (uuid 56e07934-98b6-409c-b4a4-8072ae37afa3)
- )
- (wire (pts (xy 190.5 111.76) (xy 190.5 128.27))
- (stroke (width 0) (type default))
- (uuid 58240bb1-f32c-4b85-8d30-173ae7d11702)
- )
- (wire (pts (xy 66.04 138.43) (xy 66.04 140.97))
- (stroke (width 0) (type default))
- (uuid 5a0525bd-9ef1-4bb1-84fe-76f0ffb93436)
- )
- (wire (pts (xy 62.23 63.5) (xy 71.12 63.5))
- (stroke (width 0) (type default))
- (uuid 5b9f61ee-38f0-428d-a37b-155480301867)
- )
- (wire (pts (xy 81.28 107.95) (xy 81.28 125.73))
- (stroke (width 0) (type default))
- (uuid 5dbeb6db-e5b8-48e3-94f9-d6717f145427)
- )
- (wire (pts (xy 240.03 137.16) (xy 240.03 140.97))
- (stroke (width 0) (type default))
- (uuid 5f1c1e99-fb4a-4a0e-a785-7a0a806d12f0)
- )
- (wire (pts (xy 93.98 107.95) (xy 96.52 107.95))
- (stroke (width 0) (type default))
- (uuid 5f31c3d9-d261-477f-9596-a2d9eaf972ec)
- )
- (wire (pts (xy 96.52 107.95) (xy 107.95 107.95))
- (stroke (width 0) (type default))
- (uuid 5f406714-6dac-4ef0-b381-9357ab106236)
- )
- (wire (pts (xy 116.84 140.97) (xy 116.84 142.24))
- (stroke (width 0) (type default))
- (uuid 5f8b177a-7093-4d31-a622-3b39527e7ef3)
- )
- (wire (pts (xy 203.2 76.2) (xy 203.2 104.14))
- (stroke (width 0) (type default))
- (uuid 5ffad6d5-a541-4b94-ba42-5ff9aeca79e8)
- )
- (wire (pts (xy 203.2 138.43) (xy 203.2 140.97))
- (stroke (width 0) (type default))
- (uuid 68eeca59-310d-4b17-8be6-65da79831fa8)
- )
- (wire (pts (xy 172.72 111.76) (xy 190.5 111.76))
- (stroke (width 0) (type default))
- (uuid 710c7f06-8725-4ce2-8c32-fafd732b096d)
- )
- (wire (pts (xy 177.8 63.5) (xy 167.64 63.5))
- (stroke (width 0) (type default))
- (uuid 723edc59-caeb-4111-aa30-cde3eb537c28)
- )
- (wire (pts (xy 123.19 128.27) (xy 123.19 125.73))
- (stroke (width 0) (type default))
- (uuid 74c50a08-dae6-4c7f-9383-7efccce7bf29)
- )
- (wire (pts (xy 66.04 86.36) (xy 83.82 86.36))
- (stroke (width 0) (type default))
- (uuid 74f05610-7c5a-4959-84dc-dca97867cd83)
- )
- (wire (pts (xy 91.44 138.43) (xy 91.44 140.97))
- (stroke (width 0) (type default))
- (uuid 752b7e04-fc1c-4a93-90d1-950daf9cd780)
- )
- (wire (pts (xy 96.52 107.95) (xy 96.52 97.79))
- (stroke (width 0) (type default))
- (uuid 758c97c5-d2b9-4d43-be84-17448ff8d105)
- )
- (wire (pts (xy 143.51 100.33) (xy 152.4 100.33))
- (stroke (width 0) (type default))
- (uuid 784361a3-0e3b-43b3-8964-31e7a5a66332)
- )
- (wire (pts (xy 157.48 111.76) (xy 157.48 123.19))
- (stroke (width 0) (type default))
- (uuid 79dbc019-778a-4dba-9e99-6648eaf356a6)
- )
- (wire (pts (xy 81.28 76.2) (xy 81.28 97.79))
- (stroke (width 0) (type default))
- (uuid 822ec335-1c38-40b6-9aa0-aa6662289f69)
- )
- (wire (pts (xy 217.17 116.84) (xy 217.17 119.38))
- (stroke (width 0) (type default))
- (uuid 85a29baf-f9ab-4b0a-9601-313a5675687b)
- )
- (wire (pts (xy 62.23 66.04) (xy 63.5 66.04))
- (stroke (width 0) (type default))
- (uuid 86609b79-6419-4e39-8466-e0d5b513e356)
- )
- (wire (pts (xy 113.03 100.33) (xy 113.03 102.87))
- (stroke (width 0) (type default))
- (uuid 89310334-f7ef-41b7-9f7f-f7e310105b08)
- )
- (wire (pts (xy 157.48 76.2) (xy 157.48 78.74))
- (stroke (width 0) (type default))
- (uuid 8c71d1e1-ac99-40f9-90c4-86cbf21799fd)
- )
- (wire (pts (xy 96.52 97.79) (xy 93.98 97.79))
- (stroke (width 0) (type default))
- (uuid 90fa2775-1ca6-4721-99bf-5973e50d034f)
- )
- (wire (pts (xy 96.52 86.36) (xy 96.52 97.79))
- (stroke (width 0) (type default))
- (uuid 922213d3-06af-4de5-b336-f262f4547340)
- )
- (wire (pts (xy 71.12 63.5) (xy 81.28 63.5))
- (stroke (width 0) (type default))
- (uuid 92c1a558-d46a-48ef-bf9e-d3005b92b067)
- )
- (wire (pts (xy 81.28 63.5) (xy 113.03 63.5))
- (stroke (width 0) (type default))
- (uuid 944ceb70-b790-40cd-8ce2-17c69f7aea42)
- )
- (wire (pts (xy 91.44 128.27) (xy 91.44 125.73))
- (stroke (width 0) (type default))
- (uuid 963bc128-ebf6-4470-b0a7-e9bb247dc530)
- )
- (wire (pts (xy 46.99 88.9) (xy 49.53 88.9))
- (stroke (width 0) (type default))
- (uuid 9a301b36-ed5c-465b-92ac-b91fd769d929)
- )
- (wire (pts (xy 157.48 111.76) (xy 162.56 111.76))
- (stroke (width 0) (type default))
- (uuid 9b4272cc-ea60-46f1-a892-3751db494d49)
- )
- (wire (pts (xy 66.04 140.97) (xy 81.28 140.97))
- (stroke (width 0) (type default))
- (uuid 9edb13a4-c660-4fa6-b581-c9d75914cf4f)
- )
- (wire (pts (xy 234.95 119.38) (xy 256.54 119.38))
- (stroke (width 0) (type default))
- (uuid 9f8276c5-42b0-413e-ae34-146e516fbfa1)
- )
- (wire (pts (xy 66.04 86.36) (xy 66.04 128.27))
- (stroke (width 0) (type default))
- (uuid a9155676-aaf5-4352-889d-42f2f2f3c8d8)
- )
- (wire (pts (xy 81.28 125.73) (xy 81.28 128.27))
- (stroke (width 0) (type default))
- (uuid ac2d5025-b770-45c0-b9cc-ee17537c0540)
- )
- (wire (pts (xy 91.44 140.97) (xy 113.03 140.97))
- (stroke (width 0) (type default))
- (uuid b0f8ac07-4c45-4601-b195-be9511f37c1e)
- )
- (wire (pts (xy 190.5 111.76) (xy 198.12 111.76))
- (stroke (width 0) (type default))
- (uuid b3badca8-54c5-4f15-ad67-0791dc42e9c2)
- )
- (wire (pts (xy 203.2 119.38) (xy 203.2 128.27))
- (stroke (width 0) (type default))
- (uuid b61d53f0-b537-4a34-8a1e-b07630676413)
- )
- (wire (pts (xy 177.8 66.04) (xy 177.8 63.5))
- (stroke (width 0) (type default))
- (uuid b6cd3ba7-9a2b-4a0e-9457-c360c9a5fff0)
- )
- (wire (pts (xy 177.8 78.74) (xy 177.8 76.2))
- (stroke (width 0) (type default))
- (uuid b6eb9399-2cb7-476f-b10c-08e7aced751f)
- )
- (wire (pts (xy 113.03 63.5) (xy 113.03 66.04))
- (stroke (width 0) (type default))
- (uuid ba343550-19e3-46d3-9f99-b8caea918060)
- )
- (wire (pts (xy 217.17 106.68) (xy 217.17 104.14))
- (stroke (width 0) (type default))
- (uuid bda9ffff-85fc-44bd-8d15-7a0f6d0058c1)
- )
- (wire (pts (xy 255.27 116.84) (xy 255.27 115.57))
- (stroke (width 0) (type default))
- (uuid be72dba2-6b94-45a4-9222-6692506d6a3f)
- )
- (wire (pts (xy 240.03 63.5) (xy 217.17 63.5))
- (stroke (width 0) (type default))
- (uuid c1687587-c7eb-4568-a05b-86344708d054)
- )
- (wire (pts (xy 113.03 113.03) (xy 113.03 125.73))
- (stroke (width 0) (type default))
- (uuid c274b530-3b37-4d0e-8977-b9356bd5739e)
- )
- (wire (pts (xy 203.2 104.14) (xy 203.2 106.68))
- (stroke (width 0) (type default))
- (uuid c50e8b15-d5a9-403b-97f6-dc957fb6acb7)
- )
- (wire (pts (xy 81.28 97.79) (xy 83.82 97.79))
- (stroke (width 0) (type default))
- (uuid c858beea-dcdd-4623-af74-bf8f53f2baa7)
- )
- (wire (pts (xy 83.82 107.95) (xy 81.28 107.95))
- (stroke (width 0) (type default))
- (uuid ce28a2f6-e8b8-428d-b1d5-1a6521df0e06)
- )
- (wire (pts (xy 91.44 125.73) (xy 81.28 125.73))
- (stroke (width 0) (type default))
- (uuid d8c43efe-2c26-45a4-80cb-f8698060d02b)
- )
- (wire (pts (xy 167.64 66.04) (xy 167.64 63.5))
- (stroke (width 0) (type default))
- (uuid de7550c8-2ae0-495f-8108-dedafbc4e792)
- )
- (wire (pts (xy 123.19 125.73) (xy 113.03 125.73))
- (stroke (width 0) (type default))
- (uuid dfd95fd7-ab87-4f6b-8c63-aadd4312fe08)
- )
- (wire (pts (xy 203.2 66.04) (xy 203.2 63.5))
- (stroke (width 0) (type default))
- (uuid e061e5d0-a967-4710-a445-85650d37702d)
- )
- (wire (pts (xy 217.17 76.2) (xy 217.17 104.14))
- (stroke (width 0) (type default))
- (uuid e2316e34-1df1-4ba0-a0d1-211ea5a424dc)
- )
- (wire (pts (xy 123.19 100.33) (xy 133.35 100.33))
- (stroke (width 0) (type default))
- (uuid e2993134-6454-40ef-9053-87a93d5165bb)
- )
- (wire (pts (xy 177.8 138.43) (xy 177.8 140.97))
- (stroke (width 0) (type default))
- (uuid e348622e-c837-4267-bf34-afefb6e5aaed)
- )
- (wire (pts (xy 63.5 67.31) (xy 63.5 66.04))
- (stroke (width 0) (type default))
- (uuid f1b46055-6c52-4831-9262-190d77d133ee)
- )
- (wire (pts (xy 186.69 54.61) (xy 186.69 78.74))
- (stroke (width 0) (type default))
- (uuid f1ec8c0a-66e2-4807-a2cd-9359e133d835)
- )
- (wire (pts (xy 177.8 123.19) (xy 177.8 128.27))
- (stroke (width 0) (type default))
- (uuid f396c4c8-0804-4c6a-9904-13fcbe71011f)
- )
- (wire (pts (xy 157.48 63.5) (xy 113.03 63.5))
- (stroke (width 0) (type default))
- (uuid f4514367-fd68-47c8-bf14-84d7ed9eb74a)
- )
- (wire (pts (xy 123.19 138.43) (xy 123.19 140.97))
- (stroke (width 0) (type default))
- (uuid f6b00ea1-4b1f-4a14-90ba-ab559e3d9d87)
- )
- (wire (pts (xy 113.03 76.2) (xy 113.03 100.33))
- (stroke (width 0) (type default))
- (uuid fd9b1102-0fba-4336-86d5-f401ae4c89f6)
- )
- (wire (pts (xy 157.48 78.74) (xy 167.64 78.74))
- (stroke (width 0) (type default))
- (uuid fdf74812-6ce5-4c57-89e3-4d6accfd5a12)
- )
- (wire (pts (xy 157.48 128.27) (xy 157.48 123.19))
- (stroke (width 0) (type default))
- (uuid fe3a0b3a-5f2f-4a8e-b508-460e16a7e0b4)
- )
-
- (symbol (lib_id "power:GND") (at 120.65 57.15 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 07ec93be-2e06-4b24-9080-22993ec3b078)
- (property "Reference" "#PWR01" (at 120.65 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 120.65 62.23 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 120.65 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 120.65 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dbdee0e7-9cd9-41af-803f-122ff685126e))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "#PWR01") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_1_4W_10K_F_T_B_A1") (at 88.9 97.79 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 128a9009-be80-412d-a9e3-e936d933ba87)
- (property "Reference" "R2" (at 88.9 91.44 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 88.9 93.98 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 88.9 87.63 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at 91.186 97.917 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410695" (at 88.9 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4c41bb08-d8d5-4aab-a5f3-5bf8c10ec592))
- (pin "2" (uuid 351bc882-39a7-40d5-af36-cc236d1b61bd))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:1N4148S") (at 88.9 107.95 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 1f538f5a-4f5e-4ccc-834c-a85834d1f1f3)
- (property "Reference" "D1" (at 88.9 101.6 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "1N4148S" (at 88.9 104.14 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:DO-34_BD1.6-L3.0-P7.00-D0.6-RD" (at 88.9 97.79 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/145611.html" (at 91.186 108.077 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C179555" (at 88.9 107.95 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ec57e01a-0f5a-40ea-9ffe-167e578cfa4a))
- (pin "2" (uuid 61475350-2458-4d57-9082-6ce1e78033d9))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "D1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 184.15 57.15 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 2a852ef1-eee7-4547-ab6b-ae54692484d0)
- (property "Reference" "#PWR04" (at 184.15 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 184.15 62.23 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 184.15 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 184.15 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid db495270-ea4b-4352-a6d7-e39be50344ae))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "#PWR04") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:1N4148S") (at 167.64 123.19 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 2fa5c726-6f4c-4032-b55c-a12ac508e600)
- (property "Reference" "D2" (at 167.64 116.84 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "1N4148S" (at 167.64 119.38 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:DO-34_BD1.6-L3.0-P7.00-D0.6-RD" (at 167.64 133.35 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/145611.html" (at 165.354 123.063 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C179555" (at 167.64 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1d51ea49-3391-4e2a-ab2c-8ab7cb571f4f))
- (pin "2" (uuid 0c9e8584-cb24-4775-a962-b2851022aaa9))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "D2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:01EC1809SHC10UF50V") (at 217.17 111.76 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 321de287-67ab-4d68-a6ed-0c16c62ae610)
- (property "Reference" "C5" (at 220.98 110.49 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10u" (at 220.98 113.03 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD5.0-P2.00-D0.8-FD" (at 207.01 111.76 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/44805.html" (at 214.63 104.14 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C503219" (at 217.17 111.76 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 0d811eaa-2145-47a4-aed6-ec616f5c214c))
- (pin "1" (uuid 811c6355-fe4e-401b-b0bf-85f7f59a3e95))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "C5") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_1_4W_10K_F_T_B_A1") (at 167.64 111.76 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 348cc5c0-87a2-4ec9-8b94-af1b4458394e)
- (property "Reference" "R6" (at 167.64 105.41 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 167.64 107.95 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 167.64 101.6 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at 169.926 111.887 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410695" (at 167.64 111.76 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid be53ff7d-6445-4d55-b5eb-aeeee7242fb1))
- (pin "2" (uuid 9491e5c4-c6a4-4a0d-a2c6-5c4640638233))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R6") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:AV-5") (at 41.91 88.9 90) (mirror x) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 49bb8110-180b-41fb-83d8-1e832845c8fd)
- (property "Reference" "U5" (at 36.83 95.25 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "Composite-In" (at 36.83 83.82 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_AV-5" (at 52.07 88.9 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/18768.html" (at 41.783 86.614 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C18080" (at 41.91 88.9 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 1de9ea65-a718-4b4e-a1b9-37c65b3c92dc))
- (pin "1" (uuid 2e553740-43bc-451b-8e14-2d27934ddb93))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U5") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:AV-5") (at 120.65 49.53 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 504c3d54-56b7-4a86-bd0f-19f5b753b218)
- (property "Reference" "U6" (at 114.3 44.45 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "Z-Out" (at 125.73 44.45 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_AV-5" (at 120.65 59.69 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/18768.html" (at 122.936 49.403 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C18080" (at 120.65 49.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 503f59c6-566e-497e-8d6c-7a6f047bdc72))
- (pin "1" (uuid 272ed618-a961-42b3-a046-e4fa38c08ebd))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U6") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_1_4W_10K_F_T_B_A1") (at 81.28 71.12 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5490e0de-7c66-4298-ad69-e06c18650d91)
- (property "Reference" "R1" (at 83.82 69.85 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "10K" (at 83.82 72.39 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 91.44 71.12 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at 81.153 73.406 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410695" (at 81.28 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 39c3543d-819a-4007-a444-fc80d6bf29c1))
- (pin "2" (uuid 2a91c9f9-182d-406a-9c3f-7447925c86d4))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:XY300V-A-5_0-2P") (at 57.15 64.77 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid 57d278be-cf0c-460a-855a-41c96442811b)
- (property "Reference" "U16" (at 57.15 55.88 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Power-In" (at 57.15 58.42 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_XY300V-A-5.0-2P" (at 57.15 54.61 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200527/C557648_4A2FA4132AA24EE423B62B1474E9B5BB.pdf" (at 59.436 64.897 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C557648" (at 57.15 64.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b6cc4397-4917-4d30-97bb-53f7f32166c3))
- (pin "2" (uuid d8d46f83-ffd5-4d05-a431-75b085bb4b43))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U16") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CR1_4W-75Ω±5%-OT52") (at 66.04 133.35 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5989982d-0c38-437c-82e7-abc08a87241e)
- (property "Reference" "R9" (at 68.58 132.08 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "75R" (at 68.58 134.62 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.7-L6.2-P10.20-D0.4" (at 76.2 133.35 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/486756.html" (at 65.913 135.636 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C2896897" (at 66.04 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 012f1801-3726-40e3-a7fd-fb53a6143ecb))
- (pin "2" (uuid 2e02d473-5236-4d9f-b77f-a301a2eb4bfe))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R9") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_1_4W_10K_F_T_B_A1") (at 203.2 133.35 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5bb42562-3e3f-4fa8-9feb-5272bc4e9376)
- (property "Reference" "R4" (at 205.74 132.08 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10K" (at 205.74 134.62 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 193.04 133.35 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at 203.327 131.064 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410695" (at 203.2 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f186fb50-f8ea-451e-8672-4ddafc7bf86e))
- (pin "2" (uuid 47b016dc-7e93-4960-a345-c827e0446590))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R4") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CD1E106MC9BER2F100") (at 88.9 86.36 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 5f69b6a3-6f75-4baa-a43c-1a3daef00748)
- (property "Reference" "U9" (at 88.9 80.01 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10u" (at 88.9 82.55 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_L5.5-W3.8-P3.50-D0.6" (at 88.9 96.52 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20210512/C2761762_7AEAEBBE16673951158B42993B4AFA88.pdf" (at 86.614 86.233 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C2761733" (at 88.9 86.36 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 885a0630-2a19-4429-af32-dfe3befde892))
- (pin "2" (uuid 4170d181-6438-4616-b075-7b7ca553fb46))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U9") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_1_4W_470R_F_T_B_A1") (at 157.48 133.35 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 63f3dd87-f5f9-4e93-a2bd-4b27168abbd3)
- (property "Reference" "R7" (at 160.02 132.08 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "470R" (at 160.02 134.62 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 167.64 133.35 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at 157.353 135.636 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410615" (at 157.48 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 078bb4e2-f68c-4f92-8fb7-77160515deac))
- (pin "1" (uuid af917c65-d20a-4bd0-954c-15e01955205b))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R7") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_name "152EC0410_1") (lib_id "jlc:152EC0410") (at 240.03 132.08 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 75e24f31-c21b-48b1-a49d-03471f8672bf)
- (property "Reference" "U15" (at 242.57 130.8099 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100u" (at 242.57 133.3499 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD6.3-P2.50-D0.6-FD" (at 229.87 132.08 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200309/C494514_9F3A4DA017A0C8951531EE171572BF22.pdf" (at 240.157 129.794 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C6718390" (at 240.03 132.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ab713d84-e321-4879-a890-1573d8836b79))
- (pin "2" (uuid 9ec5ed9b-12ec-4b91-8591-5122ba8c902e))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U15") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:450BXC1MEFC8X11_5") (at 229.87 119.38 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 776d9683-3491-4d33-9973-c97bedc89c03)
- (property "Reference" "U14" (at 229.87 113.03 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "1u" (at 229.87 115.57 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD8.0-P3.50-D0.6-FD_1" (at 229.87 129.54 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20180416/C191234_733C5C0149568155CE2C084CF497C985.pdf" (at 227.584 119.253 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C1651069" (at 229.87 119.38 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e687d8d7-f3d4-4269-8ae0-2546c8215e2e))
- (pin "2" (uuid a8b417ed-5e8d-4223-b577-0d3c50b5f4e0))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U14") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_name "152EC0410_1") (lib_id "jlc:152EC0410") (at 217.17 71.12 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 79813a3d-fc80-43bf-bd44-6d0298cfdf74)
- (property "Reference" "U13" (at 219.71 69.8499 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100u" (at 219.71 72.3899 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD6.3-P2.50-D0.6-FD" (at 207.01 71.12 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200309/C494514_9F3A4DA017A0C8951531EE171572BF22.pdf" (at 217.297 68.834 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C6718390" (at 217.17 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 4cd4c039-ce21-4190-8e23-6edc38d2314d))
- (pin "2" (uuid 4516f4b0-8439-40aa-a6b5-37d7e3588ea9))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U13") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_1_4W_10K_F_T_B_A1") (at 138.43 100.33 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 7acade1b-2b4d-4bcc-b0fe-cc6b1b3b96da)
- (property "Reference" "R3" (at 138.43 93.98 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "10K" (at 138.43 96.52 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 138.43 90.17 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at 140.716 100.457 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410695" (at 138.43 100.33 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5b10db08-af5a-4711-9bd7-c26d5c8d8448))
- (pin "2" (uuid 94b90c6b-e9df-431d-96a7-911888c3e7b2))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 49.53 91.44 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 7b871256-2bad-47da-808e-af17211d77fe)
- (property "Reference" "#PWR03" (at 49.53 97.79 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 49.53 96.52 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 49.53 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 49.53 91.44 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid eb09302c-f48c-4b4d-a7ee-ca54ad88367b))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "#PWR03") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:MF1_4W-1KΩ±1%T52") (at 81.28 133.35 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 83ba9c64-b64d-4893-9683-7c547b19a862)
- (property "Reference" "R8" (at 83.82 132.08 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "1K" (at 83.82 134.62 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.3-L6.5-P10.50-D0.5" (at 91.44 133.35 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/123457.html" (at 81.153 135.636 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C713997" (at 81.28 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8cb01e94-f093-42f2-aea8-81f14e2ae4c6))
- (pin "2" (uuid e53facf8-bb82-467a-8382-5fa8ffb7c37c))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R8") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:01EC1809SHC10UF50V") (at 91.44 133.35 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 89862640-4c23-4c7f-9766-a223de5fb3b0)
- (property "Reference" "C1" (at 95.25 132.08 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10u" (at 95.25 134.62 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD5.0-P2.00-D0.8-FD" (at 81.28 133.35 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/44805.html" (at 88.9 125.73 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C503219" (at 91.44 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 343b38c3-fdde-43dc-bb13-246f40afb889))
- (pin "1" (uuid 92155b33-7d2d-45bf-a0ec-6610b9a0c576))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "C1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:05B472K500PF3C1N0R") (at 177.8 133.35 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 95438499-e4b9-454c-a5c5-bca3f82f42d4)
- (property "Reference" "C3" (at 181.61 132.08 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4n7" (at 181.61 134.62 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_L4.2-W3.8-P5.08-D0.6" (at 177.8 143.51 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/297366.html" (at 175.514 133.223 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C409817" (at 177.8 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 27ef5e9d-8a77-4137-8131-ea0a39bc669e))
- (pin "2" (uuid 49ae195f-ae72-4469-91e7-35318e6ed2d6))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "C3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:BC557B_C713617") (at 157.48 100.33 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid 9aee1dc0-ef96-40e2-a790-c4e96a8ce2d4)
- (property "Reference" "U2" (at 158.75 99.06 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "BC557B" (at 158.75 101.6 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:TO-92-3_L4.9-W3.7-P1.27-L" (at 157.48 110.49 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20180629/C233232_99576441F8ED8E9074FB1575A6BE3592.PDF" (at 155.194 100.203 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C713617" (at 157.48 100.33 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "3" (uuid 380d6e0c-b001-47a0-bb69-a3f7b8e369d9))
- (pin "2" (uuid 13c55e9e-466b-4de8-90fb-e3818887360f))
- (pin "1" (uuid 64ab7f93-7330-49dd-a4c8-fd1ecd8aa98c))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:152EC0410") (at 167.64 71.12 270) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid a3b79abd-d899-463a-b01b-f8bdcdeb7d2a)
- (property "Reference" "U10" (at 170.18 69.8499 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100u" (at 170.18 72.3899 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_BD6.3-P2.50-D0.6-FD" (at 157.48 71.12 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20200309/C494514_9F3A4DA017A0C8951531EE171572BF22.pdf" (at 165.1 66.04 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C6718390" (at 170.18 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 42ab17b5-aa20-41ab-a0cb-d5751915965c))
- (pin "1" (uuid 5b51f270-ee3e-4128-91c4-94dbbd0cb1e9))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U10") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:MF1_4W-82Ω±1%_T52") (at 157.48 71.12 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid b6297a12-f721-4426-8866-1efe364d64f8)
- (property "Reference" "U4" (at 160.02 69.85 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "82R" (at 160.02 72.39 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.2-L6.5-P10.50-D0.6" (at 167.64 71.12 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/59661.html" (at 157.353 73.406 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C119302" (at 157.48 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e541bd82-96d7-4191-affe-e809d9c4295c))
- (pin "2" (uuid 36b49587-3d1a-4ffc-909b-c28abc0f22a4))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U4") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:BC557B_C713617") (at 203.2 111.76 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid b71591a7-d778-406b-970e-20bc239316fe)
- (property "Reference" "U12" (at 204.47 110.49 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "BC557B" (at 204.47 113.03 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:TO-92-3_L4.9-W3.7-P1.27-L" (at 203.2 121.92 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20180629/C233232_99576441F8ED8E9074FB1575A6BE3592.PDF" (at 200.914 111.633 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C713617" (at 203.2 111.76 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "3" (uuid c667c9e8-a51f-49ef-a200-8c3ba25db5d3))
- (pin "2" (uuid 49864af4-4c48-45cd-8024-e7eb315543e9))
- (pin "1" (uuid 38f2352a-893a-4629-a98d-e567048c9e78))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U12") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:05B472K500PF3C1N0R") (at 190.5 133.35 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid b7de7d26-3d1d-472f-8dbd-8801e3f72c1c)
- (property "Reference" "C4" (at 194.31 132.08 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "4n7" (at 194.31 134.62 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_L4.2-W3.8-P5.08-D0.6" (at 190.5 143.51 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/297366.html" (at 188.214 133.223 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C409817" (at 190.5 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid be0d4f27-b39b-438f-a62a-3f6a564483d7))
- (pin "2" (uuid 70601a9b-901b-4fca-aa48-2e2ac15ebe92))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "C4") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_1_4W_3K3_F_T_B_A1") (at 203.2 71.12 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid bf129921-b482-4564-b476-86b3b7b86ea3)
- (property "Reference" "R10" (at 205.74 69.85 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "3K3" (at 205.74 72.39 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 213.36 71.12 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at 203.073 73.406 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410631" (at 203.2 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 1ff9e7b7-2f95-4b40-89ff-1784df50d60e))
- (pin "1" (uuid 087f35a3-6aae-497a-89e4-c0258aaf4077))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R10") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:AV-5") (at 261.62 116.84 270) (mirror x) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid c0b39bdd-736c-4fe1-a25a-36c92e80a0d7)
- (property "Reference" "U8" (at 266.7 110.49 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "Y-Out" (at 266.7 121.92 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_AV-5" (at 251.46 116.84 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/18768.html" (at 261.747 119.126 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C18080" (at 261.62 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid a787eb9e-36ba-419d-a504-e486be386c04))
- (pin "1" (uuid 0024ef10-05eb-49af-a199-2d4f07457479))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U8") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:AV-5") (at 184.15 49.53 0) (mirror y) (unit 1)
- (in_bom yes) (on_board yes) (dnp no)
- (uuid c8324d96-e5d2-460d-ba1e-e6630f1138f9)
- (property "Reference" "U7" (at 177.8 44.45 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "X-Out" (at 189.23 44.45 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:CONN-TH_AV-5" (at 184.15 59.69 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/18768.html" (at 186.436 49.403 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C18080" (at 184.15 49.53 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid e97d62c0-09f1-462c-9479-bc4f70731749))
- (pin "1" (uuid fd906a6f-7656-478c-9db7-d3f0025f1cea))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U7") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:CD1H103KC94ER1D000") (at 123.19 133.35 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid cadb45c0-5fe6-4c82-9b94-3beb7c8b7316)
- (property "Reference" "C2" (at 127 132.08 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "10n" (at 127 134.62 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:CAP-TH_L4.2-W3.8-P5.08-D0.6" (at 133.35 133.35 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/297366.html" (at 123.063 135.636 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C263180" (at 123.19 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 8e98c552-07bd-4309-9732-fb0572cd3ab0))
- (pin "1" (uuid 4d7623a4-d59d-4bae-ba3b-d113c3293da1))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "C2") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_2WS_22R_F_T_B_A1") (at 113.03 133.35 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid cfb0c90a-76f7-48df-9454-8c4ebbd36daf)
- (property "Reference" "U3" (at 115.57 132.08 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "22R" (at 115.57 134.62 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD4.5-L11.0-P15.00-D0.8" (at 123.19 133.35 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/290324.html" (at 112.903 135.636 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C433604" (at 113.03 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 277a91a2-6354-494e-9047-6e98ffd15442))
- (pin "2" (uuid 62ebbc6e-7b46-4bfc-a2b4-f884392c3bdd))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U3") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 255.27 115.57 180) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid d064ca88-b7d0-4ad7-9464-64a1d6f221c4)
- (property "Reference" "#PWR05" (at 255.27 109.22 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 255.27 110.49 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 255.27 115.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 255.27 115.57 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a2683819-8780-4965-81fe-6af12a8dc7f9))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "#PWR05") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:BC547B") (at 113.03 107.95 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid d6c7d977-8ea3-481b-b3a2-eba43875f1aa)
- (property "Reference" "U1" (at 114.3 106.68 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "BC547B" (at 114.3 109.22 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "jlc_footprints:TO-92-3_L4.9-W3.7-P1.27-L" (at 113.03 118.11 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20180629/C233232_99576441F8ED8E9074FB1575A6BE3592.PDF" (at 110.744 107.823 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C713613" (at 113.03 107.95 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 95abb20c-82dd-49d5-baf7-bb0c8d828507))
- (pin "3" (uuid 9df2c1f5-4580-4d7e-946f-0a148487547a))
- (pin "2" (uuid 4ddc9ecd-4f70-447b-82c4-ddef80631b8f))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U1") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 63.5 67.31 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid e1dcdb26-8a4c-47b0-b2bf-d3b3f1063fea)
- (property "Reference" "#PWR06" (at 63.5 73.66 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 63.5 72.39 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 63.5 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 63.5 67.31 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 042d2dd5-c158-44ce-b2ea-abdc55a2a602))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "#PWR06") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:RN_1_4W_220R_F_T_B_A1") (at 113.03 71.12 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid eab20a00-75a5-455d-91a9-671ea1f6e2be)
- (property "Reference" "R5" (at 115.57 69.85 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "220R" (at 115.57 72.39 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.4-L6.3-P10.30-D0.6" (at 123.19 71.12 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/184395.html" (at 112.903 73.406 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C410657" (at 113.03 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "2" (uuid 89cd620d-11d9-487d-af44-aa7ff136d2b3))
- (pin "1" (uuid 927eb136-aa86-4b5c-90ce-eb5f60fdc0f2))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "R5") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:GND") (at 116.84 142.24 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid ecc4e282-489a-49b5-a861-6ed9c74944e1)
- (property "Reference" "#PWR02" (at 116.84 148.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (at 116.84 147.32 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 116.84 142.24 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 116.84 142.24 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2f5c71d2-1c5e-4753-bf7e-3fedf870de2e))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "#PWR02") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "power:+12V") (at 71.12 60.96 0) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid f86cb113-5348-4512-848f-7be6b1550255)
- (property "Reference" "#PWR07" (at 71.12 64.77 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+12V" (at 71.12 55.88 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (at 71.12 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (at 71.12 60.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 11947ab4-b906-4d22-b167-d593bac80372))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "#PWR07") (unit 1)
- )
- )
- )
- )
-
- (symbol (lib_id "jlc:MFR-25FTE52-100K") (at 177.8 71.12 90) (unit 1)
- (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
- (uuid fecccea8-f104-4198-a840-b8e7097e3e2b)
- (property "Reference" "U11" (at 180.34 69.85 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "100K" (at 180.34 72.39 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Footprint" "jlc_footprints:RES-TH_BD2.2-L6.5-P10.50-D0.6" (at 187.96 71.12 0)
- (effects (font (size 1.27 1.27) italic) hide)
- )
- (property "Datasheet" "https://item.szlcsc.com/59661.html" (at 177.673 73.406 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C172965" (at 177.8 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5ce134ec-69f6-4f84-a0c0-37529724bad1))
- (pin "2" (uuid 9a6a0045-3bad-42a3-9f8a-2296ac63a631))
- (instances
- (project "osci-video"
- (path "/b55e0164-5a1f-4383-81f7-ffdb0299d4dd"
- (reference "U11") (unit 1)
- )
- )
- )
- )
-
- (sheet_instances
- (path "/" (page "1"))
- )
- )
|