| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633 |
- (kicad_sch
- (version 20231120)
- (generator "eeschema")
- (generator_version "8.0")
- (uuid "95600b21-50c0-4a93-8b4e-5082a310ea77")
- (paper "A4")
- (lib_symbols
- (symbol "LMC6042_2"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U2"
- (at 0 10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LMC6042_2"
- (at 0 7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "U:SO8N"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_locked" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "LMC6042_2_1_1"
- (polyline
- (pts
- (xy -6.35 5.08) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin output line
- (at 8.89 0 180)
- (length 2.54)
- (name "OUT_A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 2.54 0)
- (length 2.54)
- (name "V-"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 -2.54 0)
- (length 2.54)
- (name "V+"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (symbol "LMC6042_2_2_1"
- (polyline
- (pts
- (xy -6.35 3.81) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08) (xy -6.35 3.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin input line
- (at -8.89 -2.54 0)
- (length 2.54)
- (name "V+"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 2.54 0)
- (length 2.54)
- (name "V-"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin output line
- (at 8.89 0 180)
- (length 2.54)
- (name "OUT_A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (symbol "LMC6042_2_3_1"
- (rectangle
- (start -2.54 2.54)
- (end 2.54 -2.54)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin power_in line
- (at -5.08 1.27 0)
- (length 2.54)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at -5.08 -1.27 0)
- (length 2.54)
- (name "VCC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "LMC6042_3"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U2"
- (at 0 10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LMC6042_3"
- (at 0 7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "U:SO8N"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_locked" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "LMC6042_3_1_1"
- (polyline
- (pts
- (xy -6.35 5.08) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin output line
- (at 8.89 0 180)
- (length 2.54)
- (name "OUT_A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 2.54 0)
- (length 2.54)
- (name "V-"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 -2.54 0)
- (length 2.54)
- (name "V+"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (symbol "LMC6042_3_2_1"
- (polyline
- (pts
- (xy -6.35 3.81) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08) (xy -6.35 3.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin input line
- (at -8.89 -2.54 0)
- (length 2.54)
- (name "V+"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 2.54 0)
- (length 2.54)
- (name "V-"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin output line
- (at 8.89 0 180)
- (length 2.54)
- (name "OUT_A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (symbol "LMC6042_3_3_1"
- (rectangle
- (start -2.54 2.54)
- (end 2.54 -2.54)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin power_in line
- (at -5.08 1.27 0)
- (length 2.54)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at -5.08 -1.27 0)
- (length 2.54)
- (name "VCC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "TEST_1P_5"
- (pin_numbers hide)
- (pin_names
- (offset 0.762) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "PT"
- (at 0 1.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "TEST_1P_5"
- (at 0 5.08 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Footprint" ""
- (at 5.08 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 5.08 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "TEST_1P_5_0_1"
- (circle
- (center 0 0)
- (radius 0.762)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "TEST_1P_5_1_1"
- (pin passive line
- (at 0 0 90)
- (length 0)
- (name "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "TI:LMC6042"
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "U2"
- (at 0 10.16 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LMC6042"
- (at 0 7.62 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "U:SO8N"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_locked" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (symbol "LMC6042_1_1"
- (polyline
- (pts
- (xy -6.35 5.08) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin output line
- (at 8.89 0 180)
- (length 2.54)
- (name "OUT_A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 2.54 0)
- (length 2.54)
- (name "V-"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 -2.54 0)
- (length 2.54)
- (name "V+"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (symbol "LMC6042_2_1"
- (polyline
- (pts
- (xy -6.35 3.81) (xy -6.35 -5.08) (xy 6.35 0) (xy -6.35 5.08) (xy -6.35 3.81)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin input line
- (at -8.89 -2.54 0)
- (length 2.54)
- (name "V+"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "5"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin input line
- (at -8.89 2.54 0)
- (length 2.54)
- (name "V-"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "6"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin output line
- (at 8.89 0 180)
- (length 2.54)
- (name "OUT_A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "7"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- (symbol "LMC6042_3_1"
- (rectangle
- (start -2.54 2.54)
- (end 2.54 -2.54)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (pin power_in line
- (at -5.08 1.27 0)
- (length 2.54)
- (name "GND"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "4"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin power_in line
- (at -5.08 -1.27 0)
- (length 2.54)
- (name "VCC"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "8"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "conn:CONN_01X02"
- (pin_names
- (offset 1.016) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "P"
- (at 0 3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "CONN_01X02"
- (at 2.54 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "Pin_Header_Straight_1X02 Pin_Header_Angled_1X02 Socket_Strip_Straight_1X02 Socket_Strip_Angled_1X02"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "CONN_01X02_0_1"
- (rectangle
- (start -1.27 -1.143)
- (end 0.254 -1.397)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 1.397)
- (end 0.254 1.143)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (rectangle
- (start -1.27 2.54)
- (end 1.27 -2.54)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "CONN_01X02_1_1"
- (pin passive line
- (at -5.08 1.27 0)
- (length 3.81)
- (name "P1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -5.08 -1.27 0)
- (length 3.81)
- (name "P2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "conn:TEST_1P"
- (pin_numbers hide)
- (pin_names
- (offset 0.762) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "PT"
- (at 0 1.27 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "TEST_1P"
- (at 0 5.08 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Footprint" ""
- (at 5.08 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 5.08 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "TEST_1P_0_1"
- (circle
- (center 0 0)
- (radius 0.762)
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "TEST_1P_1_1"
- (pin passive line
- (at 0 0 90)
- (length 0)
- (name "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "global:C"
- (pin_numbers hide)
- (pin_names
- (offset 0.254)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "C"
- (at 0.635 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "C"
- (at 0.635 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" ""
- (at 0.9652 -3.81 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "C? C_????_* C_???? SMD*_c Capacitor*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "C_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762) (xy 2.032 -0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -2.032 0.762) (xy 2.032 0.762)
- )
- (stroke
- (width 0.508)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "C_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 2.794)
- (name "~"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.016 1.016)
- )
- )
- )
- )
- )
- )
- (symbol "global:D"
- (pin_numbers hide)
- (pin_names
- (offset 1.016) hide)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "D"
- (at 0 2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "D"
- (at 0 -2.54 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "Diode_* D-Pak_TO252AA *SingleDiode *_Diode_* *SingleDiode*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "D_0_1"
- (polyline
- (pts
- (xy -1.27 1.27) (xy -1.27 -1.27)
- )
- (stroke
- (width 0.1524)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type outline)
- )
- )
- )
- (symbol "D_1_1"
- (pin passive line
- (at -3.81 0 0)
- (length 2.54)
- (name "K"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 3.81 0 180)
- (length 2.54)
- (name "A"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "global:Poten"
- (pin_numbers hide)
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "VR"
- (at 2.032 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Poten"
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "R_* Resistor_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "Poten_0_1"
- (rectangle
- (start -1.016 -2.54)
- (end 1.016 2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- (polyline
- (pts
- (xy -1.905 -0.635) (xy -1.27 0) (xy -1.905 0.635)
- )
- (stroke
- (width 0)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "Poten_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at -3.81 0 0)
- (length 2.54)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "3"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- (symbol "global:R"
- (pin_numbers hide)
- (pin_names
- (offset 0)
- )
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (property "Reference" "R"
- (at 2.032 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "R"
- (at 0 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" ""
- (at -1.778 0 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Datasheet" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "ki_fp_filters" "R_* Resistor_*"
- (at 0 0 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (symbol "R_0_1"
- (rectangle
- (start -1.016 -2.54)
- (end 1.016 2.54)
- (stroke
- (width 0.254)
- (type default)
- )
- (fill
- (type none)
- )
- )
- )
- (symbol "R_1_1"
- (pin passive line
- (at 0 3.81 270)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "1"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- (pin passive line
- (at 0 -3.81 90)
- (length 1.27)
- (name "~"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (number "2"
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- )
- )
- )
- )
- (junction
- (at 77.47 46.99)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "012d4fdc-9499-4b46-b7e6-ed9389c18ac5")
- )
- (junction
- (at 86.36 34.29)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "0da25b70-ebfe-4726-bf2f-d5435f7057ad")
- )
- (junction
- (at 152.4 31.75)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "18adc69b-55db-4833-b89d-77d84a6cdb5c")
- )
- (junction
- (at 67.31 46.99)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1940775d-be64-4954-8b3d-1c773b488ceb")
- )
- (junction
- (at 121.92 43.18)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "1e586f74-59c4-416a-bb6a-fb30bcfd3f77")
- )
- (junction
- (at 63.5 46.99)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "2857d113-4845-4f76-a9b3-eee1d54b3476")
- )
- (junction
- (at 143.51 31.75)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "324bad64-8a37-4390-a8de-282eff64d02e")
- )
- (junction
- (at 45.72 49.53)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "37e55413-4b16-41a2-84fc-41c19da86213")
- )
- (junction
- (at 97.79 34.29)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "657c77c9-2bde-4dfb-a5a4-303707815212")
- )
- (junction
- (at 86.36 29.21)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "81d6f28b-1535-4da4-a6f2-533c2e690df6")
- )
- (junction
- (at 125.73 43.18)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "a5d12a8a-518b-4117-8e63-1ef4a4e52b80")
- )
- (junction
- (at 152.4 24.13)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "af386f1d-670b-4a83-88a6-021bc0a34dfd")
- )
- (junction
- (at 101.6 43.18)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "ba62d390-fc10-48a4-8c8a-b9124a0993fa")
- )
- (junction
- (at 45.72 44.45)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c18531f5-05b1-481d-b522-10c0c374b0c8")
- )
- (junction
- (at 143.51 24.13)
- (diameter 0)
- (color 0 0 0 0)
- (uuid "c716b476-5175-49b2-8997-bd28919561d3")
- )
- (no_connect
- (at 97.79 19.05)
- (uuid "73228ae0-b731-4e72-8d3c-7b8d22d9673c")
- )
- (wire
- (pts
- (xy 83.82 46.99) (xy 83.82 45.72)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "04a4f287-3e79-447a-b0b6-9964035325da")
- )
- (wire
- (pts
- (xy 97.79 26.67) (xy 97.79 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0632e67b-7d88-44b4-97db-b2bf78d7b445")
- )
- (wire
- (pts
- (xy 143.51 31.75) (xy 152.4 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "0a747082-0770-425c-b880-744cad9265c8")
- )
- (wire
- (pts
- (xy 86.36 29.21) (xy 82.55 29.21)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "44f5fc05-e79a-4551-a8be-9ac51b69f2d8")
- )
- (wire
- (pts
- (xy 63.5 46.99) (xy 67.31 46.99)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "48b41e38-8971-4f86-b295-1d59e36a4b6a")
- )
- (wire
- (pts
- (xy 152.4 31.75) (xy 161.29 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "49528dfc-bc8a-423d-9247-86191030f816")
- )
- (wire
- (pts
- (xy 86.36 34.29) (xy 86.36 29.21)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "4badf81c-ed65-47bb-9be2-da5e6186720c")
- )
- (wire
- (pts
- (xy 77.47 46.99) (xy 77.47 48.26)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "50e306ea-451b-4b2b-bffe-5e1edf36a6eb")
- )
- (wire
- (pts
- (xy 83.82 34.29) (xy 83.82 40.64)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "59db3af2-e56c-4686-ab0d-ba55e38a15f6")
- )
- (wire
- (pts
- (xy 101.6 43.18) (xy 107.95 43.18)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "5e450ab0-eea7-48c0-83c6-602947c7c085")
- )
- (wire
- (pts
- (xy 49.53 57.15) (xy 45.72 57.15)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "60ed7ed1-3d42-4344-81f0-94bdd5c836a0")
- )
- (wire
- (pts
- (xy 86.36 34.29) (xy 83.82 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6ab52ec4-d8e0-48a2-bb93-7ca80e3032e1")
- )
- (wire
- (pts
- (xy 86.36 29.21) (xy 93.98 29.21)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "6cf4bafe-468f-4104-9fd5-ffb434b0561b")
- )
- (wire
- (pts
- (xy 152.4 24.13) (xy 161.29 24.13)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "72f01686-73d1-4049-922b-800c784712c5")
- )
- (wire
- (pts
- (xy 77.47 46.99) (xy 83.82 46.99)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "7eb7f49e-6cc3-4b99-a5d4-d4c5e54f7130")
- )
- (wire
- (pts
- (xy 45.72 36.83) (xy 45.72 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "914ab055-ac86-4fb0-aecd-bb0f2b30fa5a")
- )
- (wire
- (pts
- (xy 143.51 24.13) (xy 152.4 24.13)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9304163d-c303-4037-978b-d6ae77b679f5")
- )
- (wire
- (pts
- (xy 97.79 34.29) (xy 101.6 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "971484c6-79e7-4a62-9365-4d3b876ddb91")
- )
- (wire
- (pts
- (xy 67.31 46.99) (xy 68.58 46.99)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "9aef5d49-8c0f-4e09-a3ed-6de87d263f56")
- )
- (wire
- (pts
- (xy 161.29 24.13) (xy 161.29 26.67)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "a676c616-0d04-400e-9970-2fd42c4e3580")
- )
- (wire
- (pts
- (xy 45.72 57.15) (xy 45.72 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b4ab3a88-6eb3-4a10-ad2d-c223517b810e")
- )
- (wire
- (pts
- (xy 63.5 46.99) (xy 63.5 36.83)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b6e9c4e3-7b56-4c31-8b13-9a16637b789e")
- )
- (wire
- (pts
- (xy 50.8 36.83) (xy 45.72 36.83)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "b813184a-5ada-4a3d-a28a-92ca8434533b")
- )
- (wire
- (pts
- (xy 121.92 43.18) (xy 125.73 43.18)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c0159134-cc4a-4a10-93fc-ec367d4fadb0")
- )
- (wire
- (pts
- (xy 63.5 36.83) (xy 58.42 36.83)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c4cfc078-2c5b-49e3-bf99-8c62e76427b8")
- )
- (wire
- (pts
- (xy 96.52 34.29) (xy 97.79 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "c8fe2d30-d046-4994-b77a-c9af88dcf503")
- )
- (wire
- (pts
- (xy 40.64 49.53) (xy 45.72 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "cd6344f4-4cc9-4745-93d5-f73f2e34a49b")
- )
- (wire
- (pts
- (xy 101.6 43.18) (xy 101.6 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d45bb788-e72d-484e-b46c-98b6bd4a1d93")
- )
- (wire
- (pts
- (xy 115.57 43.18) (xy 121.92 43.18)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "d95db662-79bb-4cbd-9f00-6d8bcce1a1b0")
- )
- (wire
- (pts
- (xy 140.97 31.75) (xy 143.51 31.75)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "dbbe8c5e-e218-46a7-b580-7f1240bf2797")
- )
- (wire
- (pts
- (xy 88.9 34.29) (xy 86.36 34.29)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "df4fdcb6-fc34-4e04-a799-c60856c383e8")
- )
- (wire
- (pts
- (xy 125.73 43.18) (xy 130.81 43.18)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "e998f414-3aea-4c40-9b3b-0536b1991c1b")
- )
- (wire
- (pts
- (xy 31.75 44.45) (xy 45.72 44.45)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ea2a9b7c-f929-43f0-92ec-2e37b55cd959")
- )
- (wire
- (pts
- (xy 40.64 53.34) (xy 40.64 49.53)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ea3a7e01-3367-4738-9a99-6cebbe89dc2b")
- )
- (wire
- (pts
- (xy 161.29 31.75) (xy 161.29 29.21)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ec1f2bd7-6d41-424d-93e3-230c5c6c4734")
- )
- (wire
- (pts
- (xy 76.2 46.99) (xy 77.47 46.99)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "ee1661b1-9ac3-4102-9a98-5f61fcb01b83")
- )
- (wire
- (pts
- (xy 140.97 24.13) (xy 143.51 24.13)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "eec08a9a-a4bc-4ef1-9294-ebedc0af4942")
- )
- (wire
- (pts
- (xy 63.5 46.99) (xy 63.5 57.15)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "efd23c6c-647b-4f59-8c92-a06ca29d52d1")
- )
- (wire
- (pts
- (xy 63.5 57.15) (xy 57.15 57.15)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f61e6910-067d-49ea-bfaa-5b6746e3c109")
- )
- (wire
- (pts
- (xy 93.98 29.21) (xy 93.98 22.86)
- )
- (stroke
- (width 0)
- (type default)
- )
- (uuid "f899302b-ab74-4705-9142-d93f06dd554f")
- )
- (label "-3.3V"
- (at 140.97 24.13 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "3f1c5dc1-f4d5-4923-aac7-7733aed55570")
- )
- (label "3.3V"
- (at 140.97 31.75 180)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "5265aa72-b87a-4de4-be4a-267a83cafb29")
- )
- (label "GND"
- (at 40.64 60.96 270)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "6dbd01e0-5006-48af-958d-7a34c9c32b99")
- )
- (label "GND"
- (at 82.55 26.67 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "77b8ccd4-4398-4438-882e-0236b4899304")
- )
- (label "Out2"
- (at 130.81 43.18 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "9911b81e-7380-4911-a25e-601e8e7ad72e")
- )
- (label "GND"
- (at 130.81 50.8 270)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "9feee8a7-c002-477f-b0f9-bf0f1d27f46f")
- )
- (label "GND"
- (at 121.92 50.8 270)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "bd573d30-c898-4462-9547-401433f799e5")
- )
- (label "GND"
- (at 31.75 52.07 0)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left bottom)
- )
- (uuid "c9ac34d8-d177-48a4-82af-569470d3dfd4")
- )
- (label "GND"
- (at 77.47 55.88 270)
- (fields_autoplaced yes)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right bottom)
- )
- (uuid "dabeb30f-c18a-41eb-bb2f-6198cd462ab7")
- )
- (symbol
- (lib_id "global:C")
- (at 152.4 27.94 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "02ad33d3-2ca6-44dc-97bb-416cb0dfc963")
- (property "Reference" "C?"
- (at 152.4 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "100nF"
- (at 152.4 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 153.3652 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 152.4 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 152.4 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0605"
- (at 152.4 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "40d107dd-acfe-440f-a1c0-510ae459672a")
- )
- (pin "2"
- (uuid "9b73a7cf-dd8b-4d03-8de9-4ef71ab05ad6")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "conn:CONN_01X02")
- (at 77.47 27.94 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "1411b0b9-7377-4586-b0a3-8af78b3bf98f")
- (property "Reference" "P?"
- (at 77.47 24.13 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "Salinity"
- (at 74.93 27.94 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "Bornier:Bornier2.54_1x2"
- (at 77.47 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 77.47 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 77.47 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 77.47 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "cb084144-6490-4aaa-8e03-4bb906843489")
- )
- (pin "2"
- (uuid "900a077a-6eef-47ca-ba06-59a36fd0de26")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "P?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 54.61 36.83 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "17d7420b-8099-44a5-95b0-2183347efa35")
- (property "Reference" "R?"
- (at 54.61 34.29 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "1K"
- (at 54.61 36.83 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 54.61 38.608 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 54.61 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 54.61 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0915"
- (at 54.61 36.83 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "fcde0c34-3ba1-4107-9690-4065d0b2b09b")
- )
- (pin "2"
- (uuid "ba9745c1-4534-4208-901c-1fab07539815")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "TI:LMC6042")
- (at 92.71 43.18 0)
- (unit 2)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "1e746be8-8b8f-4e88-8463-99b7f1af3a22")
- (property "Reference" "U?"
- (at 92.71 39.37 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LMC6042"
- (at 93.98 48.26 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "U:SO8N"
- (at 92.71 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 92.71 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 92.71 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "2400"
- (at 92.71 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "23ff0d9a-6d29-4b18-bc15-3c740e6bd6c4")
- )
- (pin "2"
- (uuid "b591b50a-c7d8-473d-aa19-c473305adad0")
- )
- (pin "3"
- (uuid "b7d8b17e-d77f-488a-ba29-57f5afa95c5b")
- )
- (pin "5"
- (uuid "7825bed5-c5fb-4b21-ab65-90559731ab81")
- )
- (pin "6"
- (uuid "208ee7b8-395d-42ae-9af0-ef6ade39e758")
- )
- (pin "7"
- (uuid "b63c3671-61de-4265-844a-cb12346b6029")
- )
- (pin "4"
- (uuid "bc91e8e7-c650-4606-9c05-3ada77195390")
- )
- (pin "8"
- (uuid "653d7f22-20b5-4558-961d-da32ba1eca94")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "U?")
- (unit 2)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 143.51 27.94 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "23a5196b-a131-4b3b-a6f6-0a65ff44fe3a")
- (property "Reference" "C?"
- (at 143.51 25.4 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "4.7µF"
- (at 143.51 30.48 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 144.4752 31.75 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 143.51 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 143.51 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0607"
- (at 143.51 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "430d9d98-f537-4026-a4bc-7f47293c0761")
- )
- (pin "2"
- (uuid "2ae7fe4a-3e91-4fc1-8966-f0b9f33b70ce")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 92.71 34.29 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "26cb254b-77b6-4785-9ea0-917806e89db7")
- (property "Reference" "R?"
- (at 92.71 31.75 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "3.3K"
- (at 92.71 34.29 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 92.71 36.068 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 92.71 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 92.71 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0931"
- (at 92.71 34.29 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "7d5be940-8c0d-4c09-9823-9e36b6dc56f1")
- )
- (pin "2"
- (uuid "ac1d96f2-4988-4afc-a631-e77a915c0776")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "LMC6042_3")
- (lib_id "TI:LMC6042")
- (at 54.61 46.99 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "3d536db3-3d10-49ea-b170-89c13f2b0268")
- (property "Reference" "U?"
- (at 54.61 41.91 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "LMC6042"
- (at 55.88 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "U:SO8N"
- (at 54.61 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 54.61 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 54.61 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "2400"
- (at 54.61 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "a38ab7d2-250c-409a-851f-b13519688c7d")
- )
- (pin "2"
- (uuid "c9121702-aa59-4ad1-8ed8-0c14d3752c76")
- )
- (pin "3"
- (uuid "2a1292b5-7458-45d3-8d0a-1746e9c2ac1c")
- )
- (pin "5"
- (uuid "76fabe9d-1131-4a27-8b98-8b62e78b84a4")
- )
- (pin "6"
- (uuid "3bd29560-0684-402c-b0d9-296083bd4077")
- )
- (pin "7"
- (uuid "324b39ca-3298-4271-ae09-2310be227200")
- )
- (pin "4"
- (uuid "0b38d2bc-3d7e-4110-ab70-fb0aa1fac065")
- )
- (pin "8"
- (uuid "2c2d211e-5149-442d-aa36-67d1b09ab7f5")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "U?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:Poten")
- (at 97.79 22.86 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "6588e102-3f70-4e4d-8c6f-7649fab85e14")
- (property "Reference" "VR?"
- (at 100.33 21.5899 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Poten"
- (at 100.33 24.1299 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:RM065"
- (at 96.012 22.86 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 97.79 22.86 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 97.79 22.86 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 97.79 22.86 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "e3182e6f-fec2-442f-8ca8-1841bf059706")
- )
- (pin "2"
- (uuid "4f7f1895-e93e-45a3-bba6-f806c3b7b9d9")
- )
- (pin "3"
- (uuid "d2728e10-47b6-4437-aede-38e1d7d2646d")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "VR?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 72.39 46.99 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "6618eb27-dd99-4d35-823a-c74bac059c37")
- (property "Reference" "R?"
- (at 72.39 44.45 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "100K"
- (at 72.39 46.99 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 72.39 48.768 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 72.39 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 72.39 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0916"
- (at 72.39 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "2227fcfc-dd61-4194-b296-f0ed84e1aa20")
- )
- (pin "2"
- (uuid "85b0eb9b-197e-42eb-b673-09156bf928d0")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:D")
- (at 111.76 43.18 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "6740bf28-c568-4702-a53d-a89bfcf0c1b1")
- (property "Reference" "D?"
- (at 111.76 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "1N4148"
- (at 111.76 45.72 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "D:SOD-523"
- (at 111.76 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 111.76 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 111.76 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "1300"
- (at 111.76 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "68613a24-fbce-4138-afc3-1206ffb2428a")
- )
- (pin "2"
- (uuid "e7b2e545-072e-4a97-b43a-0ba28a6c8131")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "D?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "conn:TEST_1P")
- (at 67.31 46.99 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "7b78fe6d-98cf-4917-9ea4-e630d0a5b535")
- (property "Reference" "PT?"
- (at 66.04 45.72 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Astable"
- (at 69.85 44.9579 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 72.39 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 72.39 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 67.31 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 67.31 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "b85e3bee-6dd6-438e-a723-534d59abff2e")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 121.92 46.99 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "7e59e33a-eed9-48b5-a928-ddf0ca5cc12c")
- (property "Reference" "C?"
- (at 125.73 45.7199 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "330nF"
- (at 119.38 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 122.8852 50.8 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 121.92 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 121.92 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "Farnell"
- (at 121.92 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "582ff535-719b-4381-b9e0-a1f7db90bab2")
- )
- (pin "2"
- (uuid "e8820f79-8397-479a-97f2-3918da1dfa13")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:C")
- (at 31.75 48.26 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "891db89c-fbf1-4d8f-aec8-934628d12278")
- (property "Reference" "C?"
- (at 35.56 46.9899 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "47nF"
- (at 35.56 49.5299 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "C:0805"
- (at 32.7152 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 31.75 48.26 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 31.75 48.26 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "Farnell"
- (at 31.75 48.26 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "d7b39e77-040e-4a3a-8795-9314b3019964")
- )
- (pin "2"
- (uuid "f187769a-48fa-4dd9-89a7-4138202c2e9e")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "C?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 130.81 46.99 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "8cb8d2f2-f9c0-4045-a46c-2959b03a6dc5")
- (property "Reference" "R?"
- (at 133.35 45.7199 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "56Meg"
- (at 133.35 48.2599 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "R:0805"
- (at 129.032 46.99 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 130.81 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 130.81 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "Farnell"
- (at 130.81 46.99 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "d7a80cad-ccb2-4195-a6b8-abca325a1496")
- )
- (pin "2"
- (uuid "1911d5bb-00e3-4591-89b4-73e2a181069d")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 53.34 57.15 90)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "b4cbbe64-1a88-481e-8ec8-d5a1d5573fee")
- (property "Reference" "R?"
- (at 53.34 54.61 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Value" "1K"
- (at 53.34 57.15 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Footprint" "R:0805"
- (at 53.34 58.928 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 53.34 57.15 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 53.34 57.15 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0915"
- (at 53.34 57.15 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "f5c970d1-47c5-4443-87f0-acda3263466f")
- )
- (pin "2"
- (uuid "5c128de8-a008-43f4-9ea9-155d219672a5")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "LMC6042_2")
- (lib_id "TI:LMC6042")
- (at 166.37 27.94 0)
- (unit 3)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (fields_autoplaced yes)
- (uuid "bed9992e-3332-4a5b-963b-43c165c05f0d")
- (property "Reference" "U?"
- (at 170.18 26.6699 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "LMC6042"
- (at 170.18 29.2099 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Footprint" "U:SO8N"
- (at 166.37 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 166.37 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Description" ""
- (at 166.37 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "2400"
- (at 166.37 27.94 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "f32c6991-49f6-4697-aae5-69800531fe91")
- )
- (pin "2"
- (uuid "50c9882b-7dad-42ee-b95c-9934178af736")
- )
- (pin "3"
- (uuid "8b2833b9-33b5-4047-8154-2a847a793c77")
- )
- (pin "5"
- (uuid "3cb5fc1d-02cf-4c3c-8915-908a7c4d3198")
- )
- (pin "6"
- (uuid "128e2144-47ed-419a-9479-572585b6f0e3")
- )
- (pin "7"
- (uuid "85aad1dc-cef2-43ee-a586-12a81cf4525f")
- )
- (pin "4"
- (uuid "a4e5e9c5-ce65-4be9-8392-e03052197ee1")
- )
- (pin "8"
- (uuid "3f7b491d-a79e-43a6-9fa4-c2e6707bc770")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "U?")
- (unit 3)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 40.64 57.15 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "d251ab53-14f4-4595-a21c-c298c7bfd8ac")
- (property "Reference" "R?"
- (at 41.91 55.88 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "1K"
- (at 41.91 58.42 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "R:0805"
- (at 42.418 57.15 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 40.64 57.15 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 40.64 57.15 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0915"
- (at 40.64 57.15 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "95547ce9-4c61-423e-813b-3a787fc334fc")
- )
- (pin "2"
- (uuid "2c912a8c-cec5-4a86-b649-c23903b92095")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_name "TEST_1P_5")
- (lib_id "conn:TEST_1P")
- (at 125.73 43.18 0)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "d2b237b8-f4ce-42f4-99ff-d981c0b81fa8")
- (property "Reference" "PT?"
- (at 124.46 40.64 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- )
- )
- (property "Value" "Sal_OUT_FILT"
- (at 128.27 41.1479 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify left)
- (hide yes)
- )
- )
- (property "Footprint" "PinHeader:PinHeader1"
- (at 130.81 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 130.81 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 125.73 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "N/A"
- (at 125.73 43.18 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "9fb8018f-216c-46b3-a248-a7201b4ea9d2")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "PT?")
- (unit 1)
- )
- )
- )
- )
- (symbol
- (lib_id "global:R")
- (at 77.47 52.07 180)
- (unit 1)
- (exclude_from_sim no)
- (in_bom yes)
- (on_board yes)
- (dnp no)
- (uuid "daba3eff-ef3c-4a21-8eb7-33da5193c4b0")
- (property "Reference" "R?"
- (at 78.74 50.8 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Value" "1K"
- (at 78.74 53.34 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (justify right)
- )
- )
- (property "Footprint" "R:0805"
- (at 79.248 52.07 90)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Datasheet" ""
- (at 77.47 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- )
- )
- (property "Description" ""
- (at 77.47 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (property "Partkeepr" "0915"
- (at 77.47 52.07 0)
- (effects
- (font
- (size 1.27 1.27)
- )
- (hide yes)
- )
- )
- (pin "1"
- (uuid "890fb26f-355f-4821-917f-eff9e3ae740f")
- )
- (pin "2"
- (uuid "e3c7e62c-18bf-41d1-b399-a6c8355b6007")
- )
- (instances
- (project "Salinity"
- (path "/95600b21-50c0-4a93-8b4e-5082a310ea77"
- (reference "R?")
- (unit 1)
- )
- )
- )
- )
- (sheet_instances
- (path "/"
- (page "1")
- )
- )
- )
|